-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path388.文件的最长绝对路径.js
85 lines (70 loc) · 957 KB
/
388.文件的最长绝对路径.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/**
* @param {number[][]} envelopes
* @return {number}
* https://leetcode-cn.com/problems/russian-doll-envelopes/
*/
// ❌
// 朴素DP
// 超时 170s
var maxEnvelopes_plain = function(envelopes) {
// 能否套入
function canWrap (wraper, inner) {
return wraper[0] > inner[0] && wraper[1] > inner[1];
}
// 按宽度升序
envelopes.sort((a, b) => {return a[0] - b[0]
});
// N
// dp[i] = 第i个能套的最大数量
const dp = new Array(envelopes.length).fill(1);
let max = 1;
for (let i = 1; i < envelopes.length; i++) {
// 内部反向
for (let j = i-1; j > -1; j--) {
if (canWrap(envelopes[i], envelopes[j])) {
dp[i] = Math.max(dp[i], dp[j] + 1);
if (dp[i] > max) {
max = dp[i];
// 提前退出
break;
}
}
}
}
console.log(envelopes)
console.log(dp)
console.log(max)
return max;
};
// ✔️
// DP + 单增高度或宽度 + 二分
var maxEnvelopes = function(envelopes) {
// 按宽度升序,高度降序,降维后可改为求高度的最长递增子序列长度
envelopes.sort((a, b) => {
if (a[0] === b[0]) {
return b[1] - a[1]
} else return a[0] - b[0]
});
const heights = envelopes.map(a => a[1]);
const tails = new Array(heights.length);
let res = 0;
for (let i = 0; i < heights.length; i++) {
const num = heights[i];
let l = 0, r = res;
// 二分替换tails元素
while (l < r) {
let m = Math.floor((l+r) / 2);
if (tails[m] < num) l = m + 1
else r = m
}
tails[l] = num;
if (res === r) res++;
}
return res;
};
const t = [[827,312],[984,376],[297,180],[785,724],[722,555],[678,286],[113,941],[28,256],[394,836],[765,431],[259,882],[514,823],[326,657],[867,702],[968,743],[412,142],[565,65],[144,834],[811,898],[202,156],[904,724],[546,574],[822,980],[703,217],[339,554],[127,905],[733,656],[71,318],[420,85],[520,964],[880,487],[656,616],[146,700],[832,420],[833,520],[943,346],[19,445],[382,587],[53,920],[771,758],[364,53],[983,490],[384,595],[793,7],[889,417],[245,121],[571,220],[981,256],[540,982],[369,61],[274,67],[806,284],[198,767],[619,850],[569,547],[567,925],[133,258],[675,316],[939,358],[327,176],[341,98],[931,590],[593,803],[280,345],[10,53],[772,358],[20,480],[763,281],[486,650],[56,748],[204,319],[265,78],[767,734],[932,498],[22,637],[578,539],[703,143],[413,498],[750,976],[983,606],[837,402],[188,202],[258,985],[155,694],[114,931],[218,53],[863,998],[550,314],[825,913],[943,325],[831,325],[51,167],[949,431],[96,709],[790,321],[860,258],[674,415],[492,78],[556,89],[557,653],[248,232],[546,982],[272,591],[168,822],[303,52],[743,911],[499,602],[403,846],[499,229],[568,419],[529,643],[456,81],[991,472],[770,225],[235,496],[326,841],[194,995],[373,614],[30,986],[763,593],[582,533],[433,56],[915,854],[337,989],[593,175],[953,989],[570,238],[628,322],[377,178],[996,774],[217,312],[445,366],[460,607],[96,533],[109,537],[11,198],[965,591],[921,722],[567,785],[184,462],[475,458],[877,518],[141,551],[563,488],[464,14],[302,271],[189,10],[847,925],[479,347],[771,338],[217,55],[274,102],[531,685],[717,17],[29,117],[484,729],[928,310],[627,210],[799,103],[797,932],[840,859],[27,468],[550,842],[778,948],[228,890],[665,32],[871,411],[814,127],[439,980],[60,758],[553,63],[193,999],[552,270],[276,367],[356,964],[557,597],[840,1000],[427,417],[935,9],[539,770],[348,84],[776,769],[851,815],[35,643],[749,887],[292,335],[330,122],[343,132],[552,859],[250,947],[507,843],[291,455],[128,263],[256,77],[698,432],[318,703],[206,496],[375,133],[219,518],[999,808],[586,157],[804,302],[86,448],[449,542],[919,399],[800,537],[619,780],[922,159],[680,574],[147,170],[601,549],[959,326],[506,824],[895,904],[289,981],[956,418],[68,633],[242,174],[924,730],[155,798],[242,439],[561,331],[554,778],[454,770],[514,820],[132,297],[962,250],[508,258],[515,197],[382,9],[651,127],[344,506],[79,442],[89,913],[528,389],[250,176],[73,955],[304,76],[296,349],[929,783],[474,331],[153,989],[154,763],[273,317],[393,886],[334,945],[589,528],[648,148],[447,108],[972,839],[774,911],[670,642],[793,921],[813,265],[243,223],[219,559],[889,380],[860,746],[447,386],[277,969],[81,317],[415,996],[931,664],[209,904],[324,14],[37,891],[583,598],[62,362],[692,667],[504,415],[434,626],[266,707],[310,462],[915,792],[964,168],[771,426],[219,195],[214,876],[372,756],[897,726],[966,202],[236,784],[649,864],[389,75],[467,676],[203,365],[739,514],[801,130],[963,600],[496,757],[453,835],[662,91],[135,243],[900,448],[787,405],[234,703],[412,389],[498,344],[873,894],[710,815],[245,336],[974,397],[953,221],[879,179],[505,13],[485,102],[417,896],[667,495],[102,984],[189,510],[32,272],[484,134],[204,162],[263,152],[37,879],[128,300],[452,57],[90,922],[304,870],[628,663],[267,546],[319,664],[388,531],[270,830],[577,36],[796,665],[32,728],[550,293],[548,628],[941,75],[721,58],[282,303],[631,361],[923,495],[975,219],[786,515],[111,46],[381,383],[491,459],[338,824],[777,506],[376,226],[9,617],[828,816],[117,358],[532,808],[153,873],[392,119],[626,573],[982,83],[42,732],[402,963],[113,694],[761,474],[148,666],[202,562],[829,455],[49,696],[907,863],[275,20],[608,110],[792,100],[144,489],[226,318],[809,661],[308,312],[621,340],[566,19],[448,92],[394,5],[650,474],[107,899],[335,551],[772,333],[754,472],[949,786],[59,893],[499,97],[548,663],[480,306],[623,953],[126,744],[888,606],[851,684],[158,782],[981,74],[694,331],[697,41],[874,159],[863,951],[976,587],[695,207],[896,304],[767,431],[814,89],[111,836],[784,392],[820,59],[502,528],[420,425],[818,783],[692,271],[591,246],[577,515],[753,416],[617,134],[791,755],[228,888],[340,853],[238,675],[326,484],[323,811],[960,218],[636,103],[855,211],[771,545],[480,215],[451,448],[375,834],[448,634],[54,205],[984,126],[256,7],[266,54],[911,269],[890,731],[371,851],[439,397],[724,48],[548,575],[534,973],[785,17],[25,645],[555,776],[332,719],[607,331],[831,803],[683,908],[177,807],[367,601],[624,678],[325,615],[245,847],[273,587],[454,947],[458,115],[132,26],[920,142],[465,521],[157,737],[456,941],[601,9],[911,9],[178,393],[385,675],[717,410],[102,288],[197,209],[145,731],[19,623],[962,977],[480,336],[154,489],[227,987],[433,718],[371,269],[728,748],[918,459],[481,93],[177,109],[254,512],[256,320],[105,267],[530,742],[595,265],[331,463],[268,522],[401,10],[464,825],[920,276],[767,167],[978,528],[218,220],[107,35],[367,118],[732,43],[193,364],[785,336],[233,216],[519,181],[167,867],[952,591],[622,635],[10,502],[946,874],[34,731],[783,837],[670,472],[421,426],[344,534],[555,478],[596,909],[864,60],[28,93],[66,641],[172,292],[784,595],[829,393],[670,36],[160,845],[294,193],[828,343],[856,763],[168,937],[749,879],[349,953],[998,329],[501,241],[578,471],[986,849],[301,666],[754,642],[724,426],[222,174],[581,615],[438,933],[902,960],[318,477],[558,319],[648,65],[723,789],[807,543],[766,340],[137,992],[989,336],[39,6],[750,988],[312,807],[103,88],[372,602],[117,514],[217,943],[991,91],[832,775],[379,162],[506,867],[613,488],[326,951],[139,836],[452,849],[866,488],[984,224],[623,233],[821,942],[429,32],[805,246],[830,568],[925,845],[198,789],[538,659],[76,424],[596,256],[485,282],[606,301],[545,180],[352,462],[145,674],[329,989],[799,273],[283,67],[989,739],[859,487],[271,930],[464,398],[818,695],[10,536],[789,167],[417,693],[345,11],[217,666],[763,60],[496,292],[125,630],[829,651],[654,372],[929,266],[524,375],[720,311],[712,235],[34,255],[26,510],[73,772],[439,844],[34,405],[665,969],[745,357],[883,856],[629,835],[226,773],[986,933],[923,620],[660,904],[271,281],[942,520],[293,584],[955,547],[834,63],[6,265],[974,648],[830,377],[13,720],[597,752],[229,568],[841,137],[691,459],[38,946],[863,324],[828,93],[630,789],[609,378],[35,206],[307,527],[817,938],[264,577],[752,218],[525,10],[380,434],[98,271],[788,988],[761,906],[685,742],[936,589],[287,652],[958,567],[517,547],[392,556],[595,224],[631,160],[307,58],[584,708],[941,172],[468,887],[630,666],[881,315],[115,918],[169,96],[54,209],[208,815],[239,381],[534,931],[293,506],[976,2],[69,954],[442,553],[463,598],[732,720],[700,171],[104,666],[774,341],[504,404],[711,545],[5,532],[419,469],[202,629],[950,824],[31,120],[26,277],[333,629],[837,802],[198,187],[699,903],[807,590],[610,205],[396,731],[763,124],[852,276],[860,887],[681,222],[208,266],[982,141],[371,548],[990,952],[682,150],[941,527],[314,916],[88,91],[643,497],[923,309],[645,565],[417,966],[431,961],[969,342],[601,208],[919,527],[720,967],[255,249],[306,280],[977,398],[961,995],[305,172],[199,620],[412,654],[556,349],[229,275],[793,19],[200,351],[541,800],[367,695],[905,886],[999,303],[477,382],[410,542],[415,282],[643,916],[166,225],[40,634],[272,586],[583,418],[353,244],[167,336],[565,815],[985,495],[966,53],[253,179],[198,970],[700,222],[881,100],[126,893],[529,434],[322,735],[987,700],[970,64],[252,132],[982,525],[148,356],[257,24],[961,225],[353,894],[978,427],[593,725],[646,96],[942,793],[751,263],[332,82],[431,859],[359,382],[245,220],[330,151],[721,489],[442,37],[57,174],[833,433],[681,56],[939,62],[589,69],[350,541],[817,425],[717,175],[593,925],[617,997],[378,365],[286,976],[35,28],[446,505],[523,665],[179,26],[955,934],[937,698],[333,232],[137,629],[81,177],[647,517],[779,65],[440,485],[804,622],[254,55],[337,77],[233,27],[23,642],[8,932],[909,602],[147,592],[93,353],[664,212],[336,851],[553,757],[32,991],[61,974],[492,617],[977,133],[179,873],[148,876],[790,435],[772,70],[526,58],[746,704],[345,827],[234,847],[334,206],[286,897],[586,502],[770,651],[829,575],[679,670],[196,564],[728,219],[253,463],[139,139],[436,469],[508,417],[103,697],[711,799],[103,653],[408,177],[734,671],[630,698],[789,279],[299,125],[693,61],[204,714],[162,940],[529,20],[880,421],[163,813],[188,876],[142,788],[820,164],[382,362],[796,59],[315,398],[642,764],[938,269],[33,997],[653,269],[589,506],[309,560],[186,535],[726,732],[253,522],[82,828],[38,596],[592,981],[533,861],[288,912],[961,966],[368,670],[510,434],[424,186],[60,252],[823,510],[896,779],[45,492],[271,55],[85,296],[569,560],[385,183],[974,911],[667,315],[62,117],[930,938],[547,473],[882,215],[744,96],[538,539],[447,961],[266,324],[16,373],[361,884],[503,663],[556,795],[720,4],[828,882],[316,440],[394,627],[830,307],[128,164],[258,765],[943,520],[228,234],[389,519],[326,131],[152,327],[926,899],[86,964],[975,88],[347,171],[679,156],[349,538],[300,434],[614,700],[954,207],[650,215],[392,633],[785,696],[101,864],[401,2],[929,505],[473,919],[879,568],[944,284],[914,735],[412,944],[509,151],[792,389],[306,489],[327,944],[54,936],[309,256],[218,662],[789,668],[550,585],[809,56],[91,431],[446,932],[417,280],[546,965],[203,787],[281,408],[872,238],[443,212],[553,894],[225,632],[525,848],[591,432],[156,656],[959,336],[203,167],[700,472],[898,209],[60,488],[704,359],[687,179],[872,315],[660,917],[290,900],[581,890],[337,225],[922,472],[937,687],[38,177],[589,401],[461,788],[292,980],[870,153],[227,519],[324,509],[876,447],[952,900],[203,17],[278,841],[702,854],[967,386],[895,773],[312,795],[22,426],[849,131],[293,234],[661,965],[929,366],[878,802],[199,88],[828,821],[613,281],[589,681],[479,298],[858,751],[797,719],[677,676],[207,524],[428,449],[916,26],[647,299],[103,325],[104,18],[608,714],[139,475],[77,255],[464,377],[297,603],[487,513],[496,120],[676,71],[165,53],[952,83],[94,820],[378,423],[794,477],[93,597],[1000,407],[272,480],[309,997],[625,613],[1000,566],[285,267],[495,968],[101,682],[361,315],[442,989],[432,273],[324,971],[106,973],[37,829],[644,295],[952,972],[536,518],[848,12],[140,479],[457,551],[16,424],[451,9],[684,164],[531,231],[235,342],[574,268],[676,608],[972,813],[362,606],[793,528],[896,235],[487,445],[839,324],[336,412],[169,293],[19,999],[705,555],[50,424],[501,941],[948,610],[722,880],[870,830],[280,987],[951,280],[459,686],[968,915],[225,407],[261,915],[325,72],[436,85],[888,217],[825,343],[547,242],[206,270],[615,545],[444,606],[627,316],[993,917],[99,920],[997,800],[741,532],[982,226],[764,406],[954,57],[503,823],[997,21],[530,733],[703,124],[410,840],[4,380],[933,934],[653,453],[602,837],[164,28],[225,658],[888,959],[784,853],[310,21],[425,504],[435,599],[740,644],[39,489],[577,439],[700,490],[744,819],[66,307],[251,681],[244,4],[445,144],[694,849],[539,373],[376,734],[432,923],[856,597],[985,634],[771,427],[298,59],[58,691],[638,458],[17,295],[237,227],[116,79],[239,846],[30,113],[63,577],[981,490],[924,418],[16,833],[886,397],[824,261],[970,436],[815,169],[295,300],[748,42],[90,560],[592,213],[833,937],[72,111],[172,84],[957,873],[458,181],[197,423],[392,387],[349,783],[17,35],[847,46],[425,942],[626,705],[681,628],[971,673],[853,91],[565,603],[379,807],[630,314],[226,650],[166,223],[728,489],[976,416],[911,840],[96,500],[742,541],[726,550],[761,217],[407,83],[492,850],[806,141],[143,929],[370,228],[104,658],[639,273],[298,677],[774,553],[36,688],[926,40],[511,543],[431,846],[78,163],[303,325],[701,479],[415,897],[178,765],[113,799],[578,823],[16,804],[578,657],[476,250],[590,989],[111,164],[854,958],[154,474],[733,893],[719,250],[880,283],[615,491],[643,160],[636,85],[350,897],[251,476],[241,320],[876,623],[545,317],[481,842],[994,423],[787,685],[687,442],[687,559],[195,755],[572,939],[209,778],[803,365],[582,30],[244,855],[398,731],[656,897],[901,511],[744,280],[20,231],[608,542],[194,110],[373,570],[564,524],[809,476],[598,813],[806,387],[202,831],[831,251],[802,794],[173,477],[350,444],[897,390],[778,193],[448,354],[320,21],[531,409],[79,599],[957,176],[262,364],[540,257],[562,144],[506,278],[995,819],[763,432],[316,877],[990,677],[214,930],[388,31],[792,519],[158,153],[906,449],[824,189],[779,134],[914,637],[980,140],[518,668],[713,64],[502,20],[362,907],[383,775],[884,688],[868,688],[311,753],[428,314],[528,610],[407,722],[182,647],[588,158],[11,935],[792,290],[466,684],[178,499],[426,746],[363,864],[389,86],[47,146],[601,969],[120,915],[873,279],[544,654],[92,190],[786,453],[795,516],[845,748],[93,399],[380,533],[178,369],[472,305],[716,64],[826,370],[739,779],[270,959],[80,374],[46,857],[681,135],[380,670],[961,855],[507,837],[364,985],[921,927],[224,859],[221,181],[328,704],[4,798],[842,759],[162,700],[330,915],[802,198],[241,985],[527,967],[676,360],[68,350],[224,645],[870,533],[369,38],[1000,860],[373,226],[636,336],[757,676],[508,391],[751,635],[357,944],[846,717],[531,308],[504,254],[109,629],[6,658],[255,421],[274,776],[112,80],[343,588],[99,944],[147,446],[210,285],[58,757],[824,547],[730,219],[355,275],[23,287],[776,161],[880,152],[9,325],[251,996],[243,501],[525,29],[1,620],[354,726],[480,558],[880,430],[405,24],[71,762],[563,298],[234,711],[202,730],[616,665],[821,598],[620,716],[796,79],[659,468],[485,977],[753,198],[778,763],[625,39],[885,109],[552,16],[710,914],[111,672],[887,320],[444,261],[497,949],[873,623],[530,436],[154,363],[868,78],[681,555],[639,84],[565,526],[406,505],[202,568],[764,718],[16,190],[497,96],[692,349],[367,873],[641,439],[609,735],[12,251],[577,868],[916,541],[748,693],[71,593],[785,177],[999,258],[42,182],[85,646],[649,87],[168,458],[952,932],[600,788],[711,119],[131,464],[642,886],[808,992],[233,827],[294,843],[597,869],[914,647],[98,375],[361,667],[292,656],[411,503],[131,541],[474,16],[307,59],[481,214],[688,48],[87,441],[394,935],[937,949],[437,205],[548,287],[42,580],[751,684],[445,603],[168,117],[575,880],[806,725],[245,730],[824,166],[445,926],[156,169],[758,399],[765,225],[893,87],[952,644],[877,431],[214,942],[852,838],[440,14],[693,481],[560,755],[306,132],[17,707],[629,270],[463,725],[971,591],[163,3],[865,742],[783,131],[127,928],[560,689],[861,47],[243,33],[801,254],[838,638],[737,248],[760,67],[46,51],[323,57],[131,128],[722,26],[797,372],[251,226],[470,132],[730,784],[833,882],[176,756],[200,552],[497,584],[33,301],[816,237],[176,930],[698,479],[484,496],[744,123],[317,706],[512,234],[22,830],[909,234],[717,459],[74,720],[482,17],[455,726],[560,760],[389,832],[301,5],[291,942],[834,765],[707,744],[801,146],[501,334],[976,661],[538,445],[877,497],[602,510],[591,125],[659,337],[859,121],[475,446],[36,417],[867,193],[67,985],[341,45],[399,155],[630,629],[140,52],[626,747],[549,921],[187,362],[388,483],[874,830],[667,422],[554,412],[600,106],[526,805],[947,103],[182,480],[49,126],[538,681],[751,259],[403,689],[417,94],[863,951],[685,310],[183,711],[32,963],[759,413],[170,944],[261,929],[159,547],[978,675],[569,793],[460,967],[569,439],[179,193],[918,339],[182,567],[825,854],[202,36],[222,276],[487,993],[923,758],[877,314],[759,353],[967,164],[964,686],[56,949],[252,968],[282,260],[766,226],[109,224],[756,853],[389,293],[502,376],[299,96],[619,863],[721,896],[316,680],[335,308],[398,720],[293,735],[757,855],[701,239],[190,654],[736,638],[208,383],[85,437],[735,291],[21,274],[854,946],[984,52],[888,973],[795,182],[748,820],[708,139],[618,338],[587,64],[4,918],[485,46],[563,993],[117,198],[920,102],[762,100],[29,707],[574,9],[179,586],[638,243],[993,462],[663,525],[689,814],[177,47],[642,861],[573,68],[494,256],[243,359],[405,905],[67,99],[945,115],[739,239],[60,316],[967,484],[543,979],[794,572],[195,400],[196,825],[47,192],[661,668],[718,759],[191,866],[251,27],[549,973],[390,508],[550,325],[948,800],[74,672],[62,931],[717,887],[597,304],[181,467],[507,53],[623,92],[369,748],[394,799],[969,306],[59,557],[338,805],[829,5],[110,295],[849,587],[810,729],[183,227],[146,381],[785,124],[42,878],[269,814],[227,770],[823,87],[55,831],[158,239],[977,896],[397,798],[292,64],[40,477],[755,933],[656,134],[315,383],[379,659],[92,895],[281,866],[381,214],[415,306],[363,385],[250,232],[192,756],[442,802],[11,533],[533,274],[535,104],[749,548],[143,564],[499,313],[513,360],[706,609],[424,622],[889,107],[841,74],[187,393],[696,843],[959,651],[664,747],[111,896],[278,285],[716,112],[683,41],[534,607],[709,556],[604,611],[902,206],[5,648],[402,206],[437,737],[853,480],[649,148],[699,695],[306,817],[209,871],[984,786],[25,285],[483,653],[893,161],[194,567],[9,906],[48,160],[103,683],[342,670],[108,274],[550,734],[166,409],[187,209],[123,987],[550,894],[837,860],[853,628],[24,294],[115,501],[187,841],[411,737],[90,888],[86,284],[962,671],[567,599],[579,203],[262,221],[59,56],[745,987],[611,199],[735,736],[768,500],[286,716],[947,924],[941,43],[512,270],[443,639],[642,627],[615,888],[668,460],[246,777],[144,128],[714,678],[539,314],[835,396],[758,862],[759,739],[503,510],[287,105],[940,950],[837,940],[765,352],[823,541],[301,566],[429,570],[598,476],[337,384],[496,525],[934,325],[689,168],[910,977],[880,529],[945,384],[209,882],[750,930],[166,948],[498,700],[345,972],[102,411],[160,928],[149,588],[315,726],[882,269],[208,428],[753,365],[4,554],[663,454],[772,9],[358,195],[415,832],[653,275],[249,553],[34,194],[58,810],[178,296],[621,812],[90,250],[593,625],[76,374],[568,658],[600,999],[452,608],[97,974],[732,870],[310,443],[430,258],[965,608],[727,691],[371,206],[160,40],[704,829],[982,351],[835,407],[807,376],[172,483],[989,915],[848,579],[195,854],[777,894],[256,377],[637,662],[510,545],[253,488],[603,309],[138,225],[953,447],[273,278],[488,432],[553,482],[535,273],[989,808],[869,698],[228,606],[123,608],[559,555],[450,105],[831,23],[285,581],[328,647],[128,659],[962,168],[695,175],[801,813],[273,970],[551,974],[173,701],[116,601],[85,773],[24,569],[719,220],[279,56],[572,529],[655,348],[519,607],[453,381],[435,689],[74,664],[553,372],[293,813],[326,396],[696,829],[32,322],[422,497],[392,821],[114,709],[555,311],[669,223],[824,212],[457,365],[298,551],[324,270],[649,288],[425,579],[754,83],[276,595],[601,536],[336,833],[292,597],[698,518],[729,915],[940,590],[202,951],[922,949],[861,86],[828,42],[222,334],[463,704],[686,556],[744,41],[398,638],[232,122],[325,746],[67,681],[743,529],[199,187],[846,117],[78,897],[854,976],[354,673],[88,341],[218,199],[44,821],[193,971],[156,509],[402,124],[747,798],[419,974],[140,631],[773,780],[104,232],[823,787],[279,337],[107,112],[885,9],[88,509],[230,651],[744,702],[877,681],[386,529],[550,658],[499,899],[963,17],[360,520],[885,978],[962,597],[206,651],[36,905],[994,537],[383,345],[194,314],[756,770],[579,360],[467,195],[932,152],[615,873],[593,847],[362,106],[782,868],[152,692],[248,622],[297,780],[278,334],[411,896],[4,492],[859,967],[900,145],[552,611],[790,429],[974,781],[226,231],[243,264],[416,346],[322,161],[120,41],[808,14],[820,96],[12,837],[444,672],[270,28],[768,613],[985,451],[953,741],[47,2],[92,438],[255,804],[87,764],[425,505],[788,595],[579,345],[757,719],[452,737],[479,827],[328,469],[762,575],[682,806],[351,257],[70,48],[840,543],[69,424],[177,29],[625,516],[660,782],[758,983],[377,388],[53,854],[486,477],[968,93],[799,303],[994,655],[420,258],[495,163],[539,513],[421,297],[284,665],[253,377],[901,597],[139,558],[804,918],[518,461],[310,28],[637,376],[435,439],[483,158],[153,996],[292,490],[812,749],[455,511],[964,327],[370,410],[703,402],[296,167],[686,74],[532,476],[975,166],[589,111],[414,163],[425,278],[778,843],[991,529],[216,839],[38,445],[697,50],[172,638],[744,785],[480,219],[342,515],[493,386],[549,395],[288,500],[285,246],[369,49],[826,584],[609,8],[401,67],[390,82],[114,227],[723,838],[416,922],[177,956],[908,81],[927,353],[852,709],[814,712],[841,449],[434,957],[761,980],[782,471],[365,682],[264,927],[615,542],[438,522],[456,459],[695,609],[907,331],[238,935],[385,643],[353,558],[108,126],[893,807],[875,959],[215,728],[898,991],[757,314],[852,12],[482,977],[162,799],[90,433],[529,115],[303,176],[37,557],[196,467],[23,758],[959,701],[215,811],[758,2],[411,798],[696,718],[16,748],[452,451],[77,675],[547,96],[539,122],[658,174],[746,703],[912,613],[606,8],[348,662],[531,699],[905,568],[368,125],[687,14],[354,40],[624,705],[870,529],[722,816],[199,514],[640,608],[194,292],[238,369],[809,947],[341,849],[185,766],[233,741],[195,685],[826,245],[172,632],[1000,358],[215,634],[892,862],[231,609],[773,665],[291,611],[388,456],[133,968],[469,108],[233,589],[707,333],[859,26],[772,869],[691,873],[480,306],[33,53],[570,149],[656,864],[913,574],[828,126],[347,914],[685,701],[62,52],[693,746],[778,362],[188,337],[917,41],[122,407],[944,241],[870,405],[469,543],[350,267],[339,789],[525,304],[471,850],[705,866],[257,350],[645,214],[620,619],[140,264],[606,443],[13,247],[739,131],[499,268],[902,133],[840,110],[873,759],[592,702],[191,996],[159,493],[560,793],[300,263],[982,210],[169,418],[189,799],[334,929],[270,762],[276,452],[554,673],[934,426],[562,798],[509,769],[742,80],[310,348],[369,875],[793,462],[36,133],[268,452],[740,647],[238,833],[102,79],[204,497],[624,967],[712,105],[276,619],[337,612],[938,483],[293,693],[4,753],[884,531],[783,818],[164,197],[534,978],[533,318],[464,512],[877,381],[22,759],[116,255],[811,657],[615,418],[567,365],[632,260],[618,184],[568,235],[228,194],[396,712],[73,181],[273,3],[5,629],[775,89],[888,742],[308,431],[891,361],[271,757],[132,923],[229,842],[580,562],[431,210],[388,731],[218,593],[471,617],[930,149],[161,722],[74,226],[728,808],[630,143],[572,246],[451,904],[529,987],[767,281],[779,23],[229,400],[86,575],[305,35],[882,712],[368,836],[477,974],[374,696],[828,891],[20,488],[871,960],[830,182],[164,513],[547,833],[700,741],[291,446],[296,471],[571,901],[314,752],[905,419],[76,418],[70,739],[783,579],[12,896],[740,792],[340,837],[151,332],[412,177],[96,810],[161,796],[254,717],[65,891],[802,323],[703,91],[967,433],[468,589],[825,455],[695,845],[715,115],[666,515],[230,668],[531,235],[573,706],[710,742],[414,670],[501,77],[255,800],[31,225],[492,721],[58,546],[29,312],[775,952],[197,3],[408,885],[221,860],[756,690],[132,340],[924,777],[341,596],[717,131],[818,103],[528,461],[610,269],[306,156],[358,663],[933,637],[975,750],[221,439],[656,458],[518,91],[249,307],[240,909],[884,844],[665,205],[93,575],[307,641],[153,83],[417,64],[789,620],[876,886],[185,533],[865,406],[939,77],[403,586],[882,153],[461,916],[440,365],[959,799],[874,186],[161,317],[406,557],[827,59],[949,591],[273,761],[65,101],[953,948],[627,44],[272,162],[404,344],[614,251],[739,967],[57,801],[302,870],[831,828],[914,203],[746,627],[673,260],[827,601],[532,769],[266,410],[983,68],[941,474],[845,875],[854,804],[571,547],[421,682],[623,108],[561,537],[318,603],[839,694],[633,14],[632,296],[564,671],[804,987],[988,814],[681,735],[663,19],[739,4],[230,724],[772,98],[424,593],[634,779],[175,587],[979,248],[309,275],[889,616],[301,718],[681,625],[382,612],[384,612],[162,325],[726,780],[369,936],[142,713],[128,118],[867,145],[498,409],[634,197],[452,560],[137,566],[931,296],[804,7],[72,82],[985,467],[834,477],[4,220],[718,176],[351,641],[32,760],[656,937],[600,93],[639,645],[737,483],[568,711],[371,615],[807,202],[634,545],[205,400],[661,665],[58,420],[489,107],[163,298],[701,785],[979,915],[598,903],[628,703],[871,463],[686,621],[47,405],[58,685],[436,908],[651,241],[803,372],[938,767],[175,375],[813,685],[634,515],[244,459],[385,557],[857,297],[486,234],[971,128],[3,955],[301,53],[379,319],[246,877],[244,877],[354,56],[444,454],[380,609],[488,298],[614,816],[291,26],[299,169],[630,158],[600,184],[578,988],[97,93],[126,204],[387,576],[271,732],[489,735],[312,282],[171,777],[838,524],[929,24],[865,175],[226,193],[557,95],[869,612],[798,950],[207,837],[134,104],[829,208],[615,602],[845,399],[41,534],[296,334],[473,96],[609,592],[934,877],[685,8],[387,879],[959,118],[374,305],[15,360],[184,61],[476,187],[567,844],[109,283],[885,236],[3,838],[141,320],[395,90],[162,831],[961,895],[931,739],[99,2],[376,837],[716,455],[873,700],[430,576],[77,950],[79,339],[540,724],[89,862],[986,14],[519,575],[315,721],[430,832],[527,817],[181,717],[224,116],[48,506],[157,832],[604,554],[641,253],[251,33],[258,554],[693,621],[58,768],[207,340],[600,814],[713,125],[530,826],[631,482],[590,89],[779,312],[501,943],[734,107],[893,496],[875,764],[742,983],[968,829],[709,366],[911,455],[930,614],[332,516],[889,133],[625,812],[172,367],[842,600],[114,376],[939,947],[725,751],[526,611],[462,922],[161,536],[25,820],[928,674],[692,404],[389,335],[823,916],[454,66],[40,92],[433,764],[401,83],[878,942],[98,272],[697,340],[186,372],[644,605],[581,620],[31,576],[127,493],[590,47],[807,857],[155,780],[910,289],[797,830],[120,299],[722,455],[550,223],[249,157],[18,371],[782,645],[715,212],[761,431],[151,568],[565,229],[753,423],[142,614],[469,281],[303,55],[661,481],[568,590],[299,559],[444,893],[861,252],[259,384],[735,896],[357,982],[781,348],[175,368],[850,738],[120,891],[195,921],[894,184],[495,646],[792,712],[344,80],[466,185],[2,250],[463,926],[252,138],[219,707],[435,441],[272,329],[425,479],[918,116],[177,253],[979,800],[883,944],[591,343],[961,731],[598,144],[242,547],[706,463],[215,184],[746,466],[709,934],[783,716],[132,727],[363,486],[472,866],[181,443],[981,178],[904,828],[45,989],[269,633],[530,600],[295,636],[488,273],[406,282],[161,586],[285,40],[749,511],[817,587],[115,835],[639,368],[208,145],[343,961],[412,867],[849,758],[33,519],[471,92],[36,271],[17,896],[589,284],[847,549],[856,414],[104,512],[67,900],[313,555],[28,100],[817,349],[818,770],[566,457],[513,871],[598,483],[582,168],[153,663],[598,795],[622,956],[851,396],[638,927],[369,108],[665,794],[520,32],[746,229],[86,715],[600,823],[800,155],[596,730],[490,374],[107,478],[164,938],[785,977],[221,169],[890,208],[532,456],[860,538],[647,401],[816,873],[100,51],[508,721],[170,118],[251,785],[392,195],[661,475],[438,952],[166,884],[234,649],[109,189],[857,700],[203,843],[360,338],[607,925],[671,44],[738,465],[427,143],[441,423],[452,544],[408,354],[427,517],[437,84],[529,510],[123,805],[85,461],[273,35],[468,435],[205,336],[768,778],[52,992],[759,403],[153,158],[927,361],[103,223],[835,68],[479,789],[219,731],[721,690],[372,140],[294,11],[206,658],[331,710],[295,866],[479,992],[942,109],[313,954],[479,516],[483,155],[876,386],[945,604],[603,690],[5,583],[291,522],[151,904],[225,819],[518,395],[314,366],[550,734],[458,44],[835,460],[844,235],[318,629],[797,425],[779,865],[604,838],[479,124],[638,801],[735,651],[580,312],[996,445],[58,626],[823,458],[864,409],[436,992],[70,678],[503,36],[243,578],[238,799],[234,392],[630,179],[814,551],[539,89],[329,87],[536,425],[180,343],[318,83],[130,407],[383,846],[48,724],[905,715],[946,325],[270,944],[822,106],[830,286],[982,337],[887,721],[758,664],[972,174],[435,333],[632,364],[535,686],[870,560],[986,384],[757,964],[973,229],[358,230],[880,137],[457,114],[303,281],[816,404],[913,826],[542,518],[365,911],[737,759],[448,597],[425,133],[308,889],[479,325],[580,545],[487,907],[325,482],[872,993],[80,996],[839,734],[203,653],[418,979],[498,865],[605,526],[758,753],[503,910],[238,947],[602,526],[743,799],[485,275],[81,183],[833,977],[375,472],[838,468],[370,538],[561,770],[805,146],[177,412],[122,170],[813,75],[367,488],[798,248],[939,657],[76,299],[829,826],[71,95],[220,143],[135,404],[144,634],[438,495],[740,856],[70,796],[857,442],[146,622],[733,648],[8,447],[437,456],[398,545],[244,481],[881,155],[805,883],[680,780],[703,131],[746,116],[415,596],[378,613],[786,594],[53,783],[345,224],[99,653],[676,355],[308,862],[517,378],[980,841],[49,410],[174,901],[898,831],[41,203],[157,712],[227,89],[282,835],[829,96],[952,960],[152,632],[727,473],[562,260],[502,118],[687,667],[853,998],[796,678],[253,854],[911,741],[258,483],[547,51],[319,397],[499,535],[306,621],[36,412],[858,870],[105,521],[499,732],[220,268],[432,939],[441,388],[680,734],[58,32],[869,361],[239,329],[161,244],[730,149],[835,635],[438,420],[102,464],[53,336],[845,497],[716,331],[183,942],[190,64],[610,970],[772,518],[308,927],[751,826],[290,832],[115,323],[511,996],[503,503],[484,199],[649,860],[240,819],[149,901],[852,763],[611,678],[340,676],[472,614],[884,307],[534,472],[342,893],[512,730],[134,366],[882,645],[455,165],[539,747],[272,346],[221,420],[591,926],[89,527],[48,68],[832,564],[501,595],[876,402],[545,377],[87,828],[589,844],[72,473],[871,713],[890,619],[954,140],[512,139],[196,959],[703,472],[61,831],[786,451],[754,679],[467,992],[608,668],[188,407],[697,95],[526,573],[45,199],[594,104],[214,709],[706,186],[607,492],[109,384],[640,869],[809,981],[959,213],[226,912],[264,123],[238,702],[623,734],[502,901],[702,967],[736,982],[875,296],[504,108],[339,39],[893,631],[748,272],[236,801],[574,641],[451,240],[636,834],[230,690],[94,501],[213,782],[876,105],[986,768],[157,16],[920,315],[427,517],[218,213],[955,668],[265,509],[505,578],[512,314],[837,197],[408,393],[729,155],[671,752],[196,647],[433,851],[472,360],[568,411],[32,87],[806,187],[171,712],[644,938],[135,289],[470,52],[269,392],[859,144],[78,288],[147,966],[784,754],[600,55],[308,854],[820,662],[319,285],[26,391],[402,840],[567,477],[632,49],[317,740],[560,491],[748,718],[266,117],[10,584],[557,59],[556,187],[905,49],[675,225],[646,328],[445,511],[566,177],[621,380],[359,322],[948,34],[553,274],[934,881],[626,49],[532,594],[997,206],[367,612],[265,961],[905,436],[547,158],[676,163],[465,650],[806,556],[303,122],[287,52],[56,57],[716,314],[460,445],[474,681],[387,35],[281,437],[746,406],[146,348],[871,696],[132,863],[644,237],[564,326],[966,960],[833,921],[200,669],[651,486],[828,95],[791,685],[158,401],[237,997],[519,700],[745,286],[369,394],[373,44],[56,480],[361,717],[568,437],[740,497],[230,215],[239,528],[901,823],[369,164],[351,553],[829,304],[530,375],[857,730],[438,449],[286,719],[236,958],[133,699],[1,769],[744,91],[387,686],[868,135],[766,61],[110,717],[234,391],[805,876],[782,550],[584,209],[179,882],[680,477],[71,61],[206,360],[330,695],[931,619],[392,123],[817,31],[198,592],[708,163],[988,148],[875,503],[241,688],[660,451],[453,822],[572,16],[630,304],[694,990],[252,884],[14,950],[64,406],[934,207],[125,101],[88,917],[576,224],[721,369],[229,585],[489,96],[535,212],[80,53],[447,847],[839,347],[904,512],[757,122],[124,918],[942,208],[491,413],[786,873],[342,40],[366,280],[28,723],[743,768],[780,115],[302,794],[285,117],[99,809],[474,281],[930,555],[121,139],[459,488],[985,701],[881,717],[82,53],[764,850],[215,839],[245,616],[676,24],[154,48],[148,367],[257,560],[963,547],[365,179],[613,764],[992,857],[709,525],[413,646],[902,845],[912,455],[670,153],[837,63],[671,809],[796,479],[350,636],[528,938],[127,786],[123,904],[468,251],[456,652],[507,412],[891,923],[469,543],[90,238],[758,264],[104,688],[742,382],[216,798],[802,313],[840,567],[413,759],[845,484],[565,628],[617,192],[265,759],[281,248],[447,644],[598,657],[925,393],[999,454],[482,310],[175,391],[869,439],[92,174],[73,263],[169,744],[525,579],[426,782],[581,801],[784,679],[532,644],[77,98],[975,252],[976,379],[136,578],[406,800],[78,257],[163,778],[494,653],[400,8],[755,760],[175,881],[836,54],[974,944],[927,176],[803,296],[258,931],[701,677],[380,14],[816,196],[591,224],[229,479],[172,440],[612,520],[699,804],[43,502],[480,332],[221,413],[193,929],[702,8],[604,860],[422,156],[903,148],[94,397],[550,665],[869,495],[721,684],[498,885],[212,632],[219,565],[586,305],[109,860],[635,203],[163,854],[368,472],[867,541],[401,604],[701,436],[638,258],[45,651],[617,525],[375,858],[706,188],[203,347],[765,934],[478,287],[505,159],[532,145],[155,216],[957,182],[623,728],[459,470],[115,792],[281,477],[766,832],[80,985],[867,717],[837,809],[719,437],[744,556],[949,918],[695,832],[374,102],[490,787],[828,804],[104,966],[936,70],[660,272],[873,135],[575,696],[556,315],[988,593],[42,554],[222,785],[860,753],[653,971],[360,937],[493,20],[839,393],[30,60],[624,207],[123,793],[133,857],[181,337],[399,10],[375,954],[961,563],[961,327],[740,942],[648,367],[244,717],[768,809],[101,490],[629,786],[306,260],[191,526],[340,734],[652,73],[651,719],[37,260],[840,905],[881,54],[630,244],[207,14],[607,354],[400,919],[424,165],[200,601],[847,681],[448,27],[558,867],[80,473],[621,123],[437,803],[702,387],[397,963],[522,560],[556,695],[787,457],[582,20],[341,899],[924,610],[728,104],[319,928],[408,307],[951,323],[13,915],[61,485],[648,296],[354,481],[580,363],[578,433],[415,923],[200,762],[16,977],[136,541],[823,736],[85,385],[493,128],[380,986],[188,789],[490,929],[256,680],[310,937],[254,518],[633,764],[797,106],[584,954],[847,106],[641,353],[802,168],[739,209],[920,393],[166,507],[649,661],[708,977],[711,232],[424,869],[130,341],[978,647],[403,718],[74,52],[451,613],[276,857],[614,800],[604,66],[455,372],[416,394],[42,366],[560,438],[195,651],[341,271],[10,448],[650,981],[379,41],[949,34],[599,659],[897,170],[375,472],[153,977],[256,416],[605,169],[495,596],[140,797],[770,934],[9,820],[378,712],[300,123],[246,609],[465,907],[340,882],[137,69],[602,967],[716,815],[532,821],[849,996],[89,685],[611,410],[925,762],[177,799],[305,593],[158,168],[817,382],[644,357],[409,332],[336,304],[703,645],[864,262],[188,887],[762,190],[769,766],[665,5],[111,911],[46,482],[977,218],[319,177],[234,325],[77,821],[703,931],[46,674],[147,339],[188,154],[149,667],[959,760],[862,258],[952,967],[742,289],[246,123],[35,4],[702,204],[391,691],[53,714],[525,67],[255,80],[757,239],[383,449],[108,227],[115,637],[37,891],[853,515],[413,798],[631,180],[169,910],[518,363],[572,916],[835,652],[835,602],[265,139],[909,596],[507,456],[752,560],[772,136],[485,922],[815,592],[988,182],[632,280],[52,421],[669,75],[799,582],[713,177],[856,128],[292,959],[398,931],[906,692],[833,492],[214,366],[914,845],[140,48],[678,363],[688,750],[931,573],[691,554],[470,814],[696,803],[407,969],[584,822],[496,604],[214,719],[588,699],[21,444],[221,259],[870,909],[741,855],[576,633],[425,406],[984,19],[974,221],[848,58],[597,314],[316,104],[949,342],[142,762],[481,919],[764,801],[759,60],[624,321],[912,556],[290,432],[162,639],[554,594],[623,846],[57,251],[448,231],[26,537],[319,988],[365,95],[927,255],[509,993],[512,984],[61,197],[224,703],[396,109],[561,630],[17,3],[987,255],[616,752],[588,997],[30,467],[457,454],[352,797],[435,247],[322,235],[718,18],[251,652],[187,339],[616,24],[10,385],[674,940],[156,564],[841,404],[599,471],[514,316],[374,590],[714,516],[18,137],[130,240],[856,62],[886,379],[206,171],[193,745],[139,222],[314,82],[175,717],[698,47],[535,80],[88,818],[360,253],[727,635],[460,245],[117,176],[863,164],[765,918],[567,740],[535,690],[619,750],[757,860],[934,141],[448,428],[141,854],[790,104],[378,587],[799,875],[753,835],[52,8],[232,34],[349,369],[768,262],[924,158],[41,952],[340,43],[388,920],[608,96],[631,245],[797,57],[162,308],[866,505],[73,512],[343,291],[637,555],[388,929],[720,612],[811,91],[8,193],[436,115],[422,699],[295,846],[524,477],[871,586],[276,918],[369,920],[486,285],[508,631],[871,592],[485,79],[279,642],[737,270],[225,149],[862,802],[422,29],[906,798],[508,547],[376,309],[536,54],[366,249],[258,482],[749,790],[89,698],[476,590],[179,219],[443,251],[821,890],[452,335],[859,807],[58,49],[436,563],[127,569],[122,635],[454,756],[795,57],[75,292],[178,913],[151,952],[362,169],[705,983],[991,786],[646,288],[560,618],[763,519],[553,79],[776,726],[730,442],[658,109],[906,499],[686,691],[144,500],[316,214],[991,783],[300,735],[993,58],[400,177],[504,330],[627,330],[118,258],[898,10],[882,919],[313,223],[35,68],[343,679],[460,812],[620,125],[933,630],[602,483],[230,403],[593,348],[25,600],[254,219],[24,717],[392,354],[948,660],[691,65],[112,159],[320,60],[618,384],[630,753],[601,411],[85,878],[433,277],[842,629],[419,642],[355,156],[653,673],[266,577],[734,346],[309,220],[76,341],[865,279],[715,224],[804,585],[29,769],[413,199],[874,473],[642,409],[536,859],[158,800],[408,493],[472,450],[224,343],[567,860],[540,147],[568,359],[343,378],[938,694],[54,155],[529,152],[390,863],[363,413],[188,449],[196,722],[263,244],[653,215],[80,858],[729,19],[880,633],[348,410],[439,959],[787,903],[376,907],[122,60],[621,721],[52,782],[159,228],[370,947],[485,813],[145,932],[219,691],[694,534],[205,777],[861,382],[289,583],[101,639],[734,380],[732,621],[852,858],[402,358],[844,314],[374,840],[117,640],[479,764],[735,11],[114,978],[451,942],[468,935],[933,196],[389,963],[363,208],[457,929],[265,153],[434,941],[794,456],[465,226],[114,911],[664,36],[64,46],[531,526],[255,989],[921,929],[903,648],[279,479],[228,681],[189,933],[122,985],[668,500],[433,829],[690,397],[170,553],[865,275],[64,708],[802,644],[824,750],[129,510],[81,665],[438,885],[491,516],[142,787],[387,746],[734,313],[178,234],[304,902],[575,695],[637,510],[386,210],[64,163],[629,186],[345,937],[573,654],[406,303],[231,540],[714,630],[133,669],[882,992],[698,785],[223,737],[504,614],[485,158],[157,953],[680,399],[948,621],[999,737],[143,800],[679,310],[459,834],[203,533],[502,325],[393,182],[494,294],[890,76],[347,288],[449,333],[779,966],[30,436],[248,671],[765,242],[471,597],[783,842],[948,494],[622,769],[659,47],[641,423],[310,491],[850,419],[4,977],[25,760],[137,685],[58,434],[989,834],[746,655],[235,335],[601,301],[790,343],[512,709],[400,387],[555,613],[259,284],[932,216],[140,930],[68,806],[783,259],[884,295],[223,386],[679,651],[111,174],[248,621],[873,495],[193,175],[136,641],[706,712],[203,846],[796,656],[384,148],[915,884],[649,344],[335,972],[257,168],[18,212],[998,857],[160,947],[463,92],[137,356],[81,284],[97,744],[591,688],[932,453],[656,17],[604,152],[961,354],[422,904],[3,275],[686,539],[861,494],[379,615],[587,748],[796,558],[379,204],[279,786],[832,9],[315,627],[644,185],[271,249],[875,987],[862,610],[610,527],[383,893],[961,583],[979,910],[561,781],[987,874],[494,487],[169,641],[471,908],[388,901],[679,269],[917,332],[280,277],[841,157],[439,848],[90,137],[348,145],[936,536],[775,925],[292,684],[939,237],[812,215],[124,157],[13,313],[190,758],[926,31],[675,166],[380,400],[809,593],[581,694],[618,783],[664,133],[482,898],[846,580],[506,636],[502,938],[9,61],[267,881],[674,490],[145,428],[309,661],[68,62],[690,531],[930,543],[921,6],[803,718],[389,325],[579,963],[484,616],[462,205],[449,686],[298,410],[959,976],[312,577],[538,545],[107,23],[345,650],[16,938],[398,465],[300,674],[946,590],[672,163],[957,452],[823,323],[906,483],[234,456],[270,960],[665,932],[932,672],[26,816],[973,384],[322,198],[216,722],[802,703],[76,800],[369,376],[840,142],[149,80],[67,346],[620,505],[138,441],[607,574],[858,591],[90,415],[242,962],[666,55],[551,275],[792,478],[269,958],[607,536],[113,5],[296,530],[679,262],[219,248],[267,177],[974,965],[159,547],[197,43],[53,513],[11,307],[902,123],[133,862],[961,512],[177,232],[610,1000],[567,659],[268,528],[193,952],[360,669],[174,159],[822,94],[460,94],[845,97],[998,701],[457,597],[216,734],[642,824],[446,962],[88,704],[820,14],[934,543],[554,350],[572,197],[764,601],[79,462],[870,397],[523,284],[642,551],[406,539],[767,583],[306,537],[369,392],[952,934],[633,453],[974,180],[81,529],[793,359],[818,772],[926,976],[749,763],[929,637],[368,498],[668,292],[131,195],[92,371],[784,153],[338,698],[116,366],[660,499],[726,193],[10,683],[901,632],[225,835],[986,782],[9,34],[844,219],[328,329],[339,971],[723,228],[935,815],[400,54],[353,981],[436,359],[485,501],[684,491],[637,966],[791,197],[426,708],[873,719],[814,714],[505,37],[479,244],[758,817],[760,91],[491,929],[668,267],[534,75],[733,67],[50,273],[439,950],[390,783],[652,892],[177,350],[817,499],[247,469],[790,459],[135,19],[125,162],[219,960],[359,152],[702,712],[829,533],[624,522],[630,425],[45,297],[192,528],[554,397],[587,87],[441,846],[164,106],[622,766],[993,90],[903,758],[555,931],[662,799],[300,42],[395,844],[621,433],[398,335],[279,908],[769,7],[759,552],[159,474],[242,632],[747,66],[308,422],[158,990],[599,125],[876,721],[231,914],[342,531],[947,753],[688,491],[831,891],[611,238],[683,267],[480,282],[200,414],[354,766],[457,792],[415,952],[825,426],[115,506],[742,624],[912,149],[751,159],[628,558],[104,727],[607,129],[713,440],[872,890],[846,408],[327,195],[652,10],[506,827],[696,824],[895,472],[759,776],[603,742],[268,218],[440,629],[478,904],[982,810],[392,575],[323,729],[204,940],[2,705],[982,827],[622,226],[332,600],[316,487],[642,323],[961,283],[419,210],[842,372],[821,120],[882,618],[528,109],[195,422],[504,869],[394,993],[59,363],[975,495],[931,530],[403,885],[511,808],[686,561],[254,553],[232,823],[238,393],[241,920],[295,981],[424,582],[207,882],[373,685],[586,151],[135,429],[726,362],[769,179],[634,555],[740,767],[74,860],[706,295],[695,828],[627,540],[273,124],[656,583],[459,58],[422,656],[707,998],[264,708],[741,894],[209,972],[990,476],[923,98],[285,313],[499,642],[956,645],[484,868],[703,688],[378,764],[364,575],[746,446],[522,866],[455,641],[788,784],[609,55],[135,997],[59,157],[582,580],[767,602],[781,477],[452,712],[137,712],[44,598],[225,742],[266,351],[787,559],[351,31],[76,713],[228,507],[324,703],[241,54],[54,225],[578,871],[789,197],[132,176],[653,725],[199,170],[454,642],[866,362],[657,746],[921,991],[493,652],[723,586],[543,836],[704,422],[342,909],[782,721],[500,549],[707,118],[586,797],[299,747],[155,521],[398,931],[131,108],[955,32],[975,376],[950,495],[786,92],[773,604],[299,743],[139,16],[534,29],[978,354],[857,42],[687,286],[417,638],[108,408],[688,837],[379,827],[707,200],[914,368],[833,763],[465,385],[282,171],[681,561],[342,657],[515,712],[147,928],[125,330],[788,14],[241,340],[827,75],[671,398],[426,435],[280,524],[27,876],[911,430],[162,168],[8,807],[750,423],[415,495],[492,652],[480,575],[953,777],[14,275],[469,339],[324,749],[961,997],[601,292],[678,531],[603,362],[330,290],[263,706],[46,997],[113,950],[549,592],[968,778],[624,533],[770,545],[461,612],[716,903],[286,354],[190,593],[847,781],[770,586],[937,378],[262,396],[644,564],[443,932],[96,479],[504,988],[916,718],[34,800],[501,701],[640,557],[70,714],[986,130],[143,663],[487,511],[380,726],[488,615],[128,36],[742,575],[432,960],[787,687],[533,269],[348,857],[365,55],[42,835],[671,974],[177,182],[700,183],[963,332],[759,856],[561,36],[131,355],[74,240],[772,142],[34,408],[974,574],[890,109],[310,979],[203,817],[51,659],[898,543],[485,819],[988,970],[191,41],[96,433],[859,540],[603,652],[878,31],[258,216],[417,392],[100,139],[568,801],[851,566],[981,488],[185,794],[429,738],[639,582],[764,884],[434,990],[939,253],[916,367],[950,610],[689,651],[933,105],[981,468],[30,456],[914,459],[328,483],[239,495],[982,531],[918,449],[815,314],[292,208],[170,12],[459,944],[271,758],[300,585],[993,586],[961,262],[396,485],[566,604],[600,161],[804,921],[864,421],[769,742],[205,884],[481,683],[26,39],[892,889],[968,825],[310,602],[791,252],[572,135],[369,985],[774,664],[278,525],[332,515],[601,87],[866,85],[751,814],[167,398],[540,819],[866,206],[328,941],[83,24],[767,903],[640,883],[529,670],[961,700],[390,655],[160,961],[878,674],[419,515],[967,677],[932,310],[749,178],[152,833],[204,284],[278,90],[441,541],[108,828],[918,491],[69,779],[913,758],[636,50],[265,229],[701,172],[368,296],[371,614],[104,978],[638,303],[171,254],[903,759],[402,353],[759,831],[995,96],[897,2],[635,16],[702,229],[103,643],[745,29],[205,97],[92,871],[315,641],[745,975],[573,418],[643,117],[104,578],[257,911],[212,451],[364,197],[67,972],[888,941],[789,819],[837,480],[913,455],[62,822],[764,542],[774,949],[440,379],[805,661],[702,209],[173,942],[268,666],[904,278],[299,588],[287,234],[380,704],[60,629],[237,648],[198,846],[910,972],[364,458],[871,447],[57,469],[992,222],[740,550],[419,535],[711,348],[151,363],[836,819],[130,602],[241,77],[662,536],[671,136],[347,256],[846,906],[341,224],[690,420],[139,719],[992,477],[235,953],[195,603],[619,503],[901,491],[653,780],[321,446],[857,361],[810,273],[243,80],[705,717],[511,800],[110,761],[593,269],[302,889],[965,853],[351,223],[35,319],[327,783],[643,824],[807,35],[69,142],[978,372],[267,495],[512,640],[169,116],[833,264],[127,613],[616,889],[519,406],[163,353],[912,188],[718,860],[253,37],[368,155],[256,322],[143,597],[238,405],[659,720],[237,19],[357,609],[526,190],[232,290],[276,654],[81,412],[659,590],[268,661],[504,291],[395,715],[783,246],[544,514],[251,438],[555,873],[30,947],[178,630],[386,990],[856,967],[6,426],[833,180],[338,865],[799,74],[153,873],[649,275],[651,267],[333,906],[774,580],[483,104],[442,835],[137,171],[198,543],[614,125],[585,190],[224,45],[294,842],[184,942],[414,261],[543,307],[323,833],[476,67],[153,837],[869,764],[678,373],[429,939],[343,55],[759,126],[553,680],[722,390],[456,806],[764,165],[25,341],[464,398],[837,45],[446,44],[94,919],[41,324],[707,595],[230,975],[28,276],[16,528],[321,808],[909,380],[773,500],[167,538],[336,151],[774,444],[864,842],[70,427],[244,895],[583,878],[168,204],[450,163],[220,978],[69,678],[438,35],[739,98],[879,872],[810,908],[344,521],[462,879],[321,457],[793,69],[238,563],[102,455],[311,746],[588,181],[159,798],[84,723],[811,507],[448,424],[484,593],[340,406],[914,542],[314,264],[808,885],[434,869],[900,767],[372,383],[263,843],[322,192],[244,215],[705,930],[550,883],[966,823],[877,639],[374,854],[237,482],[501,823],[421,410],[856,435],[792,500],[630,595],[759,5],[664,82],[943,822],[924,699],[46,510],[203,122],[988,625],[648,173],[718,661],[754,202],[154,773],[669,777],[756,325],[792,904],[892,340],[120,130],[106,677],[82,901],[169,893],[980,167],[779,924],[449,104],[322,631],[61,530],[234,664],[524,248],[189,171],[765,547],[180,644],[32,557],[228,640],[345,500],[527,184],[709,623],[760,798],[295,234],[848,895],[358,253],[588,749],[251,214],[502,812],[238,386],[227,910],[957,606],[678,889],[574,309],[531,882],[759,575],[204,598],[323,56],[190,892],[783,699],[399,64],[554,89],[238,19],[722,342],[336,342],[438,672],[652,856],[440,342],[343,955],[307,610],[274,119],[527,967],[367,360],[753,952],[693,801],[4,11],[67,298],[617,755],[771,811],[194,968],[696,834],[559,142],[262,877],[543,145],[894,575],[486,873],[124,99],[684,977],[485,693],[755,758],[451,699],[721,587],[333,956],[76,503],[334,312],[129,368],[19,734],[423,839],[326,669],[545,111],[272,191],[586,204],[347,246],[825,69],[504,49],[84,756],[678,75],[236,262],[203,309],[525,232],[632,107],[615,343],[701,862],[39,285],[788,558],[75,440],[779,945],[347,950],[632,698],[806,668],[656,100],[738,636],[708,904],[285,276],[239,73],[194,720],[468,231],[739,292],[184,440],[199,418],[62,128],[175,622],[171,605],[774,734],[94,595],[408,771],[240,776],[251,401],[813,285],[257,737],[568,387],[627,75],[470,312],[128,17],[736,4],[567,85],[111,849],[467,677],[977,635],[843,788],[107,712],[666,822],[549,652],[582,906],[362,800],[413,646],[960,389],[140,161],[152,924],[58,142],[670,753],[837,97],[186,196],[672,457],[114,636],[94,845],[454,446],[378,168],[642,630],[489,388],[515,903],[985,430],[332,938],[64,485],[720,61],[416,400],[217,11],[473,935],[425,674],[713,687],[242,681],[204,114],[899,180],[768,429],[699,203],[261,942],[755,19],[396,236],[902,889],[981,667],[633,645],[481,680],[455,136],[912,213],[584,235],[99,192],[883,759],[140,335],[679,590],[30,50],[670,65],[800,32],[477,277],[196,557],[935,832],[634,179],[210,372],[804,478],[794,761],[540,53],[628,911],[787,388],[272,895],[395,201],[564,265],[622,597],[309,12],[754,13],[829,434],[458,212],[669,94],[889,531],[551,544],[50,598],[290,728],[870,186],[81,325],[733,974],[70,999],[983,568],[88,682],[130,458],[293,651],[463,442],[835,516],[730,187],[319,782],[159,445],[915,143],[678,598],[167,560],[609,940],[247,585],[262,433],[441,285],[153,207],[223,714],[711,956],[590,95],[167,378],[794,319],[567,999],[615,46],[653,97],[939,640],[183,947],[761,514],[586,729],[914,807],[440,787],[943,481],[792,180],[161,392],[872,354],[669,930],[134,635],[609,745],[130,535],[197,420],[94,712],[791,510],[337,999],[754,444],[213,170],[162,998],[214,212],[466,790],[308,936],[169,267],[696,913],[31,858],[423,180],[318,338],[810,198],[960,980],[545,8],[458,571],[782,278],[600,227],[167,279],[22,306],[784,46],[55,31],[211,504],[895,401],[728,111],[904,811],[531,534],[28,342],[208,642],[588,493],[441,615],[153,223],[533,962],[542,631],[890,987],[511,548],[3,160],[906,877],[788,888],[277,108],[21,754],[230,125],[985,389],[834,308],[6,172],[31,438],[150,978],[208,981],[529,416],[294,960],[449,437],[146,185],[125,806],[31,36],[612,548],[439,822],[688,79],[14,567],[903,425],[985,507],[394,597],[557,232],[58,93],[631,499],[412,24],[623,351],[93,782],[393,307],[263,181],[864,632],[194,698],[670,678],[759,939],[815,2],[274,93],[664,330],[245,336],[851,895],[372,594],[291,566],[558,154],[969,108],[760,922],[610,939],[695,610],[463,306],[166,662],[286,727],[398,948],[582,1000],[909,744],[885,910],[162,545],[267,744],[249,623],[804,490],[223,470],[180,974],[124,227],[629,744],[762,41],[220,852],[941,320],[653,279],[445,439],[300,426],[624,528],[527,431],[997,54],[542,599],[913,839],[239,349],[799,256],[333,481],[682,617],[812,956],[326,389],[304,312],[726,395],[723,310],[561,610],[937,413],[540,218],[323,400],[791,902],[466,823],[369,526],[204,467],[300,753],[312,875],[990,499],[514,878],[493,810],[536,147],[844,630],[174,781],[811,34],[451,794],[520,485],[645,192],[437,301],[816,917],[528,589],[182,35],[487,275],[348,189],[184,496],[818,758],[562,730],[378,592],[122,299],[999,704],[376,410],[581,49],[467,113],[230,64],[719,681],[587,580],[807,762],[701,379],[167,207],[617,994],[756,691],[212,934],[735,500],[976,511],[496,24],[812,441],[237,324],[394,81],[962,963],[764,750],[810,417],[477,571],[787,859],[934,948],[675,592],[136,615],[117,660],[630,840],[64,872],[668,981],[462,704],[594,61],[251,46],[507,778],[777,568],[362,592],[57,633],[882,358],[250,481],[56,843],[948,593],[31,980],[176,777],[841,738],[535,433],[226,781],[510,324],[966,890],[951,437],[227,413],[250,662],[262,30],[625,872],[406,498],[770,758],[421,442],[614,781],[496,472],[469,148],[243,660],[642,902],[461,485],[857,37],[866,892],[614,550],[495,22],[727,626],[833,615],[983,698],[440,176],[15,131],[90,309],[804,27],[118,412],[445,635],[905,165],[500,896],[722,5],[108,345],[636,460],[585,189],[473,381],[437,713],[107,290],[183,179],[794,809],[851,690],[178,877],[923,64],[956,632],[907,482],[682,509],[168,357],[53,431],[759,764],[698,524],[19,751],[853,712],[12,158],[410,104],[771,427],[674,319],[81,166],[822,643],[627,665],[578,523],[67,406],[274,789],[998,377],[546,727],[959,872],[867,212],[706,319],[666,50],[679,41],[55,804],[173,432],[119,606],[486,914],[879,862],[536,506],[194,300],[459,262],[725,895],[919,282],[126,450],[662,287],[10,992],[344,43],[992,602],[875,63],[689,109],[802,185],[15,665],[599,208],[683,63],[547,154],[257,149],[391,174],[885,578],[538,247],[863,967],[930,622],[885,831],[862,533],[511,571],[841,435],[904,113],[882,775],[878,332],[83,386],[790,587],[992,659],[500,254],[309,661],[298,63],[973,752],[375,515],[736,541],[285,376],[454,667],[491,522],[571,979],[480,467],[164,18],[695,559],[158,852],[429,135],[160,151],[979,287],[480,545],[513,83],[310,802],[767,530],[510,206],[558,916],[160,311],[357,274],[165,641],[269,553],[135,207],[359,475],[499,182],[915,536],[557,353],[348,938],[76,419],[830,39],[517,662],[76,51],[303,202],[791,753],[984,1000],[82,914],[631,254],[17,966],[294,515],[222,958],[185,482],[753,439],[920,981],[440,439],[962,458],[900,292],[972,531],[222,410],[249,308],[528,238],[826,926],[595,42],[684,534],[477,518],[622,825],[388,148],[323,652],[309,448],[337,259],[945,896],[256,558],[317,465],[483,167],[847,839],[104,354],[788,812],[407,174],[366,551],[897,177],[248,335],[403,396],[120,149],[589,807],[612,932],[966,86],[332,36],[828,330],[41,93],[586,655],[622,210],[874,84],[251,233],[618,880],[69,294],[886,462],[296,857],[169,204],[821,787],[568,139],[4,497],[859,891],[431,922],[115,264],[458,113],[432,668],[647,990],[393,23],[582,248],[199,35],[936,171],[723,982],[189,491],[659,588],[335,706],[806,812],[581,648],[45,832],[717,9],[150,988],[136,959],[493,575],[946,719],[350,873],[900,526],[543,403],[98,857],[885,672],[300,369],[330,423],[407,933],[241,573],[175,578],[812,291],[904,369],[97,128],[49,592],[563,620],[722,318],[540,21],[685,400],[950,563],[841,694],[839,789],[378,283],[789,977],[233,820],[798,88],[491,348],[997,391],[702,537],[530,680],[318,221],[16,762],[88,413],[367,360],[226,116],[31,972],[810,919],[4,201],[238,22],[281,696],[950,135],[239,480],[194,616],[286,952],[807,899],[276,879],[222,592],[888,433],[937,720],[189,8],[539,240],[974,596],[612,506],[525,634],[317,965],[486,659],[906,244],[706,358],[737,326],[728,62],[8,466],[475,486],[440,987],[920,53],[861,272],[2,668],[330,531],[56,207],[577,216],[528,173],[890,633],[28,737],[108,951],[521,974],[614,830],[438,451],[390,333],[365,455],[518,783],[566,728],[23,598],[148,484],[775,593],[188,749],[378,303],[776,679],[385,351],[427,914],[200,546],[709,864],[848,847],[393,435],[117,618],[218,93],[272,59],[561,113],[981,401],[98,328],[796,225],[404,411],[28,247],[566,648],[141,1000],[654,602],[315,355],[938,342],[318,860],[278,472],[256,512],[865,32],[252,963],[782,414],[723,950],[157,167],[414,952],[432,85],[424,769],[495,406],[771,181],[721,122],[317,107],[573,129],[657,45],[527,35],[222,825],[474,745],[539,742],[526,155],[62,213],[286,980],[246,971],[16,774],[529,403],[971,124],[357,362],[722,574],[613,35],[843,846],[321,80],[671,830],[237,675],[651,942],[798,388],[982,125],[39,356],[685,36],[24,56],[740,587],[526,446],[876,633],[519,831],[405,38],[670,593],[929,254],[284,436],[80,134],[807,837],[284,719],[335,26],[492,878],[448,286],[762,729],[377,754],[696,482],[178,883],[783,409],[58,694],[987,749],[176,376],[755,326],[360,509],[290,204],[82,830],[276,519],[648,211],[65,670],[646,582],[218,418],[770,73],[422,561],[880,191],[551,758],[930,767],[795,29],[505,303],[49,616],[938,118],[208,406],[946,421],[322,852],[798,359],[365,396],[434,386],[419,221],[755,723],[161,328],[870,316],[151,262],[191,17],[877,480],[461,440],[525,822],[685,438],[88,510],[60,843],[795,754],[174,96],[239,221],[58,68],[513,942],[89,498],[664,248],[66,418],[950,412],[554,107],[546,149],[983,69],[68,277],[331,20],[853,321],[187,31],[927,708],[13,907],[810,764],[129,284],[913,523],[136,364],[453,933],[731,337],[448,546],[810,122],[976,536],[315,503],[74,363],[598,341],[484,391],[531,754],[133,89],[611,463],[626,237],[363,188],[875,196],[314,950],[585,148],[440,240],[741,105],[838,939],[295,319],[515,468],[804,828],[830,352],[813,409],[215,425],[475,629],[505,486],[426,788],[922,837],[353,777],[795,137],[781,772],[512,347],[851,141],[316,236],[221,184],[59,201],[731,151],[423,388],[886,878],[128,42],[896,437],[124,418],[883,880],[825,517],[99,126],[758,435],[454,442],[512,344],[8,550],[545,38],[46,204],[103,460],[375,358],[14,651],[724,885],[468,458],[265,817],[496,475],[377,370],[105,655],[550,464],[191,985],[289,862],[604,540],[60,137],[5,81],[593,706],[45,37],[809,427],[461,184],[557,611],[523,381],[54,48],[600,899],[477,968],[631,923],[440,463],[815,702],[578,417],[578,483],[812,162],[753,644],[826,137],[104,471],[222,870],[233,610],[389,651],[575,166],[431,5],[173,179],[606,41],[859,233],[511,172],[849,598],[442,327],[915,967],[334,479],[904,189],[659,851],[957,405],[524,907],[307,72],[255,66],[974,763],[580,851],[571,244],[750,820],[442,21],[647,471],[850,275],[734,190],[208,528],[596,308],[21,859],[235,343],[745,5],[645,842],[717,638],[866,236],[280,789],[660,354],[790,81],[888,993],[295,17],[548,342],[929,222],[177,913],[84,394],[892,749],[695,620],[844,711],[583,221],[677,805],[261,234],[478,430],[326,63],[789,52],[267,895],[108,221],[196,11],[677,642],[667,413],[914,694],[519,846],[701,204],[785,658],[156,308],[17,830],[188,248],[106,188],[95,429],[75,756],[759,101],[945,206],[367,902],[964,236],[835,438],[504,18],[195,631],[80,764],[52,628],[965,439],[267,587],[277,843],[142,948],[271,650],[726,986],[182,142],[289,688],[537,277],[916,933],[862,599],[276,909],[830,430],[926,570],[638,737],[848,479],[1,60],[760,830],[15,744],[655,108],[22,698],[679,758],[215,108],[31,506],[524,315],[289,71],[505,635],[586,2],[994,635],[741,840],[389,120],[883,774],[533,978],[564,220],[644,791],[739,162],[329,404],[256,20],[347,627],[481,566],[138,517],[988,203],[213,809],[276,310],[488,284],[905,153],[909,821],[998,350],[892,139],[503,12],[784,106],[549,200],[925,615],[643,549],[92,149],[698,388],[953,56],[699,407],[144,755],[322,769],[735,914],[775,744],[980,419],[77,124],[58,113],[343,256],[964,551],[270,342],[523,414],[846,810],[852,729],[47,999],[93,525],[269,888],[625,746],[483,427],[785,659],[267,704],[170,485],[501,973],[81,236],[542,745],[266,397],[759,764],[877,497],[472,858],[90,408],[35,167],[335,163],[377,924],[191,128],[387,376],[667,15],[116,58],[286,689],[3,41],[557,486],[633,130],[817,222],[28,733],[169,11],[287,305],[564,736],[965,950],[953,971],[35,642],[638,245],[807,91],[772,804],[727,622],[5,429],[70,403],[881,712],[373,793],[138,51],[803,156],[329,182],[434,942],[631,86],[200,962],[305,199],[318,51],[181,621],[262,707],[89,229],[310,867],[19,518],[400,456],[828,230],[629,609],[179,494],[993,172],[457,755],[888,9],[25,872],[231,570],[255,798],[999,130],[55,263],[940,82],[467,964],[578,974],[518,258],[76,528],[246,522],[683,165],[870,297],[68,601],[292,967],[13,526],[985,20],[612,948],[440,477],[507,110],[459,937],[691,903],[67,145],[518,456],[52,236],[205,686],[232,927],[226,956],[141,994],[469,143],[944,517],[326,344],[192,166],[170,251],[267,64],[331,441],[156,934],[541,385],[108,664],[190,234],[362,49],[575,273],[344,863],[478,770],[505,169],[559,21],[651,275],[125,48],[161,61],[620,317],[68,686],[876,279],[305,151],[154,558],[944,61],[574,393],[25,610],[520,560],[31,604],[19,807],[351,826],[36,286],[251,545],[444,547],[661,701],[255,937],[43,945],[866,308],[468,625],[380,739],[971,306],[377,776],[973,725],[761,933],[933,419],[170,934],[863,992],[670,206],[443,36],[125,83],[462,234],[374,729],[309,712],[739,841],[529,689],[50,481],[756,283],[284,252],[254,609],[662,77],[483,490],[228,655],[375,612],[925,826],[62,394],[8,717],[370,654],[146,188],[935,39],[275,797],[175,58],[99,923],[369,913],[663,387],[668,556],[459,162],[611,213],[588,76],[790,336],[233,541],[189,441],[290,150],[636,575],[689,13],[720,830],[607,686],[73,831],[582,846],[304,346],[787,373],[108,647],[15,201],[155,608],[970,608],[223,612],[49,659],[474,59],[522,509],[681,888],[523,501],[258,749],[64,928],[218,18],[431,942],[915,135],[404,632],[347,760],[448,659],[860,734],[730,889],[343,404],[582,855],[741,465],[170,551],[421,863],[950,915],[650,602],[172,862],[31,840],[246,874],[372,667],[63,308],[221,258],[55,473],[844,809],[704,6],[692,581],[424,985],[275,699],[950,240],[46,392],[820,184],[900,427],[137,914],[330,63],[940,674],[170,640],[627,86],[956,508],[442,662],[721,925],[790,54],[25,904],[560,369],[890,169],[292,576],[647,976],[672,625],[701,433],[808,260],[695,376],[703,791],[858,50],[604,55],[89,913],[572,689],[989,200],[707,284],[863,38],[208,743],[228,133],[422,311],[421,340],[967,506],[949,796],[695,634],[347,967],[523,165],[842,640],[694,50],[250,460],[85,716],[953,98],[363,597],[169,497],[127,704],[25,678],[365,780],[387,983],[432,826],[367,532],[701,363],[855,887],[115,688],[259,601],[502,568],[964,538],[655,540],[504,918],[177,190],[107,863],[772,583],[396,571],[47,719],[362,453],[117,234],[128,69],[83,945],[648,746],[578,193],[707,893],[160,863],[632,119],[588,535],[465,987],[787,805],[677,113],[887,593],[183,452],[154,333],[736,819],[257,457],[663,851],[142,58],[416,563],[664,468],[128,250],[172,396],[785,482],[336,272],[889,66],[578,15],[160,368],[557,833],[402,830],[989,151],[340,539],[269,227],[69,423],[120,74],[771,669],[165,825],[146,204],[321,89],[284,51],[885,991],[412,232],[828,499],[11,459],[356,738],[115,779],[358,945],[461,710],[246,245],[366,199],[247,176],[572,958],[475,61],[627,223],[94,408],[608,945],[412,220],[742,247],[531,522],[88,572],[234,14],[614,386],[164,441],[753,359],[652,509],[96,252],[923,57],[695,589],[674,90],[18,101],[927,550],[374,624],[268,143],[521,420],[549,384],[183,217],[983,970],[331,604],[586,197],[611,915],[208,803],[269,43],[467,420],[12,383],[888,448],[50,932],[30,485],[344,805],[713,267],[372,89],[114,477],[489,914],[818,573],[790,449],[144,157],[346,122],[142,591],[635,884],[574,9],[543,910],[368,823],[783,255],[275,127],[624,785],[592,127],[993,275],[389,544],[818,628],[111,389],[269,715],[801,236],[905,961],[128,378],[97,106],[786,269],[140,690],[829,749],[264,40],[482,780],[574,496],[690,494],[299,324],[421,234],[653,442],[154,411],[395,12],[217,842],[384,185],[852,691],[366,52],[711,726],[318,738],[434,995],[148,275],[408,260],[523,308],[760,426],[783,159],[614,893],[394,676],[457,699],[273,112],[926,133],[202,751],[337,255],[531,403],[4,494],[161,132],[722,213],[39,56],[90,755],[787,107],[782,157],[824,434],[502,950],[804,238],[280,773],[765,170],[750,335],[501,646],[692,834],[650,161],[878,771],[711,965],[581,992],[135,798],[825,561],[351,748],[599,517],[369,550],[986,859],[70,28],[520,767],[27,48],[464,900],[136,273],[452,546],[350,856],[993,358],[369,365],[567,749],[513,826],[393,719],[178,713],[348,613],[544,86],[488,712],[565,181],[530,757],[316,201],[999,695],[974,23],[72,81],[647,53],[116,112],[701,231],[821,642],[384,592],[696,14],[313,173],[980,373],[615,727],[383,185],[11,564],[542,464],[219,793],[804,227],[325,457],[899,547],[699,930],[138,565],[158,220],[937,418],[301,583],[120,161],[589,254],[535,895],[525,125],[134,572],[938,895],[557,643],[226,575],[486,669],[681,259],[727,684],[214,802],[15,692],[200,647],[633,517],[92,261],[99,880],[233,610],[100,104],[326,747],[693,902],[851,379],[296,713],[608,119],[669,716],[468,986],[456,944],[759,262],[266,521],[414,788],[595,273],[295,950],[225,832],[982,824],[874,914],[233,257],[594,468],[863,21],[581,189],[386,954],[782,625],[754,403],[91,100],[197,362],[19,690],[391,262],[145,25],[136,432],[181,527],[902,656],[652,105],[949,796],[732,111],[421,971],[112,977],[913,991],[802,790],[729,227],[965,383],[468,802],[45,967],[810,35],[31,574],[944,695],[658,469],[168,664],[225,584],[176,901],[31,707],[586,395],[803,175],[208,195],[709,470],[632,175],[870,469],[957,272],[158,789],[851,273],[547,744],[968,134],[105,584],[632,719],[789,870],[586,160],[303,531],[397,588],[54,266],[494,803],[526,921],[296,923],[286,281],[117,843],[131,432],[228,713],[106,598],[209,860],[499,139],[356,857],[575,142],[510,591],[341,897],[344,879],[39,290],[939,95],[787,438],[485,432],[108,88],[727,200],[366,223],[719,677],[854,808],[927,166],[715,168],[402,851],[982,776],[369,366],[193,405],[646,981],[895,883],[710,410],[886,256],[136,632],[300,183],[837,426],[850,523],[872,564],[374,239],[20,248],[579,855],[791,407],[532,460],[263,841],[287,783],[623,705],[244,519],[849,979],[682,160],[745,469],[572,812],[804,3],[361,427],[767,485],[31,450],[610,756],[940,72],[55,202],[272,310],[941,914],[615,946],[306,970],[398,58],[392,384],[61,64],[499,203],[674,946],[658,503],[354,653],[963,741],[655,533],[2,404],[497,721],[152,771],[923,216],[154,87],[448,29],[879,166],[848,682],[344,51],[886,616],[288,374],[338,477],[372,84],[181,824],[57,597],[888,237],[964,755],[482,644],[34,177],[77,538],[88,875],[172,365],[706,692],[523,601],[633,608],[566,214],[405,13],[548,106],[353,635],[629,863],[306,982],[579,154],[275,366],[167,144],[856,16],[491,656],[592,429],[308,688],[618,89],[133,259],[669,262],[313,808],[151,618],[772,767],[593,519],[319,813],[587,582],[621,777],[674,405],[399,532],[516,580],[63,854],[942,58],[937,604],[882,443],[235,782],[459,93],[904,152],[795,255],[392,468],[141,993],[278,925],[347,10],[720,599],[288,472],[224,75],[112,708],[957,341],[999,590],[62,785],[401,210],[575,916],[916,184],[820,372],[901,573],[635,24],[573,353],[825,887],[159,2],[711,635],[166,402],[244,407],[900,291],[876,253],[55,292],[470,411],[85,677],[968,500],[264,884],[804,562],[912,178],[26,16],[785,921],[750,265],[68,596],[743,483],[442,821],[34,761],[641,525],[947,898],[653,232],[227,916],[749,447],[772,76],[348,383],[802,917],[514,108],[868,514],[539,948],[93,917],[650,538],[395,480],[814,395],[983,947],[971,904],[108,24],[267,63],[780,572],[533,574],[757,709],[801,155],[899,242],[82,44],[717,877],[597,454],[569,996],[494,968],[592,45],[29,9],[891,173],[98,572],[846,613],[320,491],[940,98],[870,949],[323,334],[372,890],[182,984],[698,357],[124,810],[310,735],[140,286],[467,222],[578,780],[319,170],[999,803],[343,512],[432,178],[506,876],[959,815],[747,105],[482,136],[654,99],[384,504],[15,150],[200,347],[737,843],[599,625],[8,55],[620,841],[111,263],[302,144],[867,345],[181,845],[231,601],[641,361],[870,570],[773,229],[820,981],[25,509],[431,261],[67,483],[308,65],[394,500],[820,12],[204,264],[233,955],[627,121],[737,232],[350,990],[322,827],[525,768],[889,408],[56,262],[513,112],[286,331],[146,47],[54,393],[899,137],[195,53],[640,701],[505,909],[735,885],[532,989],[661,685],[553,961],[561,223],[884,205],[948,699],[169,334],[326,838],[125,240],[896,186],[626,264],[422,498],[590,497],[965,569],[441,147],[384,977],[783,451],[831,53],[534,390],[443,803],[266,549],[647,317],[242,591],[524,374],[783,519],[463,110],[724,635],[79,592],[596,953],[861,897],[805,869],[873,463],[499,715],[770,290],[85,428],[645,179],[597,750],[34,817],[254,851],[839,182],[885,133],[526,896],[731,971],[908,355],[352,966],[724,3],[671,582],[781,267],[621,333],[847,487],[546,189],[599,574],[680,392],[62,221],[358,776],[41,480],[286,54],[552,886],[290,94],[166,848],[757,619],[386,656],[387,807],[225,326],[611,349],[173,541],[585,463],[808,902],[807,794],[812,376],[495,705],[475,588],[53,860],[92,286],[988,412],[421,433],[793,397],[615,233],[421,612],[357,33],[321,3],[958,426],[199,326],[818,29],[986,20],[929,511],[727,987],[370,921],[621,369],[916,813],[611,882],[836,542],[389,212],[115,358],[900,64],[45,468],[954,167],[821,513],[719,467],[834,22],[64,907],[790,191],[340,196],[182,109],[541,998],[454,766],[621,188],[895,157],[671,264],[729,748],[691,512],[146,337],[56,5],[928,863],[547,75],[628,442],[827,7],[927,713],[204,410],[820,419],[130,18],[476,741],[68,585],[78,461],[4,578],[449,139],[57,484],[346,760],[863,722],[976,501],[396,900],[321,358],[487,451],[321,458],[538,750],[312,734],[965,483],[581,62],[820,737],[841,28],[429,488],[447,917],[510,300],[154,467],[571,884],[366,981],[547,902],[240,305],[368,912],[853,734],[166,734],[443,847],[924,273],[121,662],[171,47],[296,548],[555,189],[924,767],[347,661],[529,809],[756,830],[323,368],[925,746],[361,440],[580,517],[259,195],[901,910],[352,524],[259,175],[166,184],[530,359],[933,782],[17,961],[292,219],[452,206],[244,435],[903,397],[187,754],[447,872],[204,738],[235,718],[402,657],[215,419],[410,978],[136,935],[303,924],[797,120],[63,692],[652,12],[638,792],[747,247],[407,24],[991,643],[537,461],[551,415],[393,674],[250,411],[721,236],[761,48],[728,937],[793,879],[253,509],[441,164],[743,506],[644,768],[379,700],[118,826],[91,950],[77,787],[776,398],[31,410],[661,152],[671,174],[697,932],[166,548],[49,626],[881,471],[886,294],[978,210],[320,146],[577,995],[662,360],[441,59],[877,652],[412,239],[992,358],[765,218],[760,807],[218,258],[697,273],[69,617],[331,483],[912,970],[990,873],[606,555],[132,376],[158,573],[534,18],[576,94],[246,282],[669,773],[373,52],[150,96],[747,996],[232,271],[538,230],[60,439],[572,219],[89,275],[460,243],[498,185],[115,940],[334,500],[327,423],[812,791],[881,191],[362,752],[546,4],[690,23],[994,90],[622,354],[694,43],[514,15],[276,518],[266,680],[81,528],[744,122],[33,839],[241,933],[644,624],[145,83],[511,488],[906,352],[427,337],[320,811],[407,629],[938,516],[569,557],[442,534],[137,833],[39,881],[164,11],[78,59],[780,363],[299,378],[486,964],[899,540],[756,632],[752,696],[380,413],[541,14],[28,663],[359,22],[934,645],[129,950],[588,78],[756,721],[244,699],[968,729],[919,7],[5,778],[926,152],[31,180],[178,490],[691,65],[40,990],[260,477],[270,627],[6,227],[700,301],[570,120],[585,910],[293,478],[831,661],[428,976],[872,793],[832,773],[780,741],[836,692],[523,27],[940,576],[421,44],[668,887],[965,91],[573,228],[47,437],[979,920],[900,610],[357,486],[625,841],[994,550],[584,586],[70,415],[728,447],[65,404],[420,659],[468,630],[828,214],[375,816],[365,698],[600,27],[424,623],[779,15],[282,161],[36,732],[339,342],[388,441],[873,830],[482,909],[98,266],[765,553],[304,581],[319,752],[106,115],[186,15],[811,717],[475,600],[695,19],[409,475],[177,376],[514,803],[272,73],[28,596],[233,585],[415,647],[563,356],[590,760],[446,335],[108,813],[139,992],[208,690],[720,132],[582,445],[146,559],[458,284],[486,170],[940,152],[462,653],[766,718],[295,393],[671,889],[538,928],[84,222],[112,90],[365,793],[876,872],[546,572],[589,971],[432,876],[926,627],[719,591],[142,340],[345,114],[627,314],[958,826],[678,852],[449,955],[579,654],[14,811],[168,262],[169,364],[938,119],[265,85],[597,272],[964,899],[399,46],[140,41],[280,414],[1,85],[44,456],[266,545],[1000,290],[785,540],[66,86],[469,12],[909,818],[521,117],[904,31],[766,737],[727,698],[611,913],[20,78],[472,690],[178,470],[424,433],[575,778],[390,938],[676,411],[97,420],[970,530],[679,999],[698,384],[126,490],[39,106],[784,655],[1,223],[11,88],[27,799],[386,735],[6,233],[326,61],[470,337],[144,234],[412,474],[8,699],[216,344],[43,451],[605,902],[351,570],[776,753],[172,187],[926,440],[542,565],[585,390],[74,550],[107,402],[640,463],[557,30],[192,782],[120,287],[122,958],[296,724],[382,911],[493,86],[153,187],[682,733],[878,752],[167,737],[514,313],[838,717],[973,64],[338,628],[289,443],[529,41],[382,707],[843,320],[99,166],[207,283],[93,189],[906,955],[850,573],[183,943],[496,854],[443,489],[501,194],[640,164],[665,161],[671,780],[251,44],[421,275],[927,141],[848,261],[571,630],[821,146],[112,121],[469,287],[520,161],[537,644],[190,611],[982,407],[894,406],[257,631],[74,210],[323,950],[682,167],[632,361],[177,623],[994,562],[228,27],[529,993],[499,4],[489,852],[625,245],[64,746],[637,905],[184,962],[130,371],[132,921],[99,556],[96,837],[598,542],[424,533],[944,122],[849,13],[689,94],[552,288],[78,713],[914,184],[217,219],[700,520],[812,762],[296,899],[176,282],[805,263],[705,731],[672,820],[566,913],[907,405],[126,592],[584,273],[422,221],[584,173],[705,854],[623,637],[44,191],[847,960],[896,284],[850,950],[235,472],[45,75],[196,287],[266,554],[268,209],[333,765],[249,179],[3,641],[36,836],[376,972],[687,190],[335,117],[243,269],[495,648],[522,878],[434,888],[276,73],[117,359],[677,438],[256,999],[998,210],[375,959],[349,194],[205,776],[16,416],[549,346],[608,330],[630,126],[520,902],[517,212],[301,737],[229,31],[718,65],[584,264],[757,238],[441,517],[907,107],[555,316],[72,108],[261,941],[615,445],[606,19],[649,222],[667,606],[365,129],[104,355],[573,799],[750,537],[935,550],[729,768],[847,11],[851,22],[679,317],[751,419],[725,17],[930,746],[631,341],[773,114],[779,312],[448,356],[861,618],[679,389],[259,805],[798,824],[738,401],[82,50],[328,368],[677,214],[624,931],[29,335],[786,580],[938,669],[872,310],[946,948],[443,426],[140,910],[491,330],[545,759],[413,113],[511,47],[747,134],[144,421],[895,576],[269,660],[420,280],[445,741],[21,151],[539,272],[983,378],[596,339],[777,337],[659,38],[754,345],[770,616],[645,500],[553,587],[622,661],[285,545],[984,434],[683,447],[684,892],[110,185],[757,263],[909,679],[495,260],[655,855],[706,472],[350,585],[265,632],[379,622],[295,505],[447,337],[437,526],[764,58],[874,590],[637,910],[589,475],[979,922],[765,821],[723,726],[63,774],[913,420],[608,753],[836,461],[556,109],[452,506],[870,306],[904,401],[819,53],[289,419],[347,31],[586,87],[891,636],[390,419],[356,554],[861,112],[628,873],[614,705],[329,836],[577,546],[937,233],[55,294],[592,883],[305,634],[64,120],[709,770],[371,183],[230,155],[831,869],[114,546],[160,549],[504,920],[723,220],[479,632],[748,747],[846,135],[787,109],[954,862],[556,928],[651,7],[249,64],[613,551],[686,568],[898,485],[302,234],[979,457],[513,852],[931,693],[54,578],[418,394],[885,269],[962,360],[231,501],[224,116],[599,988],[256,637],[217,806],[905,187],[912,36],[26,943],[913,308],[886,982],[224,781],[364,52],[365,235],[325,655],[293,596],[608,129],[940,717],[352,985],[346,808],[315,17],[746,327],[551,558],[187,621],[598,778],[490,961],[330,852],[459,113],[873,678],[801,679],[159,164],[636,70],[225,707],[457,94],[474,519],[583,307],[117,675],[504,467],[319,419],[278,658],[894,751],[34,845],[953,414],[380,617],[926,880],[242,9],[256,608],[998,681],[426,231],[112,126],[204,350],[257,914],[618,832],[712,566],[363,712],[34,203],[559,838],[613,721],[348,52],[151,859],[43,958],[93,531],[728,31],[24,240],[505,794],[823,707],[57,91],[522,692],[404,14],[680,886],[881,330],[442,234],[74,843],[598,204],[7,635],[342,291],[857,664],[577,731],[426,847],[145,826],[223,945],[111,281],[378,547],[48,845],[510,993],[845,943],[446,200],[926,450],[365,758],[341,674],[466,757],[592,288],[616,276],[377,195],[604,328],[245,889],[792,588],[778,443],[589,212],[591,531],[587,765],[27,722],[797,212],[940,575],[162,989],[369,667],[589,496],[155,470],[669,557],[414,504],[75,892],[244,438],[317,560],[285,7],[576,592],[955,736],[424,902],[784,671],[212,602],[512,225],[239,788],[286,72],[116,944],[191,590],[150,229],[386,829],[625,386],[547,77],[727,239],[108,657],[559,637],[980,70],[954,401],[370,135],[706,493],[504,100],[607,315],[468,572],[739,27],[815,486],[543,867],[163,104],[456,887],[431,199],[101,920],[371,141],[77,52],[929,619],[476,515],[554,628],[977,48],[365,390],[388,587],[420,221],[556,298],[57,972],[244,21],[482,198],[813,97],[778,187],[545,781],[299,452],[27,291],[569,221],[535,799],[174,361],[477,510],[890,679],[248,1000],[44,159],[276,162],[967,812],[840,971],[498,867],[279,898],[10,780],[737,695],[782,541],[385,6],[71,756],[932,91],[804,810],[352,829],[392,426],[532,977],[687,789],[510,467],[280,845],[214,521],[802,494],[944,806],[40,379],[803,3],[733,520],[751,966],[504,597],[886,780],[642,727],[13,679],[315,597],[376,476],[728,343],[390,300],[13,769],[840,895],[95,151],[467,248],[470,644],[806,977],[261,218],[851,350],[765,759],[322,410],[131,506],[679,606],[228,986],[417,907],[713,723],[202,758],[810,78],[501,350],[668,776],[568,141],[559,934],[529,805],[443,974],[884,532],[845,291],[148,482],[736,982],[952,934],[845,337],[372,208],[976,276],[367,188],[76,231],[81,262],[250,7],[934,604],[322,697],[120,803],[205,15],[616,101],[634,980],[377,304],[145,625],[82,831],[993,607],[118,609],[945,278],[866,10],[273,488],[890,469],[48,312],[293,487],[415,310],[633,520],[904,279],[216,587],[526,906],[312,673],[899,835],[155,904],[111,692],[65,293],[392,875],[936,712],[304,344],[777,331],[335,548],[38,94],[896,591],[642,393],[956,399],[579,929],[747,365],[347,262],[908,649],[588,468],[767,636],[881,389],[576,230],[882,122],[957,716],[755,773],[33,415],[633,711],[587,139],[139,718],[947,702],[460,172],[697,828],[456,352],[261,872],[536,452],[864,971],[450,973],[112,733],[483,107],[324,6],[951,962],[814,16],[11,828],[160,960],[791,834],[42,785],[648,455],[573,400],[433,315],[992,227],[708,68],[842,105],[727,335],[107,184],[436,528],[64,95],[183,115],[229,809],[439,224],[672,827],[518,536],[546,390],[990,443],[801,628],[32,391],[717,301],[126,205],[586,905],[585,699],[460,978],[396,197],[752,674],[280,392],[386,4],[521,578],[651,384],[41,324],[731,840],[474,904],[778,659],[675,657],[907,594],[590,927],[41,799],[489,305],[69,947],[985,37],[864,329],[120,299],[312,799],[356,926],[40,199],[831,577],[247,678],[72,18],[323,451],[380,687],[397,168],[145,638],[605,46],[700,302],[918,119],[29,134],[540,430],[643,592],[98,200],[538,680],[558,252],[626,259],[871,868],[95,906],[788,326],[833,37],[175,699],[98,117],[430,768],[726,635],[326,26],[794,251],[392,933],[730,929],[161,35],[431,592],[170,330],[518,436],[344,774],[647,888],[115,916],[35,565],[882,532],[304,474],[693,350],[592,129],[255,521],[563,829],[517,788],[550,75],[961,671],[302,760],[332,312],[894,197],[848,43],[348,862],[726,324],[686,985],[169,975],[519,135],[643,374],[838,395],[380,966],[983,179],[508,276],[949,567],[342,739],[119,241],[815,145],[614,594],[49,955],[566,101],[78,822],[513,61],[746,608],[562,739],[12,755],[502,495],[611,48],[291,661],[801,506],[986,855],[575,231],[345,499],[911,292],[348,70],[570,276],[673,512],[660,279],[306,554],[544,180],[812,843],[12,860],[217,575],[831,351],[887,325],[949,767],[335,826],[6,454],[815,710],[203,900],[748,693],[623,584],[565,86],[951,896],[207,969],[522,308],[336,127],[418,461],[246,513],[387,203],[178,191],[861,693],[502,636],[559,356],[151,842],[184,784],[713,789],[984,843],[985,214],[870,119],[456,61],[849,764],[636,734],[312,350],[673,963],[524,708],[100,976],[744,827],[146,992],[220,495],[42,626],[694,396],[758,312],[783,1000],[362,911],[42,721],[113,49],[880,526],[663,33],[490,147],[706,126],[482,773],[706,612],[613,944],[231,907],[675,177],[661,50],[903,920],[255,77],[350,802],[847,935],[405,203],[454,755],[213,36],[362,453],[132,275],[685,334],[172,856],[665,365],[908,149],[971,486],[857,116],[857,65],[968,126],[14,61],[130,840],[734,274],[664,546],[111,965],[608,921],[456,494],[619,582],[831,112],[366,849],[547,776],[465,819],[463,421],[289,212],[358,311],[174,210],[451,558],[488,520],[168,845],[285,644],[764,368],[847,568],[737,175],[420,137],[513,283],[697,514],[648,582],[432,121],[908,286],[886,527],[704,576],[774,425],[115,422],[153,104],[825,636],[178,790],[913,555],[397,112],[796,500],[283,64],[820,301],[358,211],[743,553],[999,806],[345,364],[729,144],[692,19],[444,722],[920,423],[926,242],[331,236],[308,675],[463,619],[379,840],[512,100],[546,855],[567,956],[324,615],[139,435],[364,392],[642,398],[341,589],[272,450],[85,860],[886,599],[330,951],[219,575],[281,701],[536,58],[32,357],[151,303],[754,570],[691,558],[968,880],[247,256],[725,913],[331,877],[663,724],[864,756],[32,633],[173,52],[412,183],[985,287],[590,9],[408,933],[812,16],[165,929],[621,479],[488,913],[301,297],[316,651],[117,240],[8,855],[142,748],[54,997],[769,970],[283,106],[52,11],[255,343],[205,131],[555,930],[80,582],[218,764],[500,674],[265,519],[150,918],[353,452],[916,861],[61,218],[479,241],[696,717],[967,272],[834,884],[626,52],[222,949],[501,820],[252,878],[53,714],[357,863],[708,356],[183,822],[126,620],[298,192],[306,919],[383,255],[608,910],[84,580],[392,366],[630,952],[333,367],[931,549],[852,325],[968,853],[372,297],[785,914],[860,726],[211,12],[697,319],[515,574],[576,218],[710,496],[231,246],[404,246],[935,276],[490,739],[195,409],[707,247],[687,346],[459,179],[938,256],[775,776],[341,609],[556,998],[623,658],[568,672],[104,422],[68,1000],[243,668],[572,198],[654,782],[227,827],[63,359],[641,644],[157,146],[331,983],[976,913],[19,268],[23,287],[239,632],[594,812],[71,708],[467,1000],[675,76],[334,530],[39,436],[236,472],[845,48],[944,91],[926,126],[435,482],[194,670],[305,353],[200,400],[916,828],[701,94],[720,774],[489,927],[359,776],[475,892],[291,120],[617,117],[229,774],[96,389],[444,238],[648,485],[699,93],[83,427],[881,280],[858,719],[123,79],[957,497],[312,311],[57,508],[750,617],[170,664],[22,31],[289,48],[901,434],[91,51],[143,560],[188,102],[556,737],[165,338],[259,34],[290,614],[819,864],[729,789],[918,811],[452,914],[1,802],[664,865],[789,675],[845,891],[330,992],[886,194],[480,704],[294,9],[405,654],[643,370],[245,916],[515,295],[499,5],[641,360],[61,618],[1,571],[667,794],[237,782],[160,906],[893,758],[754,391],[553,444],[496,984],[356,163],[187,928],[251,94],[647,279],[859,970],[984,847],[314,205],[634,129],[449,319],[4,425],[590,431],[256,84],[813,232],[301,546],[623,163],[311,791],[780,532],[222,669],[98,640],[491,254],[422,485],[25,808],[583,629],[108,258],[800,787],[425,219],[776,402],[562,137],[768,407],[567,819],[138,412],[694,834],[351,741],[104,416],[359,364],[375,150],[263,634],[311,817],[324,234],[579,393],[524,247],[394,270],[591,891],[515,864],[580,361],[29,233],[248,541],[26,828],[872,39],[867,408],[353,179],[165,34],[751,145],[802,454],[637,966],[364,312],[721,429],[786,583],[236,755],[526,400],[786,654],[545,500],[8,555],[458,750],[604,16],[21,60],[948,725],[553,110],[157,445],[279,13],[889,203],[626,662],[742,320],[549,490],[401,800],[738,622],[351,117],[878,893],[608,614],[721,705],[790,294],[259,268],[723,281],[968,65],[669,822],[857,545],[314,515],[279,362],[963,225],[497,531],[111,517],[67,182],[977,176],[825,200],[293,890],[18,171],[640,891],[320,231],[673,773],[348,42],[882,703],[277,422],[742,234],[245,487],[95,777],[292,352],[293,636],[116,115],[345,760],[109,833],[384,766],[443,706],[483,430],[689,38],[306,996],[795,688],[741,511],[905,90],[101,703],[843,774],[908,558],[842,647],[607,996],[50,780],[715,978],[309,699],[681,16],[359,119],[300,933],[642,123],[172,536],[449,743],[89,468],[3,177],[59,666],[934,646],[549,737],[426,533],[288,181],[445,277],[1,163],[606,170],[577,274],[497,975],[678,794],[457,328],[339,741],[930,572],[116,304],[63,912],[417,928],[457,514],[76,491],[756,37],[522,383],[572,294],[306,619],[507,435],[887,496],[430,617],[351,813],[784,527],[673,194],[935,339],[620,179],[729,179],[587,51],[685,949],[167,774],[204,817],[129,925],[699,177],[755,502],[952,895],[138,854],[956,529],[770,85],[558,379],[226,464],[956,339],[843,83],[36,812],[663,975],[768,535],[532,598],[321,554],[171,917],[92,495],[542,836],[628,207],[275,963],[266,404],[913,406],[957,877],[314,128],[277,274],[350,122],[328,940],[25,684],[199,213],[991,284],[237,772],[301,225],[515,751],[591,9],[936,343],[488,849],[736,182],[518,371],[825,246],[464,332],[881,309],[283,866],[619,931],[387,449],[509,923],[647,295],[211,27],[174,253],[847,695],[182,635],[928,296],[676,939],[389,721],[686,529],[953,142],[192,362],[468,558],[63,734],[781,781],[330,969],[126,572],[633,965],[67,730],[136,915],[199,802],[849,440],[609,120],[848,506],[805,621],[928,249],[776,951],[208,770],[275,316],[945,778],[392,861],[287,294],[163,908],[108,84],[546,24],[944,96],[300,247],[678,585],[592,780],[871,564],[220,469],[11,142],[221,421],[645,54],[883,714],[919,424],[100,978],[226,285],[224,768],[542,981],[755,146],[170,966],[648,591],[242,766],[899,184],[648,514],[729,318],[242,825],[43,911],[606,244],[384,38],[725,68],[744,833],[788,924],[43,810],[913,181],[562,501],[298,509],[337,965],[420,680],[62,25],[516,540],[467,137],[553,701],[831,664],[32,890],[966,655],[550,374],[595,779],[750,119],[611,674],[336,438],[651,269],[701,571],[865,400],[241,131],[183,231],[994,219],[188,602],[423,575],[115,504],[279,466],[928,969],[48,585],[473,962],[823,508],[18,569],[250,112],[201,990],[361,92],[584,469],[579,763],[688,895],[991,119],[28,432],[566,146],[607,739],[446,1000],[636,679],[803,670],[769,739],[31,820],[100,550],[128,312],[297,426],[276,686],[414,59],[934,964],[114,556],[720,884],[809,947],[674,864],[369,674],[133,325],[170,500],[265,287],[748,823],[183,367],[288,351],[335,325],[800,636],[655,882],[40,535],[138,738],[664,945],[173,911],[762,993],[301,929],[902,719],[90,484],[986,606],[150,476],[228,841],[301,175],[208,648],[345,527],[876,967],[847,987],[98,569],[674,278],[499,108],[879,639],[851,274],[348,798],[257,884],[197,470],[110,67],[620,877],[502,320],[378,862],[994,4],[338,877],[464,262],[974,49],[538,488],[953,270],[564,681],[620,890],[662,952],[728,238],[154,696],[709,930],[411,775],[619,347],[238,497],[573,993],[771,907],[320,745],[363,896],[813,675],[24,743],[94,966],[1000,221],[193,187],[903,144],[323,77],[601,621],[244,9],[567,980],[290,63],[819,718],[658,861],[843,630],[142,781],[993,114],[268,793],[33,258],[300,641],[560,234],[235,984],[176,439],[716,553],[995,938],[841,401],[191,636],[785,14],[134,965],[810,132],[947,316],[207,352],[316,725],[478,929],[44,909],[692,565],[469,394],[225,176],[418,751],[192,474],[991,274],[788,802],[263,542],[798,203],[993,702],[412,727],[550,174],[470,399],[754,230],[810,309],[79,647],[730,777],[533,489],[212,176],[678,321],[766,415],[152,914],[933,514],[653,72],[165,863],[86,60],[809,259],[934,415],[135,74],[613,572],[684,364],[405,798],[217,983],[791,302],[976,677],[695,154],[902,256],[422,681],[547,354],[966,676],[894,703],[428,390],[319,945],[50,664],[413,991],[484,376],[660,160],[119,654],[937,388],[955,736],[111,234],[409,133],[768,293],[840,774],[740,382],[63,157],[666,573],[820,73],[141,66],[657,57],[498,454],[724,590],[264,597],[832,674],[470,941],[417,641],[537,203],[909,717],[951,108],[548,266],[621,61],[540,495],[644,415],[945,328],[939,542],[885,968],[505,118],[273,802],[205,679],[606,627],[546,608],[992,817],[76,415],[765,814],[425,812],[415,628],[558,829],[3,446],[632,434],[416,596],[353,778],[113,801],[303,155],[327,795],[638,164],[94,529],[729,907],[274,326],[480,218],[99,684],[51,521],[887,790],[89,170],[24,12],[272,925],[121,337],[214,834],[582,784],[495,789],[131,49],[937,42],[794,423],[669,901],[137,468],[81,870],[996,138],[475,730],[937,151],[677,116],[311,432],[327,38],[626,880],[111,870],[672,840],[51,659],[759,833],[11,848],[230,281],[470,256],[68,941],[173,300],[762,858],[751,839],[188,735],[170,258],[652,176],[55,586],[629,109],[871,236],[624,645],[718,877],[965,235],[621,218],[614,521],[748,59],[573,481],[405,290],[517,5],[550,68],[576,111],[864,342],[464,921],[730,639],[787,967],[460,555],[684,573],[242,930],[595,7],[884,490],[654,400],[510,926],[872,947],[349,817],[777,870],[539,60],[777,863],[66,331],[531,370],[133,532],[740,397],[365,364],[854,923],[20,966],[258,981],[232,486],[490,134],[174,835],[594,87],[351,766],[127,720],[846,535],[56,554],[154,812],[9,754],[403,629],[300,88],[100,898],[713,368],[437,440],[460,854],[94,824],[188,963],[224,38],[273,355],[133,472],[280,808],[323,587],[403,570],[163,161],[936,346],[154,580],[55,897],[169,305],[593,962],[324,714],[378,434],[775,514],[520,366],[335,146],[960,240],[260,121],[36,310],[69,306],[678,11],[550,328],[109,699],[25,133],[837,612],[167,765],[38,187],[899,97],[221,493],[101,846],[528,567],[142,453],[174,328],[654,10],[547,155],[311,943],[656,251],[417,723],[21,528],[989,268],[30,514],[537,865],[859,496],[116,100],[480,861],[519,872],[34,140],[760,247],[353,625],[100,123],[696,137],[1000,517],[779,918],[204,730],[496,479],[607,331],[952,384],[50,648],[504,528],[828,139],[405,25],[419,959],[258,661],[639,956],[758,30],[637,612],[955,113],[468,706],[812,302],[848,61],[137,874],[694,941],[817,863],[504,607],[397,227],[406,420],[438,796],[350,460],[526,197],[472,284],[346,135],[860,9],[38,395],[234,783],[395,617],[250,24],[969,278],[443,845],[522,895],[658,739],[629,262],[87,159],[649,51],[777,338],[276,676],[15,7],[837,718],[466,834],[556,863],[894,534],[712,477],[597,145],[53,812],[640,896],[712,763],[847,264],[756,165],[102,765],[80,434],[193,754],[587,848],[487,995],[559,482],[518,603],[86,83],[516,727],[310,47],[678,256],[595,493],[569,989],[117,185],[80,54],[756,799],[285,856],[715,321],[247,312],[181,188],[279,126],[340,786],[901,240],[568,512],[638,14],[900,440],[574,405],[611,211],[183,845],[397,823],[780,618],[6,277],[205,446],[494,739],[720,103],[810,953],[938,736],[861,572],[122,534],[812,601],[954,698],[491,345],[469,983],[46,380],[819,450],[517,31],[218,979],[105,437],[575,212],[829,151],[992,327],[670,562],[492,21],[529,459],[887,663],[717,698],[465,352],[105,421],[254,865],[903,281],[600,145],[874,408],[992,995],[635,614],[102,515],[624,591],[766,679],[944,498],[605,536],[636,624],[422,16],[375,69],[621,915],[563,95],[66,256],[147,953],[502,320],[818,320],[751,818],[553,598],[883,710],[506,673],[848,209],[211,642],[24,1000],[482,813],[574,718],[800,522],[970,4],[569,498],[727,771],[933,513],[781,211],[104,400],[347,532],[802,574],[758,184],[731,981],[461,175],[586,770],[879,97],[319,544],[349,531],[223,466],[815,173],[371,791],[870,51],[568,69],[697,72],[556,828],[215,917],[89,378],[166,359],[82,778],[140,427],[618,527],[163,29],[271,544],[622,210],[376,963],[93,546],[519,167],[688,237],[737,933],[697,52],[275,975],[698,157],[993,957],[105,323],[123,220],[729,920],[934,739],[16,555],[139,475],[959,67],[801,127],[427,85],[641,427],[1000,420],[577,594],[279,81],[745,422],[362,924],[115,951],[968,796],[497,820],[124,606],[295,427],[855,481],[74,486],[430,724],[329,354],[959,294],[915,991],[735,709],[348,338],[343,110],[505,821],[590,676],[482,786],[6,537],[686,388],[988,291],[793,471],[857,38],[995,251],[137,493],[529,412],[442,688],[506,850],[88,909],[220,939],[852,718],[184,688],[453,603],[684,542],[691,536],[304,594],[77,910],[997,478],[675,655],[178,269],[150,565],[700,241],[103,669],[341,811],[237,307],[292,714],[60,333],[841,337],[258,189],[697,867],[171,308],[140,418],[893,352],[968,627],[233,958],[392,17],[391,103],[44,66],[429,496],[172,878],[468,585],[545,378],[112,694],[169,493],[313,874],[102,95],[907,260],[842,594],[294,264],[229,486],[799,944],[498,544],[400,113],[577,256],[607,163],[820,308],[486,761],[92,747],[175,713],[68,683],[192,313],[517,348],[964,11],[296,869],[5,353],[271,689],[794,941],[69,69],[495,277],[454,286],[317,523],[162,132],[975,681],[579,331],[325,725],[96,231],[519,343],[897,779],[331,845],[611,807],[345,756],[294,25],[395,667],[207,365],[146,936],[801,704],[939,555],[979,826],[102,415],[514,801],[825,786],[343,453],[746,116],[955,463],[59,742],[121,235],[46,75],[24,574],[349,559],[158,863],[12,650],[155,43],[745,342],[221,400],[793,509],[533,293],[968,614],[320,449],[735,22],[218,887],[740,798],[560,399],[635,384],[10,926],[429,392],[90,218],[854,126],[731,884],[69,213],[975,923],[828,810],[458,60],[637,439],[580,500],[155,149],[283,33],[34,717],[564,866],[764,915],[321,428],[969,647],[274,883],[698,230],[6,192],[374,630],[526,64],[470,617],[508,481],[963,855],[706,830],[235,642],[417,550],[43,912],[104,100],[817,826],[560,708],[58,550],[523,232],[971,444],[990,484],[937,130],[428,328],[497,360],[711,156],[820,699],[561,220],[397,876],[203,729],[901,89],[677,195],[888,476],[941,1000],[186,390],[245,225],[309,857],[398,289],[655,649],[639,28],[328,874],[638,215],[219,722],[701,600],[470,935],[532,814],[10,525],[859,660],[223,574],[382,114],[669,710],[845,894],[598,37],[425,730],[309,846],[546,927],[387,976],[105,656],[440,821],[846,491],[922,513],[908,847],[476,408],[449,482],[200,217],[463,466],[950,536],[871,643],[763,328],[587,577],[844,296],[988,258],[668,409],[45,739],[516,990],[933,670],[660,915],[216,722],[272,217],[365,201],[408,149],[144,947],[878,970],[362,598],[224,694],[623,527],[940,339],[389,297],[247,165],[60,12],[356,283],[394,136],[300,348],[325,489],[268,953],[433,927],[99,572],[934,611],[625,908],[585,724],[657,141],[846,394],[486,623],[603,683],[684,349],[151,288],[430,382],[608,323],[547,739],[558,349],[30,490],[602,276],[793,213],[757,342],[101,884],[637,442],[224,617],[452,94],[444,5],[914,387],[34,914],[723,69],[129,938],[914,25],[218,526],[55,881],[42,56],[420,893],[902,645],[652,362],[292,160],[326,716],[480,869],[915,263],[972,239],[9,892],[367,948],[701,906],[36,718],[721,606],[925,264],[475,7],[995,131],[682,814],[167,70],[152,70],[507,440],[781,654],[659,534],[465,354],[489,912],[300,297],[157,28],[213,825],[318,211],[693,662],[830,695],[815,639],[76,885],[110,487],[626,566],[832,601],[604,586],[756,551],[106,447],[25,725],[112,894],[542,290],[765,230],[883,995],[12,349],[9,152],[624,977],[848,534],[772,232],[968,239],[481,834],[452,442],[552,54],[215,543],[102,970],[796,623],[742,168],[793,478],[252,354],[892,355],[990,138],[83,523],[875,969],[685,739],[173,213],[758,799],[605,832],[92,342],[394,606],[423,638],[532,167],[970,83],[785,815],[632,555],[661,353],[412,161],[368,325],[552,711],[334,436],[998,101],[52,905],[593,267],[813,739],[694,72],[294,687],[660,26],[751,928],[54,647],[834,612],[164,581],[118,851],[727,824],[248,928],[531,59],[532,309],[190,384],[494,760],[618,340],[265,428],[981,934],[823,298],[253,733],[107,705],[46,242],[259,950],[24,176],[26,692],[615,540],[150,420],[311,644],[105,489],[622,190],[948,686],[368,634],[939,482],[878,944],[182,995],[2,460],[145,169],[195,592],[562,389],[118,461],[425,10],[545,292],[183,355],[506,893],[173,550],[968,995],[570,529],[385,872],[361,77],[933,225],[686,354],[491,270],[317,119],[62,313],[836,787],[192,906],[92,357],[940,634],[430,426],[877,655],[439,750],[305,158],[584,902],[974,707],[420,407],[258,119],[976,185],[508,997],[423,766],[737,451],[43,853],[284,803],[328,737],[596,506],[354,734],[406,764],[984,201],[945,99],[360,645],[890,21],[255,641],[799,900],[286,616],[730,181],[931,484],[787,382],[569,801],[113,132],[24,789],[430,152],[739,664],[738,470],[28,864],[164,625],[491,11],[979,544],[856,380],[155,995],[730,64],[245,247],[617,783],[550,422],[151,117],[131,11],[212,497],[812,257],[576,318],[334,803],[826,641],[805,870],[330,111],[802,32],[234,510],[892,677],[619,489],[464,967],[209,863],[877,145],[555,805],[367,363],[721,170],[212,87],[16,744],[79,218],[900,359],[651,688],[882,652],[301,964],[785,84],[992,63],[310,380],[391,50],[381,604],[909,125],[69,368],[362,334],[956,697],[326,325],[234,81],[694,665],[266,552],[857,980],[324,793],[6,956],[808,768],[55,833],[261,953],[67,186],[603,281],[488,534],[64,828],[340,637],[229,885],[610,397],[231,689],[691,915],[558,246],[552,96],[585,418],[534,265],[620,331],[558,770],[146,699],[850,178],[926,652],[990,977],[14,459],[239,153],[555,998],[529,113],[535,202],[959,53],[742,453],[277,393],[603,138],[727,776],[639,927],[390,299],[697,184],[835,571],[309,681],[380,122],[179,220],[422,415],[596,77],[467,495],[650,533],[995,18],[142,476],[925,301],[818,269],[760,294],[383,946],[397,987],[743,607],[747,664],[403,445],[458,990],[507,427],[302,934],[868,870],[207,486],[962,302],[480,641],[498,386],[737,528],[782,321],[94,68],[146,928],[438,423],[620,298],[521,632],[349,329],[458,367],[210,676],[137,9],[591,199],[996,697],[845,806],[505,476],[658,731],[659,670],[805,828],[708,538],[157,744],[225,955],[408,72],[288,132],[78,892],[446,594],[337,67],[877,60],[311,389],[278,406],[231,224],[355,60],[612,939],[488,473],[229,353],[354,839],[120,910],[102,163],[198,793],[381,63],[631,341],[367,404],[40,130],[705,421],[757,249],[848,47],[597,572],[313,84],[98,488],[395,774],[872,59],[774,313],[430,416],[599,401],[711,916],[971,57],[297,176],[410,517],[823,125],[243,880],[961,958],[168,800],[571,82],[629,933],[589,747],[671,508],[823,845],[401,272],[907,177],[592,378],[55,294],[445,94],[939,177],[499,848],[852,392],[630,655],[6,38],[684,848],[190,728],[482,624],[544,146],[365,849],[12,164],[444,186],[224,610],[478,256],[554,106],[466,93],[479,880],[953,75],[35,205],[610,14],[622,660],[797,851],[492,106],[238,412],[367,369],[85,459],[814,430],[933,593],[475,706],[116,581],[950,424],[142,353],[249,210],[259,22],[736,537],[716,241],[948,159],[972,715],[194,420],[137,125],[963,382],[725,549],[20,858],[283,971],[253,952],[519,227],[817,996],[946,276],[251,380],[57,739],[697,319],[754,687],[127,350],[185,90],[795,314],[985,345],[110,452],[285,57],[678,506],[276,393],[900,746],[230,807],[124,418],[676,426],[129,753],[489,896],[553,205],[545,430],[462,43],[18,252],[319,229],[327,402],[443,300],[44,669],[933,212],[365,472],[608,211],[969,998],[772,371],[127,347],[713,555],[480,198],[829,310],[393,951],[582,319],[597,275],[720,593],[418,984],[248,522],[734,987],[350,933],[633,843],[996,331],[568,347],[957,71],[60,124],[750,749],[795,254],[329,705],[76,204],[808,258],[835,219],[976,852],[941,502],[748,713],[217,617],[562,976],[211,991],[274,476],[595,224],[364,953],[126,818],[327,150],[587,601],[835,13],[349,723],[251,365],[783,643],[170,900],[387,657],[24,385],[975,555],[732,227],[750,773],[795,82],[133,858],[461,554],[586,108],[551,40],[625,22],[227,486],[400,4],[205,671],[503,477],[504,729],[255,524],[209,445],[964,60],[282,880],[686,77],[526,45],[325,458],[874,523],[580,489],[581,138],[208,910],[72,608],[404,43],[335,113],[278,271],[980,713],[966,627],[389,485],[402,881],[459,697],[289,654],[91,122],[844,700],[354,797],[67,473],[85,226],[373,893],[150,135],[346,664],[289,394],[993,548],[820,830],[941,433],[693,199],[770,805],[746,101],[23,808],[362,661],[513,620],[314,771],[111,53],[863,369],[133,950],[472,59],[754,235],[608,207],[170,798],[275,651],[203,202],[137,695],[544,665],[789,971],[904,313],[165,22],[647,900],[983,938],[509,76],[921,315],[878,309],[483,124],[586,478],[723,797],[961,732],[132,48],[833,911],[726,470],[538,204],[518,80],[704,665],[518,153],[177,211],[791,962],[526,18],[909,877],[745,729],[50,625],[1000,98],[577,434],[635,601],[304,816],[840,661],[119,8],[19,239],[326,16],[284,547],[371,401],[440,145],[221,649],[290,267],[716,265],[426,792],[672,76],[671,745],[249,132],[435,142],[514,527],[651,753],[884,322],[335,987],[950,72],[179,98],[111,578],[159,560],[191,165],[607,780],[165,69],[460,502],[441,892],[529,248],[80,278],[333,932],[408,456],[431,482],[584,573],[978,183],[647,157],[405,741],[585,988],[821,204],[761,495],[7,61],[385,810],[842,233],[791,267],[759,973],[710,513],[81,752],[196,794],[600,413],[867,95],[806,355],[720,194],[656,794],[112,762],[571,488],[436,156],[68,169],[508,863],[538,608],[950,209],[201,351],[805,553],[789,833],[310,684],[849,470],[226,321],[875,41],[330,839],[556,62],[973,758],[451,950],[592,231],[309,168],[362,309],[848,146],[575,753],[232,934],[160,15],[188,371],[217,204],[594,562],[758,474],[388,736],[583,249],[412,156],[335,978],[112,543],[622,224],[174,581],[936,340],[624,388],[606,874],[218,728],[598,617],[766,6],[174,262],[530,192],[457,607],[249,375],[500,265],[198,884],[214,517],[977,647],[960,623],[923,219],[5,409],[45,880],[383,748],[438,659],[906,807],[820,642],[369,401],[753,18],[29,302],[394,145],[835,697],[365,404],[244,310],[913,439],[478,55],[103,794],[532,312],[750,841],[116,183],[518,90],[421,289],[387,830],[908,45],[931,310],[707,828],[858,478],[509,12],[497,323],[82,151],[132,230],[660,233],[985,876],[947,885],[390,605],[920,314],[796,455],[666,355],[342,396],[222,439],[558,658],[861,301],[768,615],[912,893],[879,57],[70,754],[451,64],[427,728],[241,937],[589,821],[40,479],[837,224],[1,753],[95,635],[318,191],[964,331],[700,792],[752,836],[491,795],[852,389],[305,818],[675,442],[43,676],[187,433],[4,107],[656,972],[854,254],[713,762],[249,188],[159,40],[69,931],[449,852],[17,261],[510,22],[172,135],[435,859],[379,532],[236,599],[78,604],[255,541],[82,250],[761,127],[544,377],[820,30],[288,264],[314,501],[589,758],[125,137],[336,14],[996,96],[770,101],[323,50],[184,12],[22,175],[740,609],[427,892],[317,424],[233,892],[483,366],[712,292],[124,193],[778,243],[621,88],[499,487],[871,776],[921,781],[250,941],[744,965],[351,918],[406,969],[317,217],[893,569],[168,569],[330,888],[124,255],[937,325],[919,297],[121,634],[679,616],[184,5],[422,599],[95,908],[726,493],[114,341],[110,582],[341,944],[826,458],[653,522],[393,868],[12,502],[258,170],[797,400],[882,350],[53,631],[55,665],[156,439],[737,234],[782,780],[700,600],[352,13],[387,600],[551,553],[987,869],[542,507],[10,510],[969,240],[712,505],[282,699],[385,240],[939,409],[856,715],[257,244],[144,582],[309,118],[566,430],[214,41],[254,663],[286,937],[583,776],[874,275],[552,621],[907,900],[878,637],[387,967],[823,697],[825,106],[239,273],[479,416],[978,743],[56,610],[854,201],[38,582],[988,91],[294,864],[653,143],[339,754],[410,214],[227,841],[525,593],[816,624],[388,23],[619,134],[99,42],[420,819],[156,192],[65,546],[316,341],[933,632],[304,85],[859,150],[782,73],[269,366],[288,434],[913,336],[522,265],[48,517],[987,678],[474,213],[630,807],[855,196],[843,598],[466,675],[274,990],[618,850],[260,594],[613,660],[89,460],[204,891],[768,834],[291,613],[34,236],[915,845],[445,319],[819,802],[856,334],[925,800],[410,210],[51,985],[212,709],[779,789],[696,944],[670,395],[425,96],[517,871],[842,798],[724,850],[914,142],[513,372],[336,375],[581,448],[250,425],[200,363],[377,74],[16,433],[499,797],[200,96],[752,878],[797,654],[222,640],[112,305],[792,280],[151,861],[657,400],[920,903],[870,898],[697,329],[32,903],[24,503],[294,57],[351,850],[80,297],[552,465],[904,885],[272,860],[13,137],[487,385],[881,428],[485,513],[913,702],[936,373],[172,30],[749,320],[658,39],[676,693],[736,272],[566,58],[304,634],[644,435],[695,653],[144,80],[944,703],[301,438],[778,80],[72,21],[748,685],[601,998],[809,46],[875,721],[602,426],[455,964],[184,882],[203,310],[281,944],[895,85],[9,351],[351,310],[948,391],[139,820],[862,65],[242,682],[55,156],[517,635],[737,161],[890,728],[669,78],[236,74],[240,106],[905,739],[717,450],[897,512],[823,996],[17,891],[936,193],[881,186],[682,193],[759,163],[849,652],[99,250],[723,366],[658,647],[12,837],[293,623],[67,329],[52,336],[633,185],[187,676],[940,787],[349,233],[189,97],[931,655],[41,995],[912,171],[332,430],[955,11],[163,356],[903,453],[658,233],[846,280],[534,666],[80,637],[995,997],[96,909],[859,476],[6,811],[666,754],[818,155],[303,626],[775,856],[740,230],[284,638],[803,216],[656,704],[242,866],[64,418],[252,967],[864,954],[472,129],[928,731],[434,362],[629,488],[892,427],[702,697],[769,900],[763,199],[440,77],[156,695],[284,890],[141,943],[33,598],[485,163],[547,923],[387,323],[191,358],[294,556],[58,142],[675,760],[448,579],[680,560],[368,267],[531,209],[676,117],[266,622],[534,69],[556,300],[891,414],[660,662],[278,77],[970,231],[976,336],[677,131],[8,350],[669,434],[577,758],[33,737],[886,311],[988,718],[269,292],[687,85],[639,564],[975,905],[625,584],[737,518],[971,338],[644,789],[738,572],[520,755],[113,946],[742,404],[924,308],[628,815],[187,83],[239,508],[141,533],[150,650],[986,993],[770,956],[893,243],[462,856],[826,273],[604,539],[1,278],[410,132],[117,963],[149,826],[928,369],[89,481],[691,571],[390,624],[840,508],[912,585],[821,551],[284,490],[17,733],[947,5],[456,489],[737,346],[522,479],[35,934],[685,262],[670,347],[811,198],[893,558],[946,704],[788,952],[874,879],[27,495],[893,42],[441,950],[222,233],[785,279],[8,914],[203,196],[968,156],[395,407],[342,38],[647,348],[969,756],[546,847],[92,738],[124,283],[262,413],[287,52],[751,157],[45,632],[11,821],[260,456],[605,93],[835,826],[422,581],[809,588],[556,691],[173,90],[632,471],[803,633],[289,447],[279,611],[228,65],[147,132],[70,13],[773,650],[245,761],[108,934],[678,754],[216,656],[526,110],[440,25],[756,163],[193,821],[591,259],[572,774],[437,611],[65,879],[686,624],[763,970],[35,799],[92,416],[592,540],[622,993],[901,500],[301,267],[439,248],[765,60],[555,896],[550,820],[813,830],[426,38],[381,707],[920,368],[924,349],[184,795],[691,949],[546,380],[10,228],[391,481],[736,466],[482,294],[165,216],[194,709],[742,213],[587,968],[143,639],[195,723],[540,589],[449,563],[867,451],[929,506],[503,929],[683,74],[320,187],[533,516],[714,309],[489,941],[219,889],[392,427],[979,777],[961,707],[287,155],[749,629],[376,126],[320,763],[306,833],[578,950],[681,708],[231,383],[897,323],[264,307],[768,691],[585,509],[459,171],[771,774],[157,842],[31,359],[190,553],[738,439],[898,217],[850,651],[660,926],[438,898],[354,363],[468,704],[504,96],[281,480],[505,244],[839,160],[692,284],[124,221],[682,533],[41,623],[306,969],[979,503],[389,325],[468,884],[978,206],[541,988],[549,499],[642,778],[76,264],[187,731],[329,257],[883,652],[820,114],[370,370],[137,14],[671,186],[917,181],[880,875],[383,426],[560,290],[954,384],[99,718],[883,274],[533,289],[808,273],[407,563],[338,536],[472,127],[91,350],[576,374],[558,365],[175,346],[815,72],[956,354],[228,76],[485,160],[394,173],[549,504],[117,526],[90,259],[293,30],[404,890],[794,35],[788,202],[434,497],[133,216],[817,654],[540,878],[876,993],[660,858],[481,194],[897,868],[51,255],[426,452],[402,27],[713,883],[138,84],[667,686],[398,723],[602,665],[168,610],[272,662],[604,88],[953,722],[577,205],[363,869],[29,221],[242,870],[639,17],[617,157],[591,128],[385,338],[479,845],[46,608],[655,634],[835,39],[43,296],[315,977],[869,30],[564,498],[848,950],[898,123],[527,330],[409,784],[220,141],[327,440],[463,196],[549,588],[833,168],[929,968],[963,731],[433,800],[911,41],[227,955],[742,585],[526,816],[932,734],[368,3],[566,833],[927,927],[209,620],[787,67],[697,372],[784,373],[591,190],[568,61],[298,28],[684,996],[137,899],[513,333],[399,984],[41,179],[587,930],[657,920],[156,303],[32,46],[504,959],[433,119],[265,659],[272,888],[451,689],[840,893],[229,321],[856,737],[631,952],[113,249],[41,824],[823,230],[201,411],[561,821],[475,298],[444,58],[870,761],[869,197],[693,188],[895,27],[204,950],[880,838],[4,21],[569,125],[870,625],[370,192],[961,813],[957,282],[958,685],[573,524],[358,844],[202,126],[635,485],[20,460],[577,744],[358,986],[178,500],[495,442],[290,829],[557,325],[897,702],[285,382],[801,345],[709,202],[937,724],[173,783],[862,213],[681,687],[549,584],[714,445],[594,301],[688,118],[700,790],[452,335],[382,250],[520,575],[223,25],[972,87],[337,973],[354,973],[477,915],[242,285],[436,278],[932,480],[219,230],[307,848],[746,11],[403,837],[491,101],[19,325],[192,14],[197,346],[585,706],[924,828],[946,298],[698,303],[483,391],[68,821],[16,260],[50,827],[694,884],[675,137],[898,720],[266,298],[165,278],[596,923],[713,812],[960,665],[360,356],[761,589],[701,661],[746,103],[427,263],[24,695],[576,267],[738,281],[198,778],[320,777],[393,772],[348,423],[844,407],[652,412],[845,65],[324,712],[143,351],[905,972],[413,760],[799,840],[330,545],[178,454],[503,184],[195,93],[311,511],[148,224],[766,120],[32,981],[951,407],[189,537],[552,337],[949,267],[428,544],[584,975],[929,408],[22,802],[619,491],[305,989],[631,982],[995,361],[656,441],[609,62],[693,75],[843,327],[188,716],[365,203],[549,214],[525,900],[489,61],[739,826],[144,988],[79,631],[549,422],[364,465],[758,973],[283,802],[574,482],[747,936],[752,408],[881,866],[983,205],[999,792],[996,544],[948,399],[925,827],[6,871],[509,188],[889,215],[219,951],[765,96],[240,424],[164,118],[650,372],[92,105],[881,919],[763,13],[408,134],[729,230],[81,524],[207,496],[28,688],[961,262],[967,838],[37,645],[446,648],[774,425],[706,470],[981,251],[726,478],[786,126],[709,808],[275,156],[364,742],[645,780],[905,208],[690,597],[662,130],[448,76],[823,386],[319,112],[867,280],[950,736],[964,627],[459,119],[236,342],[117,923],[746,112],[655,710],[954,46],[62,544],[481,790],[478,320],[938,55],[537,563],[238,484],[633,317],[487,621],[554,609],[566,542],[352,247],[652,330],[638,263],[191,831],[86,400],[809,23],[930,630],[798,703],[322,387],[787,995],[953,239],[43,84],[668,813],[451,20],[50,541],[749,136],[518,808],[178,687],[282,402],[545,961],[569,835],[588,653],[994,50],[216,169],[232,218],[921,627],[697,661],[235,651],[175,867],[506,472],[742,87],[515,480],[557,481],[416,499],[622,504],[83,666],[90,74],[557,616],[113,441],[641,577],[966,349],[668,250],[866,136],[125,725],[96,441],[510,51],[566,707],[672,944],[329,694],[759,9],[546,659],[113,815],[175,472],[881,311],[222,115],[295,524],[263,233],[823,433],[978,993],[148,236],[615,579],[768,189],[889,180],[176,331],[783,345],[376,263],[397,711],[646,374],[222,987],[772,984],[395,954],[634,988],[695,578],[176,107],[186,240],[594,200],[878,787],[699,215],[764,847],[410,583],[814,49],[248,532],[647,987],[559,680],[176,652],[320,119],[576,955],[574,398],[350,416],[314,620],[174,18],[39,743],[546,224],[603,144],[791,990],[918,102],[564,283],[840,915],[132,835],[743,284],[761,649],[66,911],[36,549],[893,350],[905,24],[683,854],[397,485],[171,583],[386,934],[349,277],[333,580],[414,82],[534,5],[664,174],[470,120],[419,536],[320,438],[293,10],[578,907],[637,556],[651,724],[148,206],[501,470],[550,814],[596,981],[842,393],[376,802],[273,153],[942,676],[304,185],[535,137],[133,779],[859,23],[685,68],[834,552],[675,615],[443,683],[672,471],[478,689],[968,75],[260,382],[623,865],[81,646],[78,138],[303,348],[918,403],[170,441],[891,708],[859,125],[926,871],[448,51],[341,879],[59,569],[512,238],[521,151],[592,852],[508,936],[746,192],[187,661],[201,35],[913,842],[104,450],[115,765],[859,10],[620,452],[844,241],[512,719],[675,417],[286,779],[212,227],[962,392],[97,91],[801,846],[182,195],[945,849],[557,954],[526,904],[323,311],[885,529],[259,654],[913,121],[933,407],[562,189],[149,944],[37,279],[985,380],[418,807],[422,237],[699,393],[875,669],[402,461],[577,223],[113,277],[587,396],[249,405],[42,43],[191,701],[596,484],[198,359],[684,476],[960,425],[730,566],[939,619],[16,292],[371,550],[101,468],[621,605],[148,46],[564,29],[193,315],[467,232],[289,949],[312,449],[99,591],[87,669],[733,920],[133,898],[574,365],[343,953],[895,315],[811,333],[225,591],[60,870],[984,239],[226,809],[55,535],[312,77],[103,967],[625,729],[485,788],[328,369],[22,683],[31,398],[936,21],[408,587],[187,38],[72,513],[572,347],[881,701],[912,635],[293,292],[937,959],[423,195],[45,383],[742,832],[748,679],[186,602],[301,353],[425,830],[112,645],[135,666],[309,622],[216,256],[801,379],[622,287],[335,917],[520,355],[307,390],[736,102],[633,214],[134,758],[331,488],[919,85],[51,611],[305,518],[315,755],[180,956],[989,837],[97,239],[27,428],[88,362],[554,387],[548,568],[80,762],[983,403],[434,102],[513,718],[737,849],[681,350],[741,18],[100,556],[782,564],[523,968],[456,328],[56,885],[648,508],[118,913],[926,381],[547,939],[706,489],[406,288],[611,855],[809,45],[835,793],[720,952],[291,18],[528,993],[428,51],[903,609],[205,712],[348,236],[908,986],[383,223],[996,761],[987,462],[68,237],[298,787],[995,261],[412,393],[156,452],[802,210],[493,103],[395,941],[813,920],[290,853],[974,734],[178,91],[715,173],[282,839],[759,552],[584,817],[206,198],[302,484],[378,366],[257,580],[29,785],[893,277],[523,950],[767,662],[124,155],[593,612],[771,581],[983,209],[315,45],[52,867],[381,407],[137,429],[825,605],[105,358],[957,885],[83,657],[802,13],[973,174],[144,529],[830,442],[545,438],[853,795],[460,255],[725,330],[278,16],[577,562],[752,863],[837,375],[604,722],[891,102],[41,164],[467,803],[840,217],[392,186],[465,934],[811,681],[485,608],[869,948],[459,944],[701,754],[714,311],[677,696],[465,857],[628,537],[892,926],[283,450],[863,803],[841,878],[911,751],[79,643],[318,454],[619,867],[941,673],[885,67],[677,8],[112,121],[251,404],[420,157],[18,225],[265,888],[412,508],[66,596],[692,990],[995,232],[252,250],[483,221],[948,162],[189,237],[302,511],[975,757],[817,659],[956,966],[180,375],[943,674],[128,921],[868,373],[588,876],[185,52],[943,808],[29,607],[741,573],[469,811],[876,188],[489,771],[266,986],[495,202],[658,914],[248,189],[873,239],[883,566],[31,140],[562,969],[385,509],[290,196],[991,257],[68,967],[916,695],[889,978],[280,110],[23,337],[439,553],[715,290],[745,965],[551,257],[351,537],[876,313],[400,484],[33,567],[31,297],[987,976],[638,972],[455,337],[398,426],[840,272],[44,720],[647,894],[936,461],[529,134],[902,498],[42,581],[306,17],[571,644],[288,995],[852,467],[797,457],[351,775],[760,22],[37,873],[59,170],[540,853],[240,526],[496,473],[276,657],[26,236],[930,559],[305,821],[579,100],[753,239],[763,624],[635,574],[301,207],[25,585],[211,176],[496,425],[909,940],[826,335],[924,958],[995,396],[211,553],[749,948],[435,233],[310,217],[912,373],[964,935],[966,164],[963,520],[666,761],[483,522],[908,63],[942,689],[322,225],[575,488],[423,7],[74,637],[941,294],[217,117],[679,961],[885,28],[449,93],[963,18],[820,381],[377,49],[592,677],[959,542],[647,698],[136,593],[683,53],[820,579],[316,373],[256,297],[472,699],[998,60],[156,120],[61,633],[425,583],[374,626],[155,241],[315,876],[169,573],[133,961],[891,148],[667,840],[282,994],[268,366],[388,418],[853,208],[462,452],[182,832],[198,193],[585,614],[814,50],[22,868],[817,687],[85,216],[496,212],[397,566],[379,158],[810,189],[714,405],[671,119],[956,246],[158,690],[247,395],[339,465],[90,888],[160,380],[172,318],[633,467],[369,952],[284,527],[460,239],[999,591],[923,754],[550,730],[35,427],[87,142],[204,542],[408,344],[45,180],[250,547],[794,179],[925,29],[206,931],[57,332],[341,428],[77,252],[681,176],[677,981],[85,469],[220,888],[247,450],[198,862],[350,759],[585,794],[743,336],[693,332],[235,203],[322,59],[223,883],[149,754],[309,502],[375,867],[804,291],[31,752],[129,605],[752,852],[67,431],[900,793],[106,231],[831,191],[341,962],[106,91],[604,807],[498,647],[44,501],[287,872],[355,290],[51,582],[85,458],[687,727],[585,6],[567,19],[949,216],[267,233],[999,894],[673,327],[699,161],[169,972],[698,881],[507,436],[409,354],[219,218],[95,623],[808,231],[456,753],[88,507],[933,356],[697,562],[639,787],[966,113],[951,400],[42,554],[312,969],[214,937],[986,786],[774,827],[145,28],[35,640],[424,907],[453,891],[525,106],[672,263],[895,37],[585,521],[919,542],[19,743],[791,288],[496,840],[28,475],[903,457],[994,715],[420,550],[679,878],[587,251],[810,170],[968,598],[596,926],[883,133],[151,607],[294,259],[626,977],[713,860],[518,816],[251,117],[947,919],[529,168],[948,358],[844,75],[605,749],[500,587],[233,84],[170,991],[295,940],[548,348],[345,5],[425,657],[375,849],[90,956],[83,857],[394,398],[530,10],[392,749],[851,646],[469,649],[636,18],[882,314],[529,196],[532,535],[402,666],[420,301],[545,660],[895,662],[367,731],[861,222],[162,18],[198,79],[72,747],[856,424],[159,995],[610,802],[484,138],[764,484],[240,894],[260,276],[757,764],[670,216],[658,833],[302,912],[968,921],[259,666],[676,353],[708,660],[651,844],[890,303],[113,558],[20,395],[421,564],[246,748],[206,571],[942,473],[344,235],[527,348],[555,572],[331,363],[334,826],[708,801],[857,819],[853,621],[760,93],[445,181],[450,778],[115,962],[422,359],[490,150],[360,51],[872,195],[83,106],[620,786],[370,616],[748,743],[368,694],[635,677],[566,430],[170,165],[515,553],[653,787],[531,45],[964,163],[823,748],[485,656],[293,139],[462,553],[616,193],[577,113],[908,301],[613,621],[867,966],[483,769],[593,462],[4,781],[178,947],[200,262],[436,934],[872,266],[715,186],[247,712],[737,34],[85,945],[616,707],[405,984],[754,248],[158,470],[80,858],[441,102],[994,903],[587,209],[279,427],[167,201],[547,809],[757,632],[794,97],[310,66],[479,496],[431,85],[210,181],[319,611],[569,66],[297,770],[132,725],[854,480],[748,589],[380,825],[281,334],[45,604],[60,88],[335,263],[910,513],[166,649],[550,966],[388,816],[286,703],[196,132],[600,862],[854,366],[584,407],[70,197],[606,600],[429,831],[597,457],[403,824],[860,900],[636,598],[341,643],[33,287],[968,836],[403,428],[802,116],[151,255],[3,61],[630,844],[994,996],[364,508],[648,226],[247,72],[263,949],[882,736],[503,52],[203,601],[163,406],[303,347],[93,405],[297,428],[215,605],[664,700],[351,735],[595,9],[433,318],[505,949],[329,977],[551,443],[493,830],[559,263],[386,353],[81,113],[841,378],[209,675],[523,203],[297,840],[414,127],[208,591],[171,998],[84,403],[852,443],[617,405],[653,966],[634,988],[704,673],[588,336],[148,458],[867,670],[28,800],[518,680],[711,944],[465,504],[848,635],[813,931],[998,724],[493,951],[637,280],[285,966],[57,855],[167,950],[708,669],[968,741],[359,724],[983,522],[827,674],[417,688],[571,89],[820,119],[32,832],[609,443],[924,769],[51,601],[751,539],[727,634],[22,726],[684,445],[932,706],[793,4],[629,485],[912,264],[320,852],[440,411],[16,697],[931,909],[731,119],[155,626],[123,147],[810,485],[631,187],[370,531],[283,379],[511,930],[186,31],[215,432],[249,89],[134,786],[23,267],[375,570],[395,631],[62,645],[692,40],[382,649],[877,792],[143,844],[385,354],[928,793],[23,53],[954,888],[315,403],[286,271],[941,746],[32,474],[289,457],[705,95],[59,924],[822,890],[884,470],[904,170],[593,654],[672,232],[41,627],[818,410],[187,117],[497,456],[853,759],[65,672],[758,422],[560,848],[313,750],[866,598],[127,716],[922,67],[982,961],[430,326],[842,872],[563,775],[877,747],[80,147],[293,75],[117,953],[408,976],[407,633],[90,1000],[446,605],[913,191],[403,611],[330,996],[758,202],[332,677],[523,549],[901,610],[401,713],[135,810],[351,531],[958,254],[164,514],[498,903],[147,692],[434,69],[55,817],[395,479],[828,786],[353,590],[390,558],[334,389],[49,785],[223,766],[932,183],[800,939],[662,14],[134,834],[941,559],[393,452],[56,196],[339,54],[582,176],[726,776],[581,572],[975,481],[496,465],[989,317],[353,952],[830,322],[441,238],[782,45],[828,322],[725,426],[518,360],[84,290],[277,848],[265,330],[212,905],[956,195],[478,50],[859,612],[718,807],[323,960],[297,317],[247,595],[470,741],[290,244],[396,427],[82,504],[765,518],[757,92],[862,420],[139,697],[814,588],[105,445],[212,645],[957,794],[211,697],[499,981],[55,641],[80,523],[7,727],[872,14],[332,608],[642,60],[610,832],[701,629],[75,82],[593,554],[124,925],[955,448],[415,695],[276,224],[424,8],[306,499],[829,361],[492,259],[12,341],[646,658],[93,413],[520,73],[582,565],[305,350],[154,267],[735,781],[138,908],[843,329],[686,148],[826,450],[978,812],[56,293],[656,235],[187,447],[6,352],[78,848],[431,382],[34,793],[714,907],[214,436],[889,419],[348,252],[963,154],[65,960],[608,240],[141,694],[864,547],[861,123],[131,656],[450,513],[91,104],[508,51],[347,430],[230,724],[207,181],[113,99],[792,658],[502,692],[758,105],[299,57],[418,24],[851,700],[1000,195],[134,514],[34,721],[805,947],[342,631],[507,190],[18,766],[80,125],[143,971],[627,507],[665,308],[566,280],[617,524],[286,421],[261,733],[122,303],[251,349],[8,458],[43,639],[772,250],[361,346],[971,799],[508,551],[608,589],[488,144],[234,170],[151,980],[854,750],[857,188],[836,111],[486,314],[123,273],[450,49],[962,855],[329,694],[376,599],[379,680],[998,560],[878,271],[31,68],[771,238],[432,18],[119,751],[64,589],[577,59],[680,496],[32,1000],[190,428],[686,691],[189,581],[105,393],[40,331],[1,736],[761,550],[692,439],[450,951],[820,47],[210,404],[633,224],[162,758],[545,346],[74,725],[880,782],[78,750],[500,898],[538,747],[943,286],[870,164],[473,268],[122,185],[163,537],[847,427],[360,966],[80,889],[349,419],[929,906],[802,664],[478,115],[712,335],[594,893],[904,400],[477,23],[891,734],[177,194],[565,558],[629,551],[790,848],[980,164],[380,816],[721,91],[221,810],[877,704],[400,50],[196,181],[798,530],[879,34],[33,956],[506,2],[317,65],[902,523],[893,451],[278,356],[341,702],[430,206],[273,823],[751,346],[370,215],[340,148],[347,345],[770,149],[173,313],[784,990],[599,375],[341,588],[393,426],[179,717],[844,577],[172,328],[645,960],[146,185],[286,264],[261,312],[175,178],[677,501],[278,78],[308,599],[776,2],[933,631],[873,418],[313,477],[569,265],[455,98],[841,172],[166,750],[84,141],[43,345],[92,979],[676,900],[145,476],[733,171],[762,692],[797,585],[415,10],[977,296],[166,700],[14,924],[462,952],[735,477],[248,74],[167,628],[222,276],[507,114],[703,295],[37,666],[658,6],[873,442],[29,324],[533,658],[74,180],[862,786],[999,786],[410,666],[222,622],[615,405],[346,837],[350,728],[270,719],[697,374],[881,525],[932,403],[601,613],[315,554],[502,515],[879,987],[355,124],[837,307],[707,133],[60,963],[589,226],[597,377],[914,310],[320,140],[39,800],[563,908],[450,481],[607,467],[506,915],[602,181],[2,834],[606,463],[378,105],[503,773],[337,271],[72,170],[533,373],[570,64],[735,542],[384,648],[385,454],[863,942],[282,425],[32,783],[365,21],[886,572],[601,535],[705,606],[439,906],[257,261],[36,975],[509,853],[815,963],[876,513],[83,67],[435,74],[666,482],[414,887],[46,359],[244,282],[539,745],[248,222],[664,918],[489,144],[812,170],[246,121],[792,774],[917,206],[80,86],[2,716],[870,762],[820,592],[176,989],[912,655],[673,21],[677,734],[170,491],[449,377],[288,380],[503,173],[658,214],[799,443],[152,908],[916,962],[538,39],[522,964],[153,937],[642,210],[254,325],[612,665],[260,749],[431,910],[571,449],[845,500],[45,304],[385,138],[404,585],[657,163],[973,669],[148,509],[758,317],[242,22],[566,191],[276,65],[429,802],[449,477],[741,110],[458,210],[743,318],[240,913],[742,411],[723,255],[440,65],[534,755],[250,268],[699,274],[172,253],[647,362],[284,526],[581,261],[149,226],[256,563],[580,315],[399,752],[572,397],[795,2],[954,514],[586,203],[896,832],[381,688],[402,782],[683,999],[149,579],[863,335],[798,314],[842,462],[975,667],[325,499],[224,496],[847,373],[165,192],[877,608],[119,577],[538,320],[664,874],[652,330],[974,592],[510,165],[774,996],[504,716],[823,86],[539,301],[168,558],[667,137],[987,539],[553,946],[374,769],[638,475],[559,269],[611,58],[933,244],[895,711],[262,214],[38,282],[744,157],[368,904],[911,249],[43,330],[935,655],[528,566],[179,61],[70,793],[872,395],[634,452],[810,597],[871,258],[985,148],[645,897],[539,751],[67,680],[705,15],[441,10],[729,264],[843,523],[919,164],[661,49],[333,556],[871,579],[307,646],[556,802],[583,220],[938,610],[482,206],[149,248],[606,968],[590,912],[658,136],[500,731],[363,348],[194,173],[327,561],[557,93],[247,309],[277,701],[96,802],[392,406],[810,384],[944,216],[179,193],[271,787],[621,306],[24,989],[321,925],[472,208],[877,50],[85,201],[866,192],[489,162],[733,272],[715,23],[308,983],[246,494],[374,184],[641,220],[509,169],[507,337],[916,499],[421,319],[564,67],[522,224],[713,633],[503,927],[797,243],[413,914],[176,709],[958,678],[5,771],[675,18],[705,578],[932,920],[526,900],[345,985],[765,431],[399,99],[884,212],[988,881],[214,416],[888,183],[855,422],[706,109],[372,841],[548,518],[102,21],[951,927],[642,625],[122,108],[12,499],[912,668],[536,723],[415,246],[631,56],[809,89],[98,90],[878,84],[478,457],[651,759],[413,959],[402,380],[338,633],[608,894],[960,962],[396,699],[900,125],[215,668],[743,563],[560,90],[275,244],[419,140],[676,291],[318,483],[638,490],[670,730],[964,659],[220,361],[520,447],[977,164],[747,911],[350,306],[297,642],[845,306],[568,852],[579,910],[281,839],[409,554],[109,728],[350,719],[560,756],[543,703],[683,405],[374,535],[763,768],[405,728],[629,320],[114,103],[61,606],[971,727],[263,513],[253,962],[605,689],[326,325],[247,686],[471,715],[846,694],[104,328],[934,575],[958,64],[838,973],[949,36],[885,497],[914,140],[240,425],[283,597],[386,915],[802,162],[798,647],[16,551],[188,324],[399,612],[722,730],[950,303],[675,29],[848,253],[804,609],[12,18],[770,574],[563,260],[777,645],[305,200],[139,517],[199,600],[873,732],[832,907],[57,78],[407,621],[35,913],[607,532],[293,778],[102,495],[601,585],[725,333],[432,720],[677,148],[618,915],[851,330],[40,850],[43,848],[134,937],[548,431],[57,770],[532,333],[576,369],[516,856],[977,707],[813,727],[621,452],[626,727],[476,733],[829,9],[623,151],[916,940],[989,812],[588,956],[171,28],[587,848],[802,287],[290,593],[620,621],[913,426],[734,842],[566,234],[272,916],[416,211],[404,169],[977,473],[224,370],[480,965],[746,69],[607,686],[835,962],[321,330],[41,867],[429,693],[333,217],[137,963],[37,366],[264,763],[74,889],[690,756],[655,565],[81,794],[516,694],[145,319],[355,891],[518,503],[688,704],[314,558],[486,203],[243,562],[958,401],[847,653],[683,323],[723,932],[816,444],[451,343],[186,570],[205,354],[500,420],[687,502],[518,157],[751,219],[622,387],[839,973],[776,350],[725,712],[706,365],[529,309],[355,484],[888,321],[792,368],[144,445],[975,917],[57,26],[48,232],[45,492],[128,152],[124,945],[702,905],[103,832],[73,284],[384,342],[780,879],[266,596],[484,643],[695,114],[611,790],[590,132],[807,138],[702,284],[435,34],[237,117],[386,664],[168,486],[857,696],[325,194],[92,474],[125,398],[794,767],[660,366],[51,843],[444,361],[876,856],[883,758],[79,79],[251,830],[716,98],[918,729],[14,73],[130,518],[531,263],[159,352],[735,189],[291,249],[672,978],[905,532],[71,957],[574,221],[581,654],[133,424],[76,508],[266,226],[877,576],[623,882],[888,419],[712,734],[837,9],[124,657],[235,416],[128,456],[583,460],[383,455],[852,161],[178,829],[3,352],[608,280],[557,921],[797,843],[696,372],[339,61],[368,481],[3,602],[588,796],[193,335],[777,791],[127,62],[794,508],[76,336],[969,472],[300,217],[445,738],[597,424],[34,570],[502,807],[633,692],[343,442],[669,160],[374,950],[646,383],[270,431],[195,556],[19,956],[214,708],[538,319],[202,570],[973,211],[981,476],[302,725],[134,878],[958,747],[723,855],[143,230],[727,862],[441,354],[821,988],[826,740],[415,178],[71,20],[19,255],[160,346],[10,697],[754,794],[704,437],[621,143],[701,16],[678,45],[172,507],[825,778],[268,39],[215,530],[350,368],[428,611],[177,9],[268,734],[912,630],[892,23],[493,380],[718,379],[853,181],[681,943],[252,682],[314,409],[694,993],[323,595],[892,18],[925,159],[811,802],[690,460],[291,824],[786,713],[244,169],[125,399],[100,986],[543,247],[228,890],[152,608],[698,862],[244,262],[233,279],[640,133],[877,358],[815,485],[225,496],[436,956],[961,590],[66,66],[205,309],[154,442],[51,605],[569,915],[740,138],[790,33],[819,709],[521,725],[125,153],[866,131],[85,602],[744,18],[864,353],[946,817],[574,956],[430,963],[945,703],[615,558],[421,148],[86,341],[781,240],[43,805],[215,283],[479,787],[134,105],[367,834],[615,323],[867,592],[768,587],[322,573],[155,76],[93,225],[638,429],[463,531],[739,529],[659,360],[942,41],[460,220],[342,359],[63,191],[630,208],[979,158],[575,316],[153,650],[687,268],[875,102],[178,377],[872,821],[315,457],[93,17],[234,429],[125,142],[145,537],[293,373],[769,635],[462,320],[179,344],[675,159],[633,964],[770,447],[333,52],[232,950],[982,765],[958,13],[561,649],[983,693],[408,313],[539,50],[999,15],[407,449],[491,28],[202,46],[910,692],[896,702],[156,644],[471,912],[82,638],[262,910],[728,556],[720,991],[800,936],[987,834],[9,628],[890,793],[310,352],[449,682],[162,595],[428,755],[409,743],[512,542],[625,93],[238,503],[11,884],[791,778],[897,917],[903,908],[346,791],[729,251],[886,243],[608,658],[248,985],[656,213],[955,557],[132,583],[426,358],[976,786],[427,388],[681,454],[130,769],[821,969],[668,56],[148,446],[316,368],[208,179],[955,665],[897,141],[97,778],[248,54],[561,803],[750,55],[370,434],[405,743],[757,392],[816,580],[904,795],[388,32],[761,529],[283,6],[532,711],[810,279],[16,407],[641,992],[34,25],[947,204],[547,911],[132,853],[718,970],[165,223],[773,90],[107,429],[860,699],[126,185],[299,111],[287,791],[795,737],[32,167],[180,664],[913,968],[394,658],[886,279],[999,229],[975,22],[812,515],[838,488],[370,656],[652,462],[220,528],[34,760],[784,116],[532,889],[151,320],[734,177],[512,842],[528,196],[597,32],[577,197],[967,593],[354,616],[134,18],[426,335],[574,51],[542,266],[94,64],[151,755],[904,602],[205,202],[429,529],[916,163],[941,706],[630,515],[942,964],[406,56],[803,984],[302,873],[569,778],[753,603],[96,337],[428,72],[609,715],[513,225],[585,937],[437,877],[923,855],[918,176],[93,435],[540,593],[545,226],[57,710],[132,218],[862,458],[409,221],[263,990],[691,614],[849,914],[617,620],[881,174],[192,133],[280,745],[383,847],[133,49],[390,222],[595,341],[877,466],[402,500],[687,624],[992,995],[208,297],[194,661],[265,784],[587,44],[458,342],[777,713],[123,703],[243,978],[551,136],[43,863],[35,326],[994,939],[927,235],[374,221],[31,386],[602,161],[700,957],[89,49],[912,876],[139,838],[893,612],[998,462],[724,214],[221,357],[689,128],[76,554],[439,261],[4,661],[643,493],[659,578],[351,869],[301,219],[652,738],[709,854],[59,932],[463,878],[914,57],[220,576],[401,196],[951,99],[586,623],[636,420],[821,811],[205,36],[125,990],[511,908],[970,201],[803,2],[757,875],[642,441],[240,509],[621,453],[430,389],[605,107],[922,146],[133,929],[694,484],[683,454],[429,622],[653,707],[876,526],[484,425],[881,108],[998,6],[539,419],[862,266],[804,610],[780,140],[156,513],[131,141],[132,293],[782,228],[635,714],[804,748],[842,169],[230,201],[677,775],[586,14],[805,259],[77,446],[805,150],[275,756],[83,198],[162,850],[295,707],[42,543],[4,863],[627,968],[27,755],[718,321],[498,985],[99,255],[868,748],[732,40],[928,881],[430,881],[885,481],[656,245],[274,654],[27,388],[982,931],[948,616],[813,174],[991,491],[976,457],[203,241],[412,184],[826,79],[950,144],[657,935],[658,603],[931,568],[580,22],[917,648],[914,363],[295,94],[731,475],[742,747],[866,900],[327,120],[537,789],[93,968],[219,830],[407,935],[877,483],[327,156],[57,645],[100,635],[63,913],[605,965],[998,423],[718,461],[481,679],[819,62],[924,88],[120,923],[919,209],[487,462],[674,166],[620,700],[759,230],[192,594],[207,444],[679,347],[510,367],[57,821],[434,896],[298,258],[963,913],[898,336],[741,539],[358,741],[599,149],[65,480],[229,683],[40,13],[939,428],[592,21],[610,537],[659,786],[676,759],[178,923],[357,446],[716,517],[945,109],[935,379],[241,338],[898,199],[579,94],[580,303],[310,442],[617,804],[936,327],[557,423],[766,664],[871,538],[743,282],[876,581],[307,313],[520,802],[248,263],[629,126],[346,558],[206,124],[225,998],[811,750],[290,225],[157,93],[401,393],[951,929],[565,326],[370,360],[978,571],[857,191],[525,995],[652,952],[338,994],[291,963],[314,395],[422,10],[101,964],[256,964],[378,76],[482,318],[892,504],[830,967],[465,772],[404,128],[94,37],[82,556],[245,8],[184,55],[419,656],[690,135],[218,382],[242,909],[875,477],[692,243],[5,888],[542,340],[138,696],[486,268],[702,221],[163,32],[186,803],[761,456],[600,523],[69,913],[137,634],[341,470],[154,275],[75,990],[307,158],[284,878],[622,521],[429,634],[836,386],[749,911],[375,260],[717,474],[961,953],[111,436],[589,681],[402,241],[491,178],[550,818],[907,314],[525,413],[17,113],[315,272],[733,146],[717,224],[489,445],[613,160],[88,966],[376,152],[775,780],[744,928],[310,664],[343,488],[675,46],[651,30],[381,892],[278,320],[285,792],[112,362],[736,183],[65,669],[707,341],[504,618],[185,486],[525,503],[978,286],[464,96],[173,526],[835,50],[805,104],[880,422],[887,116],[423,689],[464,883],[864,802],[130,676],[82,920],[810,144],[573,441],[735,344],[362,479],[520,344],[884,985],[797,297],[675,695],[736,828],[134,767],[129,398],[811,166],[912,204],[313,967],[264,624],[910,55],[12,438],[626,269],[543,732],[470,173],[704,586],[42,831],[423,188],[90,735],[232,481],[747,523],[530,369],[125,837],[526,300],[688,880],[325,464],[440,366],[42,937],[644,423],[182,648],[131,206],[445,387],[147,800],[294,789],[599,697],[651,702],[734,834],[333,778],[337,718],[817,125],[409,689],[251,977],[793,74],[143,17],[971,648],[68,355],[795,717],[619,666],[540,223],[700,32],[885,794],[869,82],[308,543],[980,401],[915,805],[162,323],[473,750],[102,473],[924,557],[724,986],[116,457],[96,893],[554,328],[462,267],[27,829],[894,905],[307,146],[441,613],[903,187],[256,953],[454,243],[619,918],[287,894],[650,885],[662,802],[175,332],[150,612],[73,214],[851,349],[527,253],[247,508],[485,621],[482,332],[515,112],[415,588],[219,893],[709,690],[304,690],[647,726],[932,791],[515,302],[934,703],[238,363],[631,346],[187,693],[172,897],[732,809],[173,614],[205,920],[40,583],[787,400],[314,171],[853,919],[324,77],[285,719],[514,352],[35,578],[172,669],[705,556],[698,596],[288,717],[96,834],[814,227],[321,681],[489,503],[418,884],[896,434],[17,344],[997,205],[152,362],[589,778],[919,49],[201,545],[46,242],[794,884],[783,996],[441,850],[238,158],[456,29],[504,523],[133,401],[528,652],[631,272],[6,314],[403,86],[592,159],[661,172],[451,47],[160,95],[376,634],[85,785],[33,55],[453,881],[784,721],[463,631],[136,510],[639,563],[904,521],[65,93],[140,442],[744,341],[944,146],[555,145],[395,232],[529,635],[71,448],[429,849],[672,402],[983,759],[461,266],[312,383],[419,559],[808,159],[377,186],[816,267],[633,538],[779,198],[8,543],[732,357],[137,216],[401,617],[89,872],[891,264],[404,813],[107,924],[965,7],[234,257],[409,943],[740,330],[618,209],[645,552],[189,798],[546,158],[5,406],[583,416],[700,987],[525,958],[897,104],[640,719],[8,543],[976,905],[446,573],[340,742],[292,742],[32,174],[453,186],[388,770],[212,26],[62,190],[26,540],[989,884],[867,149],[251,264],[916,288],[966,774],[434,766],[402,476],[648,631],[689,751],[15,701],[396,181],[361,754],[275,38],[475,853],[801,540],[887,875],[479,716],[439,362],[530,176],[22,726],[102,528],[402,769],[914,564],[481,517],[379,960],[17,513],[155,28],[701,56],[767,346],[893,286],[834,89],[241,590],[189,469],[478,706],[392,932],[247,871],[586,487],[998,785],[395,812],[898,120],[193,443],[70,417],[871,942],[892,88],[817,833],[889,521],[706,507],[79,489],[803,225],[887,164],[965,324],[270,156],[615,160],[717,40],[337,886],[166,325],[120,154],[832,796],[826,591],[901,872],[457,954],[607,266],[606,685],[904,179],[543,715],[722,752],[875,223],[130,982],[338,398],[493,814],[140,523],[656,772],[989,792],[715,573],[33,617],[926,983],[475,324],[68,693],[208,62],[209,223],[533,526],[541,436],[797,869],[777,198],[953,441],[605,814],[889,117],[935,417],[337,446],[815,590],[371,680],[42,255],[852,271],[401,574],[120,342],[927,530],[823,437],[873,915],[307,524],[919,613],[218,355],[718,213],[362,119],[569,268],[851,385],[394,909],[518,25],[567,493],[354,779],[443,692],[160,756],[118,525],[925,928],[435,420],[975,960],[552,374],[544,238],[878,288],[790,770],[759,593],[914,845],[652,195],[583,583],[900,202],[377,902],[284,295],[990,512],[485,810],[184,837],[395,906],[490,971],[143,376],[977,342],[933,393],[342,666],[610,935],[492,864],[737,447],[933,524],[976,113],[423,280],[210,985],[768,391],[846,312],[462,481],[746,299],[875,895],[950,193],[283,996],[482,367],[208,637],[762,217],[686,541],[369,474],[436,535],[72,604],[746,234],[604,583],[550,322],[769,412],[438,863],[120,216],[544,490],[526,723],[979,459],[902,957],[918,706],[101,410],[148,28],[574,692],[997,372],[968,117],[78,446],[535,929],[481,956],[811,826],[394,451],[659,720],[713,196],[284,639],[215,650],[653,478],[645,343],[598,131],[619,631],[891,742],[760,17],[774,257],[783,734],[251,566],[845,623],[722,765],[205,924],[939,672],[905,706],[594,892],[465,147],[456,208],[761,952],[982,866],[65,489],[730,590],[799,541],[733,946],[258,239],[408,770],[307,106],[698,804],[652,374],[589,477],[958,166],[291,749],[754,8],[561,885],[298,601],[318,939],[165,961],[297,800],[515,784],[636,222],[479,925],[270,292],[92,668],[359,763],[413,384],[915,719],[582,321],[642,484],[693,652],[292,809],[913,123],[312,428],[987,11],[150,761],[625,475],[642,255],[976,226],[338,609],[806,876],[155,666],[908,262],[235,122],[610,453],[242,515],[486,444],[181,736],[809,668],[673,482],[137,631],[75,233],[830,486],[442,836],[659,692],[533,978],[603,82],[415,418],[107,211],[820,93],[133,509],[941,64],[57,591],[726,966],[823,475],[595,256],[255,431],[999,794],[388,337],[656,495],[815,575],[349,345],[926,22],[771,653],[882,818],[447,428],[797,331],[794,942],[462,272],[355,961],[909,621],[263,793],[919,359],[956,35],[817,38],[859,903],[178,196],[388,902],[589,447],[583,839],[864,456],[829,721],[625,839],[708,220],[609,997],[373,830],[462,221],[461,401],[584,793],[401,177],[174,310],[286,822],[762,820],[243,462],[382,18],[674,760],[817,652],[980,117],[662,582],[364,321],[231,68],[351,43],[511,431],[356,55],[333,646],[532,25],[750,568],[799,509],[685,725],[434,376],[253,203],[301,683],[585,252],[934,415],[862,555],[446,598],[85,433],[106,218],[645,115],[746,311],[501,162],[313,669],[826,203],[117,792],[346,215],[15,263],[414,237],[335,800],[592,981],[762,944],[788,292],[720,792],[935,681],[736,343],[953,681],[955,797],[867,433],[602,455],[310,444],[175,33],[377,353],[851,511],[62,41],[616,35],[15,100],[809,120],[989,122],[713,420],[252,187],[926,82],[93,397],[558,135],[515,208],[255,218],[232,45],[792,633],[77,250],[15,917],[723,13],[753,17],[157,97],[834,935],[924,80],[603,266],[717,393],[898,794],[724,89],[404,928],[634,786],[132,210],[507,890],[264,875],[398,53],[627,514],[642,355],[226,267],[851,486],[444,612],[53,844],[718,59],[310,139],[691,36],[957,983],[428,801],[630,431],[736,433],[817,526],[748,560],[298,410],[70,78],[840,779],[209,477],[129,310],[429,722],[466,764],[739,883],[341,898],[495,747],[293,459],[876,212],[180,773],[903,478],[310,931],[334,328],[399,590],[251,552],[962,961],[901,72],[458,92],[589,709],[868,127],[205,491],[955,173],[948,865],[457,350],[40,846],[305,886],[369,763],[761,267],[461,75],[985,649],[58,606],[343,660],[448,614],[522,589],[222,890],[804,964],[794,62],[475,609],[579,989],[10,381],[281,598],[755,547],[904,725],[132,361],[410,646],[705,946],[984,657],[348,351],[642,294],[706,12],[92,199],[733,286],[290,284],[505,948],[565,654],[11,956],[373,179],[422,850],[310,379],[620,765],[379,368],[124,307],[912,388],[884,203],[427,473],[634,791],[192,798],[116,781],[736,498],[653,905],[13,607],[509,296],[111,651],[840,29],[136,460],[422,907],[942,335],[270,576],[570,683],[764,562],[919,767],[145,192],[17,687],[803,185],[452,998],[245,843],[673,793],[452,163],[105,165],[710,552],[880,714],[53,91],[78,530],[845,959],[917,638],[735,709],[932,160],[273,577],[892,590],[719,653],[60,129],[221,474],[434,50],[113,866],[818,806],[799,546],[928,80],[347,944],[58,447],[387,838],[384,587],[434,569],[643,570],[982,645],[403,655],[694,19],[200,461],[299,442],[358,750],[195,328],[465,988],[339,656],[287,362],[9,963],[707,831],[995,845],[369,71],[85,290],[427,476],[118,741],[521,726],[973,463],[493,654],[314,678],[454,354],[756,177],[23,289],[581,708],[787,258],[395,741],[525,584],[690,642],[244,604],[820,319],[9,908],[177,275],[344,193],[389,323],[434,954],[282,425],[577,81],[636,527],[149,318],[647,740],[325,844],[384,832],[997,221],[153,540],[969,555],[538,916],[546,611],[331,278],[434,365],[579,76],[181,251],[49,566],[223,326],[939,280],[748,449],[600,608],[906,211],[144,847],[330,518],[683,892],[598,361],[403,915],[127,353],[378,493],[515,123],[9,925],[967,63],[237,626],[942,798],[26,668],[733,87],[311,34],[824,163],[100,4],[226,18],[675,917],[264,859],[268,312],[277,237],[513,664],[62,748],[408,579],[536,629],[613,303],[377,237],[318,916],[887,152],[218,237],[503,412],[811,513],[18,80],[115,217],[96,431],[581,53],[302,915],[1000,866],[88,236],[557,829],[53,756],[336,210],[205,832],[542,551],[809,193],[106,327],[584,736],[101,52],[260,310],[990,338],[427,49],[453,754],[674,537],[828,830],[37,343],[878,979],[203,848],[760,542],[973,157],[256,735],[184,275],[553,570],[963,342],[889,343],[249,229],[111,826],[653,643],[551,20],[774,529],[709,197],[776,863],[851,136],[933,814],[394,126],[805,131],[684,121],[97,875],[539,769],[284,100],[399,58],[730,6],[617,513],[373,272],[333,537],[991,561],[545,544],[464,3],[861,854],[267,292],[701,110],[294,493],[969,931],[723,790],[886,373],[806,204],[583,4],[821,915],[968,55],[856,262],[826,290],[109,811],[137,835],[303,739],[941,583],[51,835],[747,667],[693,16],[417,745],[948,148],[383,522],[81,803],[505,873],[674,774],[105,13],[52,960],[847,545],[354,246],[508,56],[962,438],[28,244],[105,966],[697,686],[32,246],[158,717],[238,775],[936,476],[251,748],[787,231],[887,30],[129,980],[961,127],[731,616],[546,689],[322,928],[709,43],[254,446],[7,818],[494,214],[291,21],[628,337],[224,354],[704,440],[814,63],[589,757],[23,513],[661,591],[91,757],[351,890],[4,76],[87,632],[827,146],[407,47],[23,172],[379,650],[761,120],[496,372],[125,965],[389,905],[262,694],[663,180],[415,91],[222,85],[671,205],[339,325],[518,927],[998,720],[166,667],[481,306],[967,39],[31,623],[681,494],[47,507],[207,391],[971,951],[945,462],[462,248],[554,160],[959,589],[677,443],[864,465],[636,697],[623,690],[749,869],[310,73],[829,123],[313,916],[7,15],[412,540],[588,620],[990,900],[290,122],[283,865],[882,949],[851,433],[981,964],[136,805],[149,527],[662,292],[508,506],[519,841],[221,783],[605,110],[815,846],[865,154],[820,210],[605,154],[839,598],[389,797],[142,996],[134,273],[739,490],[980,464],[514,633],[311,640],[299,251],[373,340],[983,157],[736,590],[393,507],[838,172],[650,789],[524,888],[610,539],[712,822],[577,434],[288,382],[892,203],[1,240],[877,572],[516,822],[643,373],[758,916],[622,581],[628,978],[882,270],[376,716],[16,463],[190,2],[561,721],[573,593],[224,93],[662,954],[333,324],[729,759],[752,802],[130,57],[606,490],[88,122],[582,208],[406,215],[838,528],[992,167],[870,362],[452,667],[790,310],[60,759],[324,671],[810,931],[200,719],[413,354],[430,752],[843,711],[268,776],[56,101],[392,809],[731,821],[352,535],[848,678],[397,530],[171,553],[617,378],[824,20],[654,767],[432,949],[906,139],[84,821],[113,994],[816,149],[875,198],[197,749],[260,416],[563,834],[753,856],[272,244],[665,623],[165,444],[18,14],[413,550],[150,58],[414,837],[762,401],[653,405],[239,967],[253,996],[231,541],[195,881],[204,520],[372,961],[44,604],[113,736],[994,748],[198,479],[292,81],[873,673],[55,548],[25,383],[768,379],[369,625],[437,863],[40,331],[960,193],[864,941],[162,40],[457,848],[43,455],[844,435],[950,796],[170,66],[344,404],[459,724],[996,731],[1,825],[143,389],[535,402],[434,337],[212,691],[190,998],[308,293],[420,657],[968,660],[968,940],[570,994],[413,479],[153,337],[754,881],[692,798],[944,373],[434,794],[807,435],[309,685],[934,615],[203,566],[279,276],[248,194],[239,642],[893,431],[278,755],[393,937],[790,32],[772,39],[589,736],[739,978],[276,170],[702,367],[142,922],[678,782],[992,116],[939,266],[221,216],[44,89],[235,222],[576,123],[959,916],[683,763],[838,488],[870,588],[934,843],[675,66],[985,315],[824,93],[284,723],[821,704],[321,866],[274,706],[755,22],[301,921],[644,277],[463,375],[562,837],[171,162],[922,698],[349,81],[544,979],[598,38],[428,954],[238,915],[775,438],[974,486],[6,854],[254,67],[180,102],[252,857],[881,544],[952,796],[744,910],[390,808],[783,171],[125,574],[887,994],[425,667],[58,734],[313,351],[412,84],[822,288],[255,700],[736,40],[791,385],[865,41],[227,410],[561,23],[271,61],[614,284],[799,741],[482,896],[276,612],[265,318],[618,258],[300,820],[127,373],[566,224],[888,656],[181,737],[237,595],[590,573],[756,680],[501,801],[225,928],[988,532],[850,605],[793,306],[334,289],[700,195],[321,335],[914,390],[772,223],[889,683],[367,193],[990,872],[140,400],[1000,491],[56,504],[289,210],[906,447],[702,495],[242,955],[503,644],[682,407],[321,276],[895,119],[731,341],[734,308],[779,119],[442,637],[628,757],[776,650],[94,769],[452,671],[134,921],[257,329],[944,828],[109,970],[654,411],[912,337],[770,665],[643,742],[272,301],[871,570],[648,651],[3,924],[112,797],[36,865],[807,76],[326,516],[636,522],[471,388],[228,743],[990,672],[91,473],[472,987],[251,982],[961,23],[162,602],[396,468],[234,958],[550,633],[682,848],[202,386],[993,625],[672,239],[781,585],[322,178],[90,384],[739,688],[714,918],[46,71],[480,193],[10,171],[174,770],[38,453],[230,90],[555,969],[84,585],[682,582],[233,183],[994,259],[21,545],[114,475],[261,522],[38,467],[257,929],[945,303],[918,755],[103,320],[504,488],[714,851],[49,511],[229,499],[538,930],[741,486],[698,441],[880,766],[375,450],[313,827],[145,432],[22,72],[846,766],[187,379],[911,678],[635,207],[797,219],[636,186],[705,837],[673,146],[36,723],[44,680],[79,345],[286,211],[776,923],[64,443],[979,294],[780,497],[823,882],[472,117],[127,268],[545,693],[659,267],[826,866],[116,176],[255,637],[525,783],[502,476],[234,847],[41,284],[981,299],[836,398],[622,79],[542,538],[549,866],[107,941],[377,286],[13,888],[177,932],[641,903],[737,337],[701,640],[940,298],[275,210],[758,369],[781,799],[342,921],[81,669],[40,478],[336,160],[48,672],[677,131],[281,323],[270,599],[473,69],[31,483],[451,64],[557,592],[518,832],[462,143],[430,512],[147,195],[593,402],[293,620],[978,319],[946,887],[824,153],[419,308],[459,716],[962,316],[202,393],[20,680],[676,746],[908,358],[723,527],[630,394],[528,104],[6,984],[900,323],[832,502],[990,208],[792,967],[289,940],[211,710],[390,103],[725,292],[802,461],[841,477],[920,665],[331,604],[437,851],[961,679],[309,250],[146,324],[752,204],[829,896],[604,16],[130,119],[223,485],[103,884],[679,423],[204,573],[248,589],[567,733],[487,967],[915,351],[608,769],[489,184],[3,925],[707,344],[497,153],[503,998],[503,579],[696,353],[316,230],[569,654],[35,727],[483,526],[240,271],[85,29],[890,971],[944,247],[789,21],[455,632],[159,628],[763,250],[788,620],[680,49],[423,223],[522,737],[854,464],[838,435],[499,424],[749,91],[279,788],[927,121],[80,869],[190,901],[573,400],[885,235],[542,460],[931,512],[764,298],[332,841],[876,412],[612,175],[444,308],[939,60],[551,909],[124,235],[362,957],[611,525],[382,362],[871,197],[36,579],[412,10],[761,138],[367,812],[369,828],[365,568],[8,192],[193,276],[372,291],[809,745],[179,274],[561,823],[117,845],[623,352],[83,782],[617,523],[671,133],[730,366],[883,141],[499,919],[652,315],[475,239],[722,142],[176,218],[717,101],[346,988],[647,42],[818,561],[562,183],[173,861],[607,864],[20,816],[390,80],[364,237],[858,6],[467,238],[931,696],[922,704],[112,811],[988,861],[336,687],[477,150],[883,277],[459,548],[426,829],[564,286],[989,722],[169,212],[675,366],[816,470],[545,883],[951,715],[278,274],[87,906],[661,775],[293,60],[26,740],[320,761],[706,551],[715,905],[924,953],[625,889],[972,220],[912,396],[454,740],[38,289],[445,269],[219,669],[225,212],[797,704],[956,988],[653,487],[572,205],[120,84],[879,518],[483,318],[378,119],[670,782],[537,903],[529,38],[517,144],[633,332],[580,625],[61,865],[185,382],[311,890],[699,624],[503,438],[134,136],[602,790],[769,826],[21,210],[193,600],[827,947],[155,504],[518,254],[400,27],[77,666],[498,458],[95,999],[613,704],[267,347],[839,830],[204,88],[533,886],[152,989],[453,809],[856,135],[93,63],[66,966],[183,641],[767,652],[99,507],[631,866],[891,437],[564,545],[142,292],[518,664],[569,463],[603,251],[55,653],[67,887],[138,733],[311,236],[691,968],[718,686],[362,104],[59,509],[210,215],[819,657],[176,758],[269,431],[159,319],[933,564],[246,885],[432,533],[393,465],[377,73],[912,746],[489,439],[916,332],[418,301],[614,627],[85,748],[821,835],[460,259],[498,610],[436,705],[248,358],[313,989],[823,49],[852,151],[537,375],[987,105],[419,632],[870,671],[472,285],[537,594],[653,716],[704,235],[508,901],[46,94],[708,164],[728,436],[119,12],[973,896],[590,345],[650,169],[673,242],[256,308],[37,459],[385,406],[289,288],[770,553],[245,752],[760,11],[612,813],[222,804],[549,144],[207,780],[141,546],[727,241],[962,97],[430,160],[454,379],[482,514],[849,647],[264,596],[989,402],[789,525],[855,504],[201,582],[69,628],[45,540],[614,359],[24,429],[413,429],[393,94],[826,149],[465,553],[857,608],[169,897],[173,248],[426,982],[404,117],[22,389],[82,238],[30,631],[748,169],[261,372],[964,517],[75,875],[99,41],[522,783],[842,564],[469,505],[854,793],[425,74],[960,244],[768,321],[91,305],[57,868],[143,819],[80,411],[551,434],[754,137],[846,67],[139,507],[831,12],[946,858],[276,647],[130,644],[745,874],[271,854],[74,371],[460,650],[869,89],[245,784],[215,139],[851,505],[840,577],[770,5],[248,577],[387,407],[280,586],[104,216],[86,712],[990,890],[567,24],[242,27],[316,277],[852,519],[162,63],[758,943],[190,204],[407,575],[876,465],[302,969],[554,690],[57,922],[859,222],[213,146],[937,112],[895,430],[227,585],[391,90],[475,589],[609,510],[914,317],[794,526],[849,607],[446,595],[36,415],[683,993],[515,766],[85,752],[325,30],[722,415],[611,472],[653,502],[545,134],[507,999],[763,261],[277,538],[347,270],[586,353],[593,555],[111,92],[967,960],[295,252],[460,341],[656,153],[95,691],[187,746],[373,421],[794,168],[917,770],[135,73],[173,728],[666,291],[443,28],[476,23],[344,489],[24,851],[6,570],[92,926],[544,988],[308,197],[141,915],[416,62],[558,33],[947,820],[792,289],[443,572],[858,958],[245,973],[971,289],[141,793],[158,813],[383,259],[568,193],[488,539],[95,398],[165,319],[14,882],[643,10],[357,405],[460,906],[388,727],[15,828],[797,639],[395,907],[211,187],[177,933],[668,5],[425,901],[297,338],[315,96],[691,510],[40,137],[194,422],[18,72],[723,853],[373,20],[359,431],[867,918],[438,778],[743,581],[281,41],[485,685],[645,768],[687,597],[358,156],[792,995],[922,277],[956,774],[937,287],[890,674],[73,577],[769,52],[623,304],[806,561],[114,719],[21,568],[201,195],[295,141],[127,432],[617,397],[714,243],[750,10],[74,909],[545,707],[227,487],[15,610],[985,732],[76,719],[466,691],[964,167],[931,980],[857,453],[677,603],[560,785],[33,430],[289,300],[651,811],[756,666],[172,334],[941,398],[56,665],[352,865],[781,729],[243,208],[429,404],[485,520],[757,885],[304,473],[459,384],[708,60],[964,155],[821,116],[391,827],[444,540],[101,126],[37,936],[245,553],[559,415],[15,6],[599,117],[741,451],[292,216],[552,717],[55,386],[176,130],[662,737],[240,288],[368,834],[552,800],[909,575],[402,153],[454,816],[34,16],[494,114],[93,148],[604,598],[817,918],[854,189],[992,863],[450,874],[620,898],[266,131],[3,706],[843,79],[510,883],[64,311],[335,514],[558,458],[39,42],[279,16],[43,924],[945,73],[61,848],[797,442],[73,408],[328,978],[831,235],[179,12],[448,911],[729,114],[983,666],[805,688],[423,474],[297,76],[7,123],[128,145],[731,649],[31,366],[911,954],[397,337],[433,345],[953,865],[19,934],[850,628],[368,583],[378,326],[506,432],[893,824],[584,332],[429,385],[980,232],[733,497],[293,476],[977,574],[103,586],[863,918],[885,760],[838,501],[647,607],[191,407],[994,753],[17,498],[764,986],[487,80],[979,404],[109,247],[232,957],[912,261],[821,321],[249,690],[180,931],[403,229],[914,614],[287,847],[219,392],[238,316],[576,288],[223,647],[462,945],[446,128],[450,265],[918,603],[819,459],[661,542],[858,447],[202,495],[551,599],[225,520],[408,26],[666,408],[882,727],[726,88],[912,414],[106,672],[719,137],[151,141],[74,849],[425,518],[280,216],[733,834],[890,514],[932,625],[635,274],[174,437],[623,481],[515,701],[43,789],[986,364],[852,51],[69,456],[654,558],[122,877],[460,223],[796,913],[687,174],[193,112],[444,524],[565,631],[63,922],[965,398],[447,761],[374,339],[727,516],[60,885],[59,170],[584,307],[715,370],[785,313],[398,946],[4,840],[658,277],[359,507],[194,997],[613,321],[963,812],[157,301],[412,750],[531,880],[47,668],[86,701],[826,13],[360,9],[539,189],[214,883],[454,97],[41,559],[404,988],[445,553],[165,556],[871,256],[125,817],[52,133],[100,393],[452,516],[419,233],[494,642],[926,615],[994,882],[259,543],[187,455],[911,488],[140,887],[256,621],[534,496],[786,881],[281,980],[83,585],[394,417],[584,932],[516,957],[816,321],[232,891],[739,634],[345,764],[1,471],[620,656],[190,99],[897,371],[856,345],[645,200],[120,188],[770,199],[553,291],[379,113],[909,882],[723,630],[659,128],[240,650],[583,470],[201,948],[941,961],[910,384],[619,221],[291,863],[452,332],[120,639],[742,725],[304,19],[477,206],[199,277],[26,814],[329,766],[446,687],[302,781],[900,344],[987,900],[969,861],[302,74],[999,48],[728,233],[603,639],[947,807],[448,64],[305,660],[975,466],[649,54],[349,538],[970,57],[892,583],[494,931],[609,911],[98,733],[588,28],[425,419],[317,916],[282,48],[906,793],[310,407],[741,731],[627,325],[192,907],[961,743],[667,376],[569,463],[321,88],[461,304],[675,318],[870,453],[594,330],[319,789],[744,425],[764,437],[179,651],[630,86],[872,90],[826,941],[180,306],[786,215],[110,886],[277,589],[768,167],[616,831],[763,11],[327,342],[583,51],[376,759],[56,870],[736,935],[973,453],[284,577],[949,31],[562,927],[672,888],[336,750],[151,882],[750,422],[382,859],[763,854],[912,279],[133,289],[637,696],[79,462],[298,5],[96,994],[604,301],[93,340],[5,17],[181,789],[221,342],[831,749],[544,660],[766,831],[420,496],[511,154],[430,807],[206,551],[641,291],[752,369],[507,19],[278,521],[570,79],[714,125],[223,972],[407,592],[592,130],[684,199],[211,205],[3,270],[322,442],[528,930],[372,460],[853,572],[177,809],[26,556],[979,486],[995,392],[341,586],[33,727],[371,671],[125,148],[193,689],[550,166],[192,316],[979,413],[667,182],[32,134],[910,483],[533,49],[633,454],[930,422],[145,70],[244,174],[507,482],[901,20],[814,69],[383,345],[846,646],[453,409],[408,231],[652,138],[548,514],[480,703],[347,288],[664,900],[504,754],[929,175],[76,24],[746,222],[797,424],[538,440],[559,408],[435,43],[995,239],[592,329],[340,647],[854,314],[124,383],[719,657],[695,797],[442,148],[681,560],[649,878],[104,833],[452,40],[728,365],[576,62],[651,936],[301,49],[612,130],[793,526],[529,241],[851,72],[818,380],[838,704],[481,150],[902,676],[196,515],[254,435],[305,272],[820,569],[380,456],[480,763],[432,562],[206,661],[451,757],[430,636],[36,572],[558,211],[264,555],[652,99],[671,110],[106,631],[805,167],[802,484],[527,324],[124,24],[231,802],[4,350],[907,893],[653,854],[506,463],[271,114],[411,715],[59,530],[196,960],[38,788],[51,707],[249,422],[631,460],[604,554],[451,88],[609,760],[422,699],[238,880],[369,966],[567,989],[785,615],[123,588],[499,789],[280,206],[286,285],[704,440],[824,833],[97,783],[226,610],[375,84],[396,448],[392,477],[372,786],[821,781],[950,869],[37,633],[767,953],[259,525],[74,863],[834,399],[448,423],[231,8],[151,376],[878,200],[92,931],[684,687],[563,633],[198,935],[745,858],[549,114],[965,226],[733,122],[667,390],[38,984],[353,902],[547,850],[607,849],[929,303],[575,344],[631,967],[744,407],[608,688],[534,490],[456,555],[661,663],[670,780],[1000,867],[354,643],[335,530],[976,517],[723,970],[748,573],[893,191],[573,888],[636,975],[574,784],[912,27],[461,87],[673,190],[653,743],[133,102],[445,58],[599,720],[296,756],[316,324],[415,440],[260,512],[517,744],[165,414],[725,328],[84,142],[592,761],[284,62],[328,330],[270,421],[13,382],[508,487],[828,988],[558,554],[30,78],[666,182],[112,150],[867,175],[445,971],[427,485],[138,550],[230,997],[698,225],[501,468],[514,634],[251,986],[677,937],[768,535],[313,5],[720,261],[884,117],[643,935],[642,392],[542,615],[114,869],[459,771],[357,848],[896,497],[102,284],[391,159],[37,335],[332,835],[98,855],[840,596],[759,563],[668,669],[403,638],[24,133],[21,47],[220,206],[480,790],[190,269],[999,191],[873,763],[913,641],[251,963],[565,605],[35,328],[735,49],[609,626],[112,618],[786,972],[459,206],[353,908],[917,80],[233,864],[491,210],[541,569],[589,128],[361,808],[212,432],[494,84],[425,395],[771,915],[522,250],[484,836],[152,457],[908,237],[548,346],[360,978],[727,609],[461,406],[480,260],[15,544],[792,163],[460,371],[96,746],[899,757],[20,48],[573,335],[180,765],[641,172],[275,131],[327,542],[159,117],[623,415],[363,594],[986,887],[951,269],[274,80],[107,813],[180,865],[764,397],[450,839],[534,650],[33,777],[29,529],[671,505],[196,326],[935,389],[92,215],[924,695],[7,271],[500,243],[841,264],[311,768],[467,606],[954,68],[603,233],[738,493],[682,64],[458,246],[267,339],[787,53],[949,936],[874,579],[677,301],[681,498],[818,46],[90,71],[534,624],[59,235],[658,276],[406,826],[676,41],[480,241],[826,722],[2,280],[235,319],[666,814],[105,179],[398,131],[836,675],[746,551],[953,254],[392,610],[851,21],[162,457],[370,642],[806,883],[871,119],[868,912],[135,271],[223,631],[761,447],[307,204],[665,340],[718,542],[507,990],[527,756],[374,328],[494,364],[666,802],[306,611],[473,383],[764,2],[912,14],[51,815],[961,445],[52,871],[84,368],[371,788],[895,627],[873,247],[590,206],[534,642],[216,274],[950,338],[70,972],[865,106],[567,459],[198,469],[859,798],[631,909],[133,982],[427,295],[252,752],[539,59],[516,462],[50,677],[566,518],[951,599],[195,606],[505,175],[490,281],[99,420],[689,873],[325,383],[403,951],[858,968],[893,144],[560,381],[234,414],[411,784],[427,59],[801,823],[521,106],[411,929],[857,856],[299,339],[112,512],[642,8],[314,385],[623,709],[480,810],[30,718],[12,715],[671,80],[151,964],[420,910],[619,131],[928,984],[231,131],[775,444],[83,367],[31,541],[583,918],[186,330],[97,123],[893,277],[695,502],[536,305],[386,986],[534,916],[261,707],[438,903],[910,757],[552,135],[758,426],[870,794],[8,162],[608,969],[162,442],[411,309],[459,816],[461,263],[910,260],[907,380],[580,300],[63,236],[887,264],[844,30],[404,147],[297,989],[786,106],[908,331],[103,374],[318,826],[431,427],[988,587],[451,723],[628,617],[396,78],[890,730],[180,970],[899,119],[534,474],[309,478],[140,665],[952,894],[729,627],[614,628],[373,335],[193,313],[61,918],[857,672],[725,696],[396,234],[938,293],[398,205],[618,199],[921,837],[110,972],[429,506],[784,815],[112,990],[530,997],[389,608],[993,765],[189,136],[285,38],[94,326],[378,813],[473,279],[265,637],[851,350],[622,938],[575,604],[448,93],[80,781],[481,318],[244,418],[851,986],[890,926],[683,40],[370,935],[461,792],[487,538],[699,290],[701,220],[966,238],[999,259],[681,262],[479,932],[571,45],[712,592],[916,298],[128,164],[619,527],[480,745],[831,958],[794,829],[377,493],[728,663],[818,53],[791,447],[522,696],[727,802],[144,179],[214,935],[444,138],[976,842],[769,351],[966,324],[652,906],[970,402],[502,879],[513,359],[704,207],[148,465],[27,335],[421,587],[420,574],[396,704],[253,568],[791,4],[145,618],[553,759],[815,390],[148,521],[843,321],[994,39],[267,174],[776,546],[61,915],[120,354],[432,592],[492,229],[223,965],[665,599],[767,919],[604,378],[700,669],[577,830],[304,751],[276,616],[230,891],[799,25],[525,198],[368,568],[128,388],[42,553],[468,119],[573,536],[745,522],[634,47],[811,864],[95,698],[449,173],[710,757],[146,500],[731,852],[657,411],[389,256],[504,261],[721,965],[863,807],[697,35],[453,66],[290,291],[47,200],[843,305],[473,239],[534,800],[15,204],[345,687],[156,489],[633,222],[489,41],[293,90],[691,490],[610,834],[659,405],[499,803],[167,432],[60,839],[379,744],[979,908],[900,176],[492,142],[410,398],[469,805],[915,90],[909,840],[984,413],[775,295],[605,574],[992,994],[502,331],[617,825],[693,747],[243,572],[24,3],[849,137],[75,439],[35,310],[451,553],[240,824],[347,238],[498,699],[98,614],[107,673],[984,222],[726,690],[475,667],[461,88],[593,684],[906,297],[609,23],[248,833],[805,394],[318,4],[752,764],[825,209],[145,506],[606,750],[891,722],[26,912],[886,790],[524,842],[316,61],[942,984],[119,11],[647,912],[870,64],[397,241],[950,507],[605,870],[748,659],[777,550],[948,41],[73,748],[502,399],[265,986],[445,78],[370,694],[838,51],[44,506],[782,274],[302,868],[534,90],[127,994],[138,449],[190,638],[12,375],[150,421],[901,600],[656,270],[929,413],[87,785],[765,701],[419,137],[824,726],[682,946],[874,337],[970,100],[742,203],[427,99],[371,437],[491,263],[182,457],[201,860],[574,316],[74,901],[614,214],[141,289],[54,537],[576,510],[117,501],[284,121],[152,111],[520,597],[720,774],[75,220],[322,88],[625,906],[702,662],[922,945],[584,108],[219,139],[159,621],[66,813],[63,321],[48,678],[818,577],[91,711],[920,137],[794,184],[93,227],[256,42],[931,113],[507,959],[997,801],[998,167],[367,543],[612,595],[69,67],[339,914],[143,154],[321,172],[306,869],[487,984],[749,455],[886,309],[364,343],[590,465],[943,736],[66,97],[800,932],[872,838],[187,96],[168,22],[673,962],[375,169],[600,900],[237,75],[787,554],[822,490],[219,640],[221,534],[225,519],[551,685],[549,518],[601,74],[372,323],[186,389],[738,729],[953,122],[205,456],[859,205],[484,406],[796,987],[130,880],[653,628],[170,913],[713,942],[110,894],[313,139],[738,91],[878,102],[701,539],[518,118],[528,521],[876,926],[53,371],[589,36],[385,253],[847,592],[539,609],[908,34],[880,153],[63,84],[623,68],[97,553],[309,534],[491,413],[69,698],[52,525],[84,529],[280,240],[736,125],[725,917],[973,578],[999,587],[487,356],[457,317],[31,794],[246,867],[983,230],[831,365],[506,147],[578,741],[704,950],[395,493],[416,712],[994,479],[908,549],[14,103],[36,638],[133,176],[950,18],[544,241],[432,927],[766,489],[455,512],[350,199],[380,158],[328,665],[544,303],[783,665],[25,70],[828,696],[661,287],[839,665],[9,121],[949,531],[346,747],[549,562],[163,579],[389,340],[280,767],[729,248],[611,117],[588,833],[781,379],[405,798],[663,714],[881,41],[668,997],[699,602],[199,389],[770,249],[288,563],[799,448],[937,444],[44,528],[741,181],[324,597],[470,442],[836,175],[828,464],[648,97],[371,49],[393,833],[392,674],[325,568],[806,79],[839,194],[462,636],[146,462],[149,514],[166,57],[63,627],[405,556],[467,266],[154,211],[30,503],[53,285],[590,660],[648,142],[157,964],[762,786],[805,266],[339,858],[877,345],[923,272],[294,489],[497,504],[973,416],[308,420],[239,2],[323,458],[658,358],[21,472],[483,636],[319,675],[593,122],[233,547],[947,909],[660,116],[264,615],[729,672],[829,601],[422,562],[931,554],[186,197],[171,905],[50,544],[5,320],[392,745],[340,13],[968,272],[201,728],[635,253],[567,786],[902,147],[967,171],[456,80],[247,304],[281,597],[304,812],[985,479],[51,232],[829,258],[929,899],[631,618],[336,509],[253,74],[83,701],[446,816],[197,640],[824,470],[189,334],[36,649],[256,395],[244,25],[100,937],[335,754],[632,166],[70,38],[831,386],[586,528],[828,892],[977,28],[317,800],[229,632],[741,735],[472,280],[728,498],[34,250],[181,722],[251,282],[245,579],[455,894],[568,291],[122,267],[510,698],[721,342],[704,456],[371,553],[113,794],[425,380],[121,772],[400,790],[901,144],[402,994],[276,775],[377,293],[807,151],[326,336],[782,771],[458,666],[49,252],[617,629],[769,178],[795,483],[496,332],[644,793],[447,102],[386,413],[352,314],[182,456],[622,221],[897,572],[965,678],[575,236],[5,589],[521,188],[766,881],[668,14],[193,228],[68,12],[739,516],[981,852],[798,798],[561,770],[840,168],[118,366],[102,144],[914,132],[531,582],[613,248],[779,878],[689,84],[985,789],[72,406],[263,895],[967,256],[343,166],[569,373],[540,471],[637,390],[748,133],[850,234],[245,342],[878,137],[856,400],[404,947],[329,477],[379,732],[355,729],[793,215],[30,247],[395,242],[515,700],[487,492],[867,321],[215,593],[577,784],[825,938],[789,10],[315,217],[182,574],[683,336],[235,926],[766,144],[476,251],[960,486],[703,632],[317,418],[963,516],[502,494],[191,778],[29,245],[399,711],[624,691],[972,544],[432,165],[762,997],[120,631],[413,573],[440,816],[212,193],[711,184],[659,856],[166,995],[478,394],[970,104],[803,359],[984,245],[959,894],[230,363],[964,173],[359,186],[429,439],[933,828],[904,430],[212,485],[608,169],[589,560],[335,512],[314,196],[336,269],[7,338],[175,641],[764,879],[456,266],[64,858],[190,371],[367,576],[64,51],[258,914],[962,172],[687,471],[380,394],[66,569],[804,244],[100,165],[678,616],[313,186],[724,40],[923,243],[143,967],[202,675],[606,595],[264,493],[987,225],[17,409],[52,303],[118,785],[393,32],[616,930],[184,653],[132,438],[326,727],[882,781],[826,894],[116,512],[647,105],[710,734],[373,90],[675,155],[426,47],[10,826],[800,606],[494,147],[506,962],[892,586],[50,831],[33,984],[343,432],[74,814],[487,380],[706,315],[811,936],[702,648],[849,241],[116,687],[999,311],[927,586],[551,760],[920,595],[557,803],[765,646],[713,84],[234,634],[198,593],[557,243],[133,368],[438,99],[384,880],[673,774],[395,754],[173,100],[439,900],[269,87],[792,15],[960,422],[341,589],[507,198],[458,853],[907,166],[822,492],[113,967],[204,366],[948,57],[131,248],[117,357],[791,854],[233,564],[443,190],[797,207],[202,538],[54,66],[520,421],[101,970],[429,294],[546,818],[408,242],[333,247],[992,846],[555,129],[762,713],[349,596],[132,463],[285,790],[170,368],[329,357],[830,626],[117,410],[781,834],[221,648],[147,532],[624,774],[99,688],[808,918],[322,82],[842,904],[598,903],[664,516],[979,257],[572,948],[449,810],[836,86],[116,666],[703,718],[352,35],[958,19],[8,126],[246,633],[711,806],[436,31],[353,415],[199,217],[214,686],[534,298],[568,797],[458,103],[536,450],[796,829],[546,819],[717,326],[951,374],[352,18],[523,699],[370,560],[487,635],[599,505],[452,554],[468,139],[750,947],[29,579],[744,417],[678,292],[180,138],[603,450],[896,42],[956,828],[340,799],[908,806],[599,29],[657,12],[605,19],[497,453],[702,465],[167,513],[370,715],[296,594],[228,505],[29,900],[804,942],[441,279],[355,672],[879,156],[108,708],[793,722],[462,423],[790,500],[342,783],[366,5],[658,307],[798,898],[796,113],[544,762],[590,683],[225,839],[772,757],[988,306],[878,172],[433,557],[873,737],[493,909],[311,188],[102,743],[933,695],[508,243],[450,656],[264,103],[244,106],[343,340],[986,249],[385,783],[226,658],[642,38],[828,365],[487,888],[197,482],[938,232],[713,430],[734,126],[903,866],[808,431],[48,90],[968,803],[600,474],[876,913],[194,945],[923,178],[345,811],[90,177],[818,666],[308,215],[762,933],[911,133],[400,879],[780,353],[493,551],[540,524],[268,195],[848,482],[432,981],[945,931],[213,809],[500,341],[797,433],[202,374],[296,301],[581,555],[196,42],[559,348],[142,649],[780,739],[10,242],[503,189],[909,984],[85,526],[795,29],[31,810],[432,962],[508,150],[226,83],[883,56],[506,562],[308,388],[934,532],[664,681],[365,357],[80,396],[121,458],[367,270],[227,496],[647,724],[196,127],[867,616],[127,545],[988,557],[866,935],[57,513],[21,724],[681,81],[526,837],[46,408],[345,274],[366,466],[808,775],[649,382],[139,769],[820,381],[636,427],[920,271],[195,634],[931,869],[112,218],[70,568],[332,895],[466,950],[455,800],[824,403],[873,301],[543,401],[152,56],[801,944],[442,260],[888,896],[510,688],[965,306],[843,54],[292,627],[273,761],[796,880],[12,965],[356,136],[725,878],[235,786],[976,137],[511,410],[530,430],[693,325],[781,798],[388,96],[291,677],[231,162],[353,510],[978,243],[123,110],[580,863],[779,444],[86,867],[669,200],[227,793],[191,369],[543,660],[841,616],[836,762],[971,843],[920,47],[536,437],[371,511],[112,989],[35,683],[451,857],[647,359],[326,877],[108,803],[119,951],[385,352],[392,904],[562,201],[186,461],[275,66],[398,895],[840,961],[69,626],[288,95],[797,543],[806,17],[124,170],[846,952],[205,224],[855,878],[142,594],[108,726],[138,297],[957,469],[708,904],[324,11],[288,717],[554,971],[407,587],[363,843],[1000,297],[278,457],[889,575],[561,628],[74,860],[837,434],[65,45],[299,468],[393,277],[686,76],[433,875],[623,222],[19,211],[119,795],[905,525],[410,392],[405,375],[834,144],[253,470],[551,388],[803,637],[130,899],[58,775],[803,913],[62,546],[849,500],[563,896],[887,43],[903,931],[109,577],[659,654],[60,981],[996,178],[248,945],[507,248],[981,442],[535,982],[854,191],[898,738],[127,529],[354,383],[271,505],[187,698],[57,49],[992,405],[560,314],[393,847],[810,174],[738,203],[448,502],[636,154],[718,149],[508,532],[718,595],[753,873],[119,176],[609,831],[844,252],[735,730],[111,5],[160,410],[689,582],[246,919],[545,537],[403,356],[910,280],[253,736],[789,504],[980,15],[477,177],[492,272],[936,922],[903,612],[508,805],[453,563],[45,946],[143,442],[536,978],[238,445],[629,675],[328,922],[483,902],[918,24],[282,974],[485,908],[199,127],[912,59],[678,162],[838,469],[71,2],[112,1000],[664,388],[686,679],[293,615],[85,883],[299,481],[424,6],[866,603],[454,198],[467,478],[965,678],[709,22],[526,494],[436,560],[285,156],[874,108],[226,763],[473,738],[970,704],[903,456],[699,290],[425,628],[646,67],[450,309],[953,603],[133,730],[810,497],[14,76],[212,393],[916,98],[45,548],[835,434],[247,873],[87,839],[6,630],[747,621],[820,768],[797,439],[919,98],[264,502],[191,628],[219,193],[408,136],[552,563],[386,279],[449,266],[16,12],[167,198],[895,334],[880,402],[232,661],[792,220],[588,34],[920,663],[65,634],[562,141],[649,130],[267,32],[96,186],[410,572],[333,594],[814,205],[459,957],[211,373],[879,84],[442,872],[438,622],[785,324],[414,724],[53,305],[103,220],[617,64],[737,867],[986,265],[43,765],[276,169],[910,358],[971,423],[632,395],[531,215],[498,20],[295,296],[579,857],[65,116],[63,831],[721,867],[313,345],[127,990],[96,366],[575,743],[338,544],[282,564],[529,2],[425,126],[924,690],[232,140],[779,663],[713,859],[230,603],[740,502],[292,675],[19,694],[731,146],[61,514],[396,696],[67,764],[221,815],[257,208],[798,966],[241,274],[369,583],[83,384],[852,89],[617,491],[529,48],[972,268],[787,486],[576,538],[147,410],[677,704],[543,530],[56,555],[840,831],[982,605],[643,857],[769,58],[385,583],[100,945],[60,887],[67,328],[11,898],[293,636],[977,316],[741,299],[602,637],[154,528],[376,981],[224,200],[648,960],[505,851],[129,258],[7,268],[320,680],[122,529],[800,460],[896,176],[474,715],[199,336],[824,688],[657,544],[674,724],[963,930],[554,676],[406,977],[858,948],[819,873],[486,131],[7,827],[667,766],[58,599],[694,118],[406,870],[583,909],[237,657],[233,457],[619,891],[227,328],[85,558],[564,320],[119,14],[392,537],[957,861],[742,529],[765,611],[297,58],[144,173],[371,950],[811,572],[33,533],[358,171],[936,383],[334,259],[300,562],[560,575],[600,29],[190,440],[403,979],[237,800],[773,529],[487,188],[728,951],[803,338],[854,786],[597,698],[997,593],[152,946],[58,334],[605,689],[621,991],[104,618],[698,826],[454,619],[727,657],[170,391],[322,487],[126,616],[851,412],[190,749],[213,258],[620,592],[246,635],[715,557],[717,627],[73,939],[434,658],[149,607],[71,381],[206,256],[869,60],[363,658],[76,592],[104,590],[368,770],[227,374],[380,377],[898,321],[451,878],[146,570],[845,194],[708,506],[903,192],[258,450],[28,699],[577,807],[945,690],[104,331],[939,61],[324,613],[54,40],[19,635],[841,46],[226,234],[782,283],[506,874],[56,708],[734,661],[999,723],[17,724],[953,210],[24,924],[735,284],[64,608],[793,568],[894,527],[898,987],[286,464],[266,188],[221,173],[786,281],[868,350],[527,27],[780,267],[206,104],[196,286],[199,620],[803,994],[815,503],[10,524],[656,3],[871,669],[82,760],[148,752],[270,367],[582,391],[986,29],[540,675],[179,672],[755,523],[37,200],[605,684],[14,784],[438,151],[872,621],[133,950],[110,216],[989,340],[204,662],[553,995],[462,473],[293,798],[741,857],[25,535],[865,573],[975,598],[117,793],[492,228],[154,7],[705,614],[852,263],[707,963],[311,340],[571,296],[548,552],[711,545],[257,847],[344,13],[16,161],[659,549],[500,551],[659,808],[440,399],[500,97],[575,7],[28,786],[886,551],[43,66],[307,347],[702,319],[127,795],[797,537],[59,312],[589,782],[744,49],[642,857],[815,574],[48,618],[478,234],[27,790],[940,703],[652,390],[921,650],[705,367],[160,105],[732,988],[571,345],[223,175],[232,349],[361,564],[90,847],[566,721],[241,744],[865,610],[49,238],[830,87],[904,265],[269,428],[781,120],[745,311],[10,200],[654,419],[184,682],[4,890],[941,343],[608,729],[890,521],[590,68],[814,373],[892,190],[605,566],[323,101],[19,60],[592,34],[820,961],[317,962],[17,770],[503,14],[875,237],[116,439],[459,935],[440,91],[176,115],[839,908],[315,391],[22,540],[713,539],[842,632],[203,330],[556,756],[758,812],[20,209],[523,493],[878,601],[620,660],[233,880],[959,31],[235,543],[195,267],[776,666],[682,696],[643,235],[775,860],[823,451],[720,300],[835,765],[977,355],[344,231],[438,527],[362,192],[31,493],[435,74],[727,61],[691,493],[747,660],[348,238],[571,593],[422,620],[517,692],[833,763],[912,373],[240,759],[402,11],[542,597],[231,738],[605,227],[221,328],[638,161],[443,410],[564,392],[414,788],[538,244],[254,615],[843,723],[469,291],[569,425],[44,721],[311,682],[740,965],[273,583],[408,884],[983,364],[226,895],[789,102],[534,681],[959,959],[718,223],[180,455],[307,966],[595,926],[607,394],[436,91],[943,130],[730,555],[987,416],[596,570],[542,807],[186,626],[912,586],[974,384],[326,478],[322,740],[563,593],[354,183],[619,706],[111,901],[292,638],[400,306],[124,381],[593,232],[884,758],[529,410],[40,344],[402,962],[804,704],[128,324],[596,938],[14,625],[312,136],[992,109],[242,733],[115,27],[502,479],[188,626],[204,19],[616,248],[272,832],[693,347],[417,168],[446,310],[562,947],[145,991],[287,496],[568,87],[416,826],[504,444],[503,368],[562,618],[852,53],[972,902],[742,986],[644,744],[122,859],[892,164],[247,966],[87,97],[534,651],[444,799],[858,745],[412,937],[445,430],[403,369],[509,711],[168,192],[351,410],[963,664],[452,305],[880,359],[120,462],[197,829],[567,669],[804,411],[467,528],[574,559],[982,600],[179,667],[890,148],[519,728],[272,296],[687,946],[323,453],[682,986],[749,306],[642,821],[819,914],[230,398],[110,952],[655,700],[394,618],[790,336],[319,828],[911,976],[570,470],[196,568],[375,651],[395,660],[747,264],[278,451],[905,883],[878,483],[743,6],[321,671],[301,308],[540,883],[485,456],[34,912],[932,718],[245,123],[842,340],[453,467],[585,11],[452,939],[110,202],[878,604],[55,473],[280,48],[700,870],[900,130],[533,165],[839,642],[37,789],[258,405],[271,65],[604,284],[929,691],[479,114],[924,142],[10,368],[478,859],[67,649],[171,621],[900,577],[345,906],[791,82],[465,453],[706,561],[391,813],[209,644],[358,505],[540,295],[20,376],[697,744],[27,829],[420,791],[769,350],[557,945],[746,76],[962,734],[714,361],[743,731],[483,569],[601,830],[720,443],[602,974],[367,455],[464,646],[539,425],[443,428],[931,345],[274,989],[522,177],[846,951],[354,444],[452,543],[761,103],[800,427],[650,516],[991,224],[58,926],[910,905],[228,45],[355,944],[700,970],[665,436],[240,74],[3,986],[865,683],[483,269],[193,938],[536,535],[674,405],[91,142],[733,125],[356,776],[503,3],[31,618],[300,425],[632,427],[228,30],[750,591],[27,199],[680,638],[746,889],[894,14],[834,4],[267,840],[787,799],[987,710],[357,538],[597,556],[173,170],[42,317],[335,742],[764,161],[327,468],[875,129],[558,163],[371,325],[704,108],[593,279],[721,85],[325,944],[815,784],[380,48],[140,752],[96,924],[719,592],[179,968],[874,830],[377,275],[49,518],[926,850],[162,717],[634,888],[153,852],[245,452],[156,505],[981,885],[4,319],[169,614],[584,978],[967,430],[396,268],[803,387],[903,127],[905,848],[477,757],[231,63],[649,968],[431,187],[746,803],[90,127],[773,272],[813,735],[401,929],[71,160],[935,957],[400,590],[300,883],[119,681],[320,234],[678,745],[745,807],[842,567],[830,67],[804,990],[923,406],[381,178],[566,933],[400,791],[796,146],[436,52],[450,527],[242,803],[131,808],[920,636],[822,856],[771,702],[337,988],[84,861],[405,6],[305,409],[323,163],[182,675],[943,497],[956,256],[782,142],[901,356],[867,31],[583,577],[118,325],[132,974],[18,453],[908,574],[69,424],[113,493],[208,791],[412,572],[126,332],[62,942],[485,953],[360,807],[946,851],[412,704],[927,334],[309,756],[335,478],[71,165],[67,447],[956,982],[38,453],[582,690],[662,771],[239,806],[304,419],[625,874],[450,29],[61,432],[513,830],[34,770],[984,147],[701,171],[887,276],[130,725],[910,302],[265,727],[412,519],[943,8],[193,17],[33,376],[31,302],[679,48],[511,925],[692,35],[930,413],[819,949],[110,278],[237,913],[796,202],[310,536],[303,269],[189,43],[524,299],[106,844],[882,785],[887,97],[837,418],[72,298],[482,805],[491,27],[861,36],[385,324],[97,689],[189,711],[739,486],[453,205],[501,580],[822,484],[213,517],[525,406],[557,447],[427,123],[146,448],[670,735],[693,425],[658,835],[663,375],[13,926],[509,405],[125,246],[643,479],[204,202],[902,493],[750,122],[861,182],[185,92],[347,686],[793,827],[618,803],[611,210],[711,411],[649,701],[490,165],[265,710],[636,442],[987,448],[958,589],[326,692],[227,630],[221,317],[699,817],[475,365],[777,266],[950,295],[83,402],[777,584],[710,744],[912,556],[860,255],[600,644],[465,512],[832,330],[209,808],[856,460],[120,711],[803,461],[148,900],[899,242],[116,833],[777,702],[352,7],[248,46],[472,187],[93,286],[68,333],[687,477],[135,645],[773,802],[588,76],[209,22],[124,830],[348,934],[151,703],[666,992],[851,618],[116,721],[844,429],[310,222],[514,182],[330,778],[643,27],[266,693],[328,355],[297,839],[406,443],[467,390],[911,153],[846,602],[960,154],[777,920],[465,114],[227,75],[317,585],[193,832],[325,257],[222,449],[840,980],[786,705],[891,262],[139,897],[56,214],[42,282],[779,177],[181,401],[944,165],[796,750],[367,822],[53,79],[523,114],[349,358],[493,569],[923,306],[416,821],[746,52],[77,750],[589,19],[731,51],[779,676],[853,727],[92,822],[604,696],[663,487],[317,654],[844,162],[449,528],[788,709],[605,148],[999,49],[270,561],[857,170],[223,61],[652,481],[104,783],[62,536],[952,143],[199,922],[89,17],[350,861],[249,76],[994,314],[97,563],[145,313],[556,135],[153,335],[356,991],[235,236],[606,984],[848,315],[38,233],[57,205],[486,362],[251,588],[148,782],[539,802],[994,913],[245,531],[583,694],[984,788],[257,326],[596,37],[661,592],[910,431],[864,261],[779,840],[331,330],[44,504],[993,184],[347,131],[655,652],[370,864],[316,264],[156,262],[710,975],[810,719],[801,43],[263,249],[23,57],[693,201],[956,128],[819,111],[65,363],[476,564],[274,460],[393,474],[485,575],[546,220],[936,66],[503,668],[5,704],[961,858],[795,625],[600,826],[205,244],[20,355],[978,690],[943,285],[727,949],[175,184],[518,374],[313,88],[474,363],[164,698],[109,834],[546,629],[401,212],[242,441],[728,742],[738,386],[119,678],[257,393],[773,954],[77,846],[677,38],[392,84],[627,270],[160,607],[88,386],[817,105],[178,352],[133,599],[596,731],[390,749],[763,404],[201,181],[971,33],[987,569],[396,659],[644,866],[68,108],[161,706],[737,841],[465,180],[734,940],[844,831],[918,781],[921,611],[469,187],[367,921],[349,718],[346,16],[581,224],[336,115],[337,798],[417,355],[865,908],[299,618],[145,471],[861,121],[699,27],[584,787],[323,775],[410,367],[934,70],[261,391],[671,20],[232,13],[112,560],[408,377],[944,278],[912,911],[404,340],[362,297],[293,640],[273,585],[891,560],[542,526],[49,850],[703,196],[101,73],[282,760],[237,788],[584,245],[187,911],[241,857],[269,574],[613,105],[404,234],[326,524],[485,640],[414,816],[327,35],[18,722],[268,953],[129,558],[104,450],[500,725],[462,485],[762,897],[370,574],[915,857],[824,71],[2,277],[58,145],[456,147],[913,3],[511,567],[494,694],[114,266],[58,75],[371,47],[835,975],[712,185],[72,510],[788,346],[171,955],[630,331],[84,358],[119,68],[263,37],[137,497],[131,244],[267,428],[556,53],[926,178],[211,633],[690,108],[332,332],[977,212],[545,320],[580,473],[742,982],[4,507],[206,674],[302,499],[259,637],[457,797],[676,978],[228,362],[952,567],[300,100],[522,166],[976,948],[383,19],[248,411],[901,989],[54,474],[576,517],[584,335],[447,687],[908,730],[836,933],[810,468],[248,838],[368,514],[41,130],[514,503],[681,23],[83,526],[175,208],[667,71],[227,212],[758,551],[717,735],[492,293],[71,592],[812,881],[203,683],[787,665],[645,607],[925,947],[327,103],[350,573],[803,622],[75,59],[248,30],[670,774],[56,352],[593,41],[742,710],[546,641],[985,343],[347,292],[510,931],[978,950],[927,603],[322,475],[141,941],[740,358],[66,805],[837,408],[737,104],[64,823],[121,792],[756,287],[691,433],[273,831],[332,400],[383,825],[844,391],[104,449],[572,748],[431,223],[627,159],[762,607],[194,875],[706,46],[719,731],[485,215],[86,271],[652,552],[964,591],[51,31],[765,227],[720,651],[889,149],[131,461],[861,740],[605,998],[215,204],[396,699],[147,328],[654,809],[609,446],[853,736],[912,945],[238,325],[164,918],[251,422],[654,998],[748,548],[704,377],[427,480],[354,496],[446,495],[41,991],[926,295],[559,81],[53,718],[55,715],[843,141],[862,662],[306,891],[481,889],[397,396],[665,796],[474,571],[894,959],[775,85],[87,941],[487,799],[418,100],[189,550],[431,724],[893,510],[35,222],[560,647],[889,925],[996,306],[218,805],[295,611],[103,316],[923,801],[558,358],[363,668],[393,118],[276,764],[422,127],[687,918],[689,98],[370,118],[728,987],[919,869],[834,527],[402,241],[620,693],[564,114],[846,873],[955,656],[60,300],[790,48],[429,552],[935,802],[244,461],[527,826],[511,195],[373,32],[574,200],[64,425],[322,757],[179,385],[860,715],[774,709],[430,794],[912,930],[110,552],[926,882],[308,123],[947,649],[749,677],[655,717],[985,162],[249,84],[179,417],[29,378],[8,420],[929,359],[963,121],[898,482],[638,283],[805,971],[105,471],[553,571],[698,329],[798,97],[52,845],[744,462],[254,34],[488,888],[682,444],[93,208],[14,739],[173,195],[962,441],[964,80],[843,36],[183,138],[393,321],[191,355],[768,973],[850,98],[847,855],[750,460],[782,176],[702,164],[87,526],[233,265],[256,268],[407,673],[372,700],[736,66],[881,495],[452,839],[654,829],[316,160],[323,722],[21,880],[27,783],[179,405],[632,213],[984,923],[14,84],[418,275],[267,757],[754,711],[201,813],[356,648],[517,447],[124,600],[691,857],[330,177],[855,195],[256,453],[67,12],[419,312],[489,475],[676,659],[794,976],[476,142],[410,262],[758,744],[472,573],[605,371],[851,879],[857,520],[715,31],[997,588],[535,65],[528,488],[113,165],[543,491],[849,505],[115,219],[282,260],[733,745],[942,370],[616,46],[990,406],[579,392],[195,878],[804,363],[260,596],[273,324],[957,897],[229,918],[814,148],[880,159],[508,316],[495,235],[64,540],[833,916],[298,938],[247,802],[510,208],[515,223],[518,656],[7,918],[674,35],[313,324],[898,358],[873,932],[727,932],[752,758],[402,173],[553,753],[645,685],[596,468],[354,754],[371,555],[342,273],[149,366],[288,547],[542,164],[989,8],[132,617],[798,170],[34,671],[349,400],[764,533],[607,808],[535,981],[153,300],[322,332],[975,668],[787,379],[628,179],[297,868],[855,386],[696,540],[618,160],[586,685],[216,329],[751,3],[65,670],[209,202],[995,372],[362,774],[676,465],[464,995],[88,280],[314,715],[615,703],[865,784],[601,415],[18,183],[263,156],[640,124],[287,205],[56,12],[739,263],[475,6],[881,907],[671,719],[939,123],[159,538],[973,418],[516,328],[78,782],[308,123],[924,148],[209,728],[5,507],[516,849],[745,569],[190,9],[877,606],[453,222],[576,129],[605,140],[653,365],[380,886],[279,882],[790,790],[342,663],[411,853],[160,494],[938,395],[379,288],[32,110],[762,781],[720,186],[165,524],[917,472],[972,461],[53,372],[160,414],[512,405],[49,753],[511,802],[95,518],[902,891],[426,983],[660,713],[981,558],[217,528],[338,16],[186,91],[162,423],[454,113],[933,242],[551,232],[965,33],[27,787],[987,69],[732,174],[416,435],[152,707],[878,621],[877,968],[363,56],[730,750],[183,670],[892,523],[451,152],[383,804],[70,387],[135,293],[990,820],[569,165],[63,436],[775,18],[212,355],[100,781],[905,639],[231,136],[138,542],[398,317],[142,140],[778,510],[485,609],[365,552],[63,889],[125,436],[115,462],[251,1000],[320,45],[436,909],[494,267],[678,354],[719,522],[541,931],[597,140],[264,145],[967,200],[538,675],[327,355],[458,334],[133,274],[802,521],[546,325],[977,961],[364,817],[392,815],[541,751],[3,625],[666,124],[888,852],[862,236],[856,181],[869,158],[304,540],[914,479],[96,575],[108,664],[974,438],[888,326],[577,808],[670,498],[163,682],[668,223],[234,86],[829,614],[342,49],[776,992],[886,256],[44,571],[547,949],[543,458],[346,866],[496,153],[640,517],[708,430],[742,989],[502,853],[196,471],[573,798],[170,438],[907,718],[863,302],[937,704],[326,741],[623,568],[954,460],[985,367],[652,530],[405,714],[8,278],[238,612],[369,279],[527,760],[933,731],[184,774],[13,168],[953,647],[946,377],[854,278],[138,514],[922,739],[138,429],[231,648],[523,41],[256,755],[839,546],[123,939],[373,782],[425,460],[717,715],[168,988],[748,578],[918,683],[420,688],[240,702],[684,741],[440,619],[180,789],[837,902],[517,940],[862,138],[993,66],[378,529],[387,288],[315,728],[647,934],[118,639],[983,569],[389,513],[157,178],[459,929],[401,615],[486,656],[924,507],[272,905],[383,71],[834,845],[748,426],[662,447],[331,467],[63,904],[928,688],[948,93],[625,337],[159,408],[924,921],[136,29],[492,833],[12,47],[283,762],[421,667],[776,804],[125,579],[352,107],[653,339],[198,205],[46,913],[574,528],[274,30],[760,754],[351,699],[367,992],[529,213],[321,340],[892,544],[3,217],[882,306],[241,846],[808,870],[425,592],[698,617],[521,46],[867,233],[152,986],[580,621],[352,921],[181,458],[948,336],[75,464],[516,193],[412,449],[509,72],[993,1000],[790,129],[237,319],[843,560],[999,85],[386,649],[916,878],[944,126],[367,789],[997,487],[94,516],[828,698],[551,112],[80,12],[733,592],[551,800],[327,183],[504,460],[976,299],[73,992],[666,704],[833,389],[605,4],[374,709],[484,67],[442,882],[78,280],[180,788],[696,294],[778,680],[289,936],[431,414],[362,776],[835,399],[972,688],[228,15],[919,305],[592,313],[169,587],[547,553],[301,707],[943,928],[460,41],[455,194],[407,825],[412,134],[501,540],[718,465],[114,290],[448,319],[34,572],[875,3],[442,848],[719,548],[213,905],[975,682],[928,2],[26,614],[297,520],[233,628],[477,600],[373,734],[648,247],[48,252],[136,687],[950,203],[721,316],[730,601],[769,863],[825,8],[438,858],[957,76],[789,341],[962,326],[86,208],[567,193],[599,422],[995,791],[264,199],[116,477],[605,559],[639,412],[826,321],[531,869],[773,286],[499,37],[239,689],[115,678],[148,390],[921,203],[66,223],[718,96],[627,500],[328,638],[589,339],[182,477],[897,372],[620,959],[119,707],[588,179],[485,99],[435,337],[119,759],[78,474],[637,80],[150,152],[462,928],[879,155],[616,130],[328,741],[868,569],[546,312],[447,211],[341,789],[977,733],[855,653],[649,200],[197,419],[481,341],[955,689],[11,985],[550,698],[103,288],[842,506],[23,473],[684,618],[267,860],[555,749],[649,493],[752,582],[974,701],[558,46],[344,253],[344,563],[474,955],[510,53],[110,354],[756,297],[924,107],[862,34],[8,748],[551,6],[333,600],[255,763],[673,54],[563,65],[520,754],[586,299],[528,729],[28,13],[661,637],[741,121],[4,341],[724,79],[305,365],[889,511],[234,677],[69,437],[688,530],[555,865],[987,848],[548,384],[19,27],[384,714],[234,998],[300,666],[807,959],[219,323],[537,227],[556,473],[55,478],[658,416],[204,508],[2,616],[522,132],[433,33],[121,73],[294,732],[554,901],[251,188],[382,89],[598,679],[102,829],[738,616],[361,313],[441,581],[22,459],[666,522],[765,643],[734,914],[194,216],[432,776],[140,772],[375,650],[31,937],[454,230],[149,727],[780,669],[721,519],[640,644],[420,778],[353,56],[172,507],[148,310],[329,818],[557,599],[432,588],[218,392],[88,418],[257,480],[365,149],[268,987],[200,443],[734,180],[901,7],[807,750],[358,986],[329,428],[308,96],[786,78],[850,232],[784,460],[100,17],[644,566],[109,420],[70,244],[315,249],[269,4],[101,458],[623,241],[506,741],[470,130],[509,825],[693,991],[12,729],[72,910],[747,572],[408,617],[624,383],[140,829],[808,671],[897,337],[935,538],[781,821],[384,196],[184,233],[552,716],[361,767],[604,15],[739,520],[903,383],[129,295],[714,348],[610,284],[247,420],[428,911],[891,662],[984,409],[737,769],[549,573],[699,800],[747,120],[313,170],[371,241],[749,624],[661,277],[722,160],[628,757],[432,266],[969,530],[884,461],[598,90],[193,193],[349,108],[975,884],[75,919],[675,839],[300,929],[439,705],[88,729],[590,883],[820,306],[527,413],[853,507],[883,831],[741,396],[811,897],[742,325],[20,958],[625,942],[482,443],[193,290],[495,102],[892,707],[112,185],[133,575],[792,32],[245,33],[580,441],[697,964],[505,248],[340,302],[646,952],[40,720],[157,202],[525,89],[155,715],[659,231],[961,262],[801,23],[751,72],[403,919],[370,118],[236,421],[519,544],[437,210],[307,341],[575,767],[890,187],[878,794],[492,144],[539,605],[128,722],[700,516],[679,570],[754,728],[683,204],[183,829],[408,348],[354,573],[430,807],[320,321],[566,554],[699,252],[704,826],[713,60],[981,907],[595,14],[713,121],[963,458],[491,273],[706,47],[664,228],[360,890],[545,72],[968,247],[585,496],[371,154],[179,955],[333,352],[25,976],[326,531],[63,372],[642,135],[2,267],[798,759],[118,446],[66,736],[56,372],[341,360],[473,124],[208,747],[853,174],[554,388],[275,949],[771,198],[1,48],[412,238],[889,259],[842,95],[127,497],[962,754],[676,439],[466,298],[550,538],[96,26],[138,781],[486,529],[309,861],[723,652],[346,227],[512,887],[931,150],[123,809],[83,628],[778,152],[715,459],[264,897],[313,718],[777,849],[451,361],[6,632],[595,244],[295,812],[714,114],[763,198],[316,753],[8,966],[210,704],[105,364],[911,577],[793,418],[397,739],[755,831],[36,975],[443,353],[629,842],[790,161],[311,350],[553,931],[70,19],[70,535],[437,491],[85,139],[297,88],[940,919],[316,168],[344,19],[706,37],[111,852],[651,152],[98,134],[424,274],[769,913],[583,764],[691,898],[979,885],[212,420],[569,501],[875,143],[277,601],[433,242],[53,492],[525,202],[243,185],[75,835],[841,580],[584,38],[390,807],[452,603],[277,646],[577,382],[428,158],[731,299],[526,841],[121,618],[773,947],[949,732],[706,154],[146,303],[780,504],[510,231],[863,59],[996,325],[651,619],[446,968],[488,610],[715,4],[746,4],[221,484],[851,463],[317,739],[565,823],[454,578],[64,314],[546,252],[152,179],[443,72],[248,377],[721,240],[113,673],[983,922],[390,229],[486,868],[108,618],[168,270],[402,102],[96,721],[913,538],[585,614],[994,727],[554,190],[247,86],[894,205],[183,691],[236,548],[999,350],[713,513],[110,574],[416,675],[34,587],[569,842],[678,143],[212,367],[562,813],[970,107],[636,387],[199,755],[669,137],[366,159],[580,229],[790,851],[502,402],[284,499],[32,437],[439,53],[812,46],[932,857],[587,618],[211,412],[141,771],[531,141],[885,274],[169,725],[655,328],[238,406],[711,779],[122,31],[123,222],[206,472],[88,417],[576,41],[580,659],[913,479],[645,607],[824,841],[404,335],[832,697],[639,727],[969,111],[915,624],[436,785],[519,757],[797,581],[467,536],[573,52],[97,954],[764,648],[267,251],[443,407],[214,586],[207,265],[556,804],[878,411],[132,692],[854,373],[897,695],[225,217],[552,971],[434,908],[89,716],[740,623],[467,204],[601,25],[782,904],[672,194],[912,339],[202,459],[59,43],[545,734],[382,902],[101,230],[713,348],[10,699],[286,60],[595,590],[679,944],[845,474],[386,752],[183,45],[88,659],[652,908],[205,275],[773,500],[990,96],[733,767],[967,131],[20,671],[129,263],[705,827],[594,696],[448,904],[245,386],[634,547],[336,864],[503,296],[517,665],[409,244],[918,601],[364,376],[440,727],[677,815],[101,28],[389,563],[515,471],[387,671],[299,867],[446,636],[969,76],[360,484],[31,461],[50,666],[723,796],[57,365],[273,329],[235,832],[367,438],[381,570],[434,259],[42,474],[200,779],[487,117],[690,353],[625,939],[743,17],[24,994],[152,505],[839,553],[931,898],[973,207],[774,470],[932,743],[420,36],[717,564],[286,288],[978,894],[62,358],[372,3],[354,957],[432,295],[96,382],[163,736],[254,193],[874,621],[834,662],[456,785],[253,668],[117,771],[600,939],[666,746],[544,951],[833,443],[105,840],[846,181],[820,950],[173,508],[697,636],[823,591],[304,477],[570,2],[86,721],[502,483],[467,947],[160,688],[738,245],[712,607],[489,102],[91,383],[80,182],[387,710],[279,143],[205,629],[348,374],[242,887],[748,462],[608,617],[822,871],[140,156],[597,673],[229,792],[453,801],[86,161],[748,229],[728,452],[561,566],[636,702],[332,172],[88,989],[402,880],[574,53],[322,162],[773,232],[993,653],[992,356],[912,613],[740,112],[444,772],[125,479],[922,625],[54,718],[117,807],[910,830],[756,507],[562,630],[489,752],[887,825],[245,133],[400,168],[459,417],[560,544],[115,73],[624,207],[791,530],[479,766],[281,315],[97,604],[513,330],[454,809],[869,592],[350,503],[139,991],[290,46],[921,534],[809,765],[67,286],[685,686],[115,544],[988,873],[999,87],[783,117],[559,454],[423,948],[387,117],[685,672],[464,930],[646,840],[784,396],[199,904],[767,236],[285,778],[368,447],[985,616],[859,81],[452,981],[39,883],[41,820],[296,769],[761,777],[368,830],[431,757],[330,383],[24,215],[627,885],[1000,220],[219,711],[201,686],[637,201],[106,728],[511,511],[967,534],[489,207],[445,189],[190,841],[716,358],[49,142],[63,774],[992,820],[602,52],[930,813],[629,557],[572,283],[566,152],[746,722],[522,320],[845,292],[463,207],[325,9],[903,357],[313,167],[464,406],[269,938],[194,7],[629,619],[812,173],[502,674],[412,896],[286,456],[628,154],[598,60],[609,380],[816,168],[348,274],[192,251],[358,275],[114,690],[310,569],[942,374],[830,28],[204,353],[963,117],[477,882],[504,381],[96,633],[208,681],[943,303],[651,2],[1,702],[114,899],[816,132],[417,765],[400,169],[996,769],[704,724],[976,407],[735,825],[983,438],[677,997],[822,781],[704,507],[549,716],[179,15],[106,173],[382,612],[581,642],[782,332],[899,89],[690,12],[869,274],[40,991],[814,914],[366,489],[129,785],[707,926],[740,395],[294,502],[616,114],[463,994],[855,17],[927,271],[47,161],[285,911],[786,698],[552,911],[349,572],[212,448],[260,832],[445,736],[29,470],[408,259],[34,352],[411,306],[734,242],[17,354],[105,308],[611,471],[693,388],[481,821],[830,520],[249,483],[190,208],[736,527],[71,690],[976,642],[137,289],[392,880],[329,63],[941,977],[903,885],[307,599],[84,95],[892,366],[731,597],[444,197],[266,803],[549,603],[823,819],[934,421],[443,381],[843,908],[511,999],[84,354],[611,257],[233,304],[721,759],[374,804],[918,776],[571,365],[973,492],[629,82],[875,20],[924,969],[736,914],[222,690],[367,825],[51,32],[50,867],[539,636],[76,805],[939,326],[961,832],[750,238],[115,481],[930,67],[996,14],[179,911],[403,230],[388,852],[301,983],[720,731],[525,464],[793,898],[420,617],[161,325],[546,162],[55,386],[789,7],[196,507],[428,837],[10,216],[244,17],[846,684],[529,169],[319,514],[566,699],[56,223],[354,886],[96,404],[875,123],[455,686],[779,144],[884,923],[468,992],[586,804],[114,630],[480,841],[315,320],[783,73],[316,152],[53,680],[66,971],[574,489],[597,264],[690,147],[430,246],[641,348],[11,349],[431,516],[162,209],[396,345],[523,405],[114,286],[583,923],[82,105],[288,996],[217,340],[278,815],[341,561],[797,345],[394,52],[432,385],[820,394],[673,273],[226,27],[841,963],[493,691],[699,802],[965,651],[83,985],[250,399],[654,183],[343,487],[543,895],[167,100],[575,67],[443,745],[124,148],[773,965],[695,679],[88,772],[94,751],[224,648],[29,657],[529,257],[185,81],[559,94],[336,45],[265,711],[369,486],[307,49],[482,316],[486,922],[921,872],[266,599],[644,787],[240,234],[955,115],[890,729],[2,91],[245,741],[919,674],[30,794],[104,77],[967,199],[211,779],[823,199],[151,115],[475,737],[337,52],[427,21],[295,448],[698,21],[190,268],[772,405],[463,846],[514,638],[489,690],[648,60],[128,969],[626,121],[703,859],[731,721],[5,529],[537,262],[848,225],[78,173],[249,495],[339,722],[988,744],[584,567],[980,561],[111,861],[432,688],[241,296],[96,276],[682,181],[932,760],[545,26],[121,559],[576,910],[680,356],[900,351],[512,283],[740,802],[317,618],[266,598],[420,981],[131,824],[101,930],[668,513],[168,998],[679,120],[212,304],[55,973],[689,273],[417,285],[375,586],[863,733],[82,75],[516,638],[454,362],[395,93],[97,729],[912,571],[824,336],[243,831],[103,210],[873,795],[659,154],[787,309],[489,227],[56,576],[157,495],[261,716],[896,966],[933,979],[714,430],[763,576],[16,125],[443,546],[126,69],[233,217],[401,832],[98,221],[857,453],[481,21],[645,292],[410,130],[406,458],[911,286],[8,631],[868,117],[360,379],[108,723],[202,827],[319,366],[77,684],[286,817],[331,800],[498,121],[470,309],[604,881],[901,160],[276,249],[85,129],[925,284],[457,505],[167,38],[579,334],[480,865],[624,424],[238,30],[313,216],[327,497],[826,269],[233,200],[395,92],[512,544],[304,565],[336,885],[510,511],[686,513],[222,887],[817,454],[875,288],[19,505],[529,849],[906,555],[247,741],[717,752],[23,103],[476,711],[105,257],[433,517],[32,660],[418,909],[120,901],[228,593],[86,431],[37,385],[764,983],[552,485],[781,327],[147,720],[294,779],[733,197],[872,976],[591,408],[522,499],[147,695],[795,646],[374,917],[197,468],[992,401],[724,216],[267,876],[35,441],[47,145],[522,589],[540,11],[854,377],[929,538],[826,491],[673,728],[71,87],[46,507],[793,434],[251,288],[576,772],[114,960],[487,543],[345,788],[655,126],[822,57],[751,186],[382,819],[890,200],[987,692],[34,935],[950,439],[495,871],[519,590],[702,883],[841,805],[459,908],[163,531],[766,741],[849,402],[768,95],[67,556],[280,650],[365,908],[886,506],[44,470],[844,437],[198,718],[244,831],[266,445],[981,670],[889,600],[752,166],[455,799],[849,959],[966,425],[365,891],[791,976],[919,769],[667,858],[884,574],[357,749],[328,610],[194,37],[989,170],[906,344],[197,975],[666,497],[89,261],[932,355],[235,763],[674,675],[66,394],[355,809],[567,294],[65,335],[153,855],[285,405],[773,16],[119,168],[662,964],[479,733],[745,192],[926,39],[933,744],[890,897],[166,209],[620,474],[199,249],[809,940],[324,56],[259,14],[959,528],[511,257],[85,709],[118,97],[685,800],[205,235],[265,832],[928,980],[694,869],[860,798],[712,428],[390,991],[621,833],[751,556],[934,669],[812,745],[609,657],[575,402],[592,484],[789,24],[910,804],[319,18],[775,64],[259,432],[243,118],[470,982],[31,513],[566,696],[468,557],[399,422],[620,208],[731,588],[741,853],[915,418],[242,873],[739,192],[661,983],[197,875],[611,880],[876,869],[517,855],[510,889],[425,928],[159,176],[535,541],[161,903],[913,797],[388,903],[840,111],[308,607],[233,934],[73,707],[263,87],[305,511],[108,129],[966,190],[279,900],[129,742],[111,389],[799,327],[956,558],[391,387],[612,413],[521,870],[604,66],[388,107],[310,395],[329,564],[772,74],[317,465],[646,913],[448,783],[24,433],[114,70],[355,675],[308,490],[439,275],[754,823],[561,56],[96,47],[9,987],[867,793],[390,867],[465,506],[761,519],[597,707],[140,724],[433,546],[505,78],[936,883],[906,211],[145,571],[405,639],[885,750],[750,690],[447,906],[889,404],[489,491],[529,61],[874,294],[911,620],[457,376],[58,29],[424,917],[475,706],[623,231],[505,969],[60,944],[811,892],[870,247],[223,370],[802,644],[730,506],[1,775],[813,782],[640,528],[272,958],[635,753],[139,961],[17,290],[950,125],[334,370],[659,894],[726,942],[507,464],[833,245],[304,317],[268,633],[119,320],[751,300],[91,623],[889,708],[699,486],[302,947],[793,114],[666,286],[183,531],[521,517],[783,614],[780,62],[105,132],[989,958],[822,452],[819,579],[182,421],[842,203],[220,112],[158,681],[946,317],[114,962],[177,101],[421,516],[546,256],[561,467],[529,147],[47,968],[419,957],[662,990],[641,187],[335,470],[523,814],[418,729],[744,719],[972,651],[202,713],[879,586],[500,673],[513,20],[224,383],[997,536],[413,96],[564,395],[85,901],[107,127],[280,682],[542,252],[286,477],[4,47],[480,459],[262,660],[111,496],[915,193],[654,861],[976,821],[358,142],[955,686],[564,805],[167,396],[530,63],[779,258],[651,344],[30,342],[899,361],[484,540],[88,458],[445,287],[425,347],[123,12],[212,850],[39,232],[353,253],[688,824],[181,155],[567,692],[7,478],[676,610],[749,355],[702,165],[952,202],[215,146],[169,795],[397,362],[216,179],[43,423],[960,684],[662,228],[108,152],[354,577],[102,189],[463,54],[294,315],[423,740],[418,635],[410,907],[147,283],[43,629],[553,709],[845,545],[539,479],[753,254],[889,316],[566,815],[799,425],[456,278],[853,15],[700,148],[708,623],[693,182],[867,685],[373,685],[477,888],[831,682],[658,60],[849,144],[491,369],[537,884],[139,603],[591,21],[816,623],[694,221],[854,768],[524,657],[552,635],[646,519],[94,304],[971,485],[811,717],[937,995],[59,276],[928,798],[6,272],[928,367],[335,12],[867,353],[133,891],[422,440],[82,36],[695,758],[671,148],[378,64],[430,409],[535,473],[872,41],[161,124],[837,83],[269,610],[569,530],[718,794],[112,839],[326,902],[160,525],[214,343],[850,664],[43,57],[573,935],[938,448],[408,870],[443,984],[609,281],[222,718],[816,456],[532,767],[885,528],[703,62],[25,328],[484,940],[686,257],[279,824],[28,655],[799,911],[617,642],[384,75],[911,848],[639,75],[65,472],[969,105],[27,19],[997,308],[471,695],[552,83],[566,240],[702,163],[595,742],[376,496],[475,684],[545,363],[377,818],[395,485],[684,444],[138,339],[375,177],[428,280],[477,953],[256,565],[395,865],[697,813],[339,701],[560,513],[992,52],[11,258],[288,125],[149,355],[47,710],[797,710],[34,484],[301,590],[229,857],[172,596],[47,754],[949,198],[307,5],[966,225],[27,314],[99,985],[488,405],[443,628],[12,955],[915,208],[654,278],[809,573],[948,539],[548,948],[809,121],[199,764],[319,694],[235,559],[77,503],[846,191],[178,229],[477,83],[477,881],[452,634],[393,558],[197,56],[858,605],[425,319],[99,798],[226,663],[50,802],[767,792],[269,860],[423,737],[118,169],[567,602],[34,967],[133,73],[14,845],[22,904],[621,703],[733,259],[286,214],[286,174],[980,796],[123,584],[667,733],[525,502],[536,875],[174,397],[740,516],[759,797],[468,52],[617,255],[625,639],[749,2],[840,653],[943,729],[416,791],[941,228],[37,838],[811,603],[129,410],[709,936],[81,894],[63,320],[175,118],[84,879],[757,274],[722,364],[417,666],[747,709],[68,578],[325,567],[919,263],[955,679],[959,563],[594,159],[775,162],[933,941],[877,566],[871,814],[514,61],[508,79],[565,861],[830,229],[133,39],[121,907],[509,635],[140,61],[22,359],[388,274],[995,816],[874,928],[989,900],[864,961],[706,830],[1,756],[72,773],[174,676],[481,378],[181,438],[243,818],[291,552],[12,508],[735,979],[931,255],[907,234],[530,429],[424,339],[33,458],[947,912],[14,104],[362,967],[806,267],[115,461],[57,334],[181,483],[331,590],[204,832],[134,670],[511,168],[958,408],[174,654],[591,676],[575,644],[319,960],[29,960],[688,141],[444,463],[830,59],[695,438],[452,205],[723,384],[159,443],[705,808],[861,809],[391,378],[440,697],[464,625],[169,888],[490,546],[71,129],[692,722],[688,269],[108,491],[72,527],[373,797],[584,897],[98,627],[359,629],[997,257],[284,688],[800,230],[443,847],[725,11],[715,917],[18,130],[578,134],[755,942],[949,582],[61,787],[480,826],[733,892],[303,675],[261,872],[434,826],[316,90],[131,613],[856,379],[745,794],[375,306],[42,58],[715,752],[812,123],[790,98],[117,976],[68,11],[325,916],[300,472],[676,136],[82,476],[592,880],[470,242],[659,619],[286,521],[386,445],[380,401],[951,702],[602,774],[742,693],[122,838],[116,471],[865,478],[195,311],[866,246],[682,190],[526,267],[284,190],[489,764],[293,921],[519,503],[747,436],[210,890],[780,317],[550,7],[478,278],[112,665],[181,917],[813,339],[342,428],[361,574],[524,920],[198,817],[664,310],[415,598],[56,786],[5,65],[150,81],[179,119],[976,112],[551,276],[877,563],[530,724],[928,154],[55,760],[540,647],[910,294],[907,292],[926,85],[849,546],[491,233],[748,49],[145,562],[206,896],[339,705],[831,464],[307,157],[459,964],[863,816],[638,624],[971,496],[787,428],[538,495],[178,807],[447,542],[252,703],[287,829],[778,765],[423,225],[742,561],[816,218],[289,165],[142,728],[193,680],[836,362],[829,665],[421,200],[56,143],[29,566],[85,693],[36,961],[497,7],[210,60],[459,957],[374,875],[544,351],[441,460],[185,705],[536,997],[718,391],[878,325],[85,795],[563,660],[561,701],[574,994],[177,73],[108,742],[431,163],[220,237],[817,226],[376,122],[933,12],[637,453],[347,775],[175,375],[928,82],[74,682],[485,599],[796,98],[963,224],[697,556],[546,493],[848,221],[717,685],[711,591],[44,420],[269,348],[477,370],[125,107],[884,584],[702,171],[512,98],[158,998],[531,340],[115,23],[476,256],[449,64],[450,669],[743,996],[418,949],[877,901],[479,611],[801,824],[639,661],[788,856],[324,564],[274,13],[35,476],[125,595],[115,652],[326,150],[501,243],[304,52],[420,653],[540,358],[46,507],[792,56],[860,544],[610,797],[805,679],[63,266],[23,942],[462,667],[323,674],[232,559],[941,362],[389,984],[895,872],[926,297],[70,77],[361,905],[637,112],[429,662],[308,625],[567,315],[887,996],[584,18],[60,431],[964,355],[891,987],[961,70],[685,640],[710,671],[311,501],[856,976],[888,950],[424,516],[8,114],[28,820],[725,114],[319,726],[388,391],[95,539],[418,105],[442,942],[592,561],[405,535],[37,545],[365,421],[239,427],[537,531],[543,468],[181,501],[217,893],[241,728],[149,463],[715,149],[397,552],[346,10],[619,686],[850,957],[312,899],[52,178],[40,598],[846,845],[73,806],[308,894],[780,723],[622,124],[642,541],[853,120],[465,930],[76,835],[517,336],[676,16],[351,985],[721,17],[596,408],[126,580],[224,312],[344,958],[779,708],[492,979],[988,139],[212,325],[54,541],[585,317],[56,785],[730,760],[291,202],[111,901],[956,658],[999,129],[380,474],[305,563],[498,703],[784,68],[905,546],[741,97],[252,886],[748,399],[617,803],[47,305],[586,812],[955,234],[248,77],[688,171],[563,271],[750,123],[481,896],[169,337],[997,312],[990,891],[992,454],[342,949],[82,801],[231,767],[798,811],[604,567],[477,19],[775,337],[800,931],[608,129],[539,125],[582,543],[694,241],[264,307],[349,768],[729,942],[311,328],[250,934],[649,387],[927,351],[883,891],[46,627],[698,341],[986,742],[213,64],[283,91],[663,79],[194,6],[197,282],[155,167],[419,637],[636,628],[234,929],[113,230],[343,917],[883,549],[803,742],[77,283],[244,181],[875,309],[231,761],[399,512],[24,232],[159,949],[687,16],[140,672],[313,601],[737,685],[290,470],[470,16],[712,477],[903,505],[748,379],[875,387],[145,634],[425,169],[904,281],[583,893],[91,321],[50,984],[914,173],[642,814],[449,354],[423,996],[183,707],[931,5],[531,649],[978,221],[927,579],[129,827],[728,788],[325,667],[636,496],[209,101],[389,715],[694,23],[101,771],[566,722],[429,522],[586,537],[879,880],[696,74],[310,687],[706,174],[665,121],[558,415],[269,278],[664,520],[630,914],[473,905],[658,930],[117,523],[502,777],[641,897],[396,444],[565,493],[540,5],[626,77],[716,912],[633,77],[716,282],[3,665],[519,804],[409,35],[218,83],[535,824],[79,634],[749,563],[762,817],[250,8],[299,178],[991,719],[796,621],[115,886],[398,335],[505,111],[850,917],[759,141],[738,284],[983,839],[862,838],[367,606],[311,498],[13,628],[631,708],[578,172],[967,868],[627,798],[4,203],[257,383],[431,34],[361,334],[662,631],[775,251],[272,569],[209,297],[349,459],[871,684],[923,745],[768,835],[512,756],[899,640],[487,543],[623,511],[564,107],[757,481],[313,162],[840,746],[413,247],[228,23],[78,226],[25,167],[778,513],[757,857],[522,576],[700,778],[987,244],[674,652],[460,197],[603,633],[714,131],[69,68],[426,976],[28,581],[911,442],[554,732],[923,87],[105,782],[472,251],[357,608],[838,699],[791,960],[843,875],[770,440],[5,980],[531,107],[193,694],[703,6],[82,363],[391,689],[654,106],[422,275],[918,529],[446,665],[386,789],[734,205],[256,655],[105,929],[4,234],[892,34],[621,756],[861,39],[557,166],[805,600],[70,767],[654,253],[9,969],[431,810],[645,130],[578,793],[843,199],[358,267],[664,550],[501,413],[767,24],[176,734],[856,55],[235,846],[801,551],[221,820],[886,560],[724,610],[974,810],[669,872],[889,782],[500,828],[832,122],[201,61],[812,399],[290,907],[469,318],[384,149],[490,65],[427,965],[803,985],[68,799],[951,977],[133,697],[704,290],[781,61],[5,503],[673,32],[524,219],[732,283],[234,363],[322,602],[598,844],[371,603],[434,687],[757,756],[755,62],[623,707],[920,11],[302,159],[671,232],[200,63],[638,367],[853,302],[157,535],[413,367],[882,675],[185,611],[68,371],[901,776],[285,673],[162,61],[735,668],[555,506],[980,794],[692,147],[390,290],[403,631],[597,696],[134,48],[643,828],[305,360],[194,996],[262,674],[782,204],[679,501],[362,161],[707,778],[540,453],[466,602],[959,67],[168,923],[544,450],[722,799],[907,724],[953,701],[677,876],[771,269],[487,140],[563,303],[251,746],[227,688],[93,516],[919,767],[653,488],[700,859],[920,614],[226,495],[662,631],[249,846],[285,895],[715,507],[232,848],[674,224],[688,663],[835,436],[32,712],[432,280],[435,626],[988,468],[193,755],[844,918],[81,324],[855,934],[687,34],[254,37],[459,917],[430,347],[384,223],[869,728],[837,638],[468,10],[607,429],[503,681],[768,804],[774,9],[718,857],[227,749],[749,388],[106,94],[928,431],[151,211],[523,324],[134,281],[350,678],[217,845],[271,203],[694,111],[602,284],[259,249],[805,72],[232,152],[412,907],[889,376],[281,734],[109,727],[340,861],[948,552],[424,704],[884,528],[916,281],[506,597],[487,675],[33,974],[328,496],[883,194],[979,719],[590,529],[979,32],[71,747],[411,604],[435,944],[39,577],[364,870],[503,886],[829,239],[477,755],[448,121],[824,866],[828,718],[156,145],[795,554],[966,605],[28,201],[238,207],[670,336],[426,434],[901,571],[922,625],[774,925],[888,342],[8,256],[643,725],[344,872],[690,451],[126,735],[239,40],[649,536],[49,160],[913,477],[858,503],[272,227],[474,490],[695,180],[674,16],[606,625],[949,838],[553,673],[546,390],[980,171],[262,489],[119,706],[385,695],[379,458],[175,482],[999,418],[645,53],[128,286],[18,49],[937,798],[938,702],[715,138],[74,622],[646,632],[308,441],[308,461],[841,375],[967,955],[172,706],[93,738],[765,73],[899,907],[378,124],[218,742],[540,909],[189,809],[438,50],[313,930],[255,794],[91,597],[780,412],[74,811],[462,907],[810,961],[876,471],[966,931],[675,359],[587,295],[425,393],[500,104],[626,952],[644,483],[217,286],[247,290],[441,114],[642,160],[973,389],[61,730],[482,126],[103,934],[999,170],[112,817],[373,842],[726,243],[944,844],[672,640],[653,124],[451,768],[777,815],[870,881],[452,196],[336,910],[880,402],[604,745],[363,917],[624,338],[785,105],[332,256],[634,851],[759,522],[599,807],[487,980],[937,298],[238,30],[56,454],[897,653],[627,157],[349,219],[839,72],[635,128],[721,583],[541,101],[900,971],[196,361],[649,156],[919,542],[332,2],[825,320],[755,701],[474,112],[481,980],[136,895],[68,312],[761,878],[671,931],[638,683],[204,463],[720,636],[79,177],[327,75],[609,126],[301,287],[761,686],[976,719],[723,910],[342,411],[154,57],[60,925],[422,909],[23,942],[415,830],[674,681],[597,630],[741,64],[570,834],[197,968],[139,433],[266,353],[613,142],[65,697],[671,464],[724,66],[319,192],[275,378],[339,506],[419,700],[696,85],[521,962],[341,166],[59,350],[415,449],[33,819],[627,777],[816,955],[210,439],[881,402],[983,735],[168,894],[626,654],[874,35],[500,120],[489,980],[440,430],[169,656],[889,413],[471,6],[337,235],[998,215],[391,710],[402,750],[803,883],[300,460],[36,923],[558,397],[598,62],[908,759],[734,443],[861,851],[109,314],[393,173],[328,388],[242,746],[87,529],[556,789],[103,524],[610,663],[821,807],[606,168],[375,723],[1,321],[360,775],[323,769],[761,536],[28,756],[91,964],[100,986],[971,914],[97,895],[351,583],[897,6],[444,570],[369,795],[969,627],[149,706],[907,89],[844,28],[786,389],[74,442],[796,922],[114,250],[564,151],[161,469],[246,788],[684,312],[946,13],[583,675],[786,286],[142,52],[26,613],[469,894],[991,27],[9,199],[932,964],[515,336],[750,390],[692,630],[90,87],[473,6],[768,394],[336,117],[371,793],[412,124],[85,470],[957,660],[765,854],[471,875],[531,510],[296,1000],[230,548],[580,878],[680,420],[216,186],[110,378],[95,419],[563,582],[414,128],[400,261],[308,946],[748,698],[762,503],[646,593],[755,336],[705,196],[887,971],[604,225],[855,720],[463,955],[609,384],[926,971],[714,120],[783,951],[541,98],[53,631],[390,58],[361,483],[921,233],[718,795],[737,278],[986,867],[257,147],[341,395],[781,121],[318,936],[598,50],[842,874],[148,327],[925,994],[995,200],[189,990],[337,967],[585,313],[770,641],[903,299],[572,53],[374,73],[29,112],[700,421],[420,269],[416,65],[92,651],[773,202],[661,219],[591,649],[725,688],[479,643],[572,859],[218,362],[137,315],[743,682],[838,89],[775,752],[565,236],[441,139],[293,493],[424,95],[480,622],[133,430],[208,178],[600,71],[333,73],[590,941],[603,643],[549,610],[868,973],[591,669],[421,574],[940,475],[175,553],[89,357],[772,935],[798,976],[778,128],[923,902],[790,500],[707,895],[637,490],[202,108],[130,74],[410,305],[390,517],[963,619],[338,521],[38,975],[560,594],[885,168],[61,115],[853,657],[376,484],[742,220],[554,299],[639,791],[349,169],[318,457],[714,673],[649,329],[159,747],[524,178],[380,722],[788,335],[2,111],[937,464],[351,321],[696,908],[780,725],[452,456],[225,472],[27,883],[421,457],[924,587],[311,813],[736,798],[385,665],[319,83],[844,608],[915,835],[567,306],[257,705],[89,231],[759,865],[878,529],[163,944],[882,719],[177,411],[607,862],[801,678],[738,84],[364,944],[988,175],[424,590],[746,831],[479,638],[65,610],[346,631],[987,984],[816,936],[44,831],[94,449],[828,565],[837,532],[79,677],[432,133],[2,38],[925,180],[401,874],[171,114],[980,525],[668,953],[498,20],[898,982],[799,820],[102,863],[25,115],[432,142],[731,435],[989,989],[135,244],[115,210],[972,796],[185,324],[416,453],[438,243],[139,805],[956,608],[491,240],[685,823],[49,680],[947,338],[561,53],[580,307],[254,725],[355,714],[601,993],[755,961],[506,320],[849,759],[625,154],[183,671],[807,257],[207,76],[988,219],[183,240],[755,671],[596,20],[96,350],[706,875],[251,64],[970,655],[147,782],[347,249],[343,865],[775,838],[851,200],[398,203],[743,427],[838,294],[754,898],[797,670],[252,667],[596,872],[670,965],[635,584],[578,705],[76,264],[382,769],[360,960],[704,922],[9,873],[294,600],[685,336],[615,700],[737,886],[944,80],[313,931],[557,570],[977,861],[772,223],[902,614],[721,703],[775,440],[912,36],[90,234],[859,995],[622,907],[67,855],[209,33],[339,900],[108,499],[841,285],[687,693],[636,882],[107,850],[3,765],[916,741],[239,684],[85,76],[408,316],[953,908],[959,587],[650,587],[358,990],[943,999],[394,654],[754,788],[831,992],[276,766],[979,136],[569,303],[329,585],[453,919],[789,369],[307,34],[594,255],[828,819],[770,479],[519,699],[960,156],[771,518],[124,210],[62,683],[639,537],[891,522],[191,864],[695,184],[675,324],[566,765],[288,324],[267,175],[486,815],[303,245],[324,211],[569,182],[465,638],[890,66],[717,488],[475,272],[882,881],[19,993],[151,836],[232,135],[557,572],[405,995],[464,179],[731,609],[60,75],[972,129],[625,428],[168,425],[377,811],[672,18],[526,311],[27,964],[647,365],[289,662],[615,396],[22,176],[994,334],[15,942],[505,482],[866,291],[899,299],[360,336],[141,200],[245,268],[479,808],[810,576],[908,533],[41,876],[973,846],[851,831],[527,553],[772,656],[430,549],[663,332],[41,461],[437,862],[924,748],[999,599],[383,590],[391,464],[216,352],[578,641],[165,142],[316,678],[574,760],[55,781],[721,784],[4,196],[245,985],[109,997],[217,327],[311,314],[347,478],[482,49],[509,391],[508,539],[245,851],[932,749],[657,401],[137,628],[851,70],[693,161],[79,789],[981,35],[345,398],[671,311],[667,593],[195,104],[7,375],[686,959],[317,849],[951,558],[91,786],[470,282],[508,671],[449,542],[41,731],[550,119],[111,801],[5,581],[769,155],[227,259],[588,633],[709,371],[831,459],[361,349],[401,27],[497,227],[833,138],[507,129],[390,344],[284,632],[32,509],[481,216],[133,221],[178,165],[329,180],[649,838],[589,600],[902,392],[991,483],[235,135],[268,177],[528,946],[483,807],[247,870],[831,751],[118,198],[206,180],[812,492],[560,850],[920,118],[648,858],[678,342],[595,358],[339,922],[277,952],[755,856],[361,852],[44,851],[391,428],[175,535],[645,64],[446,520],[769,475],[368,438],[923,182],[941,467],[874,61],[677,866],[189,706],[786,846],[838,950],[393,801],[543,45],[658,377],[315,932],[331,6],[687,679],[490,737],[432,549],[149,322],[641,799],[612,79],[152,600],[997,297],[161,100],[213,151],[903,280],[700,190],[814,377],[990,472],[957,68],[229,130],[137,451],[740,175],[749,961],[771,163],[500,44],[736,339],[381,342],[483,251],[383,972],[322,513],[167,166],[379,536],[144,751],[828,714],[440,400],[183,190],[648,342],[153,554],[681,550],[51,836],[814,363],[265,878],[656,55],[780,537],[473,336],[331,298],[757,825],[191,473],[517,3],[563,738],[541,936],[318,713],[578,264],[729,813],[358,676],[718,927],[554,745],[44,747],[40,491],[797,412],[728,393],[326,603],[701,783],[510,326],[535,960],[903,631],[2,42],[508,38],[752,541],[803,210],[49,661],[731,92],[872,558],[624,891],[877,183],[53,152],[802,9],[824,560],[319,602],[205,595],[848,825],[694,837],[510,777],[773,642],[777,471],[957,822],[180,932],[542,983],[663,408],[824,112],[854,235],[452,815],[115,76],[281,643],[903,600],[670,384],[228,775],[304,122],[19,557],[909,944],[813,350],[688,602],[384,789],[61,120],[632,645],[205,113],[55,799],[697,169],[420,765],[526,267],[318,999],[66,3],[623,210],[947,813],[376,963],[182,72],[939,298],[121,716],[976,729],[13,671],[153,386],[472,518],[378,244],[337,388],[358,479],[169,335],[878,157],[509,65],[418,608],[72,112],[648,656],[316,542],[690,306],[616,96],[273,540],[506,440],[781,587],[163,124],[141,394],[405,435],[853,849],[940,611],[118,230],[244,689],[941,196],[759,795],[336,397],[447,291],[828,291],[257,967],[117,631],[502,104],[205,815],[904,825],[568,773],[864,32],[115,134],[825,112],[100,605],[685,900],[456,762],[325,983],[69,742],[403,611],[636,847],[910,906],[984,871],[444,246],[420,296],[869,525],[192,733],[395,474],[614,341],[138,414],[55,889],[526,6],[876,692],[189,124],[242,335],[36,136],[934,485],[422,7],[645,154],[840,628],[503,696],[820,321],[549,74],[318,304],[746,985],[476,706],[9,627],[238,468],[90,82],[924,888],[95,599],[813,900],[69,396],[949,368],[951,752],[336,264],[669,593],[214,887],[229,166],[298,39],[330,321],[34,155],[25,391],[840,120],[224,665],[863,880],[839,307],[272,546],[932,560],[51,518],[452,363],[59,913],[955,673],[470,112],[293,671],[426,13],[984,208],[27,323],[873,495],[289,21],[140,136],[796,604],[673,816],[823,902],[864,609],[950,654],[742,640],[616,530],[884,796],[5,844],[515,205],[258,164],[221,473],[95,245],[592,453],[486,716],[117,259],[393,354],[715,250],[841,608],[759,454],[658,91],[382,281],[313,539],[286,910],[6,711],[896,843],[852,741],[705,481],[551,674],[616,366],[425,178],[127,939],[869,56],[510,495],[314,198],[981,706],[308,460],[526,244],[144,337],[380,860],[906,647],[962,767],[772,836],[500,531],[590,113],[571,193],[983,858],[707,829],[496,844],[23,483],[226,465],[542,312],[588,665],[700,908],[945,309],[263,202],[578,721],[56,534],[919,724],[571,289],[105,170],[271,445],[473,686],[509,657],[107,416],[723,487],[621,480],[620,119],[185,264],[527,808],[108,365],[658,707],[661,242],[2,353],[657,659],[382,896],[65,58],[610,27],[462,539],[468,227],[87,439],[776,13],[232,680],[419,26],[548,603],[987,200],[136,486],[972,173],[34,625],[511,473],[18,778],[623,793],[296,452],[369,308],[151,765],[44,741],[875,954],[756,200],[622,602],[214,974],[575,998],[895,188],[708,812],[19,676],[692,568],[621,81],[119,526],[938,595],[115,339],[792,62],[570,693],[859,674],[722,598],[598,791],[866,87],[768,4],[726,821],[559,487],[363,63],[887,947],[440,444],[372,643],[125,334],[829,390],[822,477],[9,585],[802,218],[24,356],[952,143],[642,378],[998,287],[894,186],[672,924],[85,522],[319,512],[150,4],[1000,804],[257,163],[471,758],[86,859],[432,104],[789,202],[256,93],[745,982],[376,563],[851,155],[253,934],[371,352],[969,800],[682,193],[971,152],[351,106],[274,527],[979,456],[135,494],[108,346],[106,237],[210,904],[486,222],[479,955],[378,320],[359,542],[29,354],[676,277],[902,293],[988,808],[224,103],[375,998],[517,691],[982,46],[883,953],[733,888],[588,211],[683,304],[892,222],[110,371],[377,714],[402,108],[23,106],[756,828],[410,218],[157,173],[842,171],[730,694],[376,677],[729,160],[411,226],[36,296],[784,594],[845,575],[223,739],[758,141],[18,47],[605,420],[173,740],[233,301],[784,305],[758,134],[525,803],[836,666],[720,924],[470,61],[451,485],[181,657],[626,756],[114,116],[990,605],[378,162],[740,756],[266,572],[19,249],[621,280],[346,866],[200,677],[989,790],[52,128],[385,216],[770,707],[144,170],[931,320],[38,544],[731,218],[727,10],[980,191],[789,88],[393,745],[576,482],[189,618],[574,173],[407,964],[35,700],[229,381],[681,879],[895,298],[255,963],[183,411],[467,569],[865,650],[644,918],[106,893],[619,480],[5,283],[310,486],[837,282],[827,818],[573,79],[2,373],[621,360],[326,262],[348,105],[131,960],[683,358],[2,474],[277,862],[970,607],[181,495],[408,323],[969,352],[688,957],[115,157],[361,489],[614,113],[150,227],[583,176],[868,117],[382,788],[181,721],[30,696],[74,975],[296,124],[707,708],[846,89],[549,795],[787,246],[532,740],[222,127],[497,899],[553,618],[323,929],[922,323],[444,98],[371,690],[837,688],[538,809],[621,60],[477,944],[926,187],[137,72],[191,409],[62,465],[104,643],[84,194],[802,198],[63,22],[167,19],[459,616],[904,389],[299,840],[291,9],[67,620],[761,189],[826,411],[777,165],[724,223],[229,112],[606,759],[173,875],[480,572],[422,879],[32,836],[173,127],[979,219],[299,23],[434,70],[525,475],[444,88],[872,275],[607,172],[882,189],[856,487],[722,285],[733,749],[571,826],[934,62],[381,566],[650,364],[916,699],[508,367],[950,398],[168,144],[518,317],[26,610],[65,560],[435,151],[57,55],[904,433],[882,434],[851,545],[221,214],[412,108],[719,719],[851,421],[233,269],[29,213],[626,50],[638,618],[553,854],[546,433],[429,664],[776,403],[699,683],[77,478],[971,70],[190,905],[656,727],[172,865],[470,927],[178,39],[94,650],[742,845],[514,646],[12,250],[181,421],[693,920],[56,364],[599,475],[850,741],[8,327],[990,501],[384,371],[592,572],[254,791],[218,657],[168,434],[845,206],[75,79],[877,13],[574,725],[28,11],[855,524],[103,42],[336,926],[234,295],[235,49],[964,435],[668,843],[175,93],[971,768],[18,21],[913,988],[286,910],[417,498],[366,372],[551,261],[224,511],[442,307],[961,758],[332,122],[981,497],[760,490],[391,415],[2,136],[626,616],[595,811],[567,723],[262,597],[562,887],[236,391],[406,386],[864,348],[424,265],[578,79],[854,653],[503,872],[243,880],[537,302],[730,206],[29,897],[118,996],[466,442],[748,863],[10,662],[39,712],[486,72],[349,649],[82,903],[365,44],[586,960],[756,566],[599,278],[735,528],[687,761],[171,184],[401,573],[998,434],[111,535],[236,354],[654,611],[412,224],[638,191],[172,164],[215,836],[43,14],[156,853],[42,422],[100,956],[363,530],[401,671],[853,588],[366,579],[303,980],[479,135],[805,584],[610,984],[51,992],[708,143],[324,351],[661,225],[985,512],[411,586],[676,256],[324,210],[201,160],[459,957],[799,767],[645,334],[626,392],[311,45],[902,401],[803,648],[300,63],[514,772],[866,711],[13,891],[281,356],[884,507],[431,757],[131,784],[498,860],[383,671],[179,769],[128,261],[101,189],[964,258],[773,929],[901,949],[323,340],[537,207],[839,599],[751,381],[63,925],[855,332],[113,986],[482,164],[578,427],[37,717],[700,87],[744,650],[82,271],[961,592],[224,455],[905,246],[339,433],[213,297],[897,69],[675,713],[747,604],[319,50],[315,747],[305,929],[174,286],[9,289],[264,932],[463,7],[555,210],[471,700],[867,155],[243,149],[697,871],[343,390],[618,932],[259,727],[805,782],[8,316],[758,979],[603,32],[235,68],[760,692],[838,695],[850,45],[125,57],[100,313],[454,827],[369,742],[816,824],[812,40],[882,85],[930,163],[712,353],[679,736],[275,842],[416,305],[447,581],[762,144],[935,15],[537,703],[373,265],[106,468],[988,204],[298,401],[725,645],[693,988],[393,218],[143,114],[928,820],[591,924],[729,929],[275,509],[240,801],[111,965],[746,3],[186,812],[653,984],[463,62],[675,920],[352,567],[542,635],[1000,231],[252,756],[795,780],[86,84],[604,655],[41,611],[840,65],[864,984],[683,587],[243,257],[67,913],[405,766],[511,706],[943,692],[221,304],[630,794],[221,454],[316,278],[468,210],[998,674],[588,127],[775,530],[149,949],[498,734],[709,96],[276,96],[714,494],[332,769],[728,206],[596,565],[946,419],[920,169],[351,278],[687,230],[463,328],[704,181],[639,391],[36,719],[661,906],[21,862],[733,642],[716,314],[441,987],[627,431],[425,641],[962,882],[621,697],[543,268],[21,249],[167,559],[406,516],[128,709],[718,845],[995,182],[640,77],[375,51],[782,476],[83,695],[620,750],[88,281],[213,301],[633,792],[970,442],[527,262],[354,427],[920,582],[477,162],[478,140],[434,937],[947,922],[887,379],[581,46],[331,116],[287,81],[356,544],[940,546],[206,106],[858,403],[518,248],[95,828],[6,187],[904,296],[776,485],[755,182],[93,977],[748,498],[351,148],[791,752],[344,177],[628,156],[871,980],[933,212],[708,886],[233,568],[912,313],[359,979],[417,270],[480,615],[318,417],[341,483],[555,602],[758,361],[797,130],[730,878],[978,614],[700,212],[163,530],[382,686],[750,781],[192,609],[147,827],[236,604],[997,29],[11,44],[105,425],[949,758],[499,469],[470,228],[148,420],[949,862],[200,478],[861,261],[631,490],[187,139],[231,398],[770,112],[32,462],[893,646],[795,341],[396,32],[287,620],[357,19],[321,475],[499,548],[419,807],[225,409],[173,720],[308,285],[454,504],[74,21],[894,34],[240,397],[840,926],[831,790],[986,460],[506,337],[83,828],[948,693],[802,408],[364,124],[442,493],[95,359],[12,763],[317,533],[781,544],[647,354],[363,162],[618,191],[231,617],[163,61],[859,623],[905,410],[350,330],[15,187],[333,322],[38,538],[466,355],[564,554],[742,235],[482,416],[774,299],[954,693],[995,366],[919,27],[289,506],[481,347],[347,300],[676,875],[475,292],[267,915],[540,826],[362,647],[780,311],[916,193],[431,808],[386,134],[349,170],[157,419],[932,307],[815,379],[366,315],[828,970],[641,695],[81,450],[285,788],[977,446],[758,436],[679,897],[41,882],[977,194],[912,631],[356,829],[587,824],[134,76],[276,182],[865,630],[836,889],[250,593],[595,125],[52,810],[252,553],[191,872],[49,764],[783,474],[377,873],[437,473],[359,886],[893,3],[859,476],[880,587],[852,279],[241,196],[542,849],[705,603],[505,668],[195,336],[852,414],[609,514],[54,62],[560,116],[349,481],[189,579],[787,268],[17,581],[533,516],[470,616],[132,24],[910,310],[957,797],[12,857],[967,775],[200,765],[731,95],[717,136],[414,6],[168,882],[574,666],[400,238],[399,169],[621,525],[41,276],[254,604],[605,109],[225,232],[869,760],[445,103],[203,193],[119,197],[140,363],[251,134],[373,233],[441,167],[81,10],[935,627],[440,767],[198,319],[177,989],[581,254],[587,274],[821,529],[289,882],[259,939],[97,353],[165,587],[609,583],[151,68],[584,591],[314,499],[359,874],[640,670],[630,71],[504,907],[478,448],[943,176],[464,667],[953,110],[104,338],[601,293],[336,809],[143,311],[564,193],[719,487],[644,729],[516,266],[237,393],[269,859],[756,81],[295,329],[969,770],[266,450],[552,155],[486,760],[577,991],[620,207],[378,854],[12,878],[525,242],[119,7],[386,718],[433,10],[646,105],[995,453],[992,559],[906,343],[294,309],[175,720],[17,353],[910,519],[564,475],[948,73],[847,580],[617,394],[311,991],[181,627],[837,711],[935,72],[835,617],[869,306],[486,244],[197,621],[882,769],[6,65],[757,793],[691,227],[224,186],[977,56],[747,909],[617,64],[620,894],[438,451],[792,224],[653,163],[430,255],[770,398],[124,404],[271,419],[45,243],[715,797],[620,12],[233,27],[918,157],[796,409],[46,80],[74,660],[469,699],[640,250],[646,454],[105,657],[424,156],[918,441],[596,605],[103,129],[674,263],[13,829],[578,522],[505,164],[230,775],[141,30],[144,817],[110,843],[754,394],[942,556],[605,991],[678,568],[490,144],[486,838],[590,630],[874,340],[931,578],[439,655],[490,996],[705,299],[168,653],[809,47],[559,661],[417,184],[809,998],[748,548],[293,128],[499,808],[842,177],[576,758],[253,386],[220,250],[677,145],[690,303],[679,167],[606,82],[989,620],[694,753],[866,909],[328,897],[433,891],[866,538],[683,981],[797,837],[492,681],[454,72],[267,369],[186,874],[309,10],[999,772],[155,716],[815,717],[890,882],[985,285],[633,244],[985,316],[661,910],[166,158],[703,959],[706,752],[85,211],[237,839],[589,482],[276,268],[421,932],[432,907],[197,969],[382,205],[466,305],[750,1000],[213,756],[771,628],[246,167],[557,16],[333,282],[730,157],[348,39],[513,493],[126,307],[833,893],[998,841],[611,897],[171,673],[7,894],[642,716],[949,873],[390,713],[155,633],[457,533],[546,138],[415,500],[939,887],[35,792],[659,289],[277,690],[653,8],[842,884],[786,56],[46,412],[349,683],[569,337],[942,150],[652,628],[941,349],[82,966],[58,748],[95,287],[212,691],[599,731],[571,619],[444,609],[142,187],[227,952],[372,894],[925,85],[619,513],[155,584],[345,958],[732,461],[452,603],[897,70],[199,603],[14,129],[177,508],[622,863],[822,380],[722,162],[318,161],[101,957],[568,307],[647,45],[207,169],[710,83],[649,262],[715,891],[625,119],[102,157],[728,590],[500,17],[769,923],[666,546],[746,181],[373,483],[427,236],[252,708],[180,629],[960,249],[465,118],[73,104],[754,898],[367,5],[34,952],[686,894],[291,774],[951,840],[352,935],[622,721],[859,66],[598,124],[968,916],[267,410],[805,587],[345,848],[346,387],[19,548],[472,918],[394,502],[591,481],[542,986],[182,579],[986,323],[629,37],[16,296],[961,618],[540,277],[88,161],[509,986],[226,403],[557,323],[647,851],[792,557],[584,874],[604,332],[697,120],[458,257],[597,89],[522,334],[590,876],[231,355],[765,341],[304,342],[937,545],[1000,272],[527,114],[19,773],[539,860],[376,583],[145,644],[817,952],[35,922],[18,809],[698,490],[153,443],[299,61],[80,794],[511,77],[577,187],[418,49],[29,863],[385,771],[283,545],[22,877],[914,350],[294,289],[534,428],[480,989],[54,500],[140,706],[70,365],[857,57],[450,959],[496,365],[164,425],[31,740],[562,184],[858,286],[352,711],[159,284],[245,468],[829,724],[22,291],[979,697],[205,412],[920,82],[733,468],[88,927],[668,645],[926,683],[420,103],[744,114],[789,277],[920,232],[908,919],[105,792],[784,471],[133,799],[186,407],[400,222],[593,26],[830,904],[230,628],[126,249],[883,762],[75,806],[863,427],[578,421],[672,973],[669,848],[18,622],[579,999],[33,96],[845,132],[146,144],[450,899],[513,920],[411,119],[808,201],[184,597],[473,177],[498,227],[668,212],[721,577],[599,630],[266,698],[101,102],[687,406],[227,991],[401,441],[687,112],[358,774],[168,215],[701,907],[759,76],[376,89],[961,217],[459,180],[421,131],[644,760],[4,949],[236,517],[599,104],[554,721],[921,760],[74,735],[707,82],[535,50],[796,460],[509,740],[999,944],[341,493],[106,224],[194,147],[358,740],[758,985],[161,953],[892,343],[842,954],[275,241],[410,753],[515,450],[459,253],[486,211],[889,722],[214,407],[426,756],[834,81],[58,544],[627,219],[478,726],[355,655],[158,490],[735,878],[602,764],[560,296],[936,243],[988,654],[415,342],[766,314],[693,577],[969,778],[776,846],[820,595],[300,241],[378,835],[474,739],[165,142],[217,578],[40,199],[560,705],[945,383],[156,11],[392,943],[565,234],[622,538],[61,13],[439,528],[819,669],[585,458],[44,306],[141,410],[939,460],[171,999],[776,964],[103,109],[481,239],[751,725],[246,482],[589,480],[681,179],[903,491],[740,13],[240,151],[859,564],[295,200],[992,931],[156,590],[446,40],[585,34],[300,872],[658,914],[124,814],[27,85],[792,875],[712,668],[83,616],[624,218],[936,459],[88,900],[967,70],[605,187],[417,997],[289,788],[524,463],[975,970],[626,138],[391,244],[195,879],[294,602],[909,216],[971,141],[251,487],[521,879],[718,79],[800,775],[408,909],[147,105],[858,620],[302,594],[915,837],[98,752],[273,179],[938,355],[528,734],[400,892],[935,815],[153,404],[888,259],[291,808],[863,469],[799,399],[937,539],[267,584],[526,665],[641,910],[425,623],[734,547],[141,770],[108,571],[207,36],[791,138],[208,126],[487,38],[249,931],[975,5],[687,174],[383,696],[51,850],[627,516],[473,199],[74,601],[736,516],[872,633],[90,350],[442,52],[391,741],[472,330],[982,646],[717,613],[616,675],[218,958],[256,290],[138,205],[943,604],[72,641],[825,944],[790,404],[822,432],[755,800],[817,95],[896,893],[101,257],[655,348],[85,29],[384,201],[324,126],[391,954],[645,65],[914,751],[42,286],[303,976],[559,92],[724,82],[386,405],[635,144],[68,858],[33,290],[222,27],[695,697],[630,986],[640,250],[4,453],[765,611],[599,167],[998,205],[612,984],[60,465],[362,807],[913,422],[34,804],[272,506],[986,669],[67,41],[244,784],[994,977],[728,317],[792,463],[692,442],[117,728],[190,303],[308,369],[418,27],[592,415],[437,672],[457,880],[683,840],[793,220],[933,308],[324,633],[145,324],[790,922],[861,727],[960,153],[423,326],[108,649],[399,165],[943,739],[998,132],[839,490],[755,991],[351,826],[187,764],[864,113],[49,448],[543,250],[216,213],[643,679],[246,433],[378,984],[410,636],[894,6],[384,553],[471,30],[336,487],[210,61],[551,601],[242,405],[987,123],[141,653],[454,623],[747,26],[32,879],[244,117],[895,579],[684,42],[867,618],[426,377],[172,635],[174,998],[515,869],[732,105],[110,199],[906,305],[533,734],[812,614],[914,230],[941,670],[405,130],[835,78],[116,448],[391,488],[147,222],[88,701],[522,38],[567,91],[328,207],[685,175],[179,51],[206,593],[941,421],[634,493],[433,391],[303,524],[363,494],[961,657],[591,589],[777,463],[79,358],[555,782],[904,691],[283,648],[268,263],[318,834],[545,487],[236,672],[49,60],[528,586],[165,102],[759,731],[109,382],[371,263],[26,182],[568,434],[106,218],[669,218],[990,142],[321,779],[226,693],[77,233],[760,373],[821,900],[968,277],[848,127],[449,521],[126,434],[825,790],[438,518],[962,630],[82,98],[652,853],[640,849],[570,800],[664,436],[897,246],[281,226],[563,487],[599,844],[877,285],[686,450],[519,326],[627,426],[603,654],[924,263],[826,294],[395,58],[171,429],[271,807],[421,62],[647,270],[404,112],[42,129],[985,290],[939,106],[492,15],[847,481],[774,85],[53,342],[636,171],[376,50],[831,739],[265,19],[596,278],[398,394],[420,89],[670,423],[947,112],[583,45],[310,171],[356,780],[843,380],[242,305],[53,461],[404,732],[947,620],[515,226],[865,321],[639,627],[530,459],[119,894],[483,945],[437,697],[14,711],[145,900],[326,62],[948,826],[984,780],[380,399],[392,98],[246,591],[402,383],[42,386],[350,257],[374,545],[861,717],[279,761],[998,374],[367,610],[917,302],[454,133],[484,197],[737,402],[364,185],[747,745],[53,949],[123,900],[632,736],[530,679],[946,993],[855,110],[583,414],[519,288],[253,186],[359,784],[142,9],[250,14],[851,670],[952,136],[281,830],[246,816],[177,326],[922,972],[226,901],[801,19],[985,767],[739,996],[171,426],[445,40],[405,974],[616,384],[175,332],[532,962],[455,772],[23,656],[985,836],[184,775],[736,624],[748,775],[310,48],[964,321],[867,764],[543,426],[333,493],[42,585],[302,689],[428,292],[557,393],[657,13],[823,683],[855,328],[870,664],[725,963],[676,499],[935,631],[885,717],[596,709],[518,848],[603,606],[375,152],[171,923],[101,440],[995,661],[736,365],[847,107],[796,620],[900,180],[10,225],[738,754],[231,757],[666,700],[656,708],[645,216],[498,520],[522,360],[407,445],[468,115],[347,886],[522,646],[57,728],[576,813],[847,97],[934,26],[692,783],[713,995],[166,563],[745,474],[428,100],[548,881],[291,350],[132,822],[459,714],[81,532],[394,795],[312,509],[326,40],[874,123],[613,1000],[792,571],[832,208],[819,915],[366,350],[534,768],[942,157],[40,20],[967,596],[603,729],[969,673],[476,596],[537,52],[322,396],[591,683],[25,353],[698,539],[601,717],[665,726],[652,461],[383,548],[964,650],[909,324],[310,553],[58,950],[692,452],[561,225],[309,948],[279,513],[939,592],[909,988],[596,977],[24,658],[100,765],[597,234],[873,972],[934,474],[706,912],[148,305],[246,250],[989,609],[617,896],[339,857],[864,603],[201,560],[888,328],[887,245],[150,433],[711,283],[343,257],[776,167],[844,133],[32,152],[117,515],[218,87],[693,302],[410,464],[784,124],[187,689],[983,826],[267,658],[6,16],[70,9],[809,711],[690,771],[279,238],[170,289],[705,802],[323,977],[307,373],[745,284],[278,925],[403,252],[733,816],[779,489],[419,262],[716,91],[522,239],[65,643],[325,861],[546,393],[961,919],[504,444],[331,343],[790,42],[985,2],[142,837],[169,107],[271,748],[375,984],[819,659],[829,800],[674,590],[290,787],[726,797],[320,412],[237,938],[208,561],[140,759],[956,586],[575,448],[535,692],[6,828],[235,987],[513,179],[20,438],[126,1000],[329,687],[148,425],[353,720],[863,136],[603,435],[642,922],[547,242],[117,376],[526,157],[272,647],[351,476],[827,942],[528,397],[164,800],[98,31],[106,267],[495,660],[415,52],[337,75],[325,333],[663,5],[399,125],[240,997],[665,682],[545,40],[683,998],[716,925],[484,360],[823,660],[753,166],[808,679],[168,307],[991,913],[222,425],[667,597],[681,258],[382,894],[74,822],[646,380],[236,392],[810,483],[857,25],[447,687],[961,145],[222,57],[518,537],[721,665],[135,514],[314,970],[182,278],[54,372],[974,681],[554,482],[357,805],[251,358],[71,511],[215,468],[131,314],[53,596],[666,316],[974,696],[479,588],[59,43],[350,616],[616,650],[70,57],[90,2],[617,50],[847,456],[843,489],[639,626],[459,257],[528,774],[888,685],[20,683],[949,411],[603,830],[499,213],[784,805],[540,552],[860,546],[608,343],[977,467],[69,491],[435,313],[899,721],[191,158],[212,797],[7,112],[477,790],[525,609],[662,600],[509,115],[909,962],[941,195],[849,483],[631,856],[580,863],[550,418],[122,754],[16,254],[559,316],[659,620],[527,440],[913,427],[500,325],[314,952],[16,654],[55,730],[38,915],[965,775],[445,940],[58,135],[836,451],[54,240],[609,266],[768,825],[451,557],[840,893],[233,875],[999,234],[54,13],[526,529],[447,492],[960,16],[924,291],[440,956],[754,460],[473,848],[605,543],[796,384],[21,604],[318,803],[248,442],[964,507],[158,796],[739,386],[684,801],[80,467],[455,543],[812,592],[161,329],[120,806],[936,346],[104,500],[408,409],[342,403],[164,460],[804,976],[817,532],[123,779],[348,594],[989,226],[665,153],[5,869],[620,5],[211,301],[375,704],[706,337],[911,787],[201,914],[894,882],[407,737],[245,311],[805,208],[637,886],[842,145],[242,765],[951,830],[357,713],[899,783],[798,767],[395,783],[773,933],[345,771],[928,150],[735,192],[76,976],[31,303],[397,743],[434,906],[468,173],[949,70],[568,567],[719,284],[493,596],[213,229],[308,207],[155,590],[432,950],[181,86],[790,474],[663,723],[745,298],[769,32],[185,317],[972,618],[306,501],[952,238],[618,172],[605,492],[57,145],[966,949],[528,942],[933,351],[153,328],[585,543],[426,86],[274,722],[205,270],[718,886],[995,897],[60,672],[554,45],[426,333],[706,523],[580,892],[453,427],[831,549],[810,198],[827,256],[715,291],[607,128],[119,169],[827,495],[174,954],[59,947],[803,405],[166,909],[20,164],[916,784],[169,866],[58,497],[54,148],[316,932],[399,782],[167,805],[495,946],[80,803],[854,889],[678,916],[760,857],[230,755],[568,633],[33,625],[244,306],[862,533],[395,946],[154,807],[746,161],[811,237],[746,577],[158,936],[393,38],[107,637],[368,724],[244,656],[113,612],[715,133],[742,647],[11,968],[953,763],[937,444],[848,860],[43,348],[328,258],[59,623],[744,696],[983,477],[840,3],[865,956],[341,854],[738,605],[135,727],[238,308],[848,547],[309,69],[692,721],[916,79],[369,445],[506,803],[423,757],[246,409],[780,628],[677,450],[328,810],[176,441],[55,453],[197,116],[474,101],[64,711],[841,606],[466,699],[332,649],[75,216],[14,804],[923,706],[987,31],[414,197],[938,11],[372,779],[189,644],[747,42],[206,452],[715,197],[304,752],[709,672],[723,233],[500,403],[939,89],[69,808],[21,589],[944,280],[839,735],[190,260],[216,989],[726,436],[612,347],[511,810],[959,288],[259,816],[917,130],[532,15],[636,472],[52,320],[320,126],[298,898],[349,761],[864,744],[574,474],[469,952],[594,718],[595,503],[93,114],[323,739],[84,616],[570,423],[142,268],[681,407],[187,239],[764,92],[656,655],[908,702],[493,721],[111,450],[614,403],[490,698],[508,399],[863,350],[444,746],[401,779],[87,283],[643,71],[289,847],[57,328],[166,651],[360,474],[461,205],[645,503],[670,208],[570,134],[229,970],[901,74],[456,714],[212,686],[699,312],[583,470],[155,196],[558,879],[239,830],[561,533],[560,229],[653,292],[769,909],[961,924],[125,561],[954,982],[744,570],[517,904],[77,795],[195,100],[550,719],[531,114],[913,178],[69,81],[337,604],[347,249],[402,360],[438,99],[933,802],[24,888],[372,672],[273,972],[199,14],[954,93],[631,854],[300,214],[795,333],[801,968],[705,844],[717,508],[879,664],[814,840],[752,808],[248,502],[476,476],[790,9],[2,470],[720,151],[636,495],[262,876],[134,295],[17,187],[243,999],[586,746],[566,174],[156,53],[833,540],[908,476],[336,510],[172,818],[984,884],[395,18],[593,508],[919,938],[891,279],[572,259],[548,80],[333,232],[426,387],[63,670],[39,84],[237,605],[34,625],[651,412],[376,477],[355,344],[550,348],[252,922],[565,538],[746,807],[682,271],[287,692],[927,200],[572,925],[4,799],[618,970],[979,477],[17,131],[287,551],[930,142],[68,408],[608,338],[834,734],[771,695],[273,751],[358,927],[2,106],[156,30],[215,214],[390,708],[322,506],[185,232],[677,675],[48,314],[564,436],[233,596],[224,492],[512,833],[520,128],[473,677],[566,17],[970,723],[695,787],[361,913],[759,516],[492,570],[418,623],[123,440],[127,759],[59,650],[556,884],[475,75],[141,964],[637,726],[511,311],[553,375],[30,723],[597,88],[789,166],[404,847],[136,374],[15,534],[393,901],[609,638],[448,122],[166,125],[965,247],[415,123],[51,342],[845,135],[198,526],[138,875],[807,803],[31,898],[366,60],[495,973],[720,856],[780,431],[706,339],[103,96],[653,28],[780,288],[865,36],[394,828],[504,71],[632,625],[413,760],[744,509],[502,218],[858,267],[825,35],[704,393],[991,599],[16,123],[443,765],[949,627],[820,865],[690,847],[94,133],[716,606],[876,49],[368,748],[667,194],[284,977],[964,281],[812,725],[205,273],[330,915],[774,867],[225,923],[395,67],[980,644],[913,973],[854,814],[845,113],[286,192],[640,265],[891,985],[345,311],[549,27],[915,784],[178,406],[755,536],[603,17],[658,478],[376,709],[474,869],[142,654],[205,907],[130,513],[743,434],[981,94],[643,159],[365,671],[220,525],[296,81],[897,837],[869,791],[370,688],[186,454],[653,733],[683,599],[513,321],[950,6],[415,720],[169,672],[819,385],[913,626],[801,34],[73,21],[795,356],[195,270],[692,561],[279,191],[655,541],[920,581],[309,75],[433,28],[274,798],[287,491],[205,653],[799,822],[643,928],[83,627],[531,106],[361,573],[232,302],[130,279],[519,850],[149,941],[676,298],[631,725],[704,385],[399,429],[566,169],[67,388],[261,274],[725,479],[928,363],[142,42],[830,482],[852,883],[138,980],[25,690],[260,927],[805,594],[5,667],[246,393],[822,141],[66,965],[288,16],[723,768],[469,405],[321,826],[186,730],[273,499],[627,237],[115,759],[520,974],[602,963],[101,330],[835,179],[153,327],[508,530],[899,923],[264,531],[650,77],[637,707],[222,215],[390,449],[614,639],[509,705],[696,567],[998,354],[630,349],[992,759],[871,134],[109,154],[63,793],[643,786],[648,217],[84,963],[812,536],[52,785],[767,122],[567,990],[648,171],[434,853],[393,125],[203,839],[601,442],[69,706],[676,988],[149,991],[824,695],[881,78],[411,800],[516,332],[535,542],[458,33],[820,931],[650,549],[328,318],[803,225],[868,99],[918,345],[124,707],[309,389],[3,64],[272,494],[337,498],[881,476],[989,465],[861,647],[802,677],[580,604],[475,4],[116,66],[308,366],[385,904],[929,100],[915,291],[98,691],[294,24],[271,167],[536,713],[58,457],[841,995],[653,570],[11,531],[669,317],[879,170],[145,711],[616,646],[43,953],[187,582],[159,567],[952,551],[391,180],[91,30],[763,639],[52,572],[959,654],[496,973],[621,49],[605,313],[824,815],[83,715],[379,30],[124,184],[69,624],[833,638],[839,532],[857,500],[419,367],[490,808],[378,296],[598,887],[13,908],[46,467],[911,106],[835,581],[930,755],[105,25],[373,348],[320,683],[12,242],[260,252],[84,784],[577,436],[839,111],[595,302],[778,724],[165,519],[721,635],[270,4],[369,429],[199,375],[694,344],[876,208],[366,607],[151,645],[726,971],[312,194],[509,248],[33,592],[993,700],[387,36],[59,633],[188,731],[802,14],[793,199],[260,662],[30,811],[665,120],[870,467],[94,609],[453,774],[199,981],[289,208],[709,627],[559,434],[52,176],[511,773],[450,157],[798,441],[71,511],[395,551],[807,215],[174,582],[383,511],[506,776],[300,404],[492,278],[423,609],[338,19],[642,123],[81,954],[403,638],[126,179],[201,927],[855,195],[630,301],[497,422],[929,684],[431,119],[320,925],[831,940],[819,688],[829,154],[837,764],[210,797],[837,375],[640,882],[899,860],[21,842],[202,950],[169,311],[131,270],[807,668],[976,444],[937,751],[165,974],[626,738],[84,721],[850,197],[315,33],[960,622],[911,543],[781,804],[896,247],[452,58],[369,769],[348,285],[263,769],[174,852],[608,651],[254,918],[352,452],[982,401],[81,137],[530,249],[933,83],[900,436],[977,11],[846,161],[658,556],[293,827],[353,468],[696,71],[920,299],[484,457],[463,865],[313,260],[604,461],[278,35],[362,36],[200,155],[480,949],[635,471],[294,521],[601,920],[351,376],[760,685],[845,80],[496,253],[750,229],[666,180],[284,659],[537,75],[469,386],[119,222],[505,224],[285,849],[716,414],[226,846],[601,828],[913,93],[575,502],[220,342],[121,505],[883,304],[526,721],[603,56],[521,226],[919,494],[679,950],[425,745],[322,99],[509,75],[237,891],[391,7],[274,754],[188,266],[299,163],[17,789],[673,187],[864,333],[417,93],[309,985],[635,217],[478,255],[977,312],[554,681],[477,86],[548,728],[940,801],[80,234],[945,32],[110,938],[872,567],[28,363],[154,257],[905,983],[893,804],[820,913],[428,548],[121,732],[46,940],[765,6],[457,412],[520,399],[292,524],[153,460],[942,731],[379,737],[727,204],[178,51],[642,920],[519,41],[681,832],[297,176],[623,575],[390,316],[825,667],[669,337],[967,274],[60,335],[118,986],[695,202],[883,450],[825,217],[333,833],[352,305],[830,993],[455,3],[346,822],[302,502],[466,771],[805,223],[47,151],[899,737],[262,787],[679,683],[873,635],[820,859],[895,932],[393,352],[240,846],[429,137],[359,920],[748,691],[383,175],[58,983],[151,582],[202,332],[652,227],[477,710],[201,564],[527,641],[943,813],[293,54],[639,762],[777,30],[103,143],[28,929],[185,727],[946,767],[817,819],[780,415],[472,187],[39,744],[609,858],[76,698],[973,231],[883,544],[77,747],[223,758],[192,960],[971,4],[905,613],[113,302],[549,948],[22,718],[974,605],[631,864],[593,544],[89,116],[539,382],[722,31],[392,353],[396,614],[369,991],[467,30],[154,913],[913,968],[548,303],[953,333],[694,882],[85,398],[453,79],[472,413],[315,876],[788,768],[929,738],[200,204],[572,156],[79,220],[470,812],[525,115],[487,310],[738,142],[240,210],[192,382],[214,459],[475,617],[82,94],[82,811],[918,969],[351,274],[426,991],[128,124],[797,874],[929,544],[499,922],[83,791],[749,717],[882,155],[488,648],[569,663],[270,863],[823,128],[736,463],[7,189],[898,154],[411,692],[547,728],[850,488],[750,835],[729,153],[58,17],[426,258],[765,819],[669,703],[170,301],[272,217],[29,919],[661,469],[397,244],[70,424],[280,262],[676,803],[520,663],[324,216],[634,119],[184,539],[801,22],[927,155],[478,281],[861,508],[875,871],[900,869],[268,441],[86,824],[760,598],[105,20],[986,973],[477,94],[541,495],[342,911],[617,681],[324,625],[106,384],[736,839],[255,657],[324,160],[935,775],[190,789],[21,760],[912,170],[998,191],[477,834],[389,607],[663,571],[150,93],[15,738],[962,534],[564,35],[255,878],[673,401],[243,893],[992,974],[276,745],[740,127],[533,461],[858,802],[221,118],[120,497],[506,219],[255,571],[262,557],[732,720],[318,746],[817,972],[4,343],[993,5],[590,139],[371,20],[921,501],[595,238],[188,162],[523,467],[329,466],[237,560],[592,473],[610,594],[231,868],[995,445],[487,231],[355,82],[28,407],[149,591],[434,699],[772,250],[625,120],[75,485],[134,260],[81,726],[147,154],[577,485],[300,532],[814,878],[237,138],[599,484],[631,234],[376,877],[251,335],[218,147],[423,240],[795,14],[656,189],[838,80],[459,591],[220,269],[156,502],[86,717],[867,386],[255,305],[690,216],[9,995],[259,200],[7,719],[486,370],[271,912],[136,526],[363,606],[142,665],[20,763],[139,515],[127,802],[681,872],[702,384],[985,871],[86,533],[219,722],[549,661],[692,356],[842,668],[726,89],[942,27],[700,14],[785,752],[267,939],[60,206],[431,557],[794,801],[518,138],[569,912],[107,647],[428,661],[610,110],[347,593],[353,66],[819,659],[501,798],[825,530],[450,638],[835,212],[359,828],[208,710],[56,112],[34,638],[881,404],[156,352],[608,867],[194,334],[560,813],[409,64],[540,811],[751,822],[739,353],[829,836],[250,273],[15,334],[61,383],[825,188],[702,353],[942,148],[126,195],[283,755],[339,428],[798,539],[93,896],[660,680],[162,250],[625,764],[701,282],[725,23],[205,926],[63,317],[897,369],[891,78],[115,622],[739,520],[451,317],[619,710],[170,621],[566,280],[815,666],[54,859],[317,973],[5,399],[19,18],[300,358],[823,531],[928,674],[397,197],[137,379],[349,859],[836,67],[86,951],[29,29],[426,957],[772,761],[921,940],[74,858],[224,766],[133,248],[195,735],[170,906],[981,916],[629,838],[614,38],[342,69],[977,912],[796,103],[20,406],[788,890],[512,609],[169,355],[58,300],[802,348],[521,969],[160,942],[827,578],[941,12],[300,654],[484,455],[64,723],[9,135],[727,843],[106,496],[280,712],[706,173],[320,118],[489,617],[802,707],[558,201],[166,754],[904,110],[915,725],[325,230],[224,556],[207,305],[343,206],[349,366],[994,529],[597,47],[684,184],[591,599],[382,256],[596,298],[464,695],[457,162],[911,72],[921,654],[345,280],[670,137],[429,825],[799,5],[457,759],[190,462],[5,881],[465,40],[62,878],[783,991],[339,693],[30,329],[801,559],[547,365],[674,845],[607,620],[787,579],[202,96],[711,387],[891,707],[508,210],[868,25],[462,14],[33,777],[220,944],[47,990],[917,198],[524,345],[7,644],[465,20],[971,54],[69,639],[491,721],[313,248],[347,66],[564,217],[297,59],[222,991],[58,764],[43,569],[967,193],[965,575],[186,605],[506,996],[550,309],[571,17],[945,918],[978,729],[638,432],[590,469],[2,694],[273,569],[200,193],[819,653],[53,417],[141,19],[909,329],[486,296],[313,588],[579,603],[792,729],[528,13],[24,766],[26,860],[244,387],[350,463],[967,677],[929,346],[611,919],[570,233],[814,467],[107,47],[97,84],[217,77],[607,910],[318,371],[574,541],[798,101],[83,934],[871,89],[729,472],[446,304],[341,764],[890,950],[102,289],[771,667],[224,410],[534,154],[315,813],[15,782],[710,507],[798,681],[771,794],[861,599],[414,448],[8,74],[203,939],[753,767],[675,172],[278,106],[791,245],[760,820],[528,731],[24,243],[872,58],[599,589],[830,610],[942,511],[707,522],[794,376],[428,68],[160,471],[162,66],[53,277],[946,279],[750,139],[289,378],[170,404],[897,840],[736,121],[303,840],[51,471],[912,91],[439,826],[798,920],[213,431],[174,900],[772,600],[719,179],[253,643],[196,137],[360,453],[756,863],[368,378],[256,302],[667,50],[298,847],[451,818],[976,319],[514,325],[740,810],[185,324],[990,421],[919,145],[937,464],[217,311],[748,279],[679,977],[658,948],[195,726],[684,496],[340,135],[612,478],[74,915],[966,987],[734,614],[65,369],[722,35],[361,754],[70,543],[437,800],[459,563],[120,177],[391,169],[503,454],[673,141],[845,891],[405,312],[130,219],[277,967],[199,863],[450,326],[72,367],[460,747],[289,212],[689,420],[352,327],[15,361],[452,936],[999,538],[853,537],[943,362],[892,408],[359,900],[194,30],[325,931],[373,372],[886,417],[362,76],[306,600],[686,126],[139,524],[394,791],[84,511],[13,423],[582,137],[851,413],[8,897],[30,8],[363,33],[357,192],[877,897],[336,958],[57,56],[955,201],[389,886],[749,871],[790,221],[838,780],[955,644],[840,491],[449,297],[530,739],[72,191],[791,764],[940,874],[473,370],[497,604],[470,984],[467,62],[131,851],[415,487],[507,855],[605,323],[860,664],[602,350],[68,475],[383,723],[54,381],[27,515],[215,798],[804,967],[203,699],[918,411],[609,893],[978,231],[929,367],[69,239],[791,662],[274,63],[703,404],[340,362],[747,396],[728,416],[54,196],[379,205],[12,321],[223,666],[351,987],[255,668],[492,114],[516,131],[341,27],[104,993],[171,781],[400,120],[214,855],[329,690],[160,607],[884,160],[186,578],[604,411],[161,775],[799,625],[544,135],[780,574],[794,739],[60,24],[633,43],[288,165],[903,51],[13,867],[67,695],[787,475],[194,19],[345,212],[921,825],[819,105],[857,111],[813,639],[239,236],[572,971],[316,200],[371,173],[235,675],[965,926],[271,847],[780,909],[653,641],[834,112],[910,572],[446,848],[62,997],[119,652],[765,47],[395,609],[270,277],[556,178],[465,773],[260,973],[77,909],[786,612],[737,638],[956,626],[56,516],[297,794],[92,594],[935,735],[866,864],[140,789],[439,509],[895,332],[663,332],[923,158],[380,9],[322,493],[863,492],[309,684],[115,585],[259,514],[924,617],[100,273],[123,213],[245,965],[394,294],[823,451],[299,259],[240,221],[912,163],[596,625],[803,344],[333,660],[751,216],[250,980],[810,561],[747,309],[325,895],[495,733],[320,463],[8,549],[309,897],[336,2],[290,243],[53,728],[593,643],[774,856],[750,397],[936,647],[437,718],[673,739],[146,281],[851,767],[107,49],[853,386],[691,183],[574,51],[949,469],[848,907],[130,977],[272,998],[354,666],[939,367],[977,562],[450,723],[559,421],[159,375],[702,419],[678,93],[273,795],[959,8],[547,761],[689,661],[994,54],[883,600],[595,670],[252,817],[700,849],[785,531],[788,228],[771,930],[177,866],[142,146],[919,685],[472,730],[3,525],[2,957],[759,184],[589,566],[434,779],[192,25],[189,517],[414,788],[491,151],[817,579],[687,297],[548,675],[548,742],[654,937],[209,724],[904,290],[841,346],[865,296],[545,432],[276,979],[495,98],[174,509],[140,849],[996,581],[257,744],[956,940],[374,532],[476,409],[657,389],[660,49],[841,109],[131,48],[976,486],[270,870],[656,810],[861,667],[876,502],[259,447],[860,135],[519,972],[309,535],[620,624],[89,822],[67,519],[700,598],[412,125],[543,678],[308,141],[153,191],[68,56],[69,332],[208,679],[78,708],[379,363],[916,946],[62,430],[916,989],[564,814],[191,101],[413,5],[367,333],[861,260],[816,144],[337,381],[68,681],[277,862],[173,338],[944,17],[856,806],[191,803],[631,154],[676,914],[936,743],[227,792],[89,861],[51,49],[388,274],[500,137],[901,383],[64,718],[597,877],[384,34],[302,347],[117,407],[395,426],[399,539],[551,722],[157,62],[902,648],[919,572],[891,6],[79,706],[624,917],[14,376],[629,339],[813,720],[460,575],[580,964],[93,958],[384,441],[780,562],[951,732],[507,115],[197,553],[653,237],[542,551],[623,293],[987,617],[825,579],[568,161],[48,863],[572,251],[970,366],[532,539],[365,339],[383,101],[284,725],[33,519],[377,827],[589,754],[82,897],[628,971],[680,726],[30,668],[910,52],[434,158],[586,730],[530,289],[776,50],[307,263],[363,347],[863,247],[714,931],[156,826],[104,347],[596,511],[805,491],[756,810],[7,212],[650,730],[369,449],[678,656],[386,547],[155,441],[976,301],[392,373],[784,800],[878,442],[305,141],[384,315],[117,673],[772,468],[210,910],[194,905],[73,783],[19,910],[470,675],[160,478],[277,444],[63,547],[445,324],[602,836],[387,878],[374,661],[669,789],[100,327],[832,129],[368,661],[207,708],[929,322],[582,362],[208,540],[78,858],[898,103],[148,149],[952,846],[293,866],[489,671],[499,75],[118,179],[673,850],[520,139],[1,259],[30,988],[493,673],[195,723],[842,122],[994,576],[397,608],[364,325],[325,343],[247,965],[845,635],[958,245],[246,840],[924,68],[467,81],[598,950],[49,789],[237,900],[548,929],[232,381],[534,264],[727,860],[415,369],[884,301],[860,741],[200,815],[920,634],[57,957],[440,837],[772,952],[98,498],[16,114],[775,768],[203,488],[837,806],[444,225],[960,679],[81,983],[77,497],[139,898],[239,110],[637,694],[890,208],[49,157],[945,840],[597,200],[835,1000],[470,354],[171,210],[969,629],[406,293],[417,230],[665,784],[881,367],[452,90],[728,174],[976,669],[297,885],[493,893],[268,898],[204,983],[724,471],[554,975],[568,800],[269,251],[948,370],[989,706],[723,2],[819,161],[80,571],[14,136],[54,148],[253,61],[450,137],[807,69],[469,166],[416,48],[669,44],[191,655],[477,273],[724,54],[222,515],[395,807],[733,306],[63,549],[506,945],[682,986],[842,49],[990,258],[456,383],[968,583],[580,7],[906,850],[290,828],[51,106],[403,582],[732,914],[389,424],[917,957],[381,337],[65,827],[619,560],[277,171],[95,912],[71,633],[283,764],[279,347],[764,515],[93,959],[613,249],[161,690],[44,5],[727,52],[492,103],[444,356],[389,923],[655,736],[467,735],[684,168],[537,711],[129,898],[391,617],[803,882],[291,751],[861,494],[879,809],[38,497],[754,179],[90,66],[727,557],[602,92],[898,386],[793,221],[727,174],[637,101],[549,765],[787,906],[365,406],[2,325],[622,608],[921,179],[340,348],[317,194],[719,255],[701,126],[655,94],[369,417],[607,87],[939,272],[254,918],[173,418],[957,131],[139,19],[607,706],[393,565],[785,331],[130,847],[853,238],[724,455],[432,614],[200,70],[555,476],[835,300],[827,358],[640,461],[772,366],[390,833],[167,596],[52,237],[238,34],[138,48],[729,953],[178,530],[619,936],[504,688],[308,325],[9,68],[485,414],[279,571],[253,229],[631,33],[376,20],[744,110],[328,608],[452,355],[207,340],[995,53],[576,418],[645,952],[640,146],[6,775],[880,752],[20,914],[16,820],[1000,672],[217,816],[201,697],[892,298],[579,344],[816,372],[159,381],[344,847],[510,245],[412,853],[549,120],[740,191],[874,850],[241,347],[651,438],[402,648],[254,366],[246,872],[515,855],[162,463],[241,159],[529,151],[6,276],[945,745],[501,867],[373,986],[865,87],[865,527],[886,73],[823,122],[503,505],[711,330],[880,218],[610,695],[390,54],[550,63],[181,557],[771,257],[678,777],[322,911],[856,490],[983,502],[683,455],[824,403],[241,862],[202,148],[889,6],[954,73],[66,46],[864,456],[700,662],[197,700],[393,636],[969,372],[207,742],[113,424],[736,414],[700,267],[457,59],[422,613],[598,455],[744,244],[278,563],[885,552],[371,697],[467,326],[396,993],[884,881],[863,471],[775,896],[207,223],[183,692],[271,350],[250,930],[291,427],[171,221],[64,80],[209,784],[370,867],[536,866],[377,562],[824,421],[527,292],[659,739],[360,95],[606,512],[244,518],[398,48],[256,736],[724,289],[760,780],[305,365],[116,10],[759,762],[782,533],[265,739],[447,428],[777,66],[766,360],[540,406],[173,288],[103,187],[812,491],[792,93],[803,323],[601,10],[205,969],[306,726],[836,279],[629,291],[102,230],[199,345],[320,967],[472,739],[808,346],[782,915],[458,215],[771,589],[790,346],[945,286],[50,124],[596,534],[477,140],[210,604],[208,574],[46,560],[39,997],[206,208],[733,807],[50,616],[378,533],[40,943],[820,180],[141,950],[360,76],[261,637],[658,958],[9,142],[198,215],[851,807],[896,856],[628,752],[946,176],[885,415],[211,276],[585,704],[655,135],[482,870],[731,897],[600,69],[977,814],[306,235],[820,246],[200,508],[771,570],[34,329],[4,471],[81,409],[621,526],[119,793],[494,155],[521,76],[670,56],[871,377],[798,347],[636,834],[691,297],[639,11],[181,830],[640,545],[617,781],[517,876],[982,394],[166,519],[280,303],[549,790],[907,15],[746,663],[620,324],[999,585],[358,343],[471,402],[89,43],[668,685],[941,271],[227,238],[515,564],[845,916],[828,56],[35,198],[381,256],[545,563],[983,959],[99,312],[88,116],[649,54],[20,686],[90,653],[251,558],[362,640],[178,169],[202,157],[619,132],[463,719],[836,524],[369,77],[855,554],[480,262],[990,168],[38,347],[942,698],[648,178],[380,437],[373,674],[720,383],[417,174],[472,431],[234,190],[201,825],[883,571],[764,663],[210,908],[275,419],[833,262],[460,834],[156,903],[622,837],[783,294],[995,85],[380,884],[55,65],[423,457],[461,324],[245,760],[599,357],[626,111],[411,165],[199,980],[319,849],[695,34],[764,559],[163,823],[21,853],[162,747],[723,506],[717,709],[793,708],[449,19],[300,833],[532,875],[631,52],[312,468],[922,437],[769,966],[180,415],[919,62],[931,764],[133,45],[535,171],[501,322],[632,482],[833,528],[947,971],[607,63],[363,865],[646,101],[256,968],[478,364],[80,260],[628,766],[191,777],[705,834],[352,541],[799,117],[243,160],[807,971],[23,325],[205,531],[75,127],[68,145],[277,173],[500,670],[775,964],[807,464],[52,568],[316,987],[328,419],[581,995],[10,237],[604,284],[348,971],[146,366],[198,371],[439,980],[89,93],[877,799],[47,707],[766,143],[139,999],[681,305],[772,429],[397,94],[738,162],[402,570],[270,358],[103,402],[835,953],[563,442],[871,309],[268,920],[281,405],[486,519],[32,249],[738,84],[6,39],[172,763],[396,903],[547,131],[965,920],[250,599],[175,692],[900,806],[364,587],[862,964],[568,138],[372,785],[657,856],[289,242],[618,282],[535,744],[882,565],[628,80],[166,289],[737,520],[644,174],[69,546],[129,617],[180,685],[192,802],[667,10],[687,571],[463,633],[423,275],[946,898],[104,847],[681,511],[128,541],[788,942],[103,496],[458,197],[434,915],[865,303],[166,666],[546,889],[80,220],[55,723],[444,886],[709,95],[239,41],[583,507],[657,391],[814,678],[884,280],[178,549],[5,635],[390,138],[21,385],[601,66],[996,146],[17,504],[471,710],[387,670],[357,271],[639,835],[91,26],[972,361],[86,33],[262,259],[617,894],[247,411],[808,387],[749,259],[140,683],[161,549],[112,600],[193,174],[880,145],[627,119],[43,889],[605,915],[372,889],[825,886],[615,365],[457,942],[69,703],[266,200],[386,345],[811,400],[437,889],[347,485],[131,275],[424,561],[37,558],[13,910],[405,557],[568,282],[812,766],[673,567],[484,888],[824,943],[52,956],[721,468],[340,93],[650,745],[311,601],[827,110],[509,687],[794,721],[478,715],[681,962],[920,76],[233,952],[464,140],[100,728],[899,407],[61,702],[109,316],[950,185],[650,792],[835,700],[378,87],[384,592],[50,238],[14,219],[166,794],[582,714],[552,807],[544,724],[160,738],[804,737],[559,207],[22,284],[710,813],[351,949],[595,516],[146,98],[252,824],[705,937],[365,275],[155,178],[370,868],[124,192],[585,81],[862,3],[63,231],[613,630],[640,914],[271,572],[89,269],[440,994],[840,120],[299,63],[440,204],[439,57],[694,581],[385,19],[905,909],[658,651],[45,544],[665,377],[887,320],[723,814],[343,977],[355,807],[809,434],[663,387],[78,740],[597,597],[951,176],[86,415],[143,759],[856,802],[932,96],[384,853],[474,203],[860,21],[681,116],[560,28],[125,579],[442,283],[84,58],[45,143],[523,850],[603,461],[928,430],[96,131],[585,437],[584,874],[264,119],[244,692],[716,31],[270,290],[727,228],[868,63],[288,931],[592,162],[876,476],[270,59],[995,465],[103,74],[592,955],[802,41],[148,754],[679,376],[59,10],[853,838],[910,16],[239,223],[319,919],[176,587],[473,47],[673,744],[651,677],[811,97],[624,56],[261,347],[990,353],[818,647],[53,233],[293,720],[802,784],[631,170],[737,380],[123,509],[482,39],[23,964],[178,601],[815,822],[607,883],[481,848],[7,943],[97,219],[20,192],[467,405],[591,121],[40,755],[719,237],[328,183],[795,586],[894,429],[849,522],[5,679],[923,253],[139,835],[62,768],[343,207],[133,324],[186,299],[305,795],[448,817],[547,966],[452,893],[493,614],[617,403],[300,275],[491,102],[293,859],[910,524],[794,376],[127,164],[986,179],[30,49],[962,518],[13,847],[657,553],[145,604],[350,842],[50,55],[446,440],[215,543],[629,644],[605,775],[800,178],[594,565],[33,995],[135,983],[550,789],[695,576],[43,307],[547,969],[279,607],[310,907],[515,214],[205,990],[66,24],[781,304],[299,103],[775,321],[696,687],[451,217],[429,831],[535,562],[42,874],[886,964],[266,780],[979,912],[796,118],[726,384],[165,928],[37,226],[997,751],[134,727],[185,372],[143,716],[400,703],[350,193],[651,289],[651,202],[357,590],[270,443],[452,261],[434,438],[958,344],[458,146],[644,661],[740,406],[743,438],[967,253],[301,905],[218,427],[698,140],[892,133],[211,804],[628,109],[450,354],[323,686],[193,390],[604,12],[42,762],[752,525],[557,700],[457,475],[484,968],[356,672],[935,876],[191,307],[772,432],[638,810],[223,54],[791,565],[634,318],[540,689],[435,556],[266,801],[166,266],[984,107],[204,93],[298,856],[972,824],[17,457],[32,709],[427,384],[660,63],[91,614],[929,142],[311,660],[140,994],[339,900],[694,898],[264,607],[92,732],[105,880],[387,237],[269,515],[955,954],[298,280],[414,358],[104,837],[135,949],[955,524],[951,517],[434,960],[598,257],[836,562],[37,365],[6,372],[264,986],[752,283],[311,175],[361,749],[727,524],[101,597],[822,183],[163,923],[234,285],[71,170],[517,699],[419,189],[698,924],[281,728],[700,646],[51,184],[782,351],[513,496],[449,273],[61,667],[998,144],[667,642],[834,677],[575,845],[477,522],[222,255],[26,167],[395,730],[660,961],[915,984],[213,177],[301,817],[270,784],[245,878],[485,379],[925,419],[855,983],[878,757],[340,101],[802,124],[610,165],[684,726],[626,410],[784,602],[903,161],[674,806],[94,529],[42,77],[698,824],[414,371],[106,483],[211,49],[121,866],[547,257],[425,334],[980,383],[562,841],[799,328],[755,821],[350,491],[854,475],[590,343],[225,613],[137,252],[468,287],[347,700],[744,787],[223,115],[736,572],[33,968],[738,817],[114,453],[512,521],[857,347],[812,210],[717,614],[85,133],[550,373],[355,486],[711,632],[763,362],[807,431],[930,376],[850,635],[529,204],[34,656],[74,295],[726,193],[643,972],[396,211],[946,174],[407,866],[500,100],[312,664],[571,989],[427,613],[574,290],[510,908],[260,185],[46,514],[104,51],[920,787],[892,870],[7,320],[88,113],[37,314],[454,350],[74,693],[254,591],[700,445],[172,725],[876,883],[692,921],[257,225],[287,710],[20,251],[969,988],[285,73],[11,815],[36,476],[964,565],[158,916],[363,19],[891,933],[135,698],[3,959],[109,492],[804,956],[744,901],[711,100],[174,531],[337,600],[909,607],[280,512],[426,179],[880,142],[433,441],[955,972],[523,345],[494,530],[81,135],[172,100],[133,77],[305,990],[58,176],[709,830],[700,895],[775,332],[395,201],[782,422],[609,995],[608,841],[545,311],[916,70],[549,575],[505,120],[426,958],[961,870],[26,150],[382,467],[987,520],[287,604],[368,606],[849,935],[310,786],[673,833],[653,738],[994,328],[194,714],[95,607],[597,142],[893,814],[569,863],[308,381],[645,658],[845,426],[357,522],[289,864],[124,116],[999,249],[219,962],[602,169],[198,368],[549,100],[331,181],[96,17],[852,960],[194,826],[17,177],[292,232],[573,374],[382,856],[206,74],[91,143],[135,572],[865,647],[870,488],[766,268],[282,657],[95,204],[860,556],[22,151],[960,160],[669,657],[680,9],[693,275],[554,691],[488,897],[636,663],[706,368],[128,821],[880,785],[820,692],[391,484],[633,688],[631,985],[32,739],[736,812],[362,679],[712,24],[658,658],[332,833],[836,311],[713,90],[285,186],[294,679],[724,730],[812,366],[489,743],[997,684],[495,933],[71,898],[669,295],[50,725],[131,923],[789,5],[159,215],[624,50],[402,614],[520,221],[958,877],[825,171],[406,377],[490,643],[37,196],[840,822],[207,522],[278,27],[344,671],[887,563],[161,576],[297,976],[694,426],[702,42],[306,531],[189,560],[422,343],[656,504],[823,55],[653,890],[707,890],[55,225],[444,790],[578,798],[860,307],[807,480],[534,973],[960,301],[971,868],[458,388],[481,477],[750,8],[247,588],[468,313],[539,561],[144,288],[970,924],[220,335],[606,967],[569,494],[297,977],[986,868],[275,283],[988,849],[306,385],[546,625],[61,507],[337,659],[679,350],[965,979],[63,857],[301,429],[830,481],[882,512],[643,17],[995,857],[21,783],[380,464],[43,306],[683,194],[774,681],[302,773],[853,530],[730,210],[256,489],[274,21],[385,354],[977,251],[318,351],[514,951],[159,863],[865,36],[336,410],[34,581],[497,442],[813,364],[484,286],[435,16],[670,272],[778,55],[487,998],[576,279],[282,657],[491,80],[208,448],[895,859],[431,875],[504,898],[408,101],[198,642],[739,574],[199,64],[117,384],[290,502],[216,132],[762,604],[709,562],[252,151],[403,310],[163,446],[894,870],[775,557],[726,352],[922,652],[464,888],[399,734],[486,445],[601,672],[814,283],[606,15],[197,21],[403,861],[501,660],[5,32],[257,774],[955,858],[957,250],[506,167],[771,579],[993,194],[141,8],[968,902],[527,933],[231,915],[580,481],[626,911],[392,915],[452,123],[676,904],[536,243],[351,927],[98,225],[72,811],[193,289],[52,441],[350,503],[103,501],[490,251],[556,779],[813,4],[764,87],[269,225],[289,711],[512,208],[627,592],[592,772],[346,771],[738,754],[728,883],[60,266],[385,605],[792,37],[807,693],[177,584],[655,535],[704,282],[190,762],[895,627],[246,379],[525,685],[768,366],[140,653],[760,157],[596,607],[403,333],[539,986],[770,848],[854,936],[167,327],[61,995],[454,886],[253,583],[701,96],[432,178],[608,654],[688,208],[248,125],[811,640],[363,876],[321,346],[695,667],[975,415],[413,719],[274,511],[705,972],[22,243],[228,491],[704,285],[460,250],[687,487],[316,287],[268,335],[128,939],[602,144],[41,791],[637,351],[250,235],[591,845],[148,633],[621,188],[554,808],[784,651],[495,615],[921,993],[552,695],[786,542],[493,787],[550,604],[592,528],[667,115],[502,597],[391,392],[563,132],[402,908],[799,926],[705,304],[757,238],[76,333],[52,773],[363,465],[760,773],[40,24],[899,222],[103,197],[715,960],[133,210],[82,530],[123,843],[899,197],[187,723],[343,119],[805,425],[306,531],[64,715],[727,776],[729,450],[976,961],[714,221],[950,987],[154,687],[565,332],[177,834],[126,940],[887,901],[27,735],[262,329],[807,96],[464,225],[612,273],[103,704],[77,682],[685,545],[23,629],[755,320],[572,400],[325,518],[1,217],[935,370],[345,438],[552,37],[338,994],[613,203],[962,524],[891,877],[469,729],[593,855],[656,863],[196,302],[558,814],[425,982],[841,794],[826,523],[982,478],[397,973],[651,872],[639,525],[883,103],[822,464],[972,554],[529,844],[664,948],[519,970],[744,954],[191,201],[131,988],[238,482],[475,478],[225,274],[399,148],[39,746],[391,913],[695,546],[586,812],[134,325],[480,649],[384,172],[671,833],[984,193],[417,246],[654,325],[538,520],[148,256],[298,431],[223,349],[787,313],[712,187],[893,12],[413,561],[75,544],[235,394],[876,268],[985,736],[138,82],[365,691],[85,55],[903,927],[79,54],[62,103],[304,441],[103,756],[221,380],[725,660],[779,406],[104,442],[591,543],[474,819],[116,35],[59,960],[942,987],[111,103],[80,767],[309,254],[681,373],[801,848],[719,821],[920,758],[397,177],[115,109],[622,115],[908,993],[414,956],[297,970],[700,884],[522,347],[40,915],[385,480],[868,294],[305,125],[467,632],[864,642],[322,860],[49,159],[250,430],[46,712],[319,824],[931,651],[600,704],[455,667],[739,442],[746,578],[750,685],[949,200],[950,111],[975,513],[574,889],[507,247],[24,292],[633,508],[835,164],[295,238],[110,887],[865,17],[747,432],[417,161],[837,894],[989,971],[228,925],[853,602],[811,140],[208,622],[593,571],[894,83],[442,446],[925,413],[844,474],[198,734],[249,466],[671,330],[597,135],[471,51],[625,794],[143,608],[454,80],[872,265],[502,324],[142,207],[7,266],[258,768],[568,782],[952,488],[152,248],[695,386],[609,258],[273,985],[775,261],[129,993],[867,312],[885,597],[731,771],[418,351],[843,731],[74,30],[236,720],[397,338],[493,344],[235,783],[286,787],[668,896],[604,853],[314,197],[91,455],[206,543],[866,603],[95,529],[974,243],[149,646],[83,226],[985,115],[101,556],[466,197],[321,962],[581,177],[507,968],[849,8],[616,15],[404,246],[416,526],[199,866],[697,610],[430,84],[946,114],[650,250],[849,201],[600,643],[403,190],[160,824],[261,68],[567,597],[378,714],[412,835],[608,556],[362,540],[436,782],[330,833],[221,658],[590,171],[642,681],[622,819],[819,39],[359,354],[589,48],[927,250],[498,112],[455,497],[180,687],[950,260],[795,39],[775,301],[370,780],[849,8],[559,872],[489,819],[205,647],[98,109],[392,602],[339,996],[525,548],[117,611],[727,772],[20,953],[747,276],[495,901],[297,447],[243,442],[904,245],[512,782],[14,579],[559,129],[907,905],[204,524],[314,609],[589,546],[204,410],[262,50],[471,380],[726,29],[308,241],[518,294],[817,672],[409,915],[395,265],[370,534],[490,2],[966,228],[925,986],[224,29],[357,421],[559,640],[105,632],[686,103],[745,314],[791,257],[90,575],[377,375],[176,932],[595,604],[240,908],[362,704],[866,892],[195,808],[261,629],[367,517],[478,680],[288,458],[712,581],[640,454],[698,353],[903,38],[283,77],[378,138],[977,479],[584,112],[536,257],[240,641],[191,325],[94,29],[73,829],[555,29],[170,847],[241,356],[928,503],[89,260],[909,773],[39,625],[746,335],[394,258],[688,473],[639,349],[405,658],[472,481],[795,875],[751,288],[189,736],[594,777],[707,719],[87,53],[8,549],[736,505],[439,646],[346,558],[332,320],[780,355],[360,169],[776,769],[656,810],[986,57],[892,881],[161,72],[440,485],[556,329],[26,989],[212,958],[618,990],[709,846],[886,787],[743,515],[114,296],[738,674],[969,353],[916,539],[200,364],[961,484],[85,39],[704,440],[615,492],[67,40],[895,425],[365,526],[966,983],[715,890],[660,47],[481,604],[527,189],[682,226],[411,160],[327,821],[125,592],[810,974],[269,31],[849,373],[271,231],[264,838],[475,758],[402,640],[908,847],[434,45],[910,589],[37,612],[153,244],[491,931],[266,828],[659,202],[514,912],[827,611],[566,69],[677,954],[95,296],[674,150],[316,683],[751,987],[390,125],[631,316],[949,283],[356,513],[567,582],[850,278],[743,677],[591,771],[756,177],[131,212],[11,315],[689,696],[360,857],[552,17],[948,587],[349,990],[978,311],[34,48],[706,257],[289,295],[784,935],[453,899],[701,630],[166,78],[285,569],[363,141],[467,828],[87,425],[77,633],[674,287],[462,91],[490,930],[504,516],[386,316],[857,943],[323,978],[517,274],[739,301],[328,7],[565,2],[992,755],[850,744],[902,644],[367,652],[94,885],[720,845],[459,914],[617,676],[158,516],[243,883],[243,598],[176,674],[981,674],[830,153],[523,906],[907,904],[938,456],[73,828],[674,279],[548,307],[251,281],[529,150],[228,9],[181,609],[849,496],[847,931],[939,639],[83,48],[111,301],[29,105],[656,17],[43,986],[297,132],[797,391],[10,799],[338,776],[600,148],[102,893],[714,878],[783,432],[978,975],[167,693],[735,585],[118,35],[553,352],[587,822],[19,568],[223,975],[739,385],[571,209],[890,295],[685,182],[187,504],[684,603],[354,180],[846,477],[898,269],[609,911],[343,271],[935,135],[350,787],[564,611],[64,101],[937,837],[658,671],[142,409],[584,283],[240,822],[735,562],[828,143],[803,571],[460,315],[451,38],[74,785],[9,643],[169,692],[731,324],[836,70],[543,314],[458,419],[838,477],[70,68],[12,881],[821,479],[453,813],[882,555],[267,814],[211,799],[51,626],[272,273],[60,230],[388,778],[318,908],[125,735],[835,392],[450,127],[617,11],[89,318],[156,145],[213,326],[239,261],[907,4],[880,369],[606,550],[286,461],[573,151],[573,454],[874,217],[603,308],[177,154],[813,761],[772,169],[153,269],[202,972],[407,467],[337,121],[286,913],[998,947],[519,929],[413,873],[1,934],[402,224],[573,282],[309,540],[668,152],[851,36],[875,545],[580,960],[355,890],[691,688],[839,39],[760,558],[57,876],[972,408],[236,988],[548,551],[616,550],[522,392],[557,800],[92,385],[955,787],[752,466],[432,422],[921,815],[72,349],[938,319],[407,635],[581,150],[791,417],[19,28],[247,453],[525,75],[512,783],[74,944],[20,725],[608,467],[971,849],[912,860],[621,161],[536,192],[356,345],[378,196],[747,18],[896,716],[107,631],[60,56],[618,870],[8,799],[688,387],[531,279],[692,880],[571,888],[928,689],[898,21],[904,785],[748,383],[903,746],[407,256],[737,622],[329,400],[37,195],[426,997],[985,426],[483,491],[77,555],[488,546],[571,806],[427,376],[240,664],[65,491],[102,398],[270,720],[69,917],[915,814],[295,797],[640,858],[354,339],[363,881],[885,155],[840,453],[992,364],[961,3],[60,491],[367,783],[150,695],[631,901],[799,800],[545,605],[415,337],[827,6],[379,513],[32,590],[376,539],[117,943],[892,708],[137,858],[447,643],[364,130],[476,9],[632,747],[321,77],[165,828],[48,428],[247,442],[550,555],[294,12],[317,758],[581,847],[605,124],[848,807],[667,611],[171,877],[820,39],[212,237],[105,6],[175,701],[382,741],[314,309],[225,178],[870,556],[853,537],[534,340],[586,903],[496,566],[402,711],[74,265],[982,603],[527,842],[441,673],[806,287],[139,18],[896,772],[279,174],[665,364],[592,592],[677,946],[361,768],[897,227],[84,906],[940,858],[301,959],[927,827],[738,523],[226,186],[364,438],[727,852],[233,768],[886,752],[808,779],[907,157],[846,381],[802,759],[618,823],[921,610],[50,821],[160,164],[853,86],[625,470],[252,928],[818,808],[108,689],[670,545],[645,911],[73,962],[2,548],[797,682],[771,984],[28,925],[86,931],[513,733],[618,637],[368,80],[837,313],[910,740],[40,549],[312,496],[119,744],[412,153],[316,628],[917,530],[741,952],[966,625],[128,717],[469,304],[663,60],[345,522],[697,7],[546,202],[911,199],[624,817],[732,503],[34,41],[203,422],[582,480],[567,258],[999,232],[477,8],[811,919],[793,289],[594,287],[98,865],[858,966],[967,601],[659,769],[285,827],[422,383],[549,45],[634,611],[471,864],[553,312],[718,572],[535,654],[347,690],[116,349],[143,796],[359,372],[581,276],[467,819],[962,45],[493,188],[488,956],[276,437],[759,770],[784,561],[335,899],[685,807],[52,397],[60,614],[929,658],[737,957],[689,105],[961,972],[295,598],[410,840],[668,816],[65,515],[989,971],[566,808],[667,374],[399,246],[8,661],[992,154],[480,909],[57,890],[662,194],[479,82],[627,148],[366,894],[380,830],[47,530],[188,836],[146,531],[929,604],[545,466],[982,225],[728,118],[733,76],[208,983],[363,974],[853,523],[684,368],[824,750],[637,988],[77,433],[902,122],[187,660],[200,828],[818,756],[424,114],[956,670],[2,1000],[267,716],[686,466],[318,123],[821,261],[927,626],[742,665],[478,450],[975,410],[236,859],[948,401],[660,881],[992,925],[94,35],[931,189],[474,318],[641,687],[326,10],[87,162],[977,669],[191,846],[525,525],[761,891],[19,360],[287,725],[520,971],[380,395],[820,965],[934,392],[236,666],[562,751],[123,611],[792,264],[811,153],[113,760],[786,596],[943,526],[477,400],[805,430],[30,829],[277,42],[384,628],[186,945],[51,928],[712,418],[213,47],[868,665],[704,187],[871,919],[901,945],[632,10],[488,14],[377,341],[961,318],[227,876],[431,891],[257,877],[978,783],[33,194],[901,427],[925,676],[232,777],[207,970],[326,98],[552,436],[854,974],[573,581],[791,68],[885,75],[95,836],[128,149],[797,689],[769,856],[196,435],[809,223],[39,944],[10,483],[310,97],[35,193],[959,693],[406,64],[453,87],[596,376],[306,46],[431,940],[835,76],[966,501],[578,724],[674,291],[49,578],[298,608],[585,618],[364,203],[736,883],[816,252],[193,45],[851,649],[464,951],[879,48],[321,106],[160,793],[599,544],[616,515],[411,649],[920,719],[22,889],[340,938],[246,14],[98,636],[877,311],[529,829],[613,973],[100,983],[487,523],[844,224],[335,882],[940,3],[828,901],[861,750],[425,527],[560,200],[822,918],[884,453],[567,737],[768,970],[975,985],[236,153],[998,338],[591,133],[199,394],[914,985],[581,18],[558,375],[661,368],[182,881],[264,253],[826,5],[717,719],[830,82],[559,525],[201,956],[707,463],[855,37],[26,668],[327,598],[599,599],[262,547],[275,69],[642,921],[505,877],[24,346],[147,664],[179,575],[325,115],[124,354],[303,42],[712,343],[213,914],[649,994],[858,187],[998,349],[910,605],[857,904],[326,253],[289,284],[465,303],[733,998],[936,944],[648,817],[16,628],[419,462],[885,38],[812,966],[17,103],[874,294],[370,233],[761,95],[621,331],[303,979],[657,193],[967,973],[378,965],[966,163],[686,579],[356,271],[495,590],[814,972],[685,166],[22,779],[807,953],[651,626],[760,174],[486,936],[780,36],[325,377],[882,248],[109,361],[685,920],[65,383],[260,881],[872,271],[222,919],[230,751],[767,737],[514,302],[466,830],[254,112],[777,9],[768,853],[255,701],[513,297],[907,58],[246,591],[870,196],[139,150],[983,726],[905,950],[288,12],[425,678],[674,751],[615,692],[54,136],[293,74],[876,65],[718,924],[829,628],[64,357],[14,399],[786,962],[989,465],[963,172],[519,469],[969,879],[467,666],[505,44],[555,126],[260,854],[705,249],[640,303],[712,411],[345,398],[601,511],[684,138],[336,116],[200,451],[555,428],[373,646],[39,39],[545,369],[554,303],[534,705],[975,667],[100,397],[476,526],[586,122],[972,725],[828,833],[834,356],[725,838],[627,546],[304,406],[86,967],[36,994],[734,706],[929,576],[736,631],[283,917],[64,588],[842,188],[290,455],[801,296],[344,788],[539,954],[329,97],[469,932],[962,793],[14,358],[606,830],[530,248],[115,747],[874,348],[114,950],[804,306],[467,598],[826,243],[355,597],[423,728],[515,121],[505,491],[637,939],[901,280],[571,36],[405,339],[599,924],[157,388],[246,349],[646,483],[488,910],[201,966],[338,248],[309,384],[104,362],[319,84],[996,604],[91,376],[420,743],[626,224],[757,823],[394,93],[312,364],[475,32],[285,523],[290,37],[544,6],[333,733],[619,470],[179,752],[26,691],[130,340],[354,123],[211,771],[658,576],[934,10],[702,354],[588,64],[734,341],[686,207],[428,207],[790,889],[259,969],[668,894],[283,157],[824,982],[741,215],[100,849],[387,564],[879,308],[128,955],[544,866],[265,498],[631,491],[814,51],[569,441],[254,34],[269,222],[912,902],[427,497],[252,961],[70,826],[231,426],[837,625],[675,157],[639,559],[584,890],[399,207],[943,701],[820,830],[752,286],[377,217],[979,20],[549,228],[503,294],[825,591],[814,99],[194,780],[367,601],[230,371],[45,484],[569,345],[209,530],[894,486],[551,425],[770,829],[312,422],[155,947],[886,260],[827,474],[814,92],[719,465],[880,860],[949,535],[976,357],[440,905],[586,503],[842,941],[612,510],[462,567],[824,906],[469,56],[95,338],[421,404],[640,309],[835,722],[809,651],[922,893],[992,591],[622,109],[587,133],[733,924],[822,120],[315,612],[255,200],[211,601],[570,23],[401,133],[339,671],[991,710],[9,437],[555,794],[133,33],[881,814],[165,594],[604,607],[887,350],[528,825],[119,873],[35,908],[16,428],[819,554],[293,821],[15,199],[54,227],[900,878],[604,83],[870,268],[934,205],[780,865],[608,58],[120,113],[353,170],[714,596],[196,678],[443,972],[882,926],[868,948],[522,791],[552,290],[321,232],[241,616],[542,135],[933,433],[49,590],[914,805],[123,166],[914,428],[289,339],[540,533],[191,687],[621,817],[361,245],[996,211],[343,854],[759,618],[308,936],[689,551],[420,303],[503,471],[72,696],[66,122],[86,635],[249,556],[784,578],[379,474],[810,176],[725,879],[464,715],[902,534],[564,998],[318,978],[757,566],[379,601],[424,924],[429,86],[534,228],[195,501],[138,396],[68,640],[905,888],[858,443],[218,396],[415,518],[341,649],[306,790],[553,929],[385,526],[362,979],[372,683],[117,248],[401,552],[418,78],[847,870],[199,263],[360,480],[682,835],[199,632],[715,933],[938,498],[441,901],[896,83],[360,748],[357,908],[663,939],[641,411],[601,861],[305,956],[550,803],[944,430],[989,879],[237,205],[21,247],[16,632],[737,389],[73,328],[748,67],[489,971],[132,269],[344,627],[434,787],[567,365],[532,675],[525,966],[395,148],[46,398],[302,842],[405,751],[2,228],[98,1000],[942,326],[941,243],[611,662],[619,604],[229,889],[380,214],[608,192],[629,630],[700,999],[583,419],[893,423],[194,38],[935,993],[383,920],[657,858],[121,949],[193,963],[652,872],[489,969],[755,193],[933,496],[332,754],[531,97],[1000,873],[122,672],[865,993],[875,171],[378,375],[573,357],[734,488],[284,573],[80,937],[208,251],[29,354],[838,811],[640,500],[762,826],[358,157],[343,79],[969,518],[283,578],[982,394],[719,704],[444,242],[237,352],[17,688],[143,168],[744,422],[793,368],[905,42],[468,670],[880,36],[265,309],[17,157],[287,754],[216,196],[819,843],[938,750],[659,87],[9,286],[820,596],[381,269],[484,493],[526,904],[371,422],[648,443],[876,918],[969,981],[116,849],[575,459],[465,160],[961,70],[826,526],[755,610],[423,389],[966,637],[920,332],[135,547],[518,694],[654,554],[423,963],[674,798],[136,526],[325,114],[523,12],[976,548],[55,626],[920,569],[718,840],[572,643],[857,499],[298,70],[213,830],[264,833],[690,181],[810,828],[868,522],[87,571],[689,950],[136,57],[858,658],[833,830],[182,411],[99,798],[627,429],[115,81],[926,510],[733,636],[619,143],[358,688],[659,730],[460,582],[988,137],[181,77],[534,72],[31,205],[439,738],[627,92],[167,769],[829,608],[230,315],[221,607],[213,918],[571,634],[953,828],[338,610],[714,216],[376,745],[749,253],[413,185],[868,44],[380,72],[439,226],[486,648],[870,828],[894,717],[487,292],[577,329],[682,510],[799,902],[335,551],[953,428],[544,683],[523,238],[914,176],[517,122],[29,188],[294,543],[357,722],[883,337],[980,719],[591,100],[948,248],[463,223],[375,308],[77,598],[26,840],[921,227],[119,803],[308,822],[548,166],[872,87],[719,667],[530,1000],[414,523],[833,254],[279,859],[222,104],[888,612],[176,413],[771,868],[55,883],[554,153],[24,997],[212,346],[856,635],[75,198],[51,527],[960,1000],[318,141],[131,628],[458,247],[630,413],[127,220],[163,420],[206,620],[521,181],[945,739],[48,294],[293,670],[424,28],[104,738],[901,495],[181,895],[593,136],[464,570],[838,124],[91,820],[527,426],[229,980],[941,342],[762,433],[560,149],[989,536],[642,35],[916,146],[320,120],[643,864],[367,596],[210,647],[31,345],[374,166],[557,956],[335,292],[730,240],[452,699],[902,300],[290,786],[306,77],[447,970],[686,374],[5,383],[551,859],[117,123],[686,356],[942,258],[138,958],[426,539],[940,388],[642,110],[379,601],[3,156],[536,645],[403,310],[317,764],[833,517],[236,514],[897,66],[992,634],[675,593],[873,411],[405,8],[990,291],[309,687],[621,662],[406,287],[621,218],[354,698],[115,349],[285,659],[552,602],[287,144],[564,358],[519,784],[853,797],[252,450],[661,903],[801,263],[980,948],[199,282],[140,861],[439,894],[755,791],[296,214],[566,600],[637,29],[279,425],[980,854],[709,231],[805,591],[714,396],[662,666],[899,764],[105,487],[402,820],[519,375],[826,260],[250,864],[371,338],[738,774],[763,475],[658,420],[549,478],[109,560],[413,88],[785,540],[172,26],[662,38],[13,621],[532,345],[12,934],[1,81],[849,794],[295,28],[759,369],[68,217],[736,9],[297,277],[382,760],[878,107],[933,131],[548,92],[686,268],[91,441],[850,980],[119,989],[666,555],[43,748],[701,288],[542,187],[268,993],[444,226],[663,737],[94,260],[613,927],[589,836],[789,69],[654,521],[89,481],[711,911],[763,736],[223,162],[697,306],[817,813],[615,932],[669,580],[510,659],[318,88],[162,43],[947,315],[69,281],[408,709],[94,304],[1,78],[419,499],[284,616],[478,638],[443,292],[21,732],[770,699],[78,127],[713,441],[382,752],[241,709],[105,498],[8,61],[988,486],[21,107],[280,20],[795,999],[566,198],[631,147],[788,192],[637,145],[34,260],[294,165],[83,706],[263,439],[371,350],[622,331],[939,314],[583,50],[942,920],[744,354],[516,199],[386,711],[299,616],[412,854],[745,303],[710,45],[44,399],[471,155],[928,64],[956,946],[741,490],[291,464],[709,995],[383,377],[609,970],[181,578],[112,758],[827,203],[22,346],[344,685],[503,211],[427,176],[434,374],[263,640],[637,393],[972,915],[896,877],[71,869],[554,443],[768,351],[53,480],[605,388],[563,568],[914,631],[276,140],[546,647],[670,75],[680,663],[161,731],[604,108],[145,196],[9,943],[18,422],[866,878],[848,112],[782,550],[707,786],[238,604],[492,947],[50,12],[748,496],[95,928],[541,83],[248,499],[453,691],[439,179],[832,608],[431,843],[909,271],[815,75],[205,541],[658,685],[741,613],[309,464],[36,787],[87,709],[515,998],[217,16],[950,500],[135,60],[218,87],[726,687],[432,983],[943,318],[238,990],[244,468],[419,325],[69,966],[500,267],[169,134],[240,573],[190,515],[480,861],[749,480],[190,505],[998,708],[926,293],[104,40],[958,12],[42,545],[528,258],[545,41],[100,241],[618,527],[496,865],[229,870],[817,291],[905,693],[966,114],[165,572],[239,826],[849,460],[271,599],[263,799],[760,835],[126,119],[892,234],[396,736],[271,206],[155,550],[130,621],[813,842],[712,377],[333,335],[386,905],[895,232],[972,903],[64,130],[81,855],[770,163],[1000,792],[511,715],[966,328],[529,297],[813,170],[983,697],[520,620],[531,788],[777,378],[309,115],[96,197],[962,896],[757,852],[182,10],[794,303],[530,315],[605,744],[912,780],[714,578],[125,3],[364,332],[275,160],[50,821],[738,116],[814,492],[634,585],[359,473],[76,305],[41,184],[439,593],[730,174],[821,598],[988,957],[876,746],[160,241],[879,107],[142,950],[991,921],[149,505],[8,677],[650,643],[480,737],[169,614],[547,322],[260,822],[743,875],[830,280],[446,41],[578,64],[803,159],[290,796],[898,83],[627,901],[877,156],[661,437],[791,9],[910,755],[437,14],[993,300],[441,377],[60,534],[216,215],[147,192],[28,870],[790,652],[575,455],[385,863],[99,587],[112,613],[778,189],[882,895],[172,519],[224,141],[401,505],[592,484],[298,843],[846,567],[918,16],[900,484],[959,676],[571,489],[290,395],[506,92],[583,765],[999,764],[197,164],[59,331],[275,978],[861,367],[194,301],[890,177],[584,279],[568,848],[918,441],[244,626],[805,613],[992,19],[915,433],[758,818],[476,39],[484,185],[874,213],[34,144],[357,256],[243,145],[646,179],[930,63],[580,458],[677,803],[878,596],[288,143],[300,353],[685,826],[64,614],[158,370],[257,693],[402,834],[45,638],[531,591],[797,163],[389,324],[530,982],[948,808],[480,42],[510,380],[146,658],[921,70],[525,582],[773,393],[280,754],[627,317],[481,35],[288,908],[905,340],[983,256],[991,846],[602,164],[47,951],[224,583],[665,201],[903,741],[444,882],[495,49],[139,60],[510,909],[833,996],[960,985],[277,976],[925,385],[295,279],[266,407],[208,326],[63,28],[289,220],[600,876],[52,234],[287,596],[446,642],[693,785],[242,40],[964,774],[758,137],[451,221],[425,696],[668,522],[307,287],[414,597],[374,779],[661,949],[731,723],[748,755],[464,827],[47,879],[106,341],[531,922],[903,667],[719,963],[476,353],[112,752],[905,471],[743,815],[909,659],[464,312],[565,918],[277,830],[773,233],[828,911],[753,589],[917,482],[822,693],[788,331],[414,491],[818,446],[160,722],[697,302],[126,861],[708,852],[563,645],[783,636],[779,892],[537,365],[709,753],[24,981],[169,191],[831,197],[167,990],[620,376],[296,248],[939,650],[91,499],[490,299],[75,23],[848,739],[499,494],[541,371],[332,185],[594,18],[875,567],[450,698],[19,776],[600,911],[6,266],[190,29],[683,595],[962,677],[108,447],[803,686],[919,384],[318,27],[161,145],[558,933],[953,613],[979,23],[452,223],[397,134],[581,133],[640,985],[431,825],[395,522],[636,208],[87,251],[470,33],[952,755],[274,103],[531,531],[246,269],[548,126],[759,23],[266,207],[231,789],[833,952],[521,452],[921,905],[996,239],[693,321],[611,124],[20,232],[711,494],[349,709],[410,522],[542,600],[484,124],[635,280],[646,587],[146,6],[447,950],[868,610],[737,948],[275,914],[413,570],[126,925],[939,18],[710,757],[548,260],[794,484],[675,826],[334,390],[271,250],[912,349],[332,586],[594,779],[423,649],[14,654],[292,293],[212,147],[843,551],[423,31],[843,586],[498,318],[897,403],[458,980],[727,417],[638,704],[809,317],[178,2],[493,802],[552,957],[118,411],[470,288],[172,469],[793,540],[636,514],[107,164],[242,27],[696,763],[907,207],[132,435],[457,202],[325,466],[457,596],[839,735],[147,967],[410,838],[349,884],[723,193],[866,884],[695,395],[793,879],[442,563],[119,201],[861,171],[934,511],[859,973],[981,154],[81,889],[660,61],[411,610],[652,926],[73,195],[522,322],[697,627],[579,783],[725,261],[674,937],[350,922],[206,43],[981,402],[142,807],[254,735],[138,481],[316,667],[423,919],[164,215],[143,596],[410,844],[732,636],[68,833],[301,730],[316,507],[368,477],[90,492],[582,789],[431,934],[440,11],[602,890],[622,765],[70,296],[721,440],[696,648],[492,938],[516,722],[501,361],[408,725],[698,149],[567,93],[548,973],[206,566],[181,698],[533,3],[499,444],[611,507],[395,193],[636,116],[863,703],[814,820],[728,152],[526,375],[633,11],[942,649],[971,72],[999,357],[258,36],[984,990],[194,558],[726,751],[947,643],[786,901],[401,604],[462,756],[779,915],[342,119],[374,999],[275,52],[618,961],[678,161],[919,968],[730,769],[586,111],[836,567],[707,731],[534,4],[845,435],[807,296],[578,73],[148,569],[510,563],[97,598],[547,869],[267,127],[195,807],[779,849],[74,184],[116,255],[49,312],[299,314],[245,460],[491,624],[438,387],[355,18],[522,409],[683,792],[619,251],[505,222],[870,336],[556,408],[468,449],[830,210],[897,41],[829,139],[175,463],[676,759],[825,174],[380,919],[55,777],[962,651],[716,776],[599,786],[930,733],[346,76],[5,614],[572,893],[178,101],[792,232],[905,305],[29,874],[641,274],[94,647],[829,434],[649,565],[120,354],[492,966],[874,869],[592,374],[61,727],[43,923],[204,841],[620,999],[960,579],[503,944],[415,339],[846,565],[470,857],[290,49],[960,311],[477,215],[132,640],[229,122],[105,3],[51,204],[488,71],[41,289],[894,37],[98,131],[615,402],[412,547],[42,617],[196,610],[138,682],[626,164],[538,202],[17,850],[492,421],[444,380],[929,156],[598,785],[403,195],[234,564],[583,773],[520,401],[327,172],[675,696],[483,642],[503,551],[802,397],[154,252],[422,479],[669,996],[220,18],[810,980],[25,842],[646,511],[861,181],[386,455],[487,691],[292,36],[537,100],[763,159],[454,697],[957,658],[644,96],[30,595],[806,84],[814,854],[268,70],[443,630],[625,366],[332,941],[508,30],[125,536],[219,546],[114,778],[777,257],[471,309],[830,973],[682,876],[552,524],[407,667],[772,468],[184,121],[743,950],[27,5],[431,976],[806,68],[947,178],[803,800],[139,210],[187,151],[881,349],[223,900],[622,288],[563,30],[178,868],[766,128],[668,614],[783,481],[523,953],[64,364],[309,219],[658,943],[85,192],[836,13],[83,225],[520,638],[278,670],[33,699],[401,618],[577,333],[620,244],[692,254],[561,636],[610,934],[842,626],[316,959],[127,847],[902,874],[935,761],[700,434],[107,996],[384,327],[357,475],[649,847],[497,273],[996,989],[786,59],[986,372],[24,983],[218,890],[210,342],[318,115],[339,472],[743,932],[500,169],[450,319],[722,307],[863,947],[933,162],[17,918],[406,579],[752,230],[691,570],[370,61],[957,36],[946,613],[244,963],[168,489],[270,304],[379,165],[955,418],[455,312],[549,336],[424,525],[957,514],[561,442],[969,626],[578,136],[20,964],[200,607],[263,797],[393,460],[818,698],[863,351],[579,438],[234,327],[744,54],[471,864],[583,519],[484,541],[205,286],[729,613],[296,448],[779,844],[797,725],[793,856],[220,565],[717,365],[398,840],[309,407],[296,43],[831,21],[753,903],[715,450],[579,457],[985,572],[441,257],[803,313],[137,92],[647,652],[144,196],[637,369],[887,540],[416,653],[743,852],[745,640],[974,900],[158,636],[996,694],[291,278],[780,795],[368,969],[173,728],[982,62],[631,371],[451,760],[870,610],[739,266],[637,701],[655,659],[449,991],[626,114],[984,323],[618,306],[267,164],[275,274],[99,272],[165,371],[237,708],[831,481],[473,224],[124,410],[652,528],[668,278],[293,585],[957,286],[690,840],[700,437],[159,578],[968,499],[910,303],[993,101],[924,958],[494,224],[930,525],[142,893],[920,886],[841,740],[797,3],[614,871],[206,912],[784,148],[537,99],[31,206],[230,86],[144,319],[872,368],[654,246],[110,196],[15,477],[230,181],[175,866],[183,18],[859,694],[904,331],[877,564],[699,218],[542,25],[658,228],[361,42],[462,582],[685,445],[820,104],[69,312],[843,129],[665,552],[763,737],[756,23],[214,96],[562,844],[416,124],[719,192],[139,68],[624,951],[773,949],[194,27],[607,659],[541,981],[410,893],[665,570],[27,850],[639,931],[682,420],[544,394],[320,681],[229,724],[747,865],[768,267],[989,781],[633,155],[349,312],[347,868],[130,22],[969,29],[971,716],[783,30],[235,244],[352,301],[437,189],[376,301],[430,671],[827,512],[938,442],[912,411],[543,398],[428,890],[911,970],[890,992],[258,531],[464,156],[396,597],[341,156],[114,485],[807,319],[756,631],[841,146],[680,830],[313,950],[305,264],[313,591],[545,736],[330,793],[281,920],[683,788],[241,968],[647,505],[842,871],[87,363],[415,100],[525,897],[130,744],[566,670],[103,820],[133,552],[439,284],[432,73],[844,967],[16,11],[425,405],[402,535],[973,43],[677,184],[832,602],[924,278],[873,113],[471,249],[241,525],[222,310],[683,937],[218,473],[97,943],[139,133],[986,998],[320,60],[241,557],[855,744],[950,792],[71,831],[76,579],[805,356],[213,709],[715,327],[59,606],[138,424],[45,721],[257,79],[711,993],[276,46],[380,753],[233,657],[865,126],[900,959],[4,500],[672,332],[511,36],[334,398],[308,107],[316,143],[819,647],[43,362],[31,884],[509,227],[69,751],[767,170],[527,779],[299,568],[839,782],[590,701],[417,691],[829,958],[24,561],[554,931],[59,575],[531,281],[440,872],[67,991],[727,79],[804,468],[818,711],[889,172],[67,905],[279,395],[913,684],[713,327],[497,430],[353,70],[138,621],[276,926],[297,700],[243,170],[844,482],[566,926],[184,211],[986,435],[52,58],[839,284],[969,567],[882,637],[500,81],[838,841],[328,330],[350,150],[518,314],[136,453],[744,446],[449,720],[385,57],[20,735],[332,279],[899,482],[660,631],[514,270],[173,697],[286,979],[35,534],[943,747],[663,142],[733,430],[176,851],[6,684],[3,44],[700,179],[363,649],[395,174],[281,10],[319,461],[505,992],[794,180],[96,706],[736,969],[136,272],[179,437],[865,498],[875,115],[372,690],[756,105],[419,909],[316,468],[41,844],[548,817],[422,612],[438,901],[156,663],[391,792],[545,266],[221,879],[950,236],[819,305],[946,748],[453,293],[818,636],[420,33],[531,293],[522,857],[770,275],[972,295],[463,755],[428,808],[890,857],[339,20],[478,144],[680,549],[792,585],[710,713],[206,796],[73,817],[275,691],[567,795],[637,957],[125,139],[154,568],[552,982],[33,398],[610,757],[70,74],[742,328],[37,240],[220,121],[227,4],[501,197],[791,19],[885,399],[649,564],[130,631],[329,273],[115,788],[952,282],[396,482],[379,179],[201,71],[403,706],[152,374],[321,60],[605,27],[361,892],[980,563],[938,344],[77,96],[344,976],[502,502],[963,797],[766,282],[737,752],[999,382],[580,246],[898,154],[705,520],[434,693],[305,91],[894,824],[630,182],[685,747],[373,602],[200,577],[909,47],[397,324],[500,315],[700,906],[867,791],[810,697],[922,459],[82,907],[695,111],[792,467],[184,612],[769,775],[829,78],[817,679],[993,476],[994,24],[578,411],[650,293],[205,558],[791,729],[385,389],[3,999],[589,385],[187,585],[502,470],[764,886],[874,112],[198,645],[718,948],[823,406],[346,191],[296,331],[688,670],[946,500],[520,497],[740,900],[995,200],[192,702],[942,46],[724,312],[641,123],[520,304],[131,173],[228,145],[379,749],[870,873],[828,1000],[133,805],[364,24],[675,61],[413,140],[57,872],[536,364],[433,373],[782,899],[866,243],[480,493],[939,936],[248,559],[89,621],[146,261],[284,794],[593,918],[973,515],[104,693],[376,727],[870,148],[972,668],[697,315],[301,398],[139,423],[733,489],[372,514],[291,137],[483,501],[960,148],[94,504],[471,982],[905,491],[162,742],[823,478],[166,786],[918,93],[328,989],[752,172],[234,687],[719,529],[912,440],[290,588],[674,72],[274,1000],[11,788],[118,826],[293,487],[477,868],[355,49],[930,134],[851,942],[861,66],[973,978],[630,54],[803,265],[219,393],[466,882],[772,209],[132,344],[502,131],[560,324],[7,238],[800,175],[124,433],[583,627],[923,406],[597,547],[7,55],[240,47],[409,599],[739,671],[238,921],[684,546],[327,839],[648,156],[287,664],[622,731],[894,239],[333,269],[916,695],[251,378],[327,71],[627,34],[988,382],[110,647],[789,818],[195,444],[984,402],[869,80],[814,225],[548,202],[718,170],[956,972],[552,506],[133,290],[642,691],[560,704],[232,575],[120,422],[735,983],[322,17],[549,930],[838,918],[529,714],[532,784],[526,106],[843,99],[348,175],[612,946],[397,742],[30,686],[631,276],[93,730],[809,939],[328,875],[8,36],[239,697],[970,676],[892,96],[953,540],[518,941],[788,281],[357,728],[180,889],[493,254],[771,399],[306,742],[522,179],[284,208],[169,541],[622,655],[909,194],[966,910],[855,590],[504,394],[170,504],[843,675],[834,423],[383,301],[338,710],[332,17],[720,806],[344,330],[199,39],[465,998],[477,487],[296,457],[516,934],[225,835],[891,795],[78,635],[952,742],[158,1000],[451,460],[847,446],[1,271],[448,662],[347,649],[606,778],[823,4],[975,59],[865,952],[475,378],[999,385],[634,691],[19,973],[603,703],[59,116],[855,823],[740,259],[25,888],[280,893],[225,50],[405,999],[481,915],[24,627],[621,595],[938,818],[431,773],[149,257],[396,13],[58,428],[837,894],[85,936],[585,732],[147,948],[457,259],[715,60],[457,914],[631,602],[2,831],[540,427],[293,606],[507,365],[89,108],[252,545],[439,726],[450,155],[561,450],[802,889],[491,463],[859,289],[833,702],[923,240],[934,681],[856,607],[586,252],[316,793],[669,879],[211,200],[766,666],[575,119],[458,186],[946,24],[919,542],[485,911],[33,837],[731,482],[823,723],[290,402],[344,516],[93,558],[807,162],[798,1000],[552,439],[779,658],[215,468],[374,138],[302,5],[881,153],[687,720],[522,346],[74,313],[385,930],[522,875],[448,130],[885,533],[74,194],[637,894],[897,550],[780,180],[362,993],[690,332],[984,2],[403,880],[789,33],[948,296],[506,189],[479,818],[659,671],[227,381],[185,488],[589,238],[561,274],[286,314],[753,884],[843,950],[923,934],[339,960],[754,536],[848,934],[737,405],[605,815],[305,233],[317,537],[46,189],[711,19],[732,720],[298,142],[782,7],[567,323],[20,250],[223,992],[236,463],[295,797],[174,611],[520,578],[788,161],[722,254],[798,528],[483,882],[544,984],[521,931],[740,395],[802,787],[671,914],[66,213],[50,805],[737,949],[633,422],[517,480],[188,788],[272,50],[44,829],[624,240],[245,615],[608,187],[459,409],[755,831],[20,980],[297,536],[275,458],[910,265],[191,893],[773,508],[257,773],[662,32],[819,659],[767,293],[254,866],[621,796],[93,871],[150,169],[70,682],[885,106],[27,987],[444,990],[483,621],[276,738],[242,337],[55,594],[735,16],[145,532],[502,424],[612,695],[701,29],[101,158],[232,93],[675,203],[148,714],[416,695],[911,642],[958,617],[630,520],[176,240],[935,296],[369,88],[248,902],[310,85],[190,913],[790,594],[674,853],[722,802],[857,677],[132,834],[920,555],[898,872],[448,185],[416,995],[776,36],[102,509],[269,881],[476,216],[89,584],[575,148],[435,982],[492,359],[421,461],[264,660],[46,424],[138,856],[183,92],[500,444],[210,719],[653,878],[266,746],[310,917],[964,531],[221,12],[80,634],[561,635],[964,182],[258,69],[708,734],[895,759],[600,701],[471,95],[880,710],[607,112],[215,868],[663,170],[156,884],[631,26],[553,157],[69,991],[928,637],[541,168],[807,471],[520,697],[851,951],[194,991],[621,726],[490,920],[898,741],[833,780],[168,78],[147,648],[1000,868],[497,609],[815,138],[217,869],[976,45],[540,427],[375,988],[313,168],[207,35],[420,377],[786,1000],[397,826],[631,630],[372,770],[208,798],[588,299],[998,622],[779,326],[871,183],[645,487],[638,135],[30,246],[451,854],[771,793],[897,672],[807,227],[543,581],[151,457],[346,773],[701,419],[891,49],[582,73],[389,635],[238,75],[910,357],[910,979],[44,509],[631,57],[476,434],[577,166],[85,974],[747,989],[808,124],[434,868],[614,293],[645,904],[31,247],[980,453],[418,843],[590,129],[388,673],[279,758],[791,362],[202,352],[935,596],[71,115],[707,192],[768,116],[586,609],[586,242],[8,517],[904,673],[860,20],[868,748],[909,89],[892,266],[564,220],[966,158],[106,980],[413,288],[539,782],[825,538],[56,858],[940,415],[526,490],[704,755],[140,62],[952,697],[341,34],[590,294],[9,714],[546,116],[66,635],[151,114],[561,740],[41,84],[133,48],[79,746],[526,882],[72,428],[719,677],[305,939],[858,863],[515,120],[154,986],[572,18],[819,32],[888,396],[364,761],[797,640],[825,824],[924,307],[150,410],[492,512],[752,137],[980,82],[115,601],[984,877],[799,190],[222,838],[728,896],[225,374],[565,661],[978,765],[920,574],[136,485],[598,292],[97,941],[528,998],[184,665],[385,831],[951,490],[455,261],[893,70],[842,612],[118,876],[820,417],[91,892],[991,720],[8,470],[532,78],[823,461],[724,762],[274,36],[7,289],[947,219],[244,260],[720,992],[15,819],[251,755],[926,166],[511,642],[560,746],[66,170],[797,217],[289,922],[628,720],[64,790],[608,436],[819,575],[77,757],[950,224],[666,384],[140,654],[211,688],[747,602],[611,76],[964,465],[321,170],[261,709],[982,610],[676,228],[449,617],[884,652],[93,702],[863,398],[394,841],[721,984],[911,557],[403,394],[895,32],[226,587],[727,676],[923,22],[402,107],[747,104],[556,655],[399,253],[266,781],[966,528],[252,315],[118,693],[934,373],[877,393],[400,410],[696,281],[330,418],[25,259],[419,274],[718,101],[329,282],[114,58],[162,524],[406,673],[811,885],[373,185],[961,468],[233,136],[250,140],[635,275],[411,818],[421,542],[812,392],[533,241],[86,83],[22,633],[319,671],[811,745],[563,152],[50,54],[418,295],[57,994],[82,518],[731,398],[318,675],[151,870],[925,819],[1,986],[644,496],[539,905],[617,607],[260,933],[86,203],[315,27],[461,868],[637,184],[815,177],[51,306],[266,357],[904,155],[908,409],[789,425],[135,130],[484,149],[153,986],[575,571],[308,779],[568,187],[913,973],[810,878],[300,840],[23,520],[123,791],[180,227],[201,996],[50,407],[86,825],[200,269],[997,716],[821,7],[140,292],[491,758],[854,643],[579,366],[540,237],[407,740],[809,192],[829,899],[469,307],[778,286],[895,179],[42,307],[866,715],[579,746],[348,472],[429,322],[788,65],[977,975],[237,716],[321,776],[132,508],[683,37],[425,280],[947,265],[251,620],[957,958],[450,784],[766,838],[863,584],[341,208],[512,223],[649,39],[622,812],[935,638],[667,982],[644,645],[64,140],[228,470],[74,954],[1,209],[596,62],[29,984],[638,677],[465,50],[557,635],[99,325],[77,731],[97,965],[841,149],[619,655],[849,93],[182,779],[92,977],[679,761],[518,785],[704,82],[146,983],[915,5],[47,23],[506,196],[118,967],[779,484],[879,846],[918,802],[843,909],[805,824],[955,571],[607,813],[925,663],[848,500],[100,320],[456,290],[490,32],[275,74],[834,56],[804,494],[213,700],[334,899],[689,612],[808,696],[454,624],[203,373],[850,475],[698,249],[510,615],[822,870],[616,543],[350,769],[68,527],[212,257],[630,645],[6,244],[901,106],[970,753],[166,208],[316,324],[637,453],[995,565],[145,996],[738,552],[85,903],[11,232],[616,993],[567,716],[44,925],[713,299],[956,920],[221,893],[504,239],[18,478],[770,635],[904,596],[836,452],[734,170],[174,171],[368,490],[861,414],[453,360],[419,32],[548,144],[928,509],[844,661],[346,498],[315,854],[646,854],[658,969],[938,977],[159,315],[387,798],[285,942],[415,209],[835,514],[488,554],[831,95],[249,708],[417,610],[458,436],[381,261],[836,346],[406,537],[282,883],[467,452],[952,39],[8,734],[773,163],[593,221],[806,251],[374,177],[322,373],[51,834],[244,409],[337,624],[662,234],[194,120],[557,362],[688,535],[866,568],[236,490],[79,543],[553,714],[643,332],[242,38],[462,317],[545,680],[492,920],[944,153],[393,338],[57,233],[663,823],[28,906],[244,573],[605,237],[171,715],[533,699],[846,34],[277,261],[557,945],[551,370],[458,604],[162,959],[321,636],[622,62],[443,452],[958,65],[848,327],[563,410],[340,31],[719,269],[535,76],[412,748],[28,279],[51,220],[641,463],[860,782],[753,212],[505,394],[911,963],[13,591],[682,361],[400,136],[643,487],[774,404],[529,39],[159,740],[669,201],[847,345],[547,244],[141,81],[715,971],[251,713],[856,128],[740,179],[594,738],[182,705],[626,80],[108,835],[175,99],[467,853],[153,514],[894,147],[798,788],[159,644],[10,637],[949,200],[52,651],[737,446],[356,773],[553,939],[945,803],[189,774],[934,410],[70,733],[84,863],[666,685],[620,103],[51,62],[241,805],[402,635],[567,265],[721,654],[964,951],[146,499],[953,503],[476,399],[262,331],[710,347],[514,161],[952,146],[583,159],[560,730],[983,451],[86,445],[408,313],[252,814],[404,632],[570,435],[521,178],[86,953],[443,438],[343,346],[314,793],[780,581],[825,665],[864,237],[628,598],[34,770],[756,561],[218,332],[268,816],[801,12],[845,55],[212,104],[584,234],[383,730],[231,891],[968,149],[957,976],[150,549],[457,762],[28,730],[293,291],[662,344],[491,809],[996,495],[662,351],[333,362],[195,38],[860,932],[775,236],[966,316],[643,933],[789,289],[490,273],[788,430],[625,565],[605,808],[167,498],[850,623],[917,567],[448,146],[61,916],[6,17],[476,709],[604,921],[862,338],[572,636],[615,883],[35,149],[716,532],[666,811],[301,123],[579,538],[362,820],[793,126],[840,2],[807,69],[947,484],[963,115],[564,994],[753,275],[509,281],[589,665],[465,650],[100,763],[467,951],[824,918],[598,181],[871,135],[254,281],[947,98],[985,398],[223,582],[638,545],[934,57],[778,132],[64,172],[816,807],[716,173],[681,522],[909,119],[47,479],[656,849],[311,191],[600,461],[925,962],[846,709],[948,638],[487,613],[133,100],[925,416],[764,701],[3,695],[831,6],[770,652],[775,638],[454,254],[976,544],[449,920],[588,364],[5,816],[577,239],[84,52],[875,673],[442,2],[901,646],[144,717],[477,973],[945,51],[73,402],[200,521],[818,43],[69,753],[588,774],[248,64],[69,651],[764,532],[986,878],[520,415],[673,801],[561,814],[178,30],[486,277],[756,300],[614,537],[546,461],[447,252],[302,56],[579,729],[17,650],[743,530],[737,449],[502,383],[205,484],[580,441],[994,756],[769,546],[425,588],[509,235],[300,234],[880,720],[949,843],[598,837],[462,614],[190,272],[959,987],[896,557],[73,142],[363,949],[184,641],[740,885],[954,809],[553,350],[911,18],[762,611],[328,16],[425,253],[537,310],[254,871],[896,831],[992,347],[877,997],[546,479],[271,880],[748,229],[371,99],[914,742],[680,311],[778,539],[662,284],[446,605],[953,897],[213,921],[992,69],[341,313],[285,434],[190,147],[344,379],[200,697],[7,234],[240,808],[738,345],[197,97],[54,948],[415,146],[360,24],[421,432],[186,902],[66,373],[219,966],[395,609],[482,15],[107,527],[76,161],[851,393],[614,672],[653,625],[97,626],[281,21],[549,246],[261,974],[926,969],[197,489],[310,706],[639,92],[426,739],[403,486],[367,139],[646,424],[688,702],[327,959],[379,666],[521,543],[297,114],[455,719],[814,639],[157,692],[553,438],[825,484],[8,432],[928,299],[755,571],[843,979],[132,17],[918,39],[197,423],[256,908],[730,701],[764,29],[939,788],[641,415],[356,591],[696,994],[371,474],[626,464],[709,573],[51,290],[237,554],[619,503],[908,825],[596,256],[247,792],[844,827],[160,759],[143,203],[625,612],[654,300],[587,711],[219,443],[70,856],[687,757],[703,810],[290,31],[258,882],[434,498],[181,326],[243,606],[134,861],[992,630],[797,896],[288,248],[853,632],[91,863],[872,403],[315,616],[920,546],[775,687],[417,452],[462,604],[269,208],[944,489],[452,215],[122,159],[370,925],[219,661],[721,573],[204,850],[991,226],[589,605],[103,135],[313,638],[209,771],[546,554],[416,422],[4,461],[348,481],[214,787],[75,833],[938,358],[709,94],[111,542],[480,665],[889,7],[536,803],[6,820],[845,142],[579,823],[418,65],[294,281],[920,7],[849,879],[92,943],[552,787],[241,246],[821,528],[659,3],[197,801],[93,45],[788,45],[369,679],[996,555],[828,416],[729,502],[876,117],[997,424],[746,844],[451,836],[728,443],[146,226],[323,3],[626,403],[865,280],[5,692],[592,362],[250,71],[223,663],[428,23],[223,981],[931,870],[342,848],[4,349],[345,196],[780,861],[934,941],[884,292],[839,743],[554,806],[991,266],[994,747],[973,562],[369,503],[450,14],[947,239],[785,369],[267,665],[288,994],[26,481],[527,715],[944,327],[472,271],[614,986],[430,95],[842,600],[713,68],[640,612],[102,688],[729,166],[11,34],[569,906],[594,194],[297,876],[505,26],[636,161],[899,907],[33,858],[73,188],[981,767],[332,647],[540,302],[295,45],[524,802],[104,992],[467,794],[143,696],[151,293],[98,510],[852,266],[545,612],[443,947],[711,531],[426,290],[272,647],[281,170],[281,295],[768,850],[655,116],[743,516],[899,363],[23,504],[67,474],[800,603],[555,640],[880,63],[670,553],[508,230],[821,115],[974,66],[785,705],[898,628],[252,837],[153,452],[651,169],[345,776],[612,951],[239,45],[140,165],[334,33],[828,176],[177,132],[36,316],[565,710],[730,403],[610,251],[752,615],[153,188],[351,870],[922,276],[757,877],[474,57],[551,346],[177,896],[136,57],[666,755],[283,685],[611,267],[785,890],[495,827],[516,363],[737,673],[143,890],[126,994],[543,602],[777,514],[958,407],[365,717],[14,769],[219,4],[355,528],[98,429],[817,353],[309,863],[864,284],[795,883],[94,133],[4,529],[577,373],[719,958],[474,724],[838,962],[858,180],[453,498],[383,683],[924,666],[214,975],[230,483],[104,258],[901,620],[421,877],[680,822],[184,203],[32,579],[363,647],[194,626],[407,932],[500,823],[301,881],[826,135],[402,689],[391,401],[957,181],[825,550],[510,837],[421,951],[36,984],[104,840],[587,945],[316,186],[886,23],[857,12],[267,745],[327,86],[587,701],[486,368],[235,231],[630,58],[190,451],[431,623],[489,951],[481,410],[933,252],[313,706],[223,396],[775,700],[631,592],[581,927],[872,146],[696,822],[492,677],[984,704],[537,717],[14,969],[533,501],[61,95],[967,523],[851,482],[957,292],[877,989],[231,572],[339,111],[465,916],[975,118],[918,111],[225,33],[204,878],[474,513],[242,122],[99,111],[277,78],[202,908],[968,341],[995,290],[340,336],[586,639],[756,188],[921,374],[820,748],[176,472],[481,547],[998,616],[53,816],[841,201],[906,440],[566,792],[295,47],[219,223],[519,969],[628,134],[462,817],[153,693],[905,669],[1,862],[875,953],[980,623],[79,155],[408,731],[394,999],[925,598],[854,973],[154,202],[374,465],[239,712],[304,672],[591,671],[422,188],[949,374],[325,877],[657,987],[272,919],[529,781],[978,572],[855,696],[195,792],[869,804],[235,555],[824,378],[183,504],[284,784],[954,308],[400,620],[281,165],[566,889],[487,34],[157,457],[980,127],[58,518],[723,711],[200,557],[127,387],[435,517],[148,959],[76,24],[409,983],[259,334],[231,860],[912,831],[664,207],[113,328],[152,28],[893,768],[830,514],[456,467],[456,532],[342,166],[822,270],[886,557],[164,363],[511,578],[876,668],[281,508],[445,998],[787,103],[293,731],[790,488],[756,192],[857,742],[558,801],[601,39],[758,229],[647,701],[376,118],[326,9],[372,434],[724,499],[858,523],[768,127],[424,641],[30,667],[971,958],[17,468],[566,630],[415,132],[68,188],[856,595],[933,923],[788,404],[485,159],[659,318],[367,451],[857,331],[33,48],[11,132],[161,258],[569,114],[946,486],[957,106],[799,362],[651,927],[200,171],[655,923],[750,991],[650,336],[355,744],[285,303],[457,335],[419,694],[977,64],[860,805],[76,488],[483,356],[595,786],[57,151],[81,672],[620,315],[448,566],[77,436],[797,811],[748,384],[856,179],[672,583],[201,767],[920,197],[38,677],[898,24],[890,181],[768,435],[1000,11],[733,66],[460,347],[183,66],[439,597],[756,552],[476,887],[937,566],[730,285],[825,970],[719,9],[466,539],[270,642],[983,889],[674,79],[645,18],[633,227],[450,631],[233,311],[830,172],[833,882],[508,675],[176,919],[966,552],[959,506],[716,319],[147,439],[472,98],[508,368],[234,973],[95,859],[64,665],[76,296],[961,208],[361,244],[642,570],[13,681],[828,618],[698,646],[84,320],[856,481],[571,193],[559,249],[224,542],[907,5],[498,32],[37,568],[680,607],[454,860],[508,896],[218,750],[173,775],[300,665],[347,494],[588,304],[968,170],[321,859],[155,948],[883,748],[763,146],[368,634],[913,643],[474,703],[712,773],[31,908],[262,740],[653,258],[852,330],[308,769],[857,306],[709,864],[80,727],[944,505],[814,128],[245,878],[576,541],[988,78],[456,947],[275,137],[460,566],[611,698],[66,946],[383,614],[113,776],[237,155],[446,823],[250,272],[990,400],[487,716],[430,729],[660,572],[979,582],[53,350],[798,355],[33,456],[205,915],[310,851],[752,859],[343,225],[885,537],[35,459],[659,546],[349,436],[273,483],[755,110],[507,538],[920,120],[266,8],[731,914],[850,593],[826,686],[896,80],[535,792],[91,542],[535,92],[13,144],[875,386],[979,881],[638,998],[653,169],[301,988],[708,443],[258,263],[392,754],[902,305],[661,20],[832,794],[795,512],[676,502],[564,426],[53,998],[449,786],[150,951],[532,383],[648,784],[331,119],[863,365],[332,562],[683,137],[661,635],[688,453],[780,784],[900,209],[76,519],[125,263],[714,384],[100,703],[395,574],[836,642],[336,978],[836,49],[414,575],[162,326],[299,657],[61,872],[426,870],[905,978],[152,966],[800,360],[233,13],[486,667],[617,152],[717,283],[449,674],[815,120],[915,598],[132,965],[937,186],[366,200],[173,94],[447,81],[717,611],[318,525],[590,658],[976,487],[105,336],[505,456],[297,648],[956,481],[386,433],[522,289],[14,936],[525,15],[111,290],[574,841],[256,285],[403,953],[674,873],[326,651],[420,385],[214,630],[628,621],[51,886],[335,556],[208,669],[778,57],[669,267],[309,968],[100,341],[109,841],[587,520],[237,547],[977,940],[387,532],[299,254],[559,137],[653,86],[267,715],[958,266],[636,378],[743,635],[387,635],[106,672],[269,869],[650,803],[428,110],[690,829],[308,112],[247,762],[107,421],[48,964],[724,502],[851,655],[762,2],[275,222],[47,710],[896,232],[375,994],[358,627],[455,304],[713,454],[899,682],[282,544],[985,39],[364,290],[74,755],[311,410],[483,326],[169,652],[825,872],[438,757],[262,94],[308,125],[169,31],[327,851],[520,802],[971,12],[130,67],[269,930],[835,124],[57,217],[665,831],[518,832],[704,956],[528,191],[817,461],[295,178],[917,272],[40,728],[150,599],[803,97],[190,853],[33,257],[915,975],[181,959],[595,178],[679,175],[800,401],[861,495],[494,736],[717,563],[171,713],[5,113],[135,853],[626,426],[890,843],[729,499],[810,588],[862,527],[537,36],[392,653],[943,225],[470,182],[466,214],[697,270],[618,861],[575,693],[587,252],[760,496],[552,632],[475,967],[330,513],[919,181],[839,164],[457,547],[102,427],[539,207],[747,370],[148,207],[254,876],[146,554],[913,634],[209,858],[461,261],[530,565],[495,766],[40,269],[180,943],[591,983],[578,882],[528,438],[322,791],[307,713],[825,718],[623,214],[761,11],[356,672],[428,578],[254,629],[79,646],[231,856],[860,907],[30,365],[608,758],[510,79],[502,643],[505,653],[272,105],[808,738],[337,350],[949,617],[606,287],[668,745],[737,110],[439,548],[801,319],[777,417],[98,450],[784,58],[924,536],[9,468],[122,660],[836,26],[276,558],[743,894],[260,527],[354,255],[599,494],[46,172],[986,144],[211,966],[791,855],[214,873],[473,652],[500,541],[728,111],[988,569],[67,796],[439,870],[144,144],[402,294],[392,290],[214,546],[760,686],[500,257],[984,630],[69,248],[91,538],[320,407],[561,260],[876,339],[486,994],[86,21],[346,327],[636,673],[477,201],[49,127],[899,326],[336,667],[464,926],[121,747],[88,463],[811,242],[622,851],[967,348],[734,444],[888,340],[609,50],[700,669],[989,431],[393,130],[402,567],[312,120],[422,780],[640,819],[522,558],[61,722],[966,552],[853,424],[925,577],[700,571],[950,545],[399,413],[951,346],[858,203],[562,720],[458,636],[952,812],[492,785],[664,841],[892,923],[20,461],[739,34],[285,164],[717,245],[851,130],[901,371],[625,554],[160,774],[217,610],[57,90],[975,956],[549,59],[584,592],[330,396],[334,830],[70,677],[318,328],[834,789],[694,711],[828,3],[243,170],[666,121],[482,242],[766,337],[123,876],[937,897],[923,760],[12,258],[175,824],[437,424],[555,784],[987,447],[165,792],[210,12],[960,937],[672,517],[721,40],[218,48],[335,893],[578,568],[996,580],[538,546],[616,346],[952,596],[882,598],[702,706],[23,16],[256,749],[486,538],[854,550],[910,568],[769,142],[89,736],[330,691],[157,44],[783,941],[972,4],[833,633],[117,701],[621,523],[634,884],[363,176],[33,37],[284,427],[707,567],[504,577],[990,740],[291,667],[565,578],[709,328],[449,620],[434,124],[381,276],[118,458],[38,421],[464,505],[237,945],[468,798],[819,772],[284,614],[203,388],[747,560],[25,953],[28,36],[76,608],[952,913],[468,577],[275,72],[614,671],[469,770],[930,370],[354,23],[928,283],[987,190],[264,164],[92,743],[393,193],[681,676],[261,789],[791,19],[661,110],[493,875],[219,805],[247,879],[450,429],[204,952],[654,873],[134,908],[895,851],[251,982],[889,576],[879,886],[956,696],[445,819],[783,792],[184,263],[318,70],[174,888],[490,798],[378,724],[998,123],[966,409],[853,545],[557,104],[478,56],[231,736],[819,670],[6,57],[93,994],[288,356],[633,186],[195,792],[419,399],[516,131],[295,389],[994,207],[787,367],[174,578],[60,320],[137,322],[762,803],[394,401],[96,378],[909,827],[910,472],[48,235],[577,495],[362,369],[270,877],[74,172],[55,790],[958,933],[710,362],[280,884],[872,695],[635,570],[343,328],[362,795],[507,841],[323,189],[971,669],[8,712],[305,318],[590,40],[720,759],[507,761],[577,560],[578,740],[126,360],[122,247],[383,509],[979,27],[947,46],[586,627],[386,823],[406,547],[391,614],[302,96],[513,168],[190,463],[82,952],[109,172],[15,506],[438,398],[756,736],[844,592],[824,486],[100,767],[782,195],[602,985],[735,242],[966,880],[561,1000],[524,532],[453,428],[665,956],[937,587],[888,413],[16,660],[125,85],[32,967],[870,174],[548,901],[661,155],[859,912],[560,40],[268,905],[61,100],[562,208],[584,243],[306,712],[803,135],[997,118],[17,571],[856,876],[322,472],[848,942],[603,923],[781,347],[119,679],[709,183],[391,457],[360,600],[859,948],[682,704],[242,418],[80,426],[754,582],[766,760],[572,879],[197,362],[205,68],[836,900],[956,385],[756,477],[498,270],[797,649],[878,952],[582,226],[896,934],[908,658],[585,706],[591,682],[886,691],[544,89],[930,626],[844,453],[495,651],[683,324],[86,336],[677,899],[111,454],[305,307],[640,578],[450,714],[388,197],[855,107],[107,560],[680,77],[180,602],[562,312],[909,702],[599,627],[123,614],[778,610],[125,320],[273,469],[999,990],[382,715],[193,444],[588,733],[979,801],[160,29],[181,889],[427,333],[897,143],[653,557],[634,637],[265,263],[579,874],[172,308],[540,630],[632,817],[128,481],[70,833],[124,68],[982,958],[496,311],[122,131],[783,571],[502,66],[596,516],[968,451],[653,900],[766,115],[665,662],[499,65],[522,388],[642,589],[350,949],[144,126],[287,940],[69,622],[370,225],[212,789],[137,306],[594,490],[825,163],[745,300],[413,100],[379,277],[935,823],[46,96],[354,786],[495,170],[318,577],[141,537],[131,394],[379,908],[965,700],[3,446],[371,924],[107,220],[781,724],[951,219],[195,683],[690,721],[422,961],[399,301],[623,180],[613,985],[479,888],[532,32],[513,495],[905,609],[468,259],[524,727],[973,8],[659,574],[872,58],[653,748],[703,979],[757,886],[768,259],[951,41],[621,178],[399,664],[68,363],[597,112],[30,70],[409,440],[692,103],[962,260],[88,393],[252,3],[704,568],[372,788],[726,665],[561,65],[326,495],[776,268],[875,982],[921,570],[449,574],[99,791],[494,72],[637,560],[829,241],[665,444],[268,596],[642,216],[885,648],[57,896],[161,896],[932,194],[919,719],[733,423],[425,673],[848,683],[755,139],[84,541],[20,698],[140,309],[98,665],[542,382],[416,496],[542,968],[536,487],[249,789],[847,511],[748,70],[783,482],[371,691],[524,357],[309,245],[163,571],[542,221],[236,790],[264,475],[918,461],[706,914],[601,788],[491,411],[381,360],[609,480],[52,122],[240,335],[991,478],[960,413],[594,272],[360,22],[174,751],[350,152],[915,378],[811,702],[813,917],[464,795],[172,852],[279,835],[380,919],[689,894],[940,201],[746,912],[259,89],[96,37],[244,142],[519,450],[408,96],[533,473],[147,84],[636,277],[85,790],[43,612],[793,744],[676,161],[70,95],[590,851],[496,179],[541,846],[822,76],[872,414],[766,237],[754,349],[811,325],[187,982],[872,114],[65,567],[599,93],[9,36],[455,10],[600,735],[407,247],[422,38],[747,917],[991,925],[186,879],[428,741],[230,688],[756,903],[244,178],[592,522],[897,470],[303,279],[370,318],[3,841],[210,633],[20,777],[916,324],[822,995],[366,653],[940,641],[403,200],[681,842],[336,293],[396,654],[284,564],[948,280],[168,404],[908,167],[248,675],[209,242],[249,72],[427,255],[306,469],[855,399],[238,159],[561,559],[660,425],[133,150],[90,995],[356,777],[242,180],[214,909],[763,55],[284,370],[775,321],[427,980],[933,928],[822,689],[700,506],[528,518],[453,187],[869,62],[452,503],[818,311],[985,381],[770,156],[813,41],[370,830],[164,592],[894,474],[527,927],[191,238],[376,258],[20,938],[68,576],[263,528],[978,178],[480,841],[375,50],[535,6],[434,860],[515,435],[960,291],[165,630],[559,263],[974,473],[159,245],[175,77],[244,992],[147,748],[340,524],[56,355],[657,487],[139,819],[889,645],[415,90],[907,419],[751,620],[148,27],[154,969],[503,272],[479,626],[121,209],[962,959],[132,586],[733,650],[99,687],[954,701],[334,513],[578,140],[440,158],[544,724],[21,555],[315,899],[30,623],[443,910],[674,430],[221,998],[48,481],[534,548],[651,654],[287,874],[830,339],[510,366],[959,369],[268,708],[396,935],[883,363],[330,979],[529,850],[308,185],[224,429],[388,459],[113,815],[436,734],[969,492],[892,806],[536,621],[155,934],[967,636],[221,566],[923,379],[88,288],[607,937],[539,163],[35,109],[344,981],[427,269],[408,983],[720,261],[97,977],[60,509],[127,387],[429,792],[54,324],[116,962],[132,890],[724,445],[86,472],[208,185],[652,861],[579,869],[156,130],[556,386],[731,895],[178,432],[4,634],[887,382],[217,450],[385,924],[216,668],[850,681],[179,469],[363,785],[697,189],[128,368],[431,706],[499,458],[791,154],[935,100],[55,439],[159,591],[764,83],[933,709],[898,818],[861,799],[322,185],[83,983],[731,834],[664,939],[461,277],[417,757],[69,27],[980,959],[228,108],[537,184],[168,992],[227,337],[54,819],[3,864],[541,744],[454,978],[224,766],[31,844],[520,659],[389,764],[37,259],[2,291],[702,776],[61,854],[426,393],[937,755],[675,23],[755,566],[111,587],[341,455],[999,706],[797,522],[189,81],[204,626],[706,343],[706,605],[553,212],[432,51],[553,88],[646,220],[213,985],[903,388],[362,887],[972,652],[648,612],[202,229],[310,408],[451,828],[361,895],[167,199],[446,595],[791,559],[874,829],[568,935],[958,835],[391,422],[514,594],[612,432],[372,653],[510,51],[15,731],[824,530],[720,128],[809,703],[20,12],[523,731],[288,25],[427,220],[614,386],[990,470],[697,450],[93,251],[320,681],[942,515],[10,693],[326,662],[479,218],[487,190],[547,226],[542,872],[241,547],[238,670],[616,60],[775,736],[140,811],[312,639],[736,819],[826,949],[86,513],[943,967],[259,937],[244,658],[875,706],[152,932],[509,811],[809,690],[430,915],[593,929],[850,662],[552,863],[769,802],[465,4],[865,54],[173,798],[676,436],[767,386],[713,507],[291,366],[127,981],[168,162],[494,485],[843,77],[954,747],[724,802],[318,87],[920,998],[717,206],[623,379],[106,755],[426,276],[616,780],[570,928],[764,617],[108,724],[978,739],[739,18],[333,386],[965,638],[645,145],[172,396],[180,781],[789,362],[410,729],[325,69],[987,373],[438,175],[669,687],[551,785],[464,321],[287,152],[141,78],[612,996],[530,27],[74,11],[34,397],[408,252],[120,793],[907,257],[663,737],[891,355],[852,557],[996,180],[117,404],[302,826],[402,303],[641,912],[702,432],[727,17],[206,754],[540,526],[327,806],[737,927],[283,915],[842,735],[230,201],[453,628],[389,193],[87,836],[739,126],[931,749],[350,56],[262,660],[194,890],[740,738],[474,607],[870,352],[102,415],[855,845],[20,352],[134,902],[410,737],[487,680],[609,119],[193,41],[90,805],[78,261],[607,377],[880,354],[559,808],[46,122],[15,975],[892,31],[916,4],[984,884],[144,865],[569,596],[583,912],[852,665],[851,78],[892,973],[824,372],[281,699],[881,873],[18,276],[501,770],[312,656],[454,144],[181,639],[815,224],[419,160],[644,819],[543,289],[880,718],[326,909],[936,687],[435,799],[40,923],[333,31],[384,744],[407,591],[607,919],[818,49],[748,579],[510,143],[964,986],[790,394],[72,767],[542,987],[765,86],[319,503],[201,55],[18,748],[119,651],[931,107],[497,858],[584,826],[164,940],[261,666],[291,817],[483,835],[100,270],[196,689],[892,704],[202,138],[835,547],[56,295],[9,398],[528,386],[648,219],[537,315],[883,424],[69,681],[122,92],[926,580],[449,83],[345,532],[894,59],[851,9],[641,83],[411,898],[19,312],[403,945],[747,153],[91,699],[845,841],[439,230],[208,415],[861,757],[182,933],[580,340],[539,181],[107,752],[685,222],[723,123],[895,757],[69,745],[700,111],[806,174],[370,106],[34,904],[938,70],[252,969],[138,556],[58,66],[441,587],[953,951],[795,176],[572,136],[72,528],[373,791],[427,531],[177,762],[462,469],[245,251],[758,285],[741,757],[240,636],[650,526],[870,101],[7,862],[720,827],[590,410],[125,882],[723,786],[933,820],[72,269],[586,135],[354,500],[577,641],[14,713],[910,210],[872,827],[807,453],[738,987],[290,828],[328,150],[670,739],[669,407],[917,891],[99,450],[834,827],[53,321],[497,408],[885,69],[706,527],[830,350],[353,327],[197,444],[396,96],[454,257],[45,161],[438,470],[155,547],[404,585],[801,777],[440,495],[640,833],[122,261],[294,458],[33,890],[440,435],[525,187],[120,265],[462,76],[493,272],[10,332],[253,151],[703,457],[348,618],[772,209],[210,490],[946,958],[271,473],[219,933],[326,670],[67,764],[986,227],[993,863],[28,763],[615,255],[667,825],[668,77],[799,287],[700,960],[903,893],[829,582],[45,838],[827,30],[362,282],[147,211],[236,664],[828,855],[855,937],[496,707],[258,901],[204,21],[180,421],[137,939],[283,891],[699,296],[589,75],[93,837],[391,792],[916,914],[905,107],[734,79],[308,502],[56,21],[72,437],[901,479],[924,4],[531,588],[213,833],[762,769],[935,725],[532,658],[141,165],[796,385],[975,294],[620,484],[950,535],[210,610],[426,481],[689,806],[743,107],[378,651],[490,85],[1,800],[285,209],[54,880],[327,881],[147,364],[795,20],[555,218],[381,863],[710,474],[301,236],[68,822],[941,301],[867,48],[415,61],[179,187],[728,604],[940,49],[516,687],[955,718],[516,831],[202,509],[232,158],[434,508],[183,406],[496,43],[822,528],[313,293],[295,795],[839,604],[464,56],[538,509],[741,933],[67,565],[888,704],[187,120],[700,811],[826,841],[825,399],[312,803],[396,821],[241,737],[882,4],[70,569],[139,325],[757,143],[117,84],[717,998],[644,777],[820,731],[769,740],[473,968],[591,444],[743,752],[256,956],[593,894],[403,659],[19,141],[757,691],[214,483],[925,291],[900,880],[420,533],[745,754],[912,615],[950,575],[784,392],[785,986],[651,247],[21,705],[387,739],[53,912],[549,307],[23,271],[723,941],[599,213],[644,351],[746,853],[653,35],[32,787],[303,614],[804,512],[186,992],[708,69],[675,816],[212,282],[802,391],[58,121],[889,828],[240,632],[838,936],[466,713],[498,117],[608,230],[435,775],[418,703],[608,191],[707,375],[810,32],[806,60],[596,568],[633,116],[451,820],[102,399],[380,39],[37,102],[251,798],[71,522],[368,767],[215,429],[995,520],[597,509],[592,387],[756,155],[443,685],[461,202],[795,857],[204,429],[820,922],[163,721],[266,716],[946,155],[361,302],[824,96],[586,385],[673,663],[894,148],[423,777],[133,477],[681,118],[484,888],[226,56],[205,8],[405,710],[80,721],[748,512],[707,963],[883,463],[144,63],[229,779],[550,460],[106,121],[59,592],[943,486],[154,865],[691,166],[58,334],[906,615],[693,581],[229,186],[774,642],[998,700],[784,814],[704,364],[103,511],[150,137],[300,303],[681,468],[440,370],[430,965],[477,784],[540,471],[341,541],[141,601],[572,755],[926,44],[918,89],[451,639],[326,464],[740,966],[179,156],[853,863],[573,725],[670,659],[373,841],[475,451],[176,821],[263,467],[309,524],[60,89],[885,246],[763,893],[171,723],[205,937],[357,530],[997,892],[381,569],[594,677],[914,971],[354,31],[391,617],[609,872],[781,644],[336,778],[514,321],[207,170],[944,899],[273,496],[835,645],[947,241],[547,449],[617,191],[941,510],[687,46],[946,90],[730,571],[380,172],[783,578],[253,732],[268,304],[580,217],[553,599],[750,247],[780,268],[632,93],[862,156],[452,157],[244,846],[324,786],[377,446],[248,539],[432,726],[384,343],[336,651],[858,374],[89,923],[273,994],[34,612],[550,58],[757,316],[604,278],[288,504],[196,631],[563,874],[643,211],[253,637],[939,289],[781,470],[143,560],[839,573],[543,122],[28,930],[3,894],[918,281],[346,691],[67,359],[662,293],[638,738],[742,937],[267,60],[206,130],[216,55],[907,617],[340,332],[301,546],[447,927],[971,715],[862,510],[43,134],[195,740],[806,124],[190,217],[940,27],[486,379],[807,55],[79,172],[500,172],[519,435],[462,977],[471,179],[363,189],[163,292],[489,510],[169,963],[841,760],[732,238],[14,854],[93,904],[332,868],[944,496],[671,151],[195,235],[442,183],[373,30],[50,228],[352,201],[921,148],[612,10],[465,187],[904,267],[980,565],[361,130],[504,101],[688,753],[386,211],[874,982],[209,910],[324,516],[990,536],[315,543],[2,700],[668,738],[298,200],[66,762],[183,134],[244,91],[335,820],[48,408],[903,953],[740,278],[245,910],[146,184],[354,429],[843,273],[506,387],[272,851],[847,336],[367,910],[654,463],[426,36],[769,971],[237,780],[129,3],[992,993],[977,654],[561,523],[925,937],[643,371],[172,420],[132,183],[988,621],[794,195],[280,983],[226,822],[776,986],[16,662],[464,478],[953,250],[220,544],[400,314],[13,213],[542,969],[842,317],[658,122],[677,978],[794,613],[811,503],[190,786],[463,971],[856,716],[368,909],[955,267],[12,385],[496,399],[982,344],[584,558],[849,251],[392,230],[403,865],[959,978],[651,589],[554,803],[297,578],[670,127],[396,220],[682,720],[138,446],[104,98],[527,344],[128,712],[139,679],[458,637],[354,301],[177,803],[342,190],[17,230],[75,700],[655,290],[811,185],[315,868],[571,155],[406,149],[229,145],[31,10],[49,474],[961,253],[245,132],[723,127],[487,477],[495,855],[545,192],[666,391],[853,684],[458,426],[521,402],[494,699],[164,323],[926,507],[98,766],[836,172],[522,524],[262,974],[271,501],[240,22],[739,763],[423,106],[395,912],[782,349],[417,694],[660,294],[30,308],[513,257],[418,738],[866,158],[276,8],[876,281],[853,985],[267,658],[379,429],[411,836],[704,369],[482,259],[208,322],[522,977],[805,667],[639,424],[893,163],[440,13],[841,692],[58,576],[156,327],[520,65],[64,637],[199,202],[436,827],[595,536],[678,756],[269,932],[186,728],[240,607],[710,493],[962,668],[297,394],[368,660],[982,182],[842,159],[714,730],[393,405],[250,816],[91,369],[197,661],[757,953],[514,343],[756,119],[700,408],[720,744],[811,619],[617,258],[983,160],[851,399],[505,221],[869,722],[800,541],[394,575],[324,832],[434,178],[576,688],[872,249],[586,766],[133,860],[585,84],[41,246],[391,416],[205,120],[677,663],[363,171],[794,572],[607,442],[229,671],[618,876],[256,328],[421,123],[948,827],[708,706],[910,690],[493,916],[650,930],[798,710],[226,530],[933,739],[260,895],[281,439],[219,405],[541,966],[471,830],[980,530],[926,508],[106,939],[457,928],[951,749],[53,528],[467,865],[812,834],[792,370],[278,306],[792,870],[7,421],[80,265],[342,229],[831,976],[945,514],[520,360],[412,772],[298,15],[370,95],[687,207],[45,713],[9,536],[469,440],[649,366],[829,665],[101,215],[611,755],[968,403],[678,506],[598,271],[8,940],[376,335],[57,569],[97,541],[11,30],[264,769],[756,483],[290,92],[292,755],[380,739],[204,885],[228,252],[433,234],[869,656],[72,150],[524,55],[109,413],[18,397],[788,834],[23,5],[415,266],[571,19],[848,656],[992,941],[153,731],[661,61],[955,408],[718,708],[470,526],[13,148],[700,628],[599,464],[352,614],[568,105],[383,974],[750,305],[750,279],[979,610],[771,277],[671,809],[96,531],[384,911],[500,792],[289,294],[69,835],[811,659],[370,536],[566,635],[582,560],[723,20],[768,400],[577,31],[924,560],[183,204],[435,787],[908,338],[503,281],[498,439],[755,537],[788,748],[294,983],[579,953],[580,310],[252,930],[28,475],[341,313],[602,332],[211,56],[433,97],[547,994],[406,647],[755,311],[524,45],[656,39],[14,828],[147,202],[452,451],[122,275],[117,677],[53,891],[888,729],[506,909],[823,623],[444,415],[700,316],[316,946],[132,47],[262,242],[362,866],[480,39],[171,88],[945,925],[360,205],[684,58],[219,652],[774,924],[879,505],[208,93],[237,891],[934,544],[632,704],[663,676],[273,446],[610,322],[724,131],[423,208],[4,341],[954,568],[950,935],[127,868],[680,587],[198,728],[651,430],[363,760],[942,208],[112,819],[63,910],[166,703],[727,707],[642,678],[283,461],[161,676],[386,342],[624,929],[657,156],[298,707],[921,733],[198,584],[324,93],[523,960],[494,351],[650,821],[20,284],[854,46],[496,297],[233,855],[494,798],[433,716],[78,264],[895,981],[916,174],[275,746],[241,149],[725,815],[900,177],[328,809],[573,348],[469,509],[493,91],[777,967],[804,415],[970,61],[52,367],[56,761],[407,502],[97,213],[426,46],[936,645],[613,142],[301,849],[418,270],[144,707],[812,176],[765,498],[467,494],[34,279],[335,95],[903,997],[152,85],[257,454],[922,245],[790,959],[272,193],[280,789],[414,193],[156,212],[719,377],[97,291],[472,973],[400,376],[79,125],[620,984],[59,348],[487,607],[744,532],[142,412],[991,745],[755,174],[905,122],[718,549],[851,855],[910,643],[184,689],[106,102],[122,878],[302,409],[792,156],[458,602],[840,618],[1000,876],[647,997],[342,943],[60,740],[586,874],[604,31],[913,400],[229,936],[861,850],[95,891],[656,743],[749,697],[322,617],[526,158],[492,299],[746,522],[932,505],[262,393],[661,651],[381,951],[312,857],[455,931],[27,983],[557,662],[712,874],[849,305],[75,173],[538,151],[104,776],[26,263],[490,779],[479,917],[995,539],[732,793],[898,460],[900,186],[395,831],[878,531],[614,624],[300,971],[133,496],[680,714],[241,222],[652,426],[569,767],[215,631],[528,17],[150,291],[577,855],[480,503],[613,628],[772,675],[223,380],[765,519],[905,817],[366,122],[747,653],[13,607],[344,653],[827,868],[85,187],[296,226],[262,562],[207,419],[615,976],[649,477],[466,665],[23,790],[321,702],[856,988],[775,487],[615,22],[323,670],[994,470],[757,628],[405,740],[371,63],[415,493],[681,714],[773,999],[806,502],[902,266],[756,249],[564,407],[477,810],[204,162],[342,603],[236,223],[64,386],[783,432],[572,268],[238,398],[671,228],[894,276],[241,448],[761,758],[792,604],[831,504],[729,66],[54,344],[855,845],[722,862],[609,4],[107,506],[473,613],[651,872],[775,5],[800,305],[776,373],[284,838],[689,994],[936,55],[724,128],[221,345],[946,432],[309,781],[951,97],[329,111],[751,922],[509,17],[977,307],[770,221],[669,294],[872,590],[200,191],[823,109],[275,544],[336,564],[19,333],[965,844],[823,124],[323,73],[391,869],[161,944],[104,348],[869,899],[885,842],[941,948],[525,501],[70,336],[230,894],[224,313],[41,473],[289,458],[874,92],[15,793],[98,637],[519,362],[684,73],[908,347],[976,875],[203,468],[859,294],[403,336],[58,738],[633,903],[749,817],[90,98],[164,299],[453,731],[463,316],[988,362],[47,919],[832,687],[309,986],[366,922],[622,742],[530,65],[596,240],[883,769],[16,15],[949,453],[31,48],[766,533],[354,385],[767,589],[689,228],[565,428],[93,400],[20,641],[701,639],[208,947],[369,608],[46,318],[92,389],[82,22],[217,126],[321,684],[288,740],[883,375],[477,307],[642,893],[742,969],[818,772],[669,29],[555,843],[654,115],[427,299],[805,438],[963,567],[874,353],[909,427],[665,932],[345,736],[8,417],[670,990],[794,400],[219,353],[286,150],[669,959],[64,257],[132,639],[426,108],[462,656],[592,3],[75,342],[324,650],[159,953],[436,145],[250,751],[943,273],[755,48],[389,843],[537,60],[27,799],[971,62],[314,33],[388,440],[331,384],[437,897],[785,74],[814,262],[771,8],[376,940],[922,350],[538,819],[896,48],[781,841],[529,145],[66,858],[248,317],[137,39],[569,831],[456,668],[494,740],[447,316],[969,300],[923,974],[743,337],[795,855],[762,65],[712,140],[868,565],[190,128],[407,62],[941,856],[680,399],[653,364],[974,954],[664,243],[650,467],[303,851],[866,341],[700,700],[780,250],[355,347],[649,328],[914,941],[353,885],[232,305],[960,981],[128,575],[10,503],[729,222],[606,757],[94,867],[324,195],[987,355],[973,389],[762,486],[224,864],[194,14],[323,68],[833,460],[510,695],[757,157],[489,672],[364,194],[813,141],[46,767],[242,472],[958,69],[547,627],[30,250],[397,54],[485,60],[834,154],[202,707],[912,613],[331,865],[504,179],[671,475],[11,130],[498,367],[668,356],[144,166],[940,513],[929,967],[792,538],[124,724],[261,795],[574,716],[27,211],[355,736],[232,716],[128,827],[210,258],[2,729],[429,980],[602,212],[859,731],[785,388],[949,538],[103,488],[502,589],[725,615],[795,538],[479,527],[895,531],[45,273],[813,754],[391,221],[664,759],[876,997],[286,464],[186,61],[671,8],[493,350],[109,684],[59,902],[158,673],[460,575],[399,792],[914,949],[401,734],[208,332],[9,947],[345,216],[373,995],[475,939],[71,183],[495,264],[513,129],[763,186],[431,335],[706,656],[680,548],[879,449],[266,453],[443,987],[759,345],[578,746],[980,32],[647,354],[611,417],[417,761],[801,149],[229,218],[323,521],[607,489],[996,776],[707,978],[556,239],[654,65],[22,156],[175,456],[511,281],[827,288],[219,195],[862,528],[57,733],[813,571],[85,957],[877,674],[258,696],[128,680],[595,350],[143,71],[593,745],[864,367],[297,687],[79,105],[703,213],[672,642],[636,333],[695,19],[548,286],[996,237],[189,21],[268,847],[162,689],[931,406],[519,178],[946,470],[992,116],[457,500],[524,493],[525,955],[101,281],[970,485],[88,944],[958,43],[782,998],[103,683],[613,557],[744,249],[441,81],[570,994],[542,839],[426,812],[409,613],[167,387],[856,223],[761,224],[930,915],[733,433],[595,722],[256,755],[323,279],[179,771],[453,696],[371,624],[671,817],[412,605],[323,60],[667,370],[434,442],[772,489],[653,550],[852,887],[590,891],[898,695],[741,792],[853,957],[375,451],[986,995],[283,960],[618,792],[118,320],[741,971],[330,409],[581,361],[830,68],[802,546],[462,690],[531,331],[568,815],[894,957],[370,95],[809,533],[348,886],[760,104],[677,156],[566,75],[243,348],[89,844],[230,61],[739,209],[350,75],[956,1000],[52,407],[780,724],[270,703],[344,147],[385,335],[889,362],[606,437],[273,704],[257,81],[295,989],[52,425],[678,592],[467,422],[800,309],[830,434],[188,485],[773,10],[809,211],[457,762],[929,637],[379,424],[686,859],[655,179],[534,155],[943,21],[460,605],[255,70],[652,306],[354,469],[556,826],[560,83],[239,224],[455,21],[829,43],[271,456],[692,463],[260,441],[173,104],[72,202],[361,952],[107,681],[613,170],[881,958],[339,14],[838,264],[133,916],[171,506],[244,354],[407,843],[817,251],[991,585],[682,368],[59,228],[118,4],[612,121],[795,977],[455,211],[205,855],[304,129],[909,490],[876,673],[827,887],[782,661],[272,778],[294,129],[280,38],[946,931],[448,979],[950,736],[925,805],[311,457],[219,780],[388,424],[63,189],[661,359],[267,683],[750,771],[841,851],[679,741],[279,63],[154,171],[292,765],[573,422],[213,154],[168,702],[578,578],[803,545],[42,688],[602,701],[168,62],[263,186],[554,915],[304,377],[432,891],[487,608],[654,862],[608,159],[158,348],[98,370],[695,568],[342,872],[473,970],[876,444],[230,675],[227,129],[941,59],[148,446],[799,904],[323,41],[417,493],[190,277],[484,3],[844,855],[517,98],[570,923],[41,968],[170,613],[663,150],[328,333],[613,707],[771,962],[187,859],[323,846],[273,419],[560,284],[128,310],[556,876],[841,36],[16,763],[704,760],[17,248],[839,428],[188,150],[287,369],[520,896],[465,332],[111,560],[723,202],[939,210],[142,686],[278,471],[760,481],[354,958],[237,957],[502,833],[589,925],[82,672],[742,287],[702,420],[584,702],[657,437],[405,386],[561,753],[534,171],[975,234],[893,221],[742,619],[474,301],[746,188],[497,534],[703,59],[881,277],[423,432],[499,77],[982,982],[351,104],[177,621],[776,574],[775,442],[988,100],[944,493],[623,897],[886,254],[512,714],[558,559],[467,476],[24,14],[994,114],[218,417],[992,263],[342,826],[674,891],[274,505],[875,652],[561,213],[836,527],[513,95],[707,329],[338,20],[927,131],[79,653],[601,168],[159,326],[84,952],[184,927],[780,805],[654,790],[791,42],[363,790],[95,713],[889,590],[903,113],[859,880],[609,190],[938,282],[330,604],[731,704],[918,838],[471,346],[93,974],[360,851],[259,122],[453,822],[593,322],[529,643],[603,760],[765,364],[479,281],[922,239],[243,69],[475,691],[786,5],[512,831],[745,280],[874,99],[763,201],[611,109],[655,941],[388,681],[189,399],[721,542],[518,334],[730,281],[603,5],[549,901],[1000,611],[763,366],[423,400],[80,311],[760,530],[21,718],[551,457],[667,314],[940,803],[691,744],[945,212],[509,195],[663,110],[997,175],[74,420],[219,936],[457,641],[979,685],[217,265],[591,253],[964,895],[253,110],[750,681],[478,968],[454,501],[257,43],[575,702],[474,840],[83,916],[478,444],[11,756],[42,2],[787,40],[17,746],[590,243],[828,987],[254,538],[330,912],[479,306],[348,81],[220,817],[997,714],[456,936],[575,213],[30,992],[572,242],[673,379],[754,23],[773,723],[28,533],[601,634],[499,959],[278,399],[876,910],[329,363],[237,753],[778,894],[415,905],[729,516],[932,278],[95,821],[816,56],[203,923],[942,864],[656,411],[308,223],[649,280],[623,524],[40,679],[3,380],[451,819],[302,547],[545,850],[717,534],[933,147],[977,332],[614,795],[934,55],[955,93],[661,545],[851,435],[91,705],[866,314],[760,896],[666,872],[738,634],[730,811],[789,603],[769,982],[910,329],[293,813],[682,724],[379,75],[251,293],[134,239],[373,322],[870,543],[440,477],[431,599],[213,91],[602,755],[769,810],[133,170],[612,612],[469,133],[780,275],[313,640],[984,703],[578,818],[394,565],[942,658],[62,540],[686,378],[475,883],[767,155],[821,205],[795,958],[431,884],[623,913],[19,407],[51,389],[821,652],[798,275],[136,111],[108,718],[164,861],[682,18],[672,778],[48,230],[12,747],[653,370],[336,744],[491,587],[3,880],[965,766],[19,254],[318,924],[559,885],[246,374],[328,995],[1000,597],[765,990],[908,529],[20,316],[538,132],[945,594],[374,244],[227,668],[990,447],[274,617],[149,299],[664,277],[917,958],[366,816],[465,723],[677,433],[904,639],[440,64],[956,675],[715,717],[43,584],[566,576],[647,235],[722,297],[572,884],[935,451],[34,650],[888,576],[924,578],[961,938],[788,957],[777,978],[372,447],[914,125],[114,356],[124,427],[72,314],[890,587],[116,820],[973,364],[615,697],[84,908],[641,230],[872,450],[736,65],[653,152],[274,526],[319,944],[65,446],[683,770],[939,647],[662,617],[939,994],[875,515],[814,972],[998,694],[888,599],[837,103],[863,109],[836,542],[263,21],[806,787],[667,263],[964,278],[216,753],[570,836],[145,74],[377,837],[299,290],[253,192],[96,713],[534,601],[139,477],[772,774],[875,926],[589,901],[223,545],[248,307],[738,70],[548,13],[537,794],[706,688],[8,282],[91,217],[356,790],[969,87],[78,973],[49,27],[161,402],[926,853],[567,712],[20,874],[500,60],[193,442],[380,738],[476,805],[902,151],[194,171],[714,621],[580,790],[469,797],[304,914],[852,662],[469,743],[938,331],[427,622],[911,955],[885,783],[526,968],[587,964],[842,921],[443,362],[520,355],[570,832],[480,507],[79,839],[647,362],[588,707],[315,34],[359,491],[827,691],[174,123],[353,277],[275,91],[209,475],[279,958],[294,124],[275,473],[621,849],[373,702],[142,321],[452,715],[14,925],[534,125],[745,521],[618,593],[284,358],[949,524],[594,150],[922,907],[25,110],[986,718],[883,79],[606,558],[781,283],[514,761],[120,791],[746,925],[428,18],[368,83],[101,520],[37,929],[55,757],[367,551],[39,533],[772,232],[524,442],[773,376],[320,366],[854,360],[623,654],[30,126],[844,640],[597,244],[215,573],[255,619],[111,657],[520,187],[144,940],[321,346],[930,339],[286,466],[269,785],[854,516],[943,587],[359,589],[928,599],[338,35],[836,952],[226,285],[783,572],[671,712],[393,580],[679,119],[492,662],[875,592],[66,107],[573,664],[422,926],[68,634],[253,955],[409,464],[123,146],[250,152],[233,879],[263,425],[937,391],[278,706],[908,130],[637,408],[95,511],[862,989],[569,643],[989,343],[4,680],[493,782],[613,442],[201,750],[454,65],[732,615],[992,368],[404,483],[42,45],[795,731],[971,935],[829,289],[170,206],[263,660],[918,775],[775,996],[596,19],[38,16],[682,749],[949,418],[430,425],[771,992],[749,600],[658,175],[839,457],[557,828],[736,350],[648,285],[370,668],[359,589],[365,945],[190,931],[878,191],[641,393],[457,82],[837,239],[230,182],[148,987],[333,884],[609,274],[880,166],[940,535],[740,98],[715,926],[30,356],[86,252],[442,858],[73,525],[896,465],[62,626],[626,501],[418,91],[512,756],[812,249],[524,232],[484,833],[643,458],[327,885],[895,440],[678,734],[929,375],[712,81],[731,411],[23,813],[356,294],[99,192],[543,452],[826,194],[172,714],[493,527],[903,613],[625,465],[895,316],[640,744],[645,473],[665,230],[831,20],[87,959],[179,258],[358,613],[516,420],[83,608],[492,856],[675,848],[42,283],[309,56],[910,825],[887,67],[639,740],[71,652],[976,778],[534,583],[631,491],[458,697],[721,244],[634,966],[583,429],[373,254],[519,526],[640,895],[803,698],[960,248],[665,527],[854,359],[827,696],[271,137],[128,88],[797,198],[788,7],[8,835],[287,627],[136,573],[104,908],[451,10],[444,356],[107,892],[893,629],[653,987],[932,898],[206,475],[914,990],[297,303],[994,105],[209,711],[552,936],[316,460],[378,709],[709,205],[432,830],[701,99],[314,540],[868,967],[947,452],[570,323],[655,143],[567,656],[975,717],[116,76],[497,629],[485,252],[449,359],[341,652],[162,472],[237,352],[341,410],[225,985],[769,994],[956,452],[186,810],[962,225],[900,872],[507,729],[880,694],[128,726],[450,487],[505,562],[307,841],[152,349],[136,493],[97,489],[848,688],[30,566],[829,726],[903,15],[995,661],[967,8],[551,658],[42,859],[783,891],[116,679],[331,389],[490,540],[562,403],[486,327],[789,144],[635,992],[183,226],[451,463],[12,702],[719,256],[703,92],[582,97],[580,243],[198,760],[302,683],[590,218],[248,372],[947,521],[675,200],[813,360],[574,742],[860,477],[996,818],[654,67],[307,984],[51,632],[637,615],[595,763],[62,269],[651,217],[497,170],[9,62],[604,880],[32,803],[146,165],[276,829],[919,243],[690,668],[900,229],[700,966],[388,878],[687,377],[540,247],[510,848],[937,545],[449,2],[107,894],[972,684],[745,482],[256,447],[901,265],[723,968],[295,222],[834,318],[588,13],[576,142],[200,484],[899,941],[717,36],[628,421],[529,816],[114,561],[368,622],[796,738],[287,437],[99,621],[379,41],[186,310],[915,73],[201,714],[192,605],[932,358],[681,348],[252,21],[766,124],[485,909],[200,669],[447,397],[6,903],[134,876],[937,238],[296,703],[371,45],[847,888],[537,747],[199,714],[373,797],[37,688],[925,406],[807,327],[653,694],[10,445],[714,495],[86,135],[369,747],[349,591],[663,711],[671,898],[240,9],[982,278],[338,399],[610,321],[138,868],[822,286],[670,911],[916,705],[710,919],[754,914],[643,765],[549,426],[242,124],[228,999],[999,402],[25,998],[656,179],[669,473],[134,913],[399,626],[754,817],[204,625],[456,280],[383,105],[766,496],[380,869],[20,698],[468,224],[271,789],[592,748],[569,659],[273,95],[16,11],[359,440],[910,236],[609,245],[595,373],[90,65],[669,170],[675,926],[200,405],[786,261],[658,801],[929,777],[731,273],[483,455],[205,53],[45,693],[30,324],[84,982],[892,635],[309,213],[385,885],[347,895],[162,118],[580,351],[140,289],[128,140],[693,369],[468,942],[902,359],[249,704],[308,381],[399,844],[17,307],[597,772],[77,481],[978,407],[8,613],[476,56],[780,816],[859,197],[698,513],[242,779],[489,630],[567,311],[188,1000],[131,884],[28,573],[349,811],[619,787],[28,223],[201,482],[602,817],[724,465],[107,689],[110,721],[713,10],[434,165],[587,309],[207,939],[656,215],[836,364],[241,794],[444,76],[391,441],[909,49],[7,982],[361,453],[310,436],[978,222],[782,518],[180,87],[973,741],[405,11],[573,2],[155,862],[36,858],[999,351],[906,71],[702,488],[18,202],[14,21],[406,629],[567,84],[352,963],[660,88],[827,135],[177,585],[378,778],[266,142],[869,706],[483,431],[434,877],[39,918],[734,305],[951,83],[698,78],[509,180],[569,191],[911,945],[710,941],[219,433],[635,572],[421,436],[908,711],[5,317],[11,708],[414,159],[430,197],[770,789],[690,607],[335,937],[345,997],[304,381],[357,857],[724,666],[699,775],[245,689],[750,696],[464,852],[875,724],[855,403],[345,951],[162,577],[141,595],[153,261],[79,858],[495,984],[365,364],[94,672],[632,579],[369,420],[297,280],[701,547],[982,28],[808,273],[783,31],[382,386],[403,111],[143,562],[198,535],[478,831],[341,572],[379,534],[221,658],[634,408],[957,701],[284,440],[991,527],[114,986],[719,116],[548,156],[771,878],[500,144],[335,904],[106,987],[197,532],[202,672],[404,928],[608,428],[89,989],[497,944],[596,588],[27,391],[875,649],[989,752],[654,405],[216,881],[937,366],[833,272],[24,945],[571,796],[198,837],[713,821],[986,703],[848,425],[689,558],[9,797],[93,475],[142,63],[860,923],[490,256],[83,884],[741,868],[871,263],[719,685],[68,273],[225,913],[387,545],[211,33],[698,584],[46,169],[619,14],[201,599],[938,201],[463,895],[988,830],[532,59],[931,971],[911,537],[329,978],[558,334],[286,384],[601,904],[359,442],[875,614],[591,508],[418,927],[590,319],[543,739],[516,114],[856,326],[132,850],[677,71],[437,328],[227,649],[685,794],[559,751],[235,502],[65,200],[525,657],[352,380],[129,366],[23,651],[452,166],[89,544],[172,846],[342,229],[730,959],[577,291],[895,47],[812,535],[29,240],[697,198],[409,36],[834,198],[85,786],[950,958],[491,829],[92,440],[450,143],[228,26],[59,276],[325,434],[499,938],[582,516],[712,760],[200,596],[56,855],[128,173],[329,751],[383,305],[149,48],[165,233],[438,776],[327,62],[497,253],[737,467],[880,80],[102,191],[359,614],[560,649],[385,691],[538,385],[57,537],[950,811],[75,640],[786,64],[629,507],[92,279],[565,959],[445,891],[65,346],[700,560],[402,785],[287,203],[634,24],[674,8],[563,820],[977,752],[976,272],[340,463],[240,37],[141,576],[517,910],[947,468],[446,527],[105,328],[943,891],[344,968],[280,698],[430,446],[996,111],[298,862],[490,357],[446,709],[827,781],[270,398],[418,392],[980,96],[333,919],[687,349],[43,337],[728,363],[592,575],[675,454],[49,69],[306,542],[928,671],[659,826],[601,271],[819,531],[403,960],[975,86],[172,514],[870,71],[905,279],[107,578],[791,373],[565,664],[56,282],[874,340],[218,647],[197,796],[817,627],[832,41],[783,793],[55,588],[75,236],[397,422],[139,562],[447,64],[702,978],[159,902],[731,708],[869,241],[655,849],[920,320],[539,854],[850,796],[109,647],[134,928],[545,745],[351,255],[605,77],[101,46],[138,167],[809,933],[839,856],[716,964],[850,676],[675,524],[199,9],[350,331],[117,250],[826,777],[772,562],[826,514],[55,486],[589,900],[953,674],[123,533],[981,649],[691,583],[805,666],[544,285],[680,919],[296,746],[150,363],[667,505],[39,109],[724,820],[828,631],[98,236],[787,834],[690,232],[318,338],[952,22],[754,45],[166,453],[813,510],[192,521],[71,474],[985,285],[161,210],[115,829],[793,242],[613,919],[96,662],[820,362],[123,458],[498,629],[547,107],[226,126],[258,152],[33,251],[688,990],[52,551],[247,570],[562,573],[533,311],[343,933],[512,947],[964,17],[123,371],[18,390],[532,947],[140,13],[121,866],[844,802],[949,762],[587,72],[824,87],[737,848],[151,18],[788,592],[454,72],[269,146],[596,930],[627,415],[414,88],[432,370],[356,733],[103,148],[165,279],[479,652],[132,797],[220,530],[221,630],[731,430],[849,884],[392,596],[840,872],[386,538],[292,472],[910,201],[665,502],[340,340],[473,85],[703,480],[77,143],[480,114],[969,422],[947,850],[578,140],[626,306],[749,458],[890,617],[94,741],[725,342],[568,414],[513,51],[875,826],[778,251],[865,415],[87,687],[858,486],[729,748],[202,888],[265,918],[49,37],[392,45],[831,136],[266,55],[457,710],[463,538],[72,936],[100,54],[72,452],[249,845],[968,847],[796,288],[1,699],[618,421],[248,485],[46,69],[311,939],[633,563],[61,987],[72,431],[765,716],[819,895],[963,663],[687,559],[156,394],[231,994],[147,992],[511,796],[902,483],[571,921],[430,943],[945,773],[243,237],[658,607],[177,83],[582,746],[12,827],[245,714],[224,240],[102,473],[334,320],[586,266],[243,615],[730,503],[945,649],[165,56],[328,124],[126,813],[564,930],[383,926],[662,668],[720,531],[601,592],[145,645],[1000,806],[339,772],[602,656],[35,595],[67,541],[145,970],[273,35],[207,49],[455,59],[286,906],[802,125],[130,107],[382,790],[807,749],[626,798],[423,520],[62,728],[624,184],[749,664],[299,771],[156,96],[825,344],[343,89],[25,688],[981,219],[757,82],[228,573],[181,253],[958,833],[853,966],[484,927],[856,196],[273,112],[568,202],[532,855],[917,687],[216,786],[928,115],[334,252],[86,938],[804,731],[312,265],[267,164],[865,617],[197,913],[590,35],[196,859],[2,214],[227,152],[920,703],[459,801],[942,747],[894,611],[121,638],[484,498],[315,386],[63,851],[118,88],[122,783],[567,588],[26,979],[167,42],[677,515],[728,657],[142,683],[385,134],[689,462],[200,673],[640,355],[139,908],[186,390],[937,697],[582,967],[661,973],[157,205],[968,716],[478,503],[921,338],[573,830],[65,746],[864,819],[61,854],[550,550],[985,591],[45,215],[960,304],[658,779],[395,443],[770,750],[705,638],[575,904],[319,892],[172,960],[927,922],[513,131],[773,39],[46,101],[86,671],[612,962],[295,105],[52,596],[375,191],[120,734],[774,190],[892,359],[403,707],[749,634],[783,349],[699,104],[809,95],[177,675],[357,468],[196,396],[322,162],[931,404],[703,393],[593,354],[54,69],[125,198],[930,848],[879,636],[1000,828],[8,584],[60,172],[178,90],[445,484],[381,528],[874,315],[642,591],[359,453],[357,77],[794,516],[752,599],[935,86],[479,436],[683,336],[155,447],[696,615],[63,444],[327,847],[910,972],[732,922],[85,877],[918,737],[815,300],[499,894],[38,448],[60,562],[823,775],[702,923],[574,168],[338,535],[96,910],[26,573],[280,812],[823,781],[648,138],[751,35],[674,113],[860,922],[687,632],[153,535],[60,650],[856,894],[659,806],[32,562],[101,767],[157,212],[875,696],[248,195],[89,848],[981,850],[91,452],[844,663],[176,896],[784,725],[465,794],[485,501],[987,165],[226,833],[279,26],[300,849],[698,365],[778,36],[578,821],[41,125],[867,40],[694,231],[539,784],[178,436],[721,458],[997,572],[532,746],[553,138],[550,917],[53,110],[831,161],[994,268],[802,981],[472,112],[443,598],[965,313],[996,449],[889,933],[844,533],[798,828],[469,914],[408,943],[433,957],[453,296],[375,160],[398,969],[358,132],[652,306],[240,471],[836,874],[430,769],[672,843],[383,661],[937,573],[544,717],[338,109],[306,23],[402,270],[603,997],[607,995],[614,430],[226,939],[140,64],[280,503],[826,731],[222,788],[378,124],[801,709],[868,618],[966,772],[429,67],[406,302],[403,624],[37,447],[457,215],[198,657],[153,787],[173,810],[305,422],[384,258],[182,314],[266,681],[258,356],[763,793],[379,748],[757,141],[708,520],[493,875],[245,161],[96,138],[835,972],[628,971],[701,930],[498,694],[242,294],[46,994],[182,262],[965,267],[457,805],[217,474],[958,992],[202,837],[348,93],[215,899],[591,741],[437,432],[916,353],[717,99],[478,686],[849,581],[301,488],[704,178],[267,309],[628,99],[154,25],[138,956],[51,784],[546,410],[323,811],[595,935],[323,144],[242,809],[896,687],[161,247],[836,27],[6,568],[871,439],[86,207],[647,598],[401,924],[465,12],[829,133],[665,373],[972,170],[241,389],[835,37],[14,687],[48,605],[781,241],[469,306],[343,582],[383,269],[359,376],[804,894],[212,450],[751,244],[78,699],[152,79],[55,267],[546,498],[966,632],[843,999],[431,225],[801,718],[174,465],[207,779],[307,494],[123,695],[201,463],[44,986],[920,917],[343,970],[288,703],[721,549],[858,713],[745,174],[193,640],[719,741],[319,955],[469,244],[939,783],[303,347],[708,833],[509,222],[232,728],[928,354],[99,70],[134,265],[113,1000],[825,185],[431,306],[830,400],[767,135],[279,424],[629,68],[572,540],[328,60],[476,817],[786,839],[85,576],[797,380],[409,644],[462,549],[107,177],[730,859],[918,821],[810,900],[264,810],[407,589],[693,634],[228,635],[843,320],[999,419],[126,686],[598,142],[728,24],[30,570],[253,842],[552,895],[61,652],[695,811],[130,257],[484,579],[867,288],[642,243],[613,36],[538,615],[808,807],[110,81],[16,397],[651,940],[282,597],[148,388],[665,83],[343,339],[381,23],[92,310],[225,846],[993,775],[664,726],[745,389],[51,750],[321,443],[500,66],[186,861],[405,203],[606,424],[64,75],[430,163],[920,894],[131,684],[442,760],[811,257],[142,934],[259,897],[621,885],[231,369],[391,946],[316,125],[180,775],[422,145],[654,394],[114,718],[499,460],[213,139],[315,951],[151,531],[736,393],[371,994],[431,549],[386,142],[95,349],[892,880],[214,189],[935,720],[480,157],[334,226],[535,78],[467,234],[533,208],[556,900],[406,817],[401,396],[523,451],[935,868],[419,253],[819,935],[790,704],[648,657],[293,988],[140,593],[692,597],[624,581],[224,55],[652,418],[73,304],[986,997],[959,954],[562,12],[68,730],[189,311],[254,498],[1000,992],[77,302],[415,479],[64,5],[593,162],[40,495],[349,109],[256,362],[174,260],[294,298],[859,42],[227,864],[795,79],[981,569],[51,962],[11,898],[35,432],[83,692],[820,697],[245,151],[149,148],[309,982],[341,507],[327,569],[259,303],[495,855],[789,195],[956,450],[692,613],[827,725],[850,619],[654,784],[933,662],[189,344],[131,871],[738,258],[197,601],[198,501],[819,816],[760,191],[114,843],[501,288],[333,648],[735,496],[158,413],[157,323],[531,239],[155,328],[555,909],[853,310],[20,501],[101,52],[931,126],[308,498],[661,52],[7,623],[855,735],[964,230],[818,367],[121,19],[424,775],[662,282],[379,526],[548,705],[969,399],[200,217],[734,828],[909,254],[514,145],[699,222],[331,379],[411,98],[888,641],[68,754],[960,359],[341,158],[285,520],[71,946],[847,454],[613,921],[238,799],[85,579],[268,825],[196,983],[695,274],[546,874],[533,908],[521,69],[14,463],[710,344],[922,388],[668,550],[678,549],[144,58],[204,276],[706,867],[990,557],[369,727],[16,709],[771,563],[825,127],[602,87],[562,52],[51,817],[704,855],[565,432],[909,868],[25,587],[328,458],[551,337],[48,813],[182,974],[825,85],[828,658],[85,693],[587,492],[587,996],[547,701],[497,311],[894,308],[11,652],[691,308],[624,702],[268,52],[483,768],[242,947],[796,277],[80,958],[30,194],[302,818],[15,905],[538,986],[72,459],[303,521],[33,317],[894,988],[353,11],[112,824],[829,775],[690,326],[606,734],[649,902],[508,18],[555,214],[922,280],[620,577],[465,545],[86,327],[711,603],[592,92],[152,393],[675,410],[77,730],[343,963],[546,52],[188,628],[664,159],[870,540],[17,44],[464,14],[778,231],[224,170],[189,451],[481,863],[557,590],[197,234],[352,987],[787,974],[345,615],[791,968],[628,22],[232,562],[186,384],[733,230],[355,444],[873,412],[737,46],[25,995],[482,759],[781,56],[43,236],[786,637],[561,676],[646,137],[543,354],[983,344],[461,495],[885,125],[862,817],[278,629],[49,519],[635,864],[408,906],[993,883],[907,287],[320,779],[440,273],[354,28],[875,502],[788,286],[992,594],[491,850],[974,691],[608,80],[220,875],[369,241],[893,855],[419,650],[252,940],[135,51],[650,958],[269,585],[296,714],[821,863],[170,671],[584,352],[997,439],[273,965],[602,854],[102,181],[469,861],[359,482],[743,132],[125,482],[119,471],[605,45],[923,766],[80,265],[525,6],[452,401],[43,109],[640,427],[615,611],[656,288],[685,622],[247,689],[626,580],[907,225],[281,120],[386,731],[927,889],[607,870],[411,426],[746,690],[389,887],[655,393],[919,565],[448,593],[369,444],[705,696],[589,212],[578,53],[789,121],[490,981],[233,657],[678,184],[95,834],[801,717],[476,893],[556,717],[287,251],[329,683],[87,625],[312,584],[11,321],[272,81],[193,140],[675,51],[236,951],[713,848],[577,499],[625,757],[989,633],[803,25],[261,85],[205,434],[339,141],[860,490],[272,114],[685,117],[399,299],[442,733],[871,197],[278,829],[332,140],[536,527],[954,589],[699,92],[396,772],[956,901],[843,119],[528,323],[592,605],[565,477],[859,365],[920,735],[903,283],[681,791],[887,654],[501,47],[309,260],[547,383],[564,914],[154,949],[36,695],[568,245],[38,60],[725,322],[820,783],[632,611],[765,131],[774,842],[166,607],[587,556],[283,716],[829,5],[425,28],[739,673],[607,950],[512,877],[537,563],[578,129],[546,791],[954,247],[824,251],[401,570],[939,999],[58,177],[985,797],[707,190],[580,231],[382,948],[156,483],[753,371],[764,516],[122,952],[507,624],[42,45],[821,107],[93,502],[233,965],[147,779],[570,148],[911,745],[387,822],[934,492],[377,816],[720,183],[766,891],[68,810],[198,343],[357,845],[112,899],[651,606],[330,225],[644,756],[551,685],[255,573],[5,298],[372,391],[391,262],[136,958],[145,432],[123,586],[82,704],[164,610],[655,200],[538,808],[991,573],[199,441],[125,989],[23,312],[739,225],[226,902],[773,371],[214,75],[492,232],[577,758],[845,29],[195,512],[599,535],[72,918],[795,764],[583,301],[494,979],[369,405],[22,821],[184,845],[39,418],[415,398],[224,469],[645,879],[407,932],[841,2],[563,862],[205,199],[869,341],[677,71],[215,296],[763,771],[151,518],[508,955],[40,494],[404,789],[396,33],[423,193],[203,423],[149,385],[13,98],[359,908],[559,637],[890,983],[498,251],[853,897],[457,568],[328,513],[930,647],[542,581],[912,212],[784,467],[533,24],[397,762],[551,135],[981,883],[871,217],[417,224],[191,427],[913,908],[391,609],[674,487],[81,268],[202,378],[6,990],[871,432],[161,600],[250,650],[736,301],[520,619],[3,78],[501,487],[182,705],[205,777],[446,391],[743,603],[974,326],[525,217],[541,122],[96,566],[689,889],[498,305],[416,233],[230,803],[980,305],[916,426],[272,129],[417,679],[481,993],[160,170],[232,812],[430,199],[552,351],[115,844],[615,270],[565,791],[615,589],[410,64],[695,808],[315,482],[696,165],[519,586],[37,336],[727,264],[777,33],[560,932],[47,57],[735,275],[126,938],[481,753],[153,578],[290,551],[438,501],[737,519],[754,185],[334,638],[702,980],[602,547],[799,876],[978,89],[486,628],[197,740],[303,215],[574,481],[204,996],[458,732],[849,199],[379,829],[686,641],[614,223],[947,558],[618,228],[653,527],[818,386],[754,583],[252,500],[650,918],[715,834],[367,210],[32,462],[293,749],[64,973],[883,797],[199,495],[911,309],[305,514],[464,483],[847,926],[399,27],[951,664],[60,201],[889,481],[321,729],[831,220],[820,216],[655,585],[924,468],[846,895],[677,181],[44,567],[695,70],[509,308],[453,567],[397,430],[797,896],[848,453],[17,823],[550,146],[159,373],[128,747],[660,443],[958,671],[195,126],[727,25],[399,792],[293,135],[504,698],[85,15],[621,175],[101,43],[671,260],[163,603],[454,974],[261,128],[236,218],[778,89],[856,688],[928,568],[646,651],[850,74],[760,467],[458,720],[117,87],[226,471],[572,486],[576,874],[386,91],[461,836],[256,423],[324,609],[747,522],[80,746],[949,489],[422,220],[385,27],[834,143],[858,414],[561,380],[160,50],[620,500],[273,287],[686,19],[437,962],[978,310],[49,723],[316,828],[101,640],[108,390],[815,41],[116,928],[872,603],[517,102],[803,473],[346,241],[207,383],[528,438],[139,773],[316,526],[736,867],[379,692],[91,48],[406,872],[240,560],[217,809],[646,24],[780,736],[894,960],[139,594],[103,817],[897,880],[81,34],[729,777],[496,866],[505,761],[29,937],[863,877],[639,74],[485,650],[24,528],[316,637],[624,481],[406,859],[180,419],[290,825],[517,95],[432,799],[752,373],[953,788],[471,274],[504,459],[644,502],[759,520],[529,262],[51,564],[623,887],[815,74],[397,105],[846,519],[719,238],[130,180],[1000,321],[522,664],[479,331],[676,307],[941,232],[763,111],[24,761],[965,501],[858,854],[284,19],[913,389],[212,644],[970,996],[688,485],[211,466],[28,134],[347,929],[294,680],[311,199],[177,330],[269,852],[94,844],[680,180],[436,853],[901,202],[515,592],[313,887],[981,237],[282,586],[255,155],[320,960],[248,279],[140,834],[87,164],[572,351],[698,729],[63,457],[5,139],[348,59],[616,537],[588,152],[319,524],[340,193],[904,79],[979,395],[794,957],[892,138],[441,574],[849,623],[265,587],[800,447],[13,199],[96,178],[935,940],[870,423],[441,839],[252,258],[188,260],[250,774],[73,317],[206,326],[664,862],[512,558],[721,135],[769,609],[75,422],[680,832],[868,999],[359,337],[697,390],[330,212],[835,237],[52,585],[842,743],[246,272],[359,883],[549,778],[814,663],[770,9],[876,955],[802,245],[599,724],[993,619],[859,721],[752,253],[753,16],[801,930],[841,6],[379,668],[225,750],[575,251],[788,83],[223,459],[87,824],[149,251],[467,474],[833,220],[784,306],[77,188],[244,563],[160,508],[778,732],[499,400],[391,856],[979,14],[698,944],[875,327],[431,845],[424,918],[433,685],[964,307],[390,218],[162,430],[741,641],[741,386],[202,451],[451,790],[827,750],[967,734],[584,420],[789,837],[986,253],[465,392],[115,69],[248,549],[398,952],[341,25],[550,325],[875,290],[32,841],[784,308],[887,169],[458,790],[517,516],[141,931],[784,552],[334,840],[769,58],[415,28],[126,913],[218,196],[94,130],[389,37],[489,633],[654,358],[577,821],[28,67],[471,963],[502,363],[456,747],[569,110],[242,299],[136,468],[348,508],[506,281],[296,351],[302,609],[996,184],[22,522],[556,924],[342,428],[208,281],[495,676],[973,128],[697,387],[337,158],[219,756],[351,37],[393,769],[360,96],[396,336],[474,235],[705,243],[116,102],[749,941],[429,364],[219,723],[811,828],[449,482],[557,559],[527,764],[239,926],[484,901],[833,181],[218,773],[743,997],[816,620],[867,726],[389,429],[16,949],[893,587],[551,994],[855,432],[538,767],[589,68],[612,856],[824,423],[415,913],[40,353],[845,193],[200,144],[518,579],[245,26],[242,471],[147,78],[656,9],[241,879],[534,966],[110,512],[82,904],[548,703],[982,92],[828,735],[445,110],[924,265],[203,162],[168,68],[631,177],[70,562],[52,102],[211,558],[966,18],[618,90],[375,114],[913,23],[391,420],[493,101],[156,940],[578,461],[549,344],[228,69],[591,705],[353,705],[477,261],[449,447],[660,660],[848,881],[536,669],[953,462],[553,665],[817,908],[681,561],[479,330],[444,612],[425,795],[1000,775],[439,28],[467,72],[301,690],[201,636],[319,800],[918,556],[83,500],[640,138],[709,147],[715,992],[691,11],[661,333],[998,659],[625,19],[557,853],[685,595],[290,623],[822,146],[594,510],[483,671],[43,306],[795,163],[543,711],[4,293],[46,49],[926,62],[55,20],[518,876],[296,260],[972,932],[88,842],[850,756],[846,704],[913,598],[6,248],[923,67],[160,675],[529,124],[164,304],[860,427],[880,436],[129,644],[959,869],[666,210],[669,252],[233,218],[177,214],[99,949],[565,699],[696,883],[976,252],[802,744],[629,801],[452,753],[472,27],[604,343],[385,48],[611,493],[526,285],[59,274],[309,503],[805,168],[660,899],[303,903],[554,687],[977,439],[667,558],[22,292],[510,314],[610,258],[313,544],[530,934],[985,160],[177,42],[122,794],[740,93],[744,552],[105,890],[105,497],[445,484],[180,959],[401,226],[637,228],[188,564],[485,452],[472,140],[352,287],[166,801],[191,805],[484,394],[752,483],[468,943],[694,303],[585,500],[246,150],[461,651],[197,514],[14,995],[198,12],[708,896],[540,404],[189,756],[439,297],[163,109],[895,848],[948,204],[729,268],[634,816],[789,281],[344,847],[432,413],[894,291],[628,490],[979,117],[895,460],[14,455],[429,981],[271,77],[982,962],[78,274],[47,937],[434,91],[727,187],[865,476],[184,311],[936,357],[664,994],[6,431],[684,92],[594,12],[859,271],[103,971],[850,202],[197,749],[614,275],[259,956],[375,907],[87,315],[829,744],[843,80],[899,952],[33,850],[72,871],[626,653],[870,615],[29,707],[295,800],[370,979],[352,716],[788,336],[895,607],[97,472],[482,874],[38,26],[280,916],[205,285],[220,757],[373,322],[415,22],[479,810],[528,168],[731,874],[221,931],[858,244],[526,792],[657,621],[893,813],[476,732],[821,270],[358,110],[625,767],[653,495],[3,117],[139,786],[486,368],[775,908],[286,550],[753,226],[780,901],[899,523],[227,13],[757,500],[761,704],[999,563],[333,241],[632,710],[732,981],[425,494],[767,90],[167,766],[963,579],[878,804],[289,691],[818,441],[43,111],[396,22],[480,903],[75,468],[518,962],[974,226],[506,118],[295,49],[464,189],[546,790],[781,280],[820,102],[365,413],[880,776],[319,112],[162,970],[577,628],[46,436],[964,630],[332,21],[405,886],[224,868],[846,763],[886,526],[69,278],[589,442],[263,938],[838,731],[648,922],[798,709],[388,113],[521,682],[632,721],[108,297],[816,811],[185,543],[907,51],[183,844],[316,998],[198,138],[600,85],[778,722],[205,410],[247,10],[251,966],[31,198],[287,508],[197,956],[276,360],[339,479],[975,936],[467,446],[308,86],[105,428],[153,863],[955,80],[667,850],[935,106],[671,142],[84,99],[745,703],[878,818],[79,746],[147,262],[114,843],[385,972],[574,883],[728,665],[71,664],[886,600],[636,835],[268,25],[290,762],[108,339],[515,606],[314,788],[385,647],[30,84],[288,617],[677,813],[546,237],[379,354],[736,344],[685,593],[790,624],[92,860],[347,693],[919,19],[359,765],[570,122],[629,90],[842,695],[167,445],[750,797],[259,559],[39,4],[579,318],[615,880],[711,846],[260,291],[347,226],[96,806],[665,628],[30,907],[938,180],[213,322],[856,55],[822,364],[677,765],[750,920],[723,25],[194,479],[294,374],[709,490],[950,768],[981,758],[970,903],[523,432],[41,58],[763,678],[890,852],[469,720],[832,457],[860,295],[87,573],[355,327],[264,135],[432,72],[736,28],[976,95],[177,278],[368,945],[465,263],[343,827],[22,512],[807,107],[613,380],[164,592],[152,922],[352,514],[553,216],[910,974],[771,958],[76,219],[504,169],[391,170],[18,917],[136,216],[932,997],[710,325],[11,692],[852,597],[221,976],[852,636],[711,41],[297,601],[350,157],[447,431],[890,140],[207,186],[72,1000],[969,340],[185,368],[983,545],[313,307],[540,347],[348,666],[188,795],[177,594],[696,767],[713,92],[306,571],[255,408],[992,101],[187,65],[82,655],[531,741],[141,513],[797,629],[696,184],[759,858],[295,564],[267,184],[372,79],[165,466],[203,664],[837,225],[609,724],[256,370],[756,60],[270,672],[655,154],[681,870],[85,912],[737,68],[515,918],[642,985],[786,129],[487,875],[387,592],[107,887],[785,211],[993,197],[692,795],[278,849],[23,440],[358,525],[167,296],[674,930],[345,701],[351,703],[511,324],[801,398],[756,374],[73,492],[894,355],[140,278],[610,217],[475,637],[382,393],[50,827],[278,954],[79,506],[819,732],[101,226],[470,89],[461,412],[188,313],[65,516],[138,651],[289,46],[193,617],[347,890],[935,85],[25,629],[257,669],[817,879],[988,996],[579,670],[945,411],[435,521],[378,87],[233,944],[325,428],[482,319],[821,464],[53,413],[662,490],[554,677],[517,253],[388,717],[553,131],[87,132],[471,567],[46,739],[346,319],[447,739],[876,502],[674,80],[465,170],[654,236],[306,748],[195,937],[701,150],[888,292],[612,496],[748,117],[350,428],[615,805],[430,478],[989,5],[751,555],[988,364],[90,7],[250,168],[589,141],[42,685],[215,900],[49,4],[874,914],[331,201],[481,773],[751,555],[693,360],[430,606],[823,247],[183,511],[52,883],[904,215],[512,166],[643,345],[717,907],[204,547],[834,495],[51,130],[668,651],[430,686],[277,95],[444,601],[413,16],[233,556],[650,538],[569,79],[688,812],[99,113],[258,173],[981,925],[197,639],[343,935],[625,425],[6,473],[59,957],[871,154],[321,380],[1000,518],[574,558],[78,504],[543,716],[130,536],[623,248],[835,657],[76,453],[936,287],[760,303],[515,230],[460,143],[804,362],[205,617],[717,859],[770,533],[826,573],[223,184],[467,401],[79,583],[182,751],[354,235],[807,264],[344,70],[661,925],[21,338],[914,177],[47,678],[590,860],[336,317],[113,838],[411,253],[350,62],[337,751],[694,629],[616,327],[315,466],[528,160],[427,38],[94,640],[69,487],[786,725],[857,863],[111,232],[390,50],[824,730],[580,403],[121,254],[878,938],[377,157],[595,607],[641,390],[22,871],[734,223],[584,942],[436,894],[460,852],[452,487],[898,593],[306,140],[145,799],[94,704],[468,356],[931,471],[1000,852],[904,202],[287,434],[265,620],[665,303],[91,154],[360,155],[61,731],[781,866],[161,326],[63,749],[792,821],[528,156],[27,527],[386,75],[254,125],[781,929],[783,590],[21,352],[678,722],[274,847],[427,130],[258,474],[69,929],[165,179],[682,78],[347,968],[627,58],[171,288],[817,977],[290,380],[684,529],[832,154],[417,58],[347,697],[374,814],[329,919],[702,497],[757,868],[122,277],[639,384],[834,322],[457,290],[994,417],[57,915],[672,980],[390,539],[320,407],[223,319],[866,169],[503,2],[188,369],[584,348],[790,782],[357,861],[777,452],[600,362],[440,366],[888,586],[861,37],[197,879],[28,789],[182,12],[623,2],[693,719],[626,322],[50,8],[18,950],[216,363],[570,809],[362,55],[921,46],[895,517],[57,954],[1000,510],[930,657],[949,22],[366,834],[450,576],[102,330],[631,486],[605,573],[195,976],[353,494],[999,863],[126,352],[44,105],[250,319],[722,922],[582,709],[303,510],[28,78],[94,106],[738,531],[442,242],[712,230],[589,46],[240,245],[923,161],[243,938],[991,144],[295,967],[996,384],[579,479],[83,198],[391,185],[472,721],[965,935],[801,779],[872,864],[149,432],[511,185],[254,715],[455,52],[513,896],[85,332],[754,661],[977,559],[174,673],[266,423],[680,70],[361,819],[239,240],[307,214],[843,862],[588,412],[857,194],[676,877],[845,167],[965,650],[950,8],[740,460],[622,382],[663,884],[160,173],[327,580],[47,350],[879,773],[143,807],[334,20],[189,725],[863,581],[302,289],[328,844],[44,894],[875,354],[964,312],[761,55],[474,776],[204,458],[610,57],[83,351],[580,726],[276,135],[731,306],[609,498],[12,397],[740,214],[925,215],[635,680],[976,881],[73,986],[825,889],[114,886],[986,644],[584,536],[130,494],[276,215],[637,502],[839,371],[893,458],[372,892],[414,67],[320,804],[548,852],[977,98],[596,626],[354,150],[904,357],[22,325],[967,524],[1,782],[857,623],[872,952],[944,808],[455,190],[926,317],[105,928],[334,925],[876,271],[196,202],[650,361],[986,251],[127,747],[967,941],[327,771],[954,51],[79,610],[658,386],[88,93],[654,496],[479,876],[174,947],[550,612],[110,519],[575,610],[435,486],[957,705],[24,845],[160,347],[286,992],[676,510],[91,489],[310,264],[932,442],[440,855],[52,140],[144,805],[563,368],[997,996],[269,763],[684,183],[551,456],[986,444],[291,805],[821,609],[485,51],[4,170],[63,231],[612,281],[788,819],[744,350],[125,150],[83,664],[794,311],[690,935],[471,705],[965,281],[360,267],[234,391],[521,281],[130,764],[724,445],[246,747],[939,132],[902,255],[343,613],[596,91],[210,426],[214,919],[792,903],[366,98],[245,518],[493,909],[100,546],[129,242],[281,969],[619,258],[34,699],[406,188],[361,312],[968,55],[36,359],[562,848],[143,261],[267,169],[797,677],[650,269],[672,272],[211,593],[956,441],[510,424],[382,128],[603,276],[242,160],[681,492],[135,237],[178,156],[886,577],[202,682],[10,888],[669,774],[605,286],[817,279],[555,110],[478,232],[800,165],[297,813],[342,928],[132,73],[84,935],[954,887],[496,329],[113,138],[67,996],[650,509],[359,890],[131,865],[444,401],[487,582],[585,881],[238,235],[73,446],[206,977],[760,325],[896,555],[829,962],[352,397],[234,783],[395,446],[147,977],[455,932],[190,320],[734,351],[873,473],[924,249],[574,837],[788,533],[95,359],[256,752],[145,441],[257,699],[320,260],[878,603],[159,544],[810,590],[144,156],[796,832],[225,557],[452,316],[650,50],[260,522],[345,937],[148,731],[100,465],[273,293],[506,727],[178,517],[959,473],[403,667],[75,100],[986,707],[1,118],[73,805],[61,300],[380,96],[913,590],[325,214],[699,722],[572,170],[8,264],[573,947],[3,585],[870,555],[99,24],[773,859],[628,281],[615,427],[426,637],[633,41],[718,808],[608,61],[188,447],[479,955],[208,728],[392,223],[618,564],[295,360],[75,212],[934,450],[551,834],[192,394],[662,580],[425,341],[972,680],[26,341],[131,184],[397,268],[596,516],[474,920],[258,775],[933,698],[989,677],[115,666],[346,914],[184,851],[575,750],[492,329],[638,388],[613,399],[856,413],[609,388],[189,557],[667,382],[137,701],[901,102],[543,728],[202,570],[967,407],[55,349],[219,328],[397,62],[654,450],[307,343],[616,397],[177,273],[233,925],[587,582],[244,159],[700,897],[248,644],[12,885],[54,962],[745,975],[512,85],[120,916],[248,710],[165,27],[832,305],[302,235],[22,352],[806,361],[72,769],[582,112],[109,27],[603,641],[724,320],[532,114],[620,870],[44,856],[661,597],[105,991],[350,982],[914,380],[271,782],[905,148],[575,568],[573,372],[105,767],[410,188],[677,776],[249,169],[625,284],[824,367],[591,61],[90,533],[944,942],[491,820],[213,203],[72,561],[553,522],[619,456],[89,35],[934,499],[983,857],[839,361],[339,846],[316,995],[380,420],[883,736],[524,602],[638,315],[531,504],[434,225],[500,666],[521,160],[679,44],[556,268],[465,241],[885,105],[909,50],[218,969],[341,963],[986,321],[312,189],[18,645],[627,104],[251,287],[433,421],[541,583],[683,670],[140,367],[402,616],[830,538],[772,270],[252,24],[402,841],[840,138],[135,341],[564,927],[390,453],[627,427],[534,149],[924,872],[300,280],[746,83],[322,530],[273,174],[457,251],[716,642],[174,319],[422,70],[481,150],[89,595],[28,71],[666,708],[969,606],[6,434],[972,856],[656,245],[371,407],[721,972],[889,183],[417,172],[105,723],[573,652],[93,879],[542,397],[599,380],[725,211],[774,935],[446,19],[451,138],[346,834],[175,738],[989,355],[183,83],[43,192],[474,394],[705,483],[852,899],[43,563],[966,291],[63,854],[53,912],[293,595],[137,269],[40,400],[781,147],[919,294],[69,414],[391,308],[658,926],[581,292],[439,173],[201,424],[677,446],[543,267],[234,359],[197,717],[263,782],[193,919],[714,769],[867,903],[589,395],[153,404],[595,447],[175,396],[778,980],[781,960],[543,299],[835,594],[359,224],[292,428],[768,235],[544,381],[825,974],[91,157],[280,575],[481,912],[43,149],[457,817],[458,373],[62,213],[1,915],[604,361],[537,678],[399,266],[675,727],[947,753],[975,926],[357,242],[772,185],[425,587],[104,924],[571,408],[836,546],[398,449],[70,863],[611,490],[477,744],[930,567],[998,283],[62,682],[53,67],[502,935],[221,730],[787,874],[526,472],[103,70],[385,417],[408,273],[255,279],[591,619],[870,600],[145,517],[616,902],[118,678],[583,27],[792,42],[758,639],[637,843],[223,92],[299,276],[130,29],[435,118],[425,787],[812,704],[89,336],[805,834],[863,26],[259,421],[534,878],[926,28],[34,500],[202,573],[27,746],[794,946],[699,362],[813,461],[500,551],[746,533],[837,497],[820,882],[842,235],[453,961],[796,183],[251,948],[548,847],[829,331],[249,747],[379,951],[27,671],[533,402],[718,871],[536,690],[520,798],[714,335],[997,672],[757,676],[272,623],[538,605],[257,371],[197,187],[8,425],[829,945],[114,284],[441,55],[71,375],[505,660],[25,629],[757,129],[788,899],[903,346],[637,725],[660,593],[860,12],[502,600],[920,560],[520,27],[160,329],[223,819],[269,621],[874,555],[556,35],[983,497],[776,908],[464,202],[449,853],[479,809],[803,211],[11,384],[795,930],[780,590],[573,434],[371,936],[653,374],[157,387],[99,50],[848,91],[134,609],[295,81],[205,484],[857,4],[823,93],[512,217],[801,859],[128,823],[246,392],[461,552],[836,700],[990,595],[883,40],[578,822],[923,468],[617,938],[394,281],[322,589],[221,62],[187,569],[854,991],[635,870],[846,649],[611,484],[571,430],[475,865],[546,949],[519,402],[678,778],[437,218],[12,597],[699,571],[578,569],[238,968],[531,519],[952,35],[271,588],[816,966],[809,499],[667,34],[389,911],[595,140],[277,640],[747,625],[867,518],[188,437],[733,401],[702,959],[671,968],[753,766],[47,733],[696,111],[53,247],[297,87],[627,500],[451,716],[350,333],[332,596],[342,942],[635,767],[796,725],[103,326],[435,416],[123,645],[40,271],[526,794],[821,148],[980,647],[742,637],[55,488],[851,636],[454,1000],[509,135],[272,106],[892,600],[216,125],[360,572],[655,562],[580,46],[828,479],[243,322],[464,387],[142,327],[290,464],[184,642],[29,110],[325,729],[990,190],[505,949],[744,946],[629,956],[20,851],[219,685],[936,933],[994,314],[198,210],[98,976],[795,323],[108,706],[23,200],[143,496],[641,668],[920,862],[763,694],[513,774],[587,679],[844,194],[903,535],[834,774],[370,863],[675,785],[375,953],[403,178],[887,500],[33,626],[628,408],[810,108],[443,830],[774,694],[847,784],[401,395],[748,658],[523,847],[904,601],[402,755],[669,311],[528,727],[677,231],[406,353],[942,149],[409,431],[716,735],[271,509],[805,856],[416,447],[808,974],[421,626],[245,324],[621,990],[724,549],[393,438],[179,135],[393,518],[529,665],[303,585],[224,351],[976,581],[734,944],[875,366],[256,117],[28,62],[677,675],[632,313],[667,86],[3,101],[921,865],[789,87],[99,306],[842,445],[774,781],[933,537],[393,317],[908,110],[444,229],[994,903],[295,607],[980,758],[549,114],[102,833],[456,473],[242,830],[436,355],[903,306],[829,480],[589,618],[913,824],[675,925],[263,563],[74,410],[621,25],[838,628],[930,663],[813,338],[805,640],[191,608],[630,302],[166,857],[87,861],[957,228],[927,230],[734,15],[260,457],[465,943],[762,631],[264,619],[444,397],[370,66],[921,541],[677,610],[49,275],[57,296],[193,534],[688,365],[136,183],[306,699],[414,526],[26,524],[749,384],[183,302],[931,456],[192,784],[831,678],[999,930],[991,109],[487,857],[755,394],[963,65],[553,631],[6,813],[89,905],[572,272],[307,249],[898,316],[425,385],[864,74],[372,679],[891,116],[520,504],[801,309],[848,733],[556,494],[206,69],[437,822],[629,258],[765,324],[942,989],[627,873],[790,458],[26,313],[966,93],[569,880],[188,624],[974,689],[738,208],[772,381],[101,95],[328,418],[216,14],[231,667],[801,577],[281,732],[575,401],[47,57],[788,601],[488,655],[989,169],[419,345],[570,12],[519,143],[886,274],[870,713],[444,839],[863,822],[591,698],[664,484],[94,837],[216,368],[282,950],[426,865],[210,852],[759,950],[597,539],[179,997],[955,505],[885,392],[710,702],[524,364],[513,654],[251,317],[897,254],[860,566],[708,384],[538,398],[535,119],[403,801],[220,877],[463,980],[960,316],[241,76],[646,856],[827,279],[849,995],[954,444],[334,476],[469,976],[405,557],[588,759],[356,743],[500,956],[160,889],[422,783],[878,76],[725,906],[532,891],[588,236],[638,393],[843,841],[317,699],[502,786],[589,994],[867,199],[183,723],[861,350],[487,216],[512,616],[366,284],[130,279],[381,361],[668,550],[142,355],[65,472],[954,362],[674,60],[815,543],[1000,973],[954,449],[308,942],[328,353],[150,850],[923,443],[929,645],[917,145],[238,69],[986,831],[230,301],[794,925],[808,158],[116,476],[534,483],[936,7],[403,931],[11,320],[455,400],[422,916],[524,913],[613,32],[372,229],[890,209],[353,453],[815,598],[510,181],[635,251],[703,517],[554,29],[721,51],[414,803],[316,130],[984,182],[919,507],[405,696],[335,45],[65,510],[395,732],[400,255],[339,578],[731,667],[954,436],[653,901],[927,278],[724,753],[351,387],[901,314],[166,242],[98,357],[190,520],[67,691],[332,429],[45,328],[253,28],[716,689],[531,759],[962,296],[335,921],[464,888],[327,35],[437,10],[594,655],[779,338],[985,639],[139,984],[890,400],[351,489],[248,782],[167,919],[657,97],[65,913],[893,941],[635,718],[985,120],[710,622],[148,698],[671,94],[610,801],[419,373],[465,911],[344,140],[50,642],[121,100],[36,939],[770,638],[615,36],[599,210],[72,777],[790,359],[852,508],[307,824],[837,201],[417,335],[373,597],[946,545],[519,329],[654,484],[754,752],[761,25],[177,235],[348,699],[479,498],[594,132],[11,351],[816,227],[972,285],[260,433],[168,656],[623,420],[288,486],[49,780],[444,45],[943,157],[651,634],[615,223],[857,530],[490,2],[53,635],[294,453],[307,872],[620,750],[953,502],[792,178],[609,170],[32,347],[877,187],[435,197],[455,589],[790,234],[36,614],[936,133],[155,136],[142,456],[779,405],[835,115],[576,511],[452,711],[231,404],[315,853],[810,316],[162,859],[646,59],[266,342],[474,200],[894,61],[535,183],[487,11],[847,806],[848,649],[142,553],[898,773],[871,531],[76,623],[603,482],[136,110],[341,370],[879,1000],[764,831],[357,114],[660,258],[219,298],[484,256],[483,207],[795,761],[49,361],[539,245],[376,722],[632,465],[406,808],[310,462],[399,198],[926,955],[728,24],[127,610],[888,105],[8,178],[279,9],[13,777],[855,782],[893,178],[493,164],[136,791],[953,380],[268,479],[667,729],[81,456],[92,976],[288,731],[806,57],[530,754],[352,461],[198,631],[548,683],[688,115],[911,158],[38,7],[608,844],[882,332],[17,709],[253,928],[618,630],[848,874],[229,826],[708,661],[46,439],[742,90],[558,7],[173,253],[198,530],[487,546],[293,582],[914,423],[797,816],[936,552],[407,782],[387,601],[779,618],[176,29],[667,273],[152,839],[864,112],[827,319],[538,302],[835,731],[621,309],[453,775],[912,230],[24,36],[164,73],[300,62],[707,995],[180,686],[652,202],[172,620],[284,171],[781,700],[64,254],[350,789],[921,251],[193,651],[608,169],[692,218],[93,645],[885,781],[825,750],[162,880],[799,724],[323,922],[253,299],[158,443],[341,247],[455,317],[42,730],[475,638],[875,632],[626,895],[280,859],[795,887],[969,577],[682,466],[385,181],[800,705],[253,441],[773,856],[629,190],[238,680],[831,985],[189,648],[910,99],[281,193],[920,999],[701,891],[55,651],[469,173],[227,464],[667,717],[517,567],[955,830],[279,409],[434,890],[599,585],[192,366],[467,764],[941,746],[170,554],[520,150],[928,418],[320,852],[851,258],[371,629],[330,227],[82,304],[691,396],[225,606],[386,945],[458,360],[993,1000],[472,428],[671,832],[999,228],[130,801],[69,333],[993,744],[217,126],[865,124],[529,542],[302,494],[892,371],[64,647],[22,541],[130,458],[327,994],[57,175],[210,833],[2,606],[216,122],[760,892],[501,565],[952,519],[835,51],[373,95],[802,469],[533,816],[352,606],[421,932],[641,327],[246,369],[930,721],[710,207],[474,924],[189,857],[119,404],[322,7],[397,445],[309,227],[815,456],[925,471],[396,899],[701,725],[25,378],[198,480],[622,154],[185,295],[622,989],[474,496],[792,494],[505,294],[505,6],[385,885],[354,108],[747,783],[911,203],[394,741],[345,953],[57,584],[606,13],[389,521],[34,183],[468,469],[862,842],[901,967],[375,992],[874,1000],[410,41],[693,357],[745,983],[42,796],[605,4],[208,201],[588,431],[301,921],[450,519],[146,910],[475,93],[187,546],[395,573],[717,847],[368,899],[832,206],[18,115],[807,118],[525,368],[913,954],[686,589],[550,261],[987,536],[625,69],[291,763],[839,400],[264,847],[84,852],[863,146],[765,379],[17,173],[742,243],[482,481],[232,24],[41,41],[570,269],[969,288],[247,971],[679,208],[254,75],[606,477],[762,723],[885,948],[997,371],[519,294],[974,939],[75,123],[918,574],[496,969],[886,242],[24,701],[201,974],[418,990],[875,597],[100,758],[432,243],[910,621],[906,595],[160,654],[81,500],[563,288],[816,610],[445,904],[472,719],[560,456],[151,485],[603,360],[172,802],[502,867],[588,229],[802,706],[407,63],[337,92],[84,620],[581,413],[556,334],[53,759],[439,661],[500,404],[372,734],[491,225],[138,5],[544,306],[819,595],[774,805],[52,907],[672,42],[410,967],[817,25],[882,164],[386,553],[950,611],[892,494],[12,82],[166,353],[148,768],[501,534],[616,926],[246,203],[779,532],[73,84],[490,694],[815,429],[883,875],[584,321],[409,512],[710,30],[777,152],[445,678],[18,892],[854,746],[461,85],[848,764],[379,207],[237,180],[138,559],[701,76],[947,757],[102,72],[298,408],[345,291],[183,224],[273,21],[673,857],[661,672],[721,795],[848,339],[26,349],[816,118],[201,624],[31,787],[958,683],[962,383],[835,109],[404,220],[920,62],[388,351],[81,72],[709,225],[924,200],[973,873],[18,32],[106,911],[733,9],[608,795],[270,615],[352,869],[191,712],[531,290],[118,612],[215,446],[468,371],[240,818],[377,874],[774,425],[395,765],[412,383],[425,184],[654,486],[775,237],[671,161],[766,833],[189,306],[813,807],[58,724],[852,157],[20,984],[761,951],[212,420],[807,692],[853,195],[981,685],[890,92],[863,828],[275,106],[829,510],[616,942],[46,268],[308,989],[480,61],[344,382],[693,326],[833,80],[450,454],[869,571],[331,946],[972,666],[931,770],[798,478],[892,873],[583,459],[651,57],[261,400],[566,497],[848,698],[955,325],[931,911],[325,648],[767,605],[908,62],[650,945],[757,591],[237,585],[272,175],[408,57],[181,710],[19,811],[532,675],[490,90],[234,383],[137,849],[418,849],[485,294],[37,213],[630,736],[161,964],[126,359],[307,699],[339,603],[249,355],[469,675],[320,261],[134,696],[393,551],[460,953],[182,764],[667,725],[982,609],[273,751],[838,721],[918,592],[691,559],[115,50],[503,374],[500,456],[273,928],[311,192],[934,813],[457,843],[128,188],[149,249],[843,91],[689,589],[31,905],[631,706],[422,132],[416,595],[679,639],[665,51],[962,996],[941,924],[914,482],[491,469],[666,555],[167,221],[630,206],[527,764],[96,451],[867,2],[8,801],[695,634],[867,236],[141,242],[768,922],[818,201],[872,105],[533,935],[992,296],[742,485],[70,393],[91,153],[880,105],[356,814],[705,438],[641,874],[220,161],[726,258],[266,898],[452,438],[744,888],[978,559],[174,655],[883,562],[932,532],[879,93],[221,591],[252,916],[12,426],[20,961],[346,340],[488,750],[97,997],[727,120],[334,373],[540,279],[276,726],[938,656],[81,842],[898,812],[165,420],[833,837],[8,108],[867,767],[470,633],[839,148],[145,343],[450,299],[104,574],[962,103],[667,972],[27,193],[567,186],[503,543],[428,313],[137,505],[885,564],[312,644],[404,873],[571,165],[706,805],[567,296],[862,644],[974,210],[445,423],[693,684],[831,424],[537,454],[732,165],[276,800],[834,214],[323,10],[852,769],[336,467],[927,366],[39,411],[50,568],[264,54],[45,627],[880,317],[929,186],[791,714],[1,824],[131,460],[464,387],[31,559],[307,771],[999,901],[181,177],[125,440],[790,979],[798,224],[929,564],[811,281],[302,678],[945,557],[953,584],[163,392],[513,302],[970,966],[1,60],[95,29],[691,551],[546,843],[956,906],[240,171],[915,756],[29,467],[237,220],[138,932],[420,697],[982,100],[410,700],[861,341],[372,580],[784,170],[6,785],[688,637],[911,894],[880,113],[331,865],[346,175],[277,53],[23,725],[801,465],[847,95],[420,72],[853,44],[569,764],[730,648],[518,511],[480,290],[71,398],[301,382],[729,220],[918,828],[516,982],[458,871],[661,654],[876,520],[461,686],[66,708],[47,423],[958,991],[402,759],[234,623],[373,849],[9,752],[1,430],[605,628],[469,876],[893,124],[800,353],[862,341],[73,360],[872,876],[422,619],[809,278],[179,21],[517,308],[694,485],[582,8],[32,706],[720,620],[477,42],[133,482],[78,406],[566,113],[363,52],[246,752],[130,307],[687,848],[773,474],[554,484],[909,579],[368,79],[262,658],[901,403],[994,334],[562,389],[452,281],[685,589],[14,602],[693,735],[683,111],[475,861],[668,334],[522,614],[151,697],[165,536],[876,713],[550,395],[268,513],[672,741],[253,625],[466,236],[551,335],[199,442],[490,864],[844,135],[842,32],[155,117],[581,480],[951,769],[685,527],[34,331],[25,729],[956,794],[303,488],[507,143],[345,841],[168,535],[378,237],[549,157],[736,711],[143,309],[652,854],[969,764],[729,968],[579,390],[119,992],[577,124],[904,554],[506,401],[967,267],[958,971],[121,437],[864,786],[3,389],[712,433],[882,239],[334,714],[831,732],[306,525],[789,924],[759,399],[256,25],[943,667],[838,92],[921,599],[77,783],[854,28],[500,486],[804,218],[301,164],[804,439],[100,408],[769,638],[668,217],[756,208],[934,647],[373,460],[983,445],[25,174],[979,232],[332,635],[840,538],[528,109],[815,657],[953,84],[306,925],[975,987],[320,664],[258,809],[233,664],[384,857],[527,410],[992,813],[323,287],[1,66],[309,993],[851,418],[423,717],[685,53],[898,377],[164,148],[786,280],[401,798],[308,878],[279,645],[659,456],[193,68],[920,883],[440,261],[407,810],[652,612],[526,199],[301,791],[588,219],[543,46],[154,100],[450,25],[317,213],[655,595],[669,697],[151,737],[30,363],[638,556],[905,396],[824,582],[315,188],[740,24],[573,577],[892,78],[680,50],[165,42],[156,317],[963,426],[72,173],[702,845],[415,601],[632,870],[853,925],[947,880],[122,951],[97,762],[121,51],[108,909],[349,564],[634,844],[896,304],[838,705],[838,701],[845,761],[696,680],[857,436],[522,979],[331,270],[721,763],[830,757],[446,403],[855,665],[225,463],[505,566],[164,222],[566,908],[591,143],[292,636],[614,167],[362,907],[994,745],[851,194],[834,173],[761,279],[766,986],[617,169],[910,385],[227,253],[553,363],[827,55],[254,14],[193,725],[944,273],[495,750],[581,658],[303,370],[504,361],[900,879],[859,8],[21,536],[404,636],[386,89],[338,928],[862,228],[356,590],[647,934],[951,190],[517,918],[625,941],[445,384],[803,612],[730,582],[12,673],[566,259],[570,175],[617,333],[278,743],[185,600],[151,180],[225,852],[13,235],[552,169],[118,378],[861,544],[72,391],[896,71],[24,117],[891,397],[493,875],[276,639],[860,313],[424,330],[213,297],[685,259],[737,98],[423,956],[666,758],[33,900],[885,337],[198,710],[8,893],[456,611],[945,211],[443,810],[176,225],[973,999],[159,984],[573,282],[356,625],[686,718],[448,120],[626,636],[51,886],[63,342],[370,890],[294,281],[902,231],[556,437],[472,390],[670,717],[969,316],[807,588],[481,202],[55,272],[750,505],[723,255],[641,121],[955,322],[357,338],[728,515],[629,149],[315,798],[235,124],[937,790],[226,152],[403,330],[504,897],[955,477],[122,390],[922,564],[623,81],[974,535],[864,257],[517,478],[867,975],[14,421],[99,878],[392,158],[401,232],[553,739],[176,712],[965,945],[937,815],[561,264],[780,467],[488,152],[91,101],[474,160],[766,220],[817,175],[92,796],[440,438],[7,914],[247,814],[815,168],[934,620],[794,612],[859,234],[231,164],[470,833],[113,632],[675,669],[847,883],[716,235],[705,330],[534,715],[966,651],[63,909],[409,172],[500,118],[811,530],[757,379],[563,470],[567,59],[477,853],[426,599],[52,874],[677,524],[108,724],[265,405],[738,283],[621,620],[847,12],[176,721],[325,700],[323,384],[129,637],[117,272],[469,355],[689,958],[862,477],[262,217],[875,413],[284,482],[838,188],[931,660],[382,11],[242,246],[104,976],[79,461],[355,507],[579,764],[31,647],[378,788],[79,891],[518,352],[132,402],[397,624],[16,553],[285,552],[59,234],[326,114],[400,550],[365,576],[130,910],[855,940],[64,611],[578,362],[665,954],[585,468],[208,565],[683,563],[68,733],[762,109],[906,65],[758,941],[573,651],[477,244],[800,280],[148,419],[957,852],[165,386],[371,723],[568,985],[173,217],[393,861],[469,317],[853,556],[561,536],[233,580],[958,791],[613,725],[162,648],[369,412],[703,444],[361,587],[993,104],[226,930],[311,741],[725,341],[114,687],[250,463],[644,309],[123,86],[647,606],[991,733],[435,64],[794,87],[480,783],[845,714],[419,320],[213,96],[2,908],[796,948],[305,874],[980,799],[581,966],[985,631],[686,503],[915,723],[133,354],[798,629],[91,950],[233,772],[496,688],[572,222],[164,930],[838,726],[191,204],[861,22],[180,849],[674,425],[913,30],[528,649],[378,542],[119,9],[796,859],[245,237],[549,436],[941,963],[98,847],[278,101],[464,107],[661,868],[6,47],[745,391],[228,45],[694,879],[128,582],[997,332],[450,33],[896,420],[115,49],[531,355],[255,30],[484,3],[213,554],[467,394],[533,239],[709,170],[121,553],[237,249],[625,135],[865,958],[844,800],[390,887],[834,329],[270,535],[500,477],[779,659],[375,372],[520,121],[252,248],[55,355],[973,682],[846,415],[957,563],[599,647],[477,3],[195,40],[342,246],[584,810],[967,613],[125,588],[763,810],[307,681],[333,102],[847,500],[428,732],[55,305],[139,927],[749,283],[714,350],[974,924],[295,694],[772,646],[668,209],[253,995],[627,480],[167,417],[820,752],[874,493],[890,966],[3,949],[866,333],[689,273],[803,491],[654,411],[352,33],[910,171],[386,92],[730,993],[434,154],[303,455],[306,511],[537,66],[479,57],[871,656],[630,446],[809,524],[613,79],[16,573],[525,256],[227,778],[72,985],[252,490],[978,707],[728,199],[751,344],[492,472],[333,743],[473,738],[846,139],[446,981],[281,467],[781,130],[418,890],[505,110],[446,814],[569,943],[802,288],[501,364],[942,222],[246,931],[216,74],[312,470],[205,48],[898,626],[330,414],[989,1000],[651,686],[569,193],[414,514],[965,581],[247,402],[468,369],[263,774],[39,593],[600,233],[167,719],[430,698],[616,704],[287,506],[150,59],[318,280],[442,922],[856,26],[509,729],[630,684],[641,636],[229,970],[485,534],[266,853],[243,142],[189,445],[766,372],[293,76],[366,760],[689,378],[34,416],[193,380],[325,46],[257,300],[81,981],[991,301],[976,265],[997,820],[552,802],[130,849],[678,885],[697,16],[345,641],[874,334],[268,468],[676,400],[442,271],[851,405],[984,60],[944,772],[289,773],[314,610],[894,387],[580,664],[812,577],[567,295],[155,801],[819,54],[176,210],[509,894],[234,390],[581,196],[429,338],[634,557],[751,82],[900,900],[118,72],[266,470],[787,490],[415,768],[734,326],[745,600],[859,665],[8,564],[251,739],[919,569],[423,907],[637,689],[901,16],[990,890],[224,899],[217,526],[527,903],[832,460],[860,345],[116,267],[227,411],[617,471],[441,588],[914,53],[795,925],[594,857],[688,864],[64,156],[300,544],[87,666],[50,619],[522,379],[129,626],[657,97],[929,808],[749,908],[546,245],[387,512],[375,160],[464,458],[957,96],[996,78],[605,492],[381,504],[340,221],[705,629],[648,974],[486,713],[827,415],[686,347],[904,28],[33,664],[879,163],[167,217],[10,9],[622,455],[381,707],[711,640],[114,406],[660,504],[954,509],[611,919],[3,947],[50,384],[549,459],[2,242],[605,128],[981,333],[557,52],[518,71],[780,74],[424,760],[683,901],[382,228],[819,87],[642,574],[164,519],[642,442],[906,996],[110,290],[722,215],[802,387],[588,899],[673,567],[621,23],[284,693],[1,279],[692,746],[802,262],[209,723],[321,966],[501,168],[84,581],[61,393],[470,672],[857,492],[361,11],[537,531],[116,624],[202,788],[313,99],[865,689],[783,340],[92,393],[304,401],[279,542],[575,372],[367,659],[518,221],[847,758],[605,785],[266,297],[605,802],[37,934],[320,766],[386,61],[542,481],[169,713],[958,204],[465,105],[454,950],[198,534],[397,941],[646,451],[591,83],[590,18],[94,397],[252,595],[129,409],[9,883],[75,968],[566,180],[537,521],[547,61],[976,883],[337,47],[932,763],[494,415],[344,421],[895,951],[953,283],[176,468],[174,263],[80,409],[867,388],[328,948],[232,497],[891,629],[514,269],[307,865],[412,5],[994,102],[113,752],[664,812],[65,339],[841,61],[530,849],[924,95],[569,6],[964,277],[762,97],[917,254],[548,594],[322,768],[897,677],[464,446],[932,12],[917,215],[961,619],[179,674],[241,97],[100,846],[859,334],[37,836],[580,15],[751,432],[830,927],[784,175],[181,174],[600,252],[298,558],[150,944],[604,447],[202,701],[972,907],[425,120],[331,190],[970,836],[392,960],[912,889],[245,527],[546,914],[601,33],[708,815],[789,938],[619,153],[916,41],[149,40],[787,803],[761,424],[868,50],[868,972],[104,190],[417,654],[163,277],[472,165],[79,946],[71,107],[606,174],[109,100],[157,760],[954,462],[130,552],[507,592],[835,184],[762,579],[551,686],[701,578],[309,334],[421,15],[850,430],[741,68],[94,981],[808,314],[160,688],[362,200],[924,848],[818,360],[166,875],[801,766],[843,767],[810,238],[528,984],[46,710],[915,28],[770,406],[226,821],[7,155],[335,481],[850,840],[45,298],[166,618],[149,488],[560,703],[364,443],[280,55],[823,475],[286,911],[774,132],[208,574],[159,382],[694,915],[466,144],[950,178],[84,402],[647,889],[638,24],[557,68],[905,750],[660,494],[244,58],[434,264],[248,20],[632,705],[170,236],[82,823],[14,136],[404,507],[765,749],[286,216],[794,840],[56,39],[537,725],[933,58],[321,948],[796,618],[428,809],[786,319],[262,809],[242,834],[494,390],[527,361],[940,719],[653,319],[925,792],[193,693],[885,167],[586,19],[132,699],[966,59],[258,335],[674,340],[292,942],[906,878],[308,850],[842,506],[447,706],[731,388],[631,698],[204,231],[891,125],[903,697],[233,965],[442,271],[972,961],[99,532],[867,699],[71,391],[323,562],[719,573],[683,567],[438,166],[434,912],[296,689],[643,724],[847,710],[214,313],[489,752],[373,681],[705,980],[938,385],[334,19],[78,927],[859,102],[542,118],[431,279],[158,609],[627,486],[495,109],[828,87],[349,781],[902,813],[705,617],[373,699],[105,358],[688,858],[337,156],[340,25],[758,585],[827,66],[187,164],[114,142],[910,73],[672,142],[745,343],[97,769],[332,172],[513,488],[874,530],[348,287],[48,367],[597,198],[580,965],[686,496],[364,143],[802,665],[418,645],[17,105],[692,838],[470,276],[117,536],[570,788],[429,667],[24,541],[787,994],[942,132],[820,604],[516,316],[548,56],[76,560],[278,628],[925,613],[864,867],[373,188],[493,940],[238,24],[330,136],[124,807],[524,574],[153,47],[808,430],[334,900],[15,330],[215,156],[540,732],[449,269],[576,394],[367,902],[918,216],[662,318],[217,6],[367,632],[115,180],[911,889],[647,708],[585,394],[877,390],[742,815],[158,695],[353,743],[968,3],[329,462],[592,639],[206,482],[487,823],[367,664],[114,74],[394,678],[684,212],[755,383],[172,883],[488,865],[487,24],[141,937],[704,587],[698,490],[808,563],[745,771],[32,327],[730,517],[456,432],[213,29],[379,317],[580,353],[501,981],[698,485],[793,918],[455,757],[59,620],[384,421],[410,859],[533,497],[644,18],[815,480],[520,44],[525,839],[61,825],[103,235],[737,564],[537,49],[151,489],[394,629],[68,238],[675,237],[616,902],[901,634],[737,200],[933,668],[403,943],[810,964],[266,169],[501,442],[722,406],[572,194],[230,294],[769,521],[401,965],[642,63],[352,526],[388,425],[979,466],[576,291],[844,933],[262,803],[101,404],[555,776],[315,82],[275,37],[198,648],[548,810],[802,407],[50,92],[868,120],[130,20],[216,250],[397,214],[128,92],[32,467],[197,843],[763,670],[991,534],[817,895],[205,228],[223,252],[160,530],[335,492],[343,26],[209,379],[253,204],[993,137],[16,187],[346,818],[852,986],[747,60],[393,24],[577,366],[121,444],[138,797],[586,115],[573,425],[214,17],[700,500],[15,650],[764,789],[438,296],[463,803],[274,599],[454,272],[505,803],[588,890],[598,258],[244,854],[329,944],[736,621],[32,318],[38,298],[136,62],[463,459],[723,639],[245,189],[40,775],[590,298],[280,203],[722,970],[547,411],[220,659],[873,293],[627,295],[992,348],[405,945],[51,129],[116,137],[795,45],[863,936],[289,898],[771,7],[441,434],[344,594],[607,525],[722,391],[473,938],[372,34],[378,581],[638,904],[177,837],[545,598],[929,546],[110,653],[551,253],[230,983],[445,183],[758,957],[572,638],[144,360],[120,587],[22,919],[436,352],[756,175],[562,510],[212,468],[239,123],[747,225],[888,324],[223,555],[687,350],[333,156],[557,307],[98,575],[933,771],[524,982],[483,480],[462,471],[597,449],[632,299],[143,852],[599,443],[196,763],[918,536],[424,251],[321,216],[270,309],[6,629],[891,205],[540,166],[7,745],[582,525],[246,309],[159,139],[822,43],[53,413],[310,536],[432,323],[50,460],[217,545],[625,312],[66,270],[793,109],[75,188],[939,801],[129,144],[1000,812],[140,373],[130,174],[107,694],[845,888],[189,631],[773,218],[959,817],[897,204],[281,650],[689,588],[936,197],[565,649],[543,747],[42,920],[602,282],[369,62],[466,894],[764,789],[692,442],[349,270],[215,622],[75,311],[777,994],[917,598],[705,299],[762,134],[777,553],[772,74],[949,38],[51,671],[42,241],[599,347],[379,418],[241,813],[239,103],[633,879],[678,962],[482,150],[239,737],[126,840],[528,92],[298,753],[376,659],[404,957],[589,840],[418,996],[988,798],[132,388],[34,377],[457,624],[888,796],[747,789],[393,962],[946,846],[942,669],[576,787],[168,474],[850,682],[428,269],[575,305],[689,348],[59,221],[14,78],[162,605],[50,854],[926,649],[435,251],[69,511],[75,82],[807,91],[469,637],[552,567],[389,920],[822,733],[564,286],[249,443],[149,756],[587,491],[49,929],[163,592],[311,951],[897,446],[623,519],[800,232],[125,61],[589,795],[947,520],[786,910],[94,516],[694,374],[427,364],[613,443],[448,279],[649,791],[248,688],[705,655],[674,882],[100,400],[677,57],[970,556],[503,668],[854,252],[717,243],[432,487],[467,282],[710,489],[568,716],[494,175],[992,82],[19,228],[526,48],[824,589],[844,101],[396,620],[115,136],[193,878],[800,141],[444,960],[815,142],[747,538],[456,412],[237,533],[232,299],[779,53],[968,156],[582,946],[883,732],[731,665],[752,358],[968,183],[806,200],[724,676],[228,158],[556,812],[681,731],[209,329],[288,647],[628,21],[573,448],[334,664],[899,300],[388,531],[890,559],[378,577],[647,647],[147,491],[17,575],[826,332],[955,188],[161,770],[450,973],[527,185],[458,217],[929,670],[403,642],[13,97],[150,478],[438,755],[439,333],[580,395],[524,80],[205,567],[341,872],[46,21],[931,390],[549,805],[325,510],[173,635],[869,568],[811,817],[21,635],[861,664],[987,551],[863,80],[942,859],[895,952],[101,923],[583,464],[438,299],[23,955],[283,995],[622,759],[397,93],[663,414],[325,694],[131,25],[196,580],[919,831],[44,360],[525,695],[923,553],[609,921],[721,861],[342,117],[293,690],[821,243],[663,221],[768,734],[145,694],[359,404],[789,513],[704,100],[597,309],[554,836],[721,571],[468,672],[675,692],[373,633],[266,884],[686,940],[246,2],[611,470],[106,53],[630,217],[152,409],[217,882],[997,561],[242,404],[90,239],[357,20],[418,958],[262,935],[265,733],[456,388],[774,267],[14,109],[590,810],[138,425],[940,60],[552,908],[821,857],[466,43],[969,126],[132,419],[485,454],[68,636],[979,670],[928,997],[633,350],[243,384],[713,965],[723,926],[261,118],[758,251],[369,290],[586,23],[917,49],[320,72],[393,500],[153,364],[984,458],[665,914],[170,519],[314,465],[325,739],[758,576],[350,26],[221,603],[549,892],[592,428],[806,93],[191,897],[158,288],[247,145],[64,440],[593,284],[86,999],[269,439],[5,572],[773,901],[927,656],[60,951],[968,544],[57,844],[715,412],[32,822],[567,735],[924,361],[503,628],[514,982],[498,559],[621,211],[265,182],[677,771],[808,101],[684,411],[445,56],[195,444],[113,939],[939,662],[922,178],[114,854],[271,370],[175,169],[708,323],[989,399],[880,343],[1,907],[466,458],[711,864],[197,887],[598,283],[168,221],[77,648],[10,554],[575,387],[986,39],[26,201],[516,787],[189,607],[57,163],[10,227],[529,551],[665,175],[362,631],[162,908],[338,214],[947,293],[560,379],[501,101],[782,561],[529,161],[110,390],[389,924],[760,517],[792,70],[145,860],[194,17],[190,980],[645,188],[155,668],[749,43],[923,272],[920,112],[745,325],[658,401],[408,102],[319,968],[611,345],[723,536],[416,389],[928,444],[120,382],[264,388],[873,886],[908,747],[645,723],[104,742],[913,603],[845,501],[519,378],[565,89],[414,528],[802,963],[362,490],[145,135],[520,562],[528,341],[471,900],[859,3],[727,364],[334,252],[752,547],[32,381],[990,433],[529,367],[83,791],[616,932],[175,809],[933,158],[613,482],[819,663],[716,766],[233,432],[172,247],[681,282],[365,657],[52,522],[833,879],[376,984],[65,738],[534,446],[120,699],[154,557],[353,95],[439,468],[389,382],[277,891],[240,270],[506,49],[787,805],[923,133],[944,509],[916,725],[917,256],[712,440],[105,288],[386,625],[326,712],[774,712],[486,890],[536,982],[300,916],[671,729],[479,603],[512,72],[770,51],[510,611],[933,295],[260,758],[265,941],[199,943],[780,391],[500,15],[422,791],[142,225],[448,634],[167,12],[47,107],[394,379],[384,958],[524,784],[399,778],[676,16],[911,855],[151,778],[875,872],[309,210],[464,103],[797,287],[638,705],[488,937],[930,575],[15,28],[249,498],[334,491],[905,348],[68,463],[984,856],[616,963],[549,738],[908,378],[341,22],[467,457],[955,53],[453,930],[805,814],[776,658],[867,187],[484,939],[349,157],[773,729],[264,235],[622,572],[556,920],[60,247],[287,949],[883,388],[998,902],[787,239],[337,770],[205,776],[566,514],[632,426],[388,241],[603,208],[696,156],[851,537],[521,963],[288,687],[439,452],[762,55],[452,261],[57,899],[988,364],[963,242],[68,50],[367,486],[877,775],[511,320],[646,313],[361,659],[162,876],[189,709],[486,478],[944,614],[767,850],[540,908],[281,722],[329,509],[335,36],[205,314],[455,635],[641,792],[886,431],[905,168],[210,753],[501,611],[590,484],[647,958],[725,993],[587,129],[141,509],[668,20],[620,958],[89,660],[9,320],[394,656],[318,972],[367,634],[787,723],[97,314],[69,447],[625,844],[191,463],[814,294],[455,872],[666,719],[255,356],[23,117],[516,505],[460,185],[469,577],[288,226],[742,995],[531,934],[580,696],[885,361],[727,734],[483,148],[115,433],[929,608],[255,585],[444,734],[497,64],[256,213],[447,30],[891,13],[144,868],[991,792],[760,795],[508,864],[804,662],[555,163],[168,160],[643,761],[109,34],[148,706],[225,268],[346,342],[774,229],[566,731],[61,246],[317,584],[544,595],[288,166],[314,848],[870,418],[235,252],[112,496],[958,717],[947,920],[520,199],[562,326],[880,402],[59,41],[324,756],[603,304],[526,221],[725,347],[187,58],[734,598],[300,417],[359,20],[831,854],[680,354],[453,631],[995,653],[41,238],[795,535],[175,30],[460,94],[861,318],[435,986],[12,197],[244,495],[234,200],[617,811],[625,149],[320,333],[361,446],[415,686],[929,306],[28,640],[76,522],[834,782],[61,129],[126,471],[566,138],[659,330],[348,341],[95,393],[913,676],[748,1000],[371,93],[930,226],[999,181],[301,847],[339,67],[793,987],[678,324],[528,647],[315,596],[157,730],[972,839],[503,132],[248,133],[68,886],[58,662],[119,541],[15,827],[96,218],[494,480],[840,857],[42,352],[77,820],[192,39],[926,602],[384,150],[577,959],[450,692],[657,548],[784,68],[279,436],[293,468],[303,761],[622,332],[645,264],[498,895],[333,776],[5,328],[281,508],[961,302],[842,994],[315,851],[716,518],[830,549],[202,259],[193,826],[532,359],[260,283],[176,525],[445,490],[722,412],[945,642],[280,227],[823,829],[120,758],[276,648],[542,174],[824,499],[718,362],[302,277],[641,836],[2,863],[312,820],[128,541],[122,508],[491,510],[404,30],[553,270],[313,403],[125,473],[441,700],[814,932],[294,328],[502,559],[967,211],[611,672],[20,981],[181,472],[917,694],[243,354],[1,601],[73,463],[392,829],[798,850],[251,437],[207,200],[584,293],[429,463],[669,330],[258,674],[68,249],[857,548],[264,428],[894,717],[165,98],[840,936],[698,989],[435,787],[404,529],[819,347],[43,693],[457,591],[532,904],[668,108],[282,979],[725,699],[74,408],[346,940],[495,348],[95,499],[863,73],[426,526],[427,568],[732,683],[461,985],[554,518],[397,29],[864,939],[388,542],[296,501],[464,888],[653,927],[755,374],[136,658],[656,637],[284,32],[158,461],[860,61],[326,435],[148,928],[245,181],[726,47],[850,414],[43,256],[138,244],[213,514],[949,513],[467,22],[995,686],[878,655],[954,928],[819,882],[33,641],[303,51],[414,50],[638,450],[655,134],[670,983],[248,861],[462,542],[115,197],[464,898],[304,388],[411,416],[767,64],[520,865],[765,792],[951,274],[209,594],[747,147],[904,975],[75,144],[737,519],[398,284],[707,987],[725,376],[815,319],[711,860],[646,625],[716,862],[236,40],[193,834],[835,798],[454,619],[46,184],[63,818],[754,697],[282,385],[520,893],[705,235],[998,695],[471,297],[387,926],[733,84],[346,368],[351,748],[996,343],[499,933],[531,363],[809,569],[566,178],[738,490],[134,107],[876,362],[873,288],[967,599],[954,736],[105,577],[393,845],[432,276],[472,869],[644,890],[823,961],[565,531],[900,352],[400,919],[352,94],[565,167],[389,606],[569,688],[382,413],[279,314],[415,688],[832,420],[951,616],[666,523],[366,526],[460,552],[91,620],[671,825],[494,224],[803,689],[97,633],[522,685],[706,239],[548,271],[951,640],[346,686],[325,245],[60,904],[987,621],[575,986],[258,586],[78,733],[689,79],[480,23],[257,518],[598,956],[261,632],[310,27],[52,353],[638,461],[243,721],[552,530],[809,646],[861,821],[152,297],[245,350],[965,233],[250,64],[744,929],[83,148],[222,322],[702,510],[164,32],[729,535],[36,176],[968,104],[251,781],[655,753],[720,998],[904,256],[520,148],[302,454],[499,305],[154,972],[97,70],[988,721],[281,37],[492,11],[382,244],[206,57],[433,969],[598,767],[357,473],[617,415],[73,252],[643,608],[419,217],[87,980],[591,20],[382,769],[670,357],[595,145],[642,652],[104,397],[588,117],[599,951],[427,544],[185,445],[999,392],[379,404],[237,417],[781,159],[290,936],[233,344],[861,282],[689,762],[988,104],[187,493],[885,754],[865,644],[277,736],[775,513],[379,364],[855,651],[369,35],[173,721],[18,27],[588,18],[566,886],[230,416],[267,106],[703,330],[248,492],[86,700],[873,298],[276,399],[70,194],[480,111],[622,78],[319,641],[809,6],[326,838],[95,822],[627,78],[913,415],[345,825],[603,920],[160,90],[981,532],[702,690],[542,697],[267,675],[334,225],[956,956],[117,28],[241,339],[639,793],[231,103],[481,233],[580,192],[734,768],[41,251],[85,210],[40,58],[486,445],[432,237],[834,548],[203,204],[361,68],[187,69],[335,443],[353,875],[868,595],[294,935],[458,264],[181,27],[944,937],[765,768],[953,628],[163,897],[40,14],[399,772],[28,882],[49,462],[282,423],[698,329],[100,289],[672,879],[465,741],[116,446],[7,673],[754,637],[449,795],[502,833],[742,169],[545,977],[472,815],[813,614],[516,95],[924,908],[176,157],[98,7],[648,431],[56,137],[403,831],[870,403],[232,335],[844,137],[811,518],[905,406],[105,857],[238,207],[69,495],[355,767],[699,245],[940,13],[245,217],[730,84],[72,344],[678,359],[308,971],[706,178],[689,15],[353,733],[676,363],[661,614],[899,646],[493,251],[207,36],[935,228],[312,344],[50,224],[933,512],[299,278],[490,707],[931,118],[158,840],[515,511],[853,449],[903,3],[287,989],[586,161],[44,488],[824,157],[160,592],[215,482],[585,305],[539,367],[111,861],[943,838],[821,68],[737,512],[353,615],[364,613],[411,803],[146,639],[951,193],[497,514],[58,205],[931,961],[535,516],[560,37],[537,306],[722,200],[708,116],[352,149],[429,867],[637,129],[462,148],[512,665],[792,794],[757,382],[669,261],[435,156],[692,1000],[773,316],[507,729],[533,631],[474,689],[340,756],[386,889],[217,313],[512,809],[45,908],[603,462],[929,42],[845,222],[907,607],[874,37],[381,512],[319,180],[153,917],[823,634],[72,461],[293,48],[682,508],[572,818],[230,229],[471,150],[907,94],[643,737],[299,919],[570,81],[93,141],[52,467],[79,71],[167,591],[279,207],[56,164],[289,745],[265,133],[54,149],[813,90],[896,642],[232,510],[709,981],[637,862],[199,486],[235,175],[954,517],[670,586],[585,892],[591,389],[234,318],[556,486],[785,451],[648,447],[339,288],[835,54],[544,977],[589,846],[462,591],[174,675],[711,63],[842,215],[408,623],[922,332],[345,189],[924,147],[46,466],[360,621],[724,746],[538,592],[331,73],[701,739],[411,961],[131,613],[7,243],[428,973],[717,926],[170,801],[513,51],[691,575],[958,136],[743,61],[263,580],[653,221],[517,360],[371,541],[378,582],[280,482],[874,907],[393,98],[888,362],[596,66],[318,873],[513,948],[275,89],[928,702],[394,407],[243,347],[651,722],[136,591],[600,745],[918,722],[893,255],[734,151],[967,901],[370,127],[930,576],[561,196],[97,733],[722,588],[398,995],[918,540],[586,259],[311,869],[281,169],[344,18],[266,12],[795,277],[489,812],[736,956],[554,737],[480,155],[717,249],[936,669],[855,847],[611,799],[320,574],[833,583],[455,874],[89,387],[857,34],[96,429],[870,803],[97,712],[499,578],[359,358],[545,84],[422,103],[810,688],[49,736],[148,599],[96,44],[977,703],[304,826],[646,359],[72,645],[476,517],[223,99],[307,711],[461,783],[565,678],[747,660],[873,625],[148,644],[586,418],[531,451],[171,984],[145,259],[369,689],[856,395],[69,578],[654,952],[351,627],[754,245],[962,357],[966,650],[323,820],[470,616],[33,143],[144,582],[917,311],[55,931],[408,634],[69,365],[916,879],[218,273],[515,355],[863,937],[558,705],[241,202],[6,705],[349,17],[266,144],[636,675],[700,756],[34,824],[755,38],[769,618],[175,628],[732,866],[202,943],[298,183],[311,138],[990,672],[427,635],[825,651],[133,312],[953,643],[579,149],[323,635],[881,22],[879,966],[74,673],[171,937],[341,979],[203,171],[570,38],[875,992],[519,596],[732,656],[338,421],[573,364],[107,180],[221,862],[795,684],[822,239],[190,204],[209,270],[701,958],[68,341],[15,1000],[635,898],[549,130],[652,915],[618,569],[54,898],[490,365],[700,926],[77,591],[462,696],[571,515],[738,768],[635,232],[320,379],[862,572],[652,190],[979,581],[576,323],[377,328],[33,25],[418,904],[401,133],[954,898],[934,959],[815,514],[234,446],[971,850],[784,410],[817,387],[236,345],[360,407],[906,353],[675,573],[726,339],[824,203],[669,54],[687,264],[553,933],[464,128],[907,656],[734,275],[654,43],[671,393],[152,431],[42,487],[942,741],[983,791],[531,712],[178,260],[347,116],[124,973],[709,998],[727,852],[599,29],[448,574],[940,377],[876,912],[991,705],[402,56],[192,481],[907,331],[112,285],[499,358],[159,260],[109,625],[941,537],[515,428],[270,333],[382,540],[260,374],[274,524],[9,497],[354,405],[29,128],[82,334],[492,881],[791,620],[357,338],[462,45],[834,997],[94,322],[75,898],[722,822],[241,647],[103,162],[672,801],[616,950],[721,881],[597,174],[95,656],[621,263],[266,330],[214,303],[296,677],[277,990],[52,70],[495,936],[534,959],[439,577],[518,854],[165,782],[77,469],[583,722],[379,672],[36,878],[64,425],[907,975],[979,776],[432,723],[90,292],[194,426],[395,168],[339,304],[446,338],[736,952],[913,543],[43,492],[989,75],[923,401],[16,817],[908,900],[249,917],[945,728],[971,733],[771,531],[753,269],[2,155],[882,621],[945,119],[248,800],[171,377],[463,318],[371,749],[641,616],[228,830],[193,683],[684,157],[772,660],[597,678],[687,280],[465,302],[777,178],[51,969],[311,510],[622,811],[407,732],[554,258],[523,899],[232,320],[151,881],[235,814],[152,682],[767,176],[462,528],[639,881],[491,155],[249,448],[902,579],[888,125],[926,225],[29,487],[109,334],[840,198],[737,899],[213,763],[927,344],[909,931],[671,941],[986,775],[17,792],[200,735],[238,910],[831,452],[441,707],[7,197],[514,744],[283,631],[451,906],[60,901],[375,156],[10,778],[993,183],[903,851],[254,801],[900,128],[91,769],[686,675],[11,17],[86,803],[13,486],[658,498],[747,343],[206,491],[38,615],[527,112],[30,941],[664,363],[889,974],[985,776],[721,490],[430,633],[794,996],[369,482],[639,767],[420,445],[438,978],[84,274],[114,775],[674,565],[654,672],[68,44],[128,532],[41,182],[122,719],[376,963],[384,919],[437,242],[89,931],[208,983],[467,282],[217,353],[652,744],[18,782],[111,181],[632,262],[706,612],[409,735],[699,755],[164,865],[83,825],[303,617],[102,298],[795,463],[130,368],[224,116],[562,802],[145,464],[162,58],[999,902],[168,194],[874,486],[984,212],[329,124],[778,279],[620,569],[339,72],[361,737],[615,170],[45,957],[289,734],[175,959],[49,59],[167,577],[98,802],[434,868],[635,399],[728,559],[93,25],[212,64],[167,535],[324,861],[400,627],[165,989],[293,282],[716,199],[939,786],[545,14],[844,97],[922,755],[701,249],[418,991],[120,684],[555,225],[324,527],[398,105],[896,844],[488,454],[146,275],[63,570],[577,139],[71,289],[146,296],[117,879],[750,820],[924,410],[379,211],[812,229],[282,751],[601,403],[435,811],[852,938],[760,974],[949,464],[340,220],[69,72],[658,474],[838,196],[217,839],[696,341],[441,558],[109,240],[584,179],[400,41],[413,830],[592,332],[622,964],[426,201],[41,160],[531,423],[556,131],[884,936],[614,971],[666,556],[53,52],[217,724],[52,945],[283,419],[826,970],[830,442],[141,623],[864,441],[150,767],[716,580],[596,81],[364,757],[120,1000],[93,470],[904,12],[618,733],[925,319],[789,558],[303,192],[211,534],[845,942],[669,194],[224,107],[711,430],[870,673],[672,415],[444,944],[393,164],[246,498],[164,277],[685,592],[392,736],[518,205],[423,303],[462,429],[493,816],[951,430],[858,468],[59,388],[234,960],[424,903],[136,202],[271,176],[431,938],[509,270],[970,311],[910,759],[276,878],[317,606],[969,522],[142,560],[664,793],[367,359],[661,882],[680,888],[500,53],[915,842],[332,840],[559,463],[951,384],[912,67],[839,283],[24,557],[503,11],[72,656],[520,529],[356,904],[991,230],[553,128],[149,111],[619,843],[611,355],[227,602],[60,553],[780,673],[589,275],[295,259],[149,653],[156,856],[767,462],[973,72],[851,710],[907,30],[179,899],[589,757],[835,93],[964,847],[648,945],[86,290],[240,491],[954,660],[770,58],[66,737],[861,380],[70,174],[890,894],[783,877],[188,292],[642,984],[991,248],[832,39],[705,719],[451,857],[760,390],[515,659],[555,577],[516,628],[782,635],[27,468],[208,331],[266,361],[630,710],[334,45],[133,554],[844,133],[833,627],[332,887],[126,522],[416,727],[865,842],[204,350],[707,886],[143,703],[473,774],[591,151],[569,909],[713,597],[92,184],[464,15],[570,890],[312,564],[805,20],[767,886],[211,781],[213,482],[718,71],[375,767],[551,470],[606,414],[521,181],[848,934],[735,696],[380,728],[692,466],[196,884],[889,509],[430,13],[889,830],[285,276],[107,135],[150,214],[316,388],[462,883],[443,911],[5,744],[50,186],[983,446],[968,731],[921,577],[396,342],[457,441],[847,293],[879,739],[821,602],[878,392],[161,346],[637,218],[684,322],[941,706],[568,416],[846,645],[793,418],[241,475],[417,314],[770,453],[653,501],[305,69],[556,94],[787,65],[819,672],[782,307],[573,326],[172,594],[670,941],[848,319],[768,945],[675,9],[885,234],[684,343],[543,267],[677,519],[527,945],[213,256],[685,291],[199,156],[462,859],[701,478],[888,338],[146,950],[874,971],[461,665],[691,318],[267,668],[885,950],[976,139],[659,849],[364,628],[920,836],[406,44],[112,680],[638,774],[130,850],[252,117],[348,213],[578,813],[180,516],[626,209],[963,306],[949,70],[631,273],[804,565],[909,574],[721,530],[880,76],[670,576],[636,968],[663,388],[392,379],[567,914],[887,241],[239,595],[524,295],[692,876],[57,873],[238,784],[710,758],[15,551],[20,871],[734,708],[782,768],[458,845],[417,392],[784,131],[211,900],[395,509],[602,376],[481,839],[345,324],[685,723],[152,479],[678,276],[428,558],[937,459],[463,413],[8,87],[322,305],[560,856],[857,91],[656,716],[308,168],[740,777],[408,640],[651,912],[186,348],[299,514],[56,461],[933,748],[702,993],[212,427],[485,937],[438,517],[478,219],[462,333],[387,883],[562,236],[742,340],[902,841],[788,347],[120,486],[688,131],[742,936],[19,756],[903,420],[302,153],[675,914],[626,488],[775,475],[52,338],[878,274],[390,938],[643,611],[258,895],[854,648],[175,724],[292,728],[789,582],[724,160],[929,489],[591,17],[208,987],[744,50],[249,709],[14,168],[371,432],[656,214],[511,224],[178,117],[14,654],[80,424],[2,843],[98,335],[872,428],[738,959],[355,991],[670,481],[849,177],[539,196],[849,156],[335,815],[373,397],[478,468],[635,289],[288,10],[930,699],[821,528],[801,314],[766,74],[704,619],[244,567],[762,255],[842,298],[88,277],[959,295],[616,422],[67,950],[145,477],[13,643],[837,799],[747,382],[162,133],[778,157],[559,764],[498,606],[580,852],[3,104],[280,862],[235,388],[32,626],[328,689],[370,388],[83,240],[814,353],[68,401],[649,784],[647,353],[170,287],[261,239],[867,858],[832,129],[187,412],[341,394],[590,768],[471,661],[788,110],[449,84],[997,925],[931,928],[407,581],[678,902],[52,731],[502,713],[106,925],[132,19],[13,141],[195,285],[27,517],[595,276],[361,458],[692,380],[316,478],[267,129],[181,218],[464,580],[330,600],[159,707],[378,872],[198,439],[254,658],[262,828],[182,777],[538,683],[973,124],[673,252],[256,695],[229,167],[227,120],[486,890],[600,76],[309,556],[93,872],[751,148],[104,736],[543,768],[728,843],[366,686],[366,174],[683,123],[826,143],[623,702],[263,554],[782,92],[182,717],[23,38],[736,95],[518,111],[897,898],[616,544],[421,60],[238,164],[905,350],[463,27],[28,66],[45,501],[85,521],[984,465],[165,655],[406,895],[198,400],[49,628],[205,442],[183,414],[735,480],[446,458],[234,536],[17,80],[789,816],[42,207],[194,414],[707,458],[693,352],[744,157],[616,736],[934,182],[51,931],[416,613],[382,554],[244,807],[631,971],[511,483],[981,597],[370,242],[681,155],[982,481],[766,791],[786,94],[710,877],[423,874],[628,357],[666,615],[468,11],[781,351],[212,332],[646,283],[388,847],[364,939],[953,571],[276,598],[846,123],[581,327],[837,475],[329,275],[134,266],[289,930],[1000,134],[624,559],[313,520],[629,294],[24,822],[856,899],[122,435],[330,629],[160,383],[141,542],[244,589],[582,252],[529,888],[122,978],[696,603],[786,334],[821,274],[806,645],[347,424],[568,206],[782,338],[510,198],[47,820],[441,303],[498,727],[203,272],[268,563],[555,833],[395,937],[711,572],[411,23],[480,358],[49,873],[567,944],[980,197],[386,659],[947,593],[68,530],[690,781],[550,296],[725,825],[860,848],[121,778],[470,44],[210,940],[680,568],[35,666],[863,729],[521,734],[668,909],[761,239],[179,12],[263,937],[870,648],[112,275],[19,836],[26,255],[249,761],[618,156],[31,215],[658,322],[331,503],[710,495],[958,310],[901,130],[310,522],[527,816],[901,803],[967,812],[685,788],[88,373],[972,663],[452,653],[828,632],[405,10],[981,335],[260,162],[2,155],[12,67],[704,47],[924,182],[777,566],[286,527],[322,888],[814,219],[220,241],[368,672],[608,505],[619,360],[431,277],[182,908],[899,367],[530,768],[355,963],[410,191],[584,535],[242,194],[692,42],[742,513],[468,768],[378,561],[447,6],[520,868],[819,851],[127,223],[146,232],[325,951],[801,509],[544,953],[723,555],[969,84],[486,512],[386,957],[830,178],[845,857],[474,844],[581,955],[871,605],[433,568],[592,501],[107,164],[905,185],[57,456],[289,938],[754,114],[717,921],[855,871],[817,690],[602,417],[331,493],[233,284],[904,241],[42,867],[89,538],[868,909],[713,325],[627,505],[734,197],[901,440],[693,799],[570,871],[721,678],[928,694],[621,450],[257,522],[719,325],[595,511],[355,706],[390,210],[479,922],[322,295],[363,659],[235,613],[274,357],[370,418],[620,283],[227,560],[940,364],[482,572],[553,348],[799,495],[396,149],[135,571],[889,475],[677,282],[134,77],[274,985],[272,898],[328,309],[145,919],[791,134],[895,763],[274,791],[142,365],[175,627],[354,890],[843,666],[443,315],[955,309],[667,624],[109,92],[212,907],[496,620],[594,676],[569,968],[3,579],[741,922],[113,222],[772,903],[314,558],[328,391],[804,931],[121,617],[66,495],[893,489],[62,359],[425,620],[488,576],[995,859],[331,22],[938,873],[578,44],[17,124],[286,344],[881,771],[161,862],[812,442],[859,286],[740,59],[90,839],[859,271],[370,46],[892,961],[372,783],[463,892],[38,882],[633,972],[519,722],[695,670],[989,390],[833,370],[839,581],[340,891],[275,831],[411,685],[446,958],[244,58],[861,222],[409,788],[434,484],[116,606],[223,494],[268,824],[528,500],[543,852],[810,702],[850,741],[470,153],[543,546],[56,692],[551,43],[613,832],[138,122],[91,38],[121,2],[133,818],[749,509],[183,86],[648,1000],[659,664],[223,653],[879,541],[80,406],[778,199],[935,410],[796,354],[740,316],[593,616],[862,553],[404,125],[944,849],[686,411],[135,581],[917,643],[27,416],[79,217],[722,87],[319,34],[931,439],[975,560],[117,403],[611,26],[607,474],[254,510],[239,138],[71,109],[836,723],[657,368],[178,677],[628,265],[530,849],[819,870],[942,682],[78,740],[684,835],[310,625],[652,792],[430,22],[441,420],[116,349],[851,200],[54,562],[767,224],[160,449],[69,263],[168,602],[983,416],[234,480],[595,812],[569,82],[965,210],[660,625],[715,144],[245,70],[174,707],[460,27],[290,57],[564,625],[350,943],[60,578],[151,696],[33,552],[336,844],[428,184],[956,183],[1,655],[34,881],[926,520],[169,726],[213,102],[698,550],[251,784],[684,203],[97,833],[181,927],[511,262],[831,314],[735,655],[303,731],[265,968],[696,890],[739,166],[738,164],[898,422],[281,532],[725,751],[635,151],[847,285],[628,10],[430,204],[80,578],[626,410],[269,98],[653,864],[173,60],[608,548],[923,279],[961,349],[504,268],[587,254],[381,898],[741,730],[882,236],[539,498],[646,409],[749,75],[764,45],[556,73],[114,701],[124,745],[368,295],[748,197],[694,389],[629,903],[90,533],[753,871],[69,196],[196,939],[341,483],[273,261],[936,202],[216,961],[417,975],[414,401],[287,988],[853,256],[839,933],[993,125],[331,127],[92,392],[391,84],[1000,985],[802,607],[291,169],[435,297],[124,112],[435,666],[973,896],[856,58],[714,489],[332,900],[40,232],[497,122],[862,238],[403,566],[659,460],[778,255],[31,111],[314,334],[618,863],[699,260],[46,749],[359,789],[493,401],[837,578],[750,808],[10,445],[72,381],[610,883],[186,632],[521,833],[386,661],[981,82],[454,990],[808,800],[595,808],[944,425],[33,183],[120,383],[748,485],[555,212],[60,55],[34,769],[550,337],[497,583],[910,481],[41,92],[316,620],[432,19],[572,921],[759,444],[99,105],[455,333],[314,904],[177,990],[494,54],[815,969],[287,435],[237,860],[229,403],[739,17],[987,598],[642,215],[95,754],[399,617],[831,390],[65,618],[477,659],[504,219],[902,408],[528,517],[595,814],[687,12],[583,486],[231,468],[853,839],[360,555],[976,109],[812,595],[431,699],[951,53],[892,221],[815,989],[106,144],[640,135],[808,796],[523,657],[697,778],[597,397],[546,412],[563,480],[182,200],[767,922],[580,335],[363,594],[973,821],[545,870],[789,655],[257,648],[750,371],[991,786],[220,471],[83,108],[677,204],[597,412],[613,253],[72,447],[992,628],[101,768],[806,554],[198,856],[857,572],[400,156],[182,413],[803,104],[858,475],[988,974],[252,42],[402,929],[238,636],[443,817],[775,535],[778,105],[270,639],[576,60],[363,74],[661,731],[777,364],[866,258],[299,717],[749,510],[898,582],[321,791],[65,160],[367,581],[9,636],[445,910],[965,207],[144,212],[333,929],[613,448],[964,583],[644,124],[223,974],[504,648],[748,457],[538,207],[550,497],[194,312],[322,324],[549,467],[310,97],[229,861],[889,474],[837,515],[910,792],[290,633],[49,486],[158,65],[726,935],[370,986],[656,842],[810,311],[714,611],[541,524],[748,438],[811,347],[948,262],[449,26],[854,439],[27,296],[991,907],[757,936],[720,918],[110,720],[763,225],[948,95],[354,690],[918,862],[659,91],[955,803],[587,710],[804,313],[713,562],[630,982],[21,331],[923,212],[657,968],[343,731],[778,130],[374,182],[315,528],[392,992],[882,859],[979,613],[407,433],[133,731],[316,335],[52,740],[132,285],[360,792],[792,538],[426,340],[628,460],[713,844],[96,842],[44,512],[489,460],[756,450],[746,172],[971,917],[672,219],[678,736],[807,788],[136,367],[278,341],[376,320],[341,736],[353,909],[382,367],[518,519],[171,56],[988,491],[193,49],[254,126],[767,560],[868,874],[462,616],[564,106],[570,471],[761,171],[749,80],[591,554],[238,581],[346,330],[13,628],[485,86],[407,811],[314,326],[395,73],[136,579],[553,244],[849,765],[873,17],[270,858],[721,296],[526,195],[433,510],[252,263],[923,880],[165,234],[554,561],[57,363],[672,253],[671,994],[399,497],[536,817],[798,399],[327,740],[123,837],[431,315],[405,251],[785,924],[775,263],[650,360],[497,296],[934,449],[716,39],[732,180],[509,72],[147,397],[214,404],[884,730],[658,451],[494,557],[951,257],[867,903],[175,142],[633,138],[792,376],[779,807],[115,568],[273,245],[669,529],[314,581],[905,861],[595,800],[806,628],[815,830],[228,544],[745,696],[204,882],[798,64],[175,982],[822,671],[895,784],[596,902],[308,95],[487,745],[516,269],[346,505],[989,124],[139,782],[593,792],[242,429],[34,314],[756,858],[81,985],[240,378],[90,450],[497,537],[616,825],[420,873],[570,970],[426,604],[748,654],[79,560],[661,60],[682,477],[194,629],[749,925],[325,176],[101,281],[889,550],[338,875],[689,51],[659,489],[299,55],[463,554],[958,745],[143,955],[113,173],[960,60],[1,184],[686,189],[182,85],[415,240],[672,136],[959,194],[73,469],[76,998],[547,200],[685,680],[931,747],[205,677],[775,528],[131,737],[832,222],[311,229],[787,149],[552,761],[460,409],[432,176],[424,287],[153,388],[18,284],[917,809],[740,361],[639,701],[719,851],[68,769],[720,231],[155,830],[270,773],[676,256],[539,691],[519,624],[343,497],[952,943],[401,58],[700,305],[375,361],[820,696],[634,98],[244,483],[801,510],[562,199],[75,86],[467,399],[945,76],[635,575],[554,601],[252,736],[830,115],[383,479],[641,963],[751,621],[450,968],[849,285],[724,713],[207,315],[568,702],[308,232],[856,67],[566,56],[195,633],[741,789],[451,974],[680,785],[159,750],[568,473],[775,92],[872,296],[987,486],[541,402],[724,865],[424,185],[136,553],[652,153],[646,862],[58,364],[413,229],[461,414],[126,812],[837,215],[830,756],[499,397],[36,542],[175,490],[237,457],[222,886],[832,742],[713,128],[618,714],[861,95],[865,618],[78,485],[708,44],[181,574],[338,290],[20,655],[111,894],[388,283],[594,876],[420,834],[296,100],[829,669],[176,361],[996,367],[761,236],[752,17],[658,737],[226,478],[953,566],[319,626],[971,967],[953,562],[6,300],[544,755],[895,410],[63,194],[194,575],[396,846],[583,724],[182,964],[328,505],[159,468],[340,30],[160,190],[691,199],[273,173],[368,805],[177,477],[396,77],[416,734],[342,519],[161,40],[949,493],[623,955],[792,342],[797,876],[201,89],[984,903],[747,183],[935,37],[339,53],[330,275],[136,236],[987,784],[706,437],[767,307],[304,788],[193,562],[635,932],[853,415],[415,743],[145,199],[909,218],[940,784],[183,86],[545,92],[371,615],[70,233],[268,517],[609,165],[81,754],[633,654],[497,230],[648,821],[178,380],[199,575],[376,47],[518,430],[551,322],[124,331],[372,222],[437,523],[996,600],[203,703],[34,337],[529,340],[334,205],[655,475],[848,232],[628,108],[781,460],[387,433],[495,836],[17,757],[456,626],[680,567],[567,620],[845,480],[909,770],[731,822],[193,334],[528,659],[309,374],[599,445],[699,109],[755,690],[646,458],[166,605],[609,684],[502,676],[554,534],[386,300],[556,974],[552,899],[153,303],[939,339],[435,912],[28,720],[928,80],[304,192],[278,631],[281,167],[270,109],[643,311],[754,539],[86,758],[783,498],[132,138],[414,272],[381,529],[840,96],[943,910],[184,897],[161,530],[694,987],[325,765],[724,977],[525,928],[614,407],[12,178],[524,903],[242,515],[439,66],[905,36],[947,301],[302,108],[759,424],[946,956],[853,431],[381,761],[306,961],[597,711],[386,235],[753,420],[308,772],[934,376],[6,852],[654,556],[785,862],[334,568],[266,39],[959,889],[829,40],[921,859],[846,614],[80,681],[22,516],[868,348],[176,725],[870,292],[968,794],[254,68],[416,308],[315,694],[13,208],[683,719],[267,550],[840,459],[952,195],[897,111],[565,821],[675,494],[233,436],[140,537],[412,62],[46,173],[942,492],[426,569],[77,516],[306,307],[52,277],[864,236],[151,160],[265,793],[496,295],[409,528],[83,601],[460,839],[65,381],[842,428],[920,447],[790,970],[322,513],[89,137],[387,977],[212,975],[668,85],[719,675],[313,865],[978,147],[735,995],[121,102],[383,447],[829,83],[487,964],[587,999],[846,28],[403,646],[977,574],[996,954],[747,14],[890,859],[995,754],[893,203],[362,71],[192,227],[817,99],[784,274],[157,942],[715,501],[427,801],[666,185],[90,656],[841,130],[765,444],[493,297],[150,775],[521,551],[236,776],[856,518],[911,371],[406,747],[492,634],[779,13],[292,336],[19,902],[914,317],[680,662],[265,592],[445,142],[520,537],[719,603],[9,783],[281,726],[82,863],[267,874],[412,227],[482,210],[328,86],[337,737],[217,755],[643,919],[177,139],[115,457],[510,129],[969,965],[474,85],[246,212],[625,182],[683,556],[133,411],[311,697],[190,702],[525,529],[608,497],[785,159],[247,989],[790,907],[867,680],[529,407],[451,619],[554,321],[680,548],[251,688],[847,792],[773,713],[303,723],[663,124],[922,6],[583,875],[893,689],[663,675],[476,508],[308,546],[537,82],[66,805],[742,382],[673,98],[102,274],[498,395],[366,861],[607,371],[811,792],[980,659],[90,754],[371,62],[123,671],[55,451],[237,672],[417,263],[280,228],[572,332],[784,178],[162,547],[173,52],[934,739],[508,829],[827,899],[668,121],[109,443],[601,727],[31,247],[695,752],[932,392],[529,969],[253,641],[926,881],[486,983],[736,877],[63,488],[246,249],[711,285],[113,85],[989,161],[116,858],[402,707],[586,222],[693,415],[199,953],[608,442],[794,900],[270,762],[256,765],[896,376],[670,818],[444,585],[382,195],[50,346],[435,827],[322,755],[752,754],[341,342],[540,110],[933,688],[743,429],[144,617],[91,163],[108,211],[839,66],[770,139],[135,662],[104,397],[753,728],[391,406],[804,109],[766,824],[515,877],[423,694],[721,68],[154,151],[374,616],[894,115],[204,237],[661,13],[370,854],[772,731],[536,36],[430,533],[652,920],[366,606],[24,987],[503,777],[362,223],[270,959],[502,452],[577,454],[123,194],[420,1000],[230,832],[74,187],[497,139],[967,795],[519,353],[911,4],[752,222],[767,737],[726,951],[825,258],[435,356],[973,281],[966,722],[170,246],[211,546],[33,404],[328,748],[488,463],[353,417],[24,968],[942,428],[629,614],[657,117],[996,989],[739,432],[235,750],[496,888],[475,410],[232,623],[399,525],[83,341],[141,783],[813,869],[625,954],[808,559],[334,615],[633,176],[842,335],[708,154],[206,41],[584,63],[51,737],[869,690],[168,393],[355,974],[528,765],[605,462],[784,852],[813,95],[169,369],[396,245],[496,683],[455,530],[177,870],[256,917],[339,297],[866,151],[685,588],[877,288],[428,748],[620,403],[553,583],[705,634],[103,737],[973,453],[484,369],[957,423],[462,362],[400,592],[426,625],[536,374],[367,125],[935,995],[684,514],[253,577],[126,726],[607,474],[13,829],[769,679],[594,254],[339,283],[845,367],[995,799],[1,428],[572,773],[54,466],[684,494],[381,409],[379,539],[794,668],[949,447],[934,495],[942,739],[535,526],[140,886],[924,437],[6,624],[484,360],[336,961],[966,729],[313,771],[68,801],[453,120],[300,153],[416,643],[717,477],[22,913],[78,286],[803,310],[710,4],[536,229],[655,150],[544,134],[880,175],[364,845],[832,551],[986,674],[163,747],[926,1000],[863,622],[973,944],[854,80],[163,426],[908,789],[46,190],[16,363],[958,528],[276,568],[959,219],[365,286],[290,620],[307,761],[970,797],[503,723],[13,808],[214,353],[366,611],[494,53],[826,4],[960,989],[720,985],[571,281],[746,226],[487,782],[740,751],[1000,761],[45,697],[991,254],[713,710],[452,104],[67,549],[898,384],[642,816],[581,510],[34,119],[419,614],[377,711],[570,839],[631,376],[606,834],[662,374],[763,736],[99,59],[904,635],[206,284],[224,84],[963,665],[742,893],[181,847],[419,821],[1000,14],[855,273],[834,680],[573,985],[581,624],[827,350],[229,283],[601,912],[355,78],[575,716],[907,825],[838,965],[575,807],[134,552],[254,855],[595,770],[741,755],[596,228],[344,883],[444,542],[769,643],[212,260],[486,933],[450,905],[316,72],[903,479],[890,580],[904,560],[285,901],[400,241],[700,725],[258,25],[904,458],[840,600],[522,988],[646,80],[680,16],[101,291],[145,130],[172,908],[519,974],[533,434],[917,369],[375,372],[60,211],[303,509],[937,713],[858,819],[573,700],[810,638],[407,258],[805,788],[622,679],[419,20],[977,79],[882,588],[689,547],[272,10],[983,12],[77,22],[646,225],[803,532],[809,502],[902,795],[39,832],[118,15],[95,874],[725,603],[604,625],[369,595],[172,275],[293,551],[293,519],[61,205],[167,318],[339,174],[627,955],[459,982],[72,802],[224,686],[110,759],[384,901],[423,868],[687,953],[317,612],[806,667],[977,459],[9,218],[553,884],[196,875],[680,49],[70,658],[158,439],[870,620],[23,299],[613,940],[587,75],[770,317],[996,190],[199,144],[405,705],[368,132],[524,703],[944,809],[95,749],[575,517],[400,323],[297,608],[663,382],[713,607],[498,383],[245,662],[74,484],[614,170],[99,514],[235,454],[70,458],[93,122],[657,837],[476,245],[45,910],[295,937],[417,542],[767,331],[403,83],[313,562],[710,803],[363,779],[294,285],[279,838],[366,182],[220,187],[191,426],[979,587],[727,134],[491,797],[288,45],[517,953],[138,590],[696,290],[787,266],[84,994],[215,8],[86,37],[762,188],[801,183],[999,732],[295,853],[394,39],[538,58],[304,344],[58,688],[671,178],[90,107],[459,640],[121,614],[685,128],[909,931],[414,50],[179,534],[72,433],[8,130],[289,797],[508,813],[337,21],[138,432],[911,880],[965,531],[461,675],[437,399],[263,802],[429,614],[547,999],[549,319],[302,889],[60,742],[297,745],[872,941],[579,6],[389,82],[363,423],[283,627],[496,225],[731,205],[5,663],[268,713],[826,107],[485,377],[808,15],[670,651],[954,532],[105,56],[44,315],[646,73],[136,31],[498,505],[522,479],[667,187],[70,1000],[409,690],[510,162],[979,511],[103,318],[516,794],[142,264],[93,139],[733,663],[736,739],[598,359],[751,109],[483,675],[973,7],[969,801],[762,443],[116,259],[737,261],[120,874],[931,585],[619,459],[926,759],[188,524],[781,473],[430,545],[913,243],[708,192],[567,779],[622,535],[874,496],[523,957],[786,809],[639,776],[526,848],[879,268],[681,566],[349,431],[712,779],[138,286],[994,581],[406,755],[412,664],[215,92],[526,700],[553,285],[325,904],[193,210],[528,531],[502,452],[728,419],[984,596],[754,251],[526,80],[505,913],[399,998],[612,192],[690,626],[892,866],[845,7],[279,613],[158,392],[582,406],[229,244],[421,327],[80,906],[486,846],[665,809],[736,876],[666,115],[85,973],[122,299],[649,691],[289,297],[482,441],[399,25],[671,735],[241,105],[813,32],[469,781],[717,978],[452,971],[754,1000],[792,648],[772,514],[400,957],[592,685],[887,31],[957,55],[412,840],[579,281],[61,750],[518,199],[152,906],[159,738],[933,686],[5,491],[429,302],[933,186],[792,843],[341,251],[944,486],[322,567],[303,219],[605,284],[240,411],[505,231],[141,302],[88,268],[586,792],[85,568],[992,92],[710,361],[53,806],[346,842],[988,856],[64,717],[985,693],[456,866],[894,231],[862,206],[251,647],[324,740],[825,88],[782,827],[673,460],[177,396],[865,468],[798,579],[709,320],[216,560],[690,901],[60,536],[830,799],[771,464],[908,274],[903,250],[871,65],[720,805],[115,444],[123,609],[562,705],[876,373],[293,779],[32,866],[416,222],[452,736],[766,646],[359,19],[791,326],[577,315],[642,734],[220,212],[643,173],[193,962],[276,583],[605,48],[355,528],[407,915],[296,887],[528,588],[537,291],[962,94],[746,636],[324,635],[220,218],[634,654],[142,980],[364,260],[200,584],[184,641],[625,19],[160,985],[574,390],[381,710],[70,891],[634,99],[770,794],[978,164],[242,431],[251,835],[346,284],[107,687],[888,455],[490,424],[566,26],[16,853],[837,808],[188,377],[453,289],[772,953],[504,660],[957,339],[856,386],[353,951],[420,360],[285,696],[232,594],[561,73],[246,338],[909,721],[33,499],[234,340],[139,264],[800,201],[832,121],[41,908],[377,66],[20,693],[769,831],[359,816],[843,918],[862,798],[361,86],[229,712],[876,163],[313,618],[655,3],[251,282],[54,894],[755,25],[203,359],[64,944],[469,143],[296,895],[625,273],[922,790],[422,962],[402,545],[412,161],[576,817],[110,539],[516,914],[481,404],[95,668],[428,198],[601,887],[219,949],[886,208],[6,397],[787,260],[390,48],[873,194],[225,755],[134,167],[576,969],[179,323],[590,395],[102,639],[413,435],[474,875],[215,751],[417,434],[339,234],[2,526],[673,707],[957,199],[441,266],[163,398],[225,325],[427,662],[380,748],[302,442],[477,264],[388,594],[743,780],[85,433],[219,987],[884,766],[24,559],[820,220],[955,15],[562,221],[933,846],[802,369],[913,454],[480,854],[88,674],[692,484],[121,801],[782,914],[408,607],[291,499],[524,861],[988,677],[553,16],[172,194],[997,611],[512,624],[73,394],[805,664],[277,253],[137,947],[912,304],[576,796],[852,337],[467,392],[65,443],[869,515],[37,185],[784,851],[833,669],[858,773],[141,730],[280,396],[497,850],[989,120],[357,290],[254,456],[44,223],[248,65],[344,133],[922,495],[262,740],[628,926],[194,398],[694,420],[996,897],[453,281],[700,575],[600,741],[169,845],[217,13],[558,91],[24,203],[334,479],[620,479],[336,307],[435,826],[519,551],[901,402],[587,765],[586,648],[630,702],[458,261],[996,838],[593,845],[983,612],[90,812],[518,821],[746,462],[102,782],[523,730],[695,75],[522,470],[654,477],[256,23],[33,439],[978,48],[320,109],[563,24],[924,787],[54,846],[72,542],[593,924],[750,214],[866,642],[827,321],[860,723],[281,20],[98,700],[500,135],[969,848],[927,893],[374,610],[463,257],[809,241],[451,935],[677,572],[337,44],[722,397],[717,296],[79,630],[23,315],[71,681],[990,565],[8,321],[549,947],[814,170],[385,354],[878,472],[913,357],[779,907],[412,211],[180,337],[463,40],[897,659],[922,64],[217,846],[973,10],[728,138],[855,559],[285,70],[108,637],[934,214],[401,934],[676,168],[573,304],[177,731],[883,110],[353,893],[17,441],[864,894],[893,342],[253,202],[439,519],[126,727],[310,929],[58,268],[393,497],[216,254],[215,526],[24,585],[227,635],[640,405],[666,146],[844,230],[972,209],[118,659],[126,899],[302,703],[838,257],[956,410],[417,933],[745,20],[244,295],[963,821],[705,703],[425,757],[82,281],[466,340],[89,203],[202,808],[404,78],[340,238],[990,136],[433,966],[850,603],[429,799],[294,234],[264,368],[927,586],[699,697],[188,21],[245,18],[877,909],[682,454],[237,40],[843,4],[780,807],[95,664],[686,247],[704,684],[788,610],[951,47],[291,793],[477,506],[602,295],[404,771],[250,508],[87,877],[77,39],[698,245],[951,431],[213,608],[558,99],[854,591],[14,863],[641,727],[823,984],[546,208],[346,106],[962,304],[501,91],[237,592],[521,360],[540,22],[53,854],[57,139],[761,205],[3,922],[737,61],[895,505],[675,37],[955,799],[482,14],[546,361],[226,614],[506,457],[22,497],[396,818],[368,493],[369,551],[344,400],[204,488],[17,47],[942,862],[458,847],[420,384],[632,17],[669,372],[384,701],[601,553],[360,724],[431,354],[928,744],[627,652],[252,994],[77,199],[687,241],[433,464],[4,980],[12,940],[444,592],[849,931],[671,43],[836,509],[61,453],[692,74],[385,995],[58,212],[7,994],[169,969],[435,96],[877,23],[428,901],[703,24],[341,795],[47,68],[945,197],[628,775],[180,22],[952,800],[621,763],[235,892],[166,516],[178,420],[560,820],[212,644],[846,562],[853,921],[907,216],[723,294],[805,391],[562,260],[40,444],[961,731],[933,916],[716,449],[918,418],[703,183],[215,521],[271,512],[565,413],[620,771],[971,821],[746,819],[797,49],[293,675],[584,394],[296,367],[222,890],[724,300],[60,235],[490,474],[764,543],[844,586],[82,124],[46,888],[936,544],[839,147],[988,718],[536,754],[309,983],[22,888],[876,234],[178,601],[850,93],[665,709],[593,104],[981,912],[107,502],[14,577],[310,576],[58,922],[56,749],[381,761],[408,60],[910,926],[244,414],[920,278],[676,365],[69,55],[116,212],[862,29],[204,253],[868,871],[802,303],[347,686],[879,2],[683,539],[859,515],[238,448],[421,745],[128,929],[453,952],[660,690],[953,17],[342,155],[219,839],[195,213],[285,314],[852,410],[776,476],[352,684],[735,274],[306,62],[662,648],[833,148],[71,979],[662,701],[212,199],[733,605],[868,3],[505,97],[595,925],[24,651],[818,961],[411,441],[278,864],[158,96],[886,60],[786,791],[29,218],[848,891],[398,741],[716,779],[936,731],[381,980],[574,457],[592,42],[514,728],[134,15],[763,870],[46,143],[425,674],[289,22],[115,985],[364,886],[470,628],[127,838],[852,925],[892,768],[208,745],[820,786],[689,98],[122,272],[124,656],[818,589],[425,698],[370,683],[64,314],[97,66],[708,107],[208,179],[493,545],[162,804],[711,285],[417,518],[777,120],[40,835],[39,959],[182,476],[619,2],[957,822],[457,656],[12,281],[165,215],[670,386],[903,553],[234,988],[696,300],[781,263],[551,153],[798,10],[144,272],[812,687],[788,236],[509,558],[78,171],[996,961],[300,738],[835,559],[43,794],[803,429],[580,510],[808,254],[6,208],[132,311],[90,783],[400,454],[995,404],[773,572],[62,131],[777,59],[154,282],[777,729],[856,733],[862,994],[844,560],[84,367],[931,914],[553,567],[926,925],[410,829],[342,596],[540,278],[125,529],[171,578],[705,926],[359,390],[375,466],[450,336],[797,55],[937,936],[579,780],[283,641],[154,304],[539,267],[176,57],[959,26],[122,215],[279,913],[206,90],[102,611],[849,435],[43,664],[239,265],[601,309],[552,506],[579,868],[966,852],[624,328],[435,949],[397,195],[809,678],[247,859],[507,616],[620,149],[886,781],[766,707],[202,569],[724,952],[867,927],[349,217],[327,578],[148,78],[535,825],[927,417],[381,345],[645,12],[728,820],[751,150],[52,396],[917,824],[624,269],[393,753],[959,39],[710,329],[274,759],[351,726],[211,869],[188,811],[934,538],[458,173],[95,30],[838,856],[248,58],[449,652],[399,939],[743,250],[283,598],[187,775],[245,605],[597,504],[653,402],[445,222],[896,452],[665,144],[750,67],[556,182],[994,891],[635,729],[549,426],[732,950],[700,14],[377,241],[737,435],[152,695],[493,664],[301,485],[734,796],[532,863],[328,113],[822,206],[825,477],[509,367],[490,110],[458,268],[457,73],[657,941],[978,25],[17,405],[628,942],[58,157],[650,315],[940,952],[347,389],[315,359],[654,11],[481,926],[400,880],[684,569],[408,679],[700,717],[427,98],[315,788],[987,616],[417,547],[548,591],[910,59],[464,992],[477,739],[469,172],[266,545],[141,813],[343,140],[372,54],[661,995],[267,458],[548,856],[430,100],[553,737],[645,925],[489,717],[162,891],[141,874],[336,120],[230,637],[922,730],[330,510],[877,497],[665,739],[376,465],[36,169],[830,364],[274,37],[395,854],[40,75],[100,744],[727,198],[191,982],[216,209],[573,39],[955,190],[727,718],[438,523],[357,347],[210,824],[555,994],[736,457],[899,189],[401,552],[651,220],[389,250],[464,883],[333,5],[463,149],[108,300],[321,844],[727,378],[916,312],[530,409],[435,521],[742,648],[339,353],[367,152],[575,705],[618,484],[934,939],[703,167],[848,508],[685,380],[747,209],[906,606],[548,319],[590,261],[93,885],[292,587],[737,735],[813,21],[478,1000],[58,348],[586,482],[983,691],[308,269],[819,373],[420,77],[395,470],[464,768],[120,285],[330,470],[836,890],[439,480],[518,428],[514,821],[690,552],[289,160],[537,578],[321,382],[479,121],[424,608],[712,368],[433,567],[215,69],[994,633],[155,664],[418,114],[385,373],[213,954],[432,485],[172,632],[693,667],[776,808],[905,495],[443,434],[989,157],[159,949],[712,733],[804,731],[797,10],[720,398],[508,190],[613,506],[414,953],[41,779],[664,428],[757,512],[80,814],[18,796],[504,656],[81,124],[2,451],[25,91],[726,529],[11,928],[967,709],[285,241],[525,609],[59,414],[599,305],[931,616],[411,524],[500,877],[512,240],[247,323],[926,698],[375,276],[316,28],[803,463],[448,304],[43,369],[239,76],[477,685],[675,94],[179,769],[255,854],[264,442],[766,214],[325,787],[189,612],[651,184],[62,874],[778,612],[576,428],[207,493],[2,418],[151,766],[947,640],[171,722],[758,782],[648,225],[984,749],[307,131],[312,99],[252,759],[499,48],[282,459],[363,634],[963,410],[148,816],[558,110],[929,572],[881,850],[627,823],[309,192],[88,655],[577,181],[153,526],[958,890],[963,157],[721,376],[169,17],[560,271],[803,321],[822,609],[709,299],[135,337],[683,184],[531,312],[731,761],[211,160],[191,775],[620,812],[125,419],[755,841],[396,569],[329,505],[701,622],[652,904],[890,810],[649,235],[46,144],[82,126],[664,961],[426,407],[120,525],[337,835],[174,331],[267,790],[896,625],[609,622],[101,832],[749,580],[7,426],[794,339],[533,639],[252,621],[118,497],[251,432],[457,778],[88,395],[26,455],[993,689],[347,206],[972,255],[594,842],[494,158],[527,947],[797,591],[552,272],[958,81],[859,344],[664,178],[660,750],[270,948],[220,616],[243,378],[975,60],[740,777],[446,807],[147,986],[236,85],[175,326],[357,684],[132,559],[286,872],[146,585],[577,824],[657,740],[46,900],[989,261],[228,754],[431,180],[125,732],[705,926],[870,202],[548,11],[6,161],[598,83],[128,355],[433,36],[497,888],[91,913],[768,643],[835,570],[876,154],[57,335],[982,397],[100,918],[287,22],[200,670],[90,367],[299,240],[24,34],[691,527],[419,986],[511,439],[449,572],[264,479],[595,30],[67,349],[655,325],[854,329],[939,88],[454,330],[853,494],[777,385],[253,842],[28,480],[753,442],[680,503],[193,684],[79,794],[923,151],[638,528],[950,68],[466,889],[601,270],[201,770],[911,958],[8,851],[611,280],[973,529],[389,964],[36,664],[391,815],[740,397],[765,9],[903,153],[858,814],[506,292],[437,908],[761,1000],[241,187],[172,553],[563,90],[11,443],[87,437],[273,378],[790,74],[927,776],[726,615],[454,683],[941,846],[830,862],[105,358],[345,279],[546,864],[753,451],[742,587],[151,828],[888,238],[787,775],[612,640],[703,236],[534,370],[112,504],[339,323],[644,945],[306,663],[431,940],[668,216],[54,83],[646,685],[283,38],[285,636],[305,439],[29,376],[768,732],[252,632],[795,924],[570,798],[416,889],[15,160],[764,210],[327,663],[843,949],[436,60],[494,103],[111,834],[991,592],[101,153],[552,50],[990,589],[314,891],[469,132],[375,911],[349,787],[497,758],[125,43],[646,640],[979,572],[401,274],[466,343],[250,444],[365,531],[614,534],[352,706],[853,896],[504,173],[778,10],[783,657],[865,277],[89,545],[70,220],[220,291],[985,588],[919,568],[550,557],[352,973],[534,374],[863,96],[23,95],[932,523],[438,152],[63,121],[910,175],[601,740],[564,843],[594,21],[399,803],[523,152],[478,841],[502,704],[389,873],[112,964],[778,423],[503,706],[883,44],[781,861],[977,757],[195,999],[666,451],[752,909],[723,252],[762,399],[321,184],[499,61],[389,397],[851,753],[163,178],[841,658],[360,952],[803,656],[486,146],[434,12],[401,182],[237,137],[246,193],[693,320],[303,351],[292,810],[379,371],[646,939],[660,406],[129,29],[408,836],[184,742],[561,603],[648,292],[688,941],[815,751],[725,169],[134,548],[865,74],[216,16],[260,38],[249,12],[804,495],[135,776],[206,678],[611,278],[425,96],[523,24],[389,38],[761,987],[368,114],[810,186],[988,1000],[365,363],[597,132],[64,172],[589,393],[978,359],[62,623],[984,595],[348,776],[849,350],[852,641],[157,583],[105,292],[175,808],[77,791],[421,997],[175,245],[899,410],[965,959],[338,25],[478,711],[480,427],[61,432],[879,874],[735,978],[308,102],[179,885],[719,427],[112,271],[237,520],[714,786],[7,796],[843,395],[84,888],[537,369],[372,851],[588,169],[738,453],[903,655],[140,912],[841,573],[222,359],[858,715],[449,998],[392,993],[346,680],[988,876],[84,37],[416,630],[768,614],[438,435],[901,440],[988,232],[436,67],[151,753],[357,40],[647,650],[399,984],[872,110],[830,227],[865,317],[99,799],[644,818],[782,153],[999,983],[969,317],[38,650],[341,561],[390,963],[756,305],[332,456],[207,410],[349,32],[514,652],[254,280],[749,863],[14,679],[999,848],[203,115],[669,581],[922,397],[126,571],[462,257],[239,342],[520,53],[445,964],[564,15],[346,759],[233,540],[778,404],[541,374],[291,472],[750,461],[193,931],[916,29],[692,331],[734,906],[654,803],[354,428],[848,31],[83,444],[782,833],[848,771],[681,858],[698,380],[906,809],[89,157],[314,466],[594,296],[93,301],[728,499],[675,374],[229,70],[238,434],[485,187],[107,260],[818,247],[477,339],[633,732],[222,263],[564,812],[564,271],[269,19],[629,574],[197,788],[213,183],[591,700],[65,267],[790,5],[933,538],[430,203],[856,512],[462,384],[69,194],[712,867],[702,259],[145,134],[88,622],[359,200],[882,622],[598,991],[902,376],[554,805],[122,287],[911,789],[768,527],[652,450],[113,318],[100,510],[499,138],[147,59],[236,986],[663,383],[674,761],[926,507],[961,782],[894,558],[974,151],[886,174],[15,688],[670,281],[664,251],[181,608],[942,157],[135,106],[573,540],[461,328],[610,477],[144,441],[140,286],[349,992],[540,616],[976,45],[158,426],[487,677],[462,41],[527,803],[894,433],[55,976],[735,927],[467,962],[89,711],[391,872],[207,500],[195,877],[833,783],[904,323],[820,103],[707,32],[354,142],[783,95],[75,129],[468,59],[563,540],[571,335],[289,345],[815,625],[244,351],[448,810],[796,483],[232,285],[231,805],[135,928],[426,991],[910,643],[879,895],[725,163],[194,103],[803,78],[791,803],[483,328],[94,208],[733,513],[949,991],[501,159],[521,469],[981,674],[849,484],[730,460],[862,116],[757,502],[454,783],[936,10],[589,284],[929,779],[509,451],[997,503],[382,697],[476,668],[696,234],[924,452],[723,197],[932,773],[544,959],[864,828],[802,448],[369,60],[1,71],[142,239],[420,384],[457,493],[272,224],[372,974],[584,301],[978,842],[882,234],[462,49],[86,372],[129,174],[62,566],[936,905],[552,990],[325,318],[734,138],[239,512],[109,569],[461,559],[95,117],[390,998],[392,311],[25,241],[224,713],[397,88],[152,246],[551,589],[192,240],[682,389],[843,131],[704,504],[762,594],[780,679],[806,959],[680,670],[904,753],[560,209],[776,624],[395,196],[214,109],[828,907],[939,534],[275,785],[984,146],[386,86],[509,32],[703,140],[665,510],[509,317],[968,304],[209,137],[445,125],[308,390],[663,160],[118,689],[695,718],[563,483],[789,38],[131,602],[29,257],[915,127],[354,193],[775,740],[640,686],[48,447],[256,826],[858,703],[913,855],[304,617],[816,326],[671,499],[576,962],[483,599],[861,795],[227,555],[249,945],[181,289],[875,275],[763,523],[615,213],[291,768],[180,291],[322,624],[809,435],[809,699],[78,456],[901,414],[506,258],[923,163],[623,172],[706,427],[894,10],[544,872],[420,21],[87,607],[138,208],[749,882],[490,122],[442,236],[532,257],[242,864],[942,14],[790,876],[178,962],[588,568],[283,753],[648,849],[977,680],[191,969],[296,648],[195,276],[842,479],[412,371],[872,603],[458,187],[431,993],[546,3],[309,182],[780,970],[509,663],[903,971],[300,831],[336,550],[454,325],[461,471],[371,530],[898,5],[555,829],[351,219],[811,906],[837,352],[316,232],[131,871],[141,989],[35,23],[569,962],[413,684],[425,779],[456,43],[802,149],[554,401],[658,802],[392,248],[466,999],[210,162],[774,409],[304,273],[479,336],[177,986],[749,914],[38,103],[306,88],[669,386],[244,774],[315,460],[91,278],[754,410],[980,675],[674,392],[424,141],[707,935],[704,468],[590,628],[294,976],[194,689],[855,632],[847,407],[265,33],[602,569],[16,824],[443,349],[211,394],[705,482],[623,793],[195,943],[696,239],[634,45],[619,922],[811,234],[611,180],[934,905],[463,685],[80,283],[258,11],[966,462],[327,898],[242,525],[323,64],[936,121],[434,912],[421,894],[273,55],[420,480],[241,216],[219,383],[66,855],[121,852],[109,404],[894,665],[281,51],[93,651],[63,969],[207,581],[416,476],[554,691],[843,967],[541,700],[370,990],[394,709],[157,298],[490,971],[800,169],[48,445],[62,14],[842,899],[714,960],[76,536],[580,916],[319,193],[785,267],[874,818],[582,219],[823,524],[381,171],[647,685],[860,750],[590,710],[174,489],[344,195],[853,689],[526,890],[313,750],[419,144],[332,915],[770,138],[334,229],[113,108],[157,52],[339,18],[16,506],[279,133],[446,626],[448,306],[390,365],[174,328],[131,842],[240,517],[215,205],[258,138],[171,869],[171,971],[692,99],[128,359],[639,42],[214,127],[397,271],[690,842],[934,661],[66,505],[312,552],[406,677],[2,581],[318,152],[887,995],[418,327],[908,121],[751,470],[954,739],[701,25],[919,677],[139,579],[345,461],[260,544],[959,222],[842,141],[977,83],[194,338],[517,630],[795,780],[384,263],[234,895],[630,398],[903,802],[646,64],[663,864],[485,427],[220,302],[822,175],[85,786],[828,179],[89,486],[221,221],[244,297],[688,571],[990,854],[468,197],[512,657],[267,42],[259,855],[273,113],[312,31],[636,754],[945,129],[6,638],[752,210],[973,614],[971,275],[609,367],[797,713],[586,327],[169,369],[548,182],[809,541],[555,894],[745,930],[447,948],[522,508],[184,414],[882,172],[37,998],[265,248],[992,847],[451,244],[439,275],[582,665],[993,572],[664,749],[968,631],[559,761],[425,582],[115,816],[39,422],[326,867],[361,315],[519,30],[469,410],[606,552],[376,874],[792,344],[557,221],[57,459],[732,883],[730,716],[249,314],[89,731],[858,835],[810,986],[964,189],[528,857],[619,266],[807,368],[507,495],[520,388],[218,205],[445,666],[315,382],[581,152],[771,355],[615,135],[117,689],[126,138],[494,956],[566,949],[319,403],[591,899],[327,304],[843,401],[446,491],[304,154],[162,372],[7,832],[511,838],[723,189],[852,961],[23,626],[555,803],[395,644],[84,479],[181,1000],[58,265],[348,812],[783,946],[801,455],[269,396],[927,165],[180,751],[974,74],[165,352],[671,812],[274,248],[282,90],[877,712],[470,956],[762,804],[452,338],[388,982],[829,164],[220,326],[411,775],[251,23],[121,715],[361,139],[710,756],[244,140],[452,603],[36,428],[318,738],[520,664],[995,496],[991,458],[99,705],[287,790],[621,446],[839,895],[613,512],[322,959],[361,866],[160,946],[151,665],[542,518],[397,945],[169,108],[564,111],[769,445],[827,437],[558,801],[613,496],[755,474],[867,338],[602,311],[545,911],[481,400],[252,979],[201,108],[349,717],[895,338],[127,756],[616,443],[883,964],[94,311],[286,62],[331,288],[373,845],[563,202],[506,398],[717,241],[653,398],[642,935],[814,66],[588,369],[487,81],[875,684],[246,698],[214,386],[377,454],[184,480],[952,335],[187,188],[805,872],[109,950],[496,235],[615,116],[262,797],[627,806],[692,443],[830,53],[98,238],[789,566],[380,771],[429,767],[500,958],[21,714],[693,617],[170,45],[826,519],[335,276],[36,877],[252,972],[401,426],[568,425],[602,261],[388,357],[830,22],[327,847],[642,528],[232,471],[941,310],[730,38],[621,964],[962,381],[837,417],[752,685],[832,983],[104,679],[963,27],[541,68],[241,184],[48,194],[983,517],[476,635],[990,800],[132,149],[965,187],[757,47],[532,342],[370,980],[222,80],[495,85],[878,893],[944,435],[687,449],[761,782],[810,68],[342,257],[652,241],[390,583],[494,138],[964,59],[420,218],[750,676],[165,42],[879,123],[294,616],[22,200],[927,546],[721,85],[507,394],[1000,515],[712,97],[889,444],[846,50],[357,832],[91,183],[501,554],[485,691],[147,855],[786,513],[109,914],[515,342],[995,979],[749,443],[556,28],[563,378],[593,211],[278,104],[11,962],[78,280],[928,79],[843,996],[586,775],[811,763],[965,630],[166,869],[452,902],[894,448],[476,256],[871,303],[962,463],[830,461],[111,155],[25,872],[473,384],[887,505],[624,50],[530,721],[920,564],[283,815],[71,291],[42,405],[558,623],[778,447],[717,364],[575,288],[728,791],[686,156],[316,276],[268,74],[571,925],[224,729],[328,522],[449,361],[172,528],[375,464],[601,227],[878,238],[386,197],[706,176],[732,490],[516,874],[190,444],[920,181],[959,330],[635,94],[352,475],[353,664],[203,160],[348,369],[820,992],[760,180],[348,905],[68,915],[692,559],[218,685],[172,504],[335,870],[243,225],[214,352],[808,887],[958,705],[403,254],[166,591],[625,735],[605,119],[523,410],[841,569],[99,11],[416,977],[994,437],[98,658],[724,744],[694,368],[412,609],[845,963],[814,214],[881,290],[498,745],[791,526],[870,345],[416,884],[534,207],[605,308],[985,199],[706,982],[223,576],[790,407],[365,258],[984,226],[401,575],[812,781],[457,905],[420,189],[701,687],[425,532],[270,13],[695,650],[596,393],[303,359],[660,778],[167,330],[781,229],[783,59],[310,363],[773,727],[219,536],[305,645],[716,690],[909,455],[580,406],[797,539],[926,746],[171,203],[922,466],[186,722],[578,628],[940,87],[291,181],[805,584],[313,740],[472,200],[28,631],[575,780],[641,167],[89,465],[862,287],[724,831],[738,741],[1000,100],[369,700],[440,259],[506,736],[81,177],[3,936],[739,166],[490,9],[89,402],[426,613],[138,308],[880,278],[715,286],[74,299],[33,904],[352,614],[59,652],[102,160],[177,60],[994,296],[728,473],[660,480],[512,468],[802,181],[208,836],[797,454],[237,160],[500,364],[448,522],[379,657],[497,945],[234,344],[395,990],[119,327],[970,291],[177,706],[481,3],[635,31],[183,942],[466,191],[264,923],[638,889],[962,626],[666,474],[941,528],[702,38],[47,158],[940,954],[564,818],[359,988],[4,582],[553,9],[612,187],[67,287],[230,384],[399,803],[30,482],[547,641],[697,961],[676,199],[759,225],[768,479],[881,38],[287,789],[200,698],[463,218],[482,775],[988,131],[532,627],[236,858],[724,97],[281,96],[245,680],[161,292],[492,592],[401,210],[853,763],[666,484],[551,813],[252,20],[706,679],[431,532],[89,874],[808,782],[34,660],[871,82],[370,747],[726,9],[814,221],[976,906],[450,871],[818,162],[43,157],[111,749],[295,872],[701,369],[329,160],[574,578],[169,516],[105,801],[105,433],[64,978],[774,456],[394,973],[651,374],[923,501],[497,222],[76,108],[408,239],[762,148],[598,541],[483,35],[829,783],[631,298],[268,668],[450,321],[434,347],[274,988],[890,182],[798,471],[156,614],[477,980],[841,11],[265,57],[725,513],[198,461],[749,615],[977,829],[106,463],[163,128],[475,277],[844,998],[199,227],[655,578],[940,144],[121,728],[36,85],[569,883],[628,551],[229,801],[759,699],[481,721],[382,335],[470,602],[768,907],[696,278],[511,321],[349,454],[643,258],[351,188],[539,545],[62,533],[358,176],[987,996],[697,469],[786,459],[16,953],[432,29],[243,118],[838,228],[427,418],[320,296],[413,28],[161,549],[857,931],[279,268],[367,935],[773,344],[111,162],[934,48],[721,438],[880,716],[581,424],[630,751],[144,16],[244,478],[409,894],[593,90],[462,218],[76,690],[859,697],[249,668],[536,565],[629,773],[439,823],[110,180],[71,221],[600,303],[419,819],[500,473],[550,484],[685,51],[655,89],[744,419],[672,437],[867,477],[835,597],[920,845],[220,913],[764,154],[792,764],[398,911],[60,256],[153,395],[432,66],[784,83],[582,366],[628,232],[528,599],[184,1000],[194,668],[40,292],[967,944],[309,703],[201,748],[954,626],[138,202],[79,633],[293,983],[111,698],[752,407],[619,238],[358,493],[752,73],[120,429],[163,88],[500,662],[137,540],[852,521],[460,946],[799,523],[95,225],[442,6],[461,594],[456,919],[678,201],[788,20],[882,180],[337,658],[598,16],[126,689],[68,843],[628,216],[252,944],[654,285],[337,651],[488,378],[474,7],[565,715],[553,738],[621,358],[534,252],[169,245],[258,927],[119,724],[638,187],[2,631],[178,939],[621,713],[152,45],[365,793],[707,576],[802,793],[262,722],[185,50],[90,426],[705,429],[482,316],[474,819],[388,554],[873,698],[921,339],[576,776],[866,378],[215,335],[527,458],[281,183],[973,459],[230,449],[577,610],[591,52],[833,777],[908,108],[494,371],[860,421],[259,754],[258,313],[13,427],[442,376],[485,84],[131,2],[131,626],[547,721],[180,400],[210,66],[282,461],[556,168],[309,740],[19,124],[238,611],[788,619],[83,848],[741,911],[547,24],[966,863],[329,917],[709,173],[622,107],[252,897],[535,646],[132,541],[844,8],[143,764],[219,80],[213,780],[455,910],[368,457],[404,926],[443,85],[448,638],[771,977],[462,516],[650,137],[265,439],[664,205],[428,826],[909,719],[798,665],[995,511],[54,211],[621,942],[674,374],[455,719],[190,188],[396,987],[26,238],[847,538],[879,244],[71,447],[391,752],[192,747],[973,562],[200,558],[495,521],[402,302],[208,440],[655,151],[895,185],[226,188],[393,554],[455,27],[455,431],[527,169],[620,964],[576,687],[828,217],[625,761],[860,547],[798,866],[733,294],[527,281],[243,83],[983,825],[324,374],[938,230],[400,52],[854,191],[398,54],[817,754],[530,500],[380,346],[501,509],[158,911],[900,758],[107,330],[374,128],[393,72],[39,213],[928,163],[848,705],[104,990],[343,630],[604,957],[693,175],[318,31],[207,593],[232,250],[331,822],[245,712],[235,176],[64,890],[59,924],[701,943],[282,222],[804,326],[536,964],[667,641],[822,264],[657,619],[172,783],[866,740],[489,443],[166,951],[827,816],[626,148],[498,301],[806,530],[205,296],[494,500],[255,173],[740,49],[599,962],[961,38],[281,349],[451,499],[144,217],[892,7],[337,873],[620,207],[132,722],[316,932],[80,272],[326,254],[879,585],[477,320],[560,641],[841,145],[342,778],[660,13],[800,477],[771,895],[412,108],[759,288],[603,79],[319,809],[988,756],[947,727],[774,788],[920,41],[587,833],[628,846],[727,830],[732,457],[629,140],[317,260],[777,453],[847,288],[895,690],[580,735],[101,432],[950,382],[827,527],[530,585],[100,846],[433,878],[612,670],[728,951],[617,163],[994,407],[60,834],[588,480],[994,167],[714,822],[285,322],[715,413],[997,871],[634,54],[237,859],[288,836],[528,792],[913,458],[377,543],[367,818],[794,724],[387,64],[449,830],[42,806],[561,276],[730,952],[230,327],[11,563],[879,857],[981,257],[685,291],[7,5],[625,447],[246,466],[4,746],[231,375],[450,22],[86,757],[399,779],[333,737],[253,984],[152,597],[635,249],[777,753],[63,593],[256,140],[782,395],[645,500],[178,337],[346,359],[423,592],[897,171],[46,275],[790,685],[706,774],[200,4],[610,766],[129,287],[915,462],[553,18],[634,984],[146,451],[976,95],[124,745],[754,717],[182,571],[633,978],[612,568],[717,474],[763,30],[890,605],[809,953],[121,361],[480,783],[464,712],[774,198],[28,890],[307,697],[712,741],[65,986],[3,6],[783,893],[311,526],[822,795],[623,835],[449,443],[146,129],[169,336],[12,853],[951,988],[97,801],[616,62],[878,558],[298,37],[360,102],[634,101],[595,893],[791,39],[220,588],[892,603],[863,510],[946,897],[470,164],[795,934],[58,430],[325,506],[816,108],[555,604],[284,559],[950,682],[152,496],[608,223],[821,693],[326,246],[337,32],[352,493],[11,370],[868,53],[786,580],[511,375],[573,958],[93,882],[267,735],[671,63],[876,397],[887,792],[209,967],[876,972],[977,851],[166,415],[588,836],[244,572],[277,673],[775,874],[580,673],[707,651],[442,236],[885,52],[77,136],[757,256],[289,485],[698,121],[946,272],[291,7],[879,884],[562,242],[700,777],[953,772],[19,266],[777,108],[171,821],[60,681],[369,115],[626,132],[121,949],[117,29],[745,839],[487,282],[626,327],[280,845],[231,586],[421,955],[124,375],[707,95],[286,12],[484,633],[768,125],[210,435],[172,974],[721,256],[154,618],[480,889],[317,399],[956,706],[632,936],[79,917],[450,22],[242,55],[991,537],[732,513],[798,46],[559,740],[674,873],[353,266],[222,378],[72,719],[872,916],[678,316],[95,273],[11,125],[268,166],[310,472],[438,775],[256,748],[566,20],[58,841],[750,41],[224,669],[801,862],[736,809],[248,984],[970,163],[715,305],[104,24],[823,663],[12,968],[823,813],[476,166],[817,691],[589,446],[61,638],[807,869],[454,313],[478,496],[199,346],[252,168],[810,36],[797,310],[409,449],[804,76],[787,582],[435,599],[834,141],[671,367],[656,456],[543,674],[223,463],[803,64],[948,406],[745,372],[936,508],[270,451],[273,394],[587,574],[907,673],[722,365],[663,46],[696,676],[470,232],[154,966],[554,67],[586,83],[942,779],[644,266],[518,965],[997,932],[348,156],[581,888],[22,649],[63,608],[594,895],[382,925],[162,109],[123,301],[101,257],[708,618],[130,89],[803,216],[281,231],[747,73],[532,612],[381,779],[631,607],[227,408],[862,952],[489,525],[211,188],[561,997],[742,592],[470,596],[994,438],[942,469],[44,627],[714,706],[99,330],[33,161],[478,379],[413,236],[121,854],[532,612],[777,385],[715,393],[980,882],[482,38],[801,737],[935,293],[145,735],[918,124],[384,300],[105,537],[877,521],[381,95],[554,843],[984,921],[618,98],[108,571],[492,231],[966,10],[324,544],[868,612],[83,140],[731,394],[767,679],[165,384],[695,189],[669,231],[890,433],[16,106],[58,578],[949,951],[297,938],[113,738],[596,134],[228,132],[209,614],[48,734],[149,582],[192,984],[446,638],[180,132],[936,58],[872,542],[338,852],[879,306],[518,670],[586,969],[185,670],[893,549],[917,784],[794,892],[256,542],[876,904],[418,122],[82,732],[70,501],[811,260],[209,812],[131,721],[296,750],[561,491],[748,335],[998,351],[299,645],[15,41],[645,92],[193,671],[42,580],[629,355],[107,919],[734,837],[955,819],[935,790],[986,102],[300,904],[230,203],[985,302],[577,590],[698,223],[380,605],[576,899],[567,406],[211,231],[286,26],[596,35],[61,682],[319,178],[189,6],[868,358],[417,459],[246,638],[125,578],[532,318],[377,607],[546,123],[314,803],[299,975],[247,209],[326,185],[870,891],[306,307],[92,408],[192,398],[42,513],[1,9],[398,550],[635,479],[49,800],[364,947],[235,650],[830,618],[240,675],[323,998],[104,119],[270,127],[806,274],[35,138],[433,700],[973,691],[93,117],[421,468],[856,141],[951,446],[364,486],[195,933],[195,38],[575,963],[296,514],[87,482],[788,913],[202,482],[538,493],[632,577],[975,81],[424,793],[666,401],[658,738],[346,618],[388,230],[58,532],[782,372],[273,833],[687,344],[270,532],[57,231],[734,315],[767,346],[287,843],[624,330],[613,248],[183,480],[754,46],[729,845],[932,650],[687,287],[714,977],[600,360],[285,83],[271,124],[681,706],[355,968],[594,828],[343,94],[602,730],[208,536],[118,992],[784,340],[505,282],[148,143],[983,914],[83,80],[113,592],[508,24],[858,278],[444,289],[516,297],[601,192],[555,262],[795,886],[278,758],[362,792],[690,461],[325,33],[222,809],[244,145],[724,19],[85,226],[260,976],[89,985],[256,758],[621,129],[489,778],[592,873],[233,344],[336,603],[686,684],[740,389],[566,780],[127,229],[489,861],[568,78],[313,363],[67,48],[381,563],[303,757],[333,35],[472,465],[59,937],[225,232],[615,411],[783,579],[238,842],[932,200],[935,42],[428,290],[789,244],[614,577],[630,880],[168,351],[588,471],[422,295],[780,886],[700,573],[366,85],[324,639],[328,956],[652,198],[909,270],[896,785],[204,900],[250,815],[745,493],[441,966],[130,925],[340,676],[930,318],[788,209],[273,900],[724,984],[76,792],[820,269],[746,257],[282,748],[540,690],[706,675],[237,625],[734,320],[54,478],[387,571],[800,409],[737,751],[29,746],[818,832],[296,736],[783,627],[781,405],[376,131],[795,760],[365,572],[957,977],[973,69],[741,112],[160,353],[891,887],[718,615],[211,494],[348,421],[237,514],[220,934],[166,364],[334,523],[840,356],[881,402],[402,345],[850,759],[154,875],[796,978],[115,544],[670,532],[162,233],[310,195],[976,479],[653,29],[202,153],[710,357],[753,839],[268,338],[213,928],[80,228],[829,749],[925,766],[108,776],[570,593],[493,627],[816,652],[331,666],[257,848],[806,126],[805,731],[928,325],[65,550],[933,698],[55,468],[45,873],[590,47],[880,143],[154,773],[392,957],[495,874],[624,813],[528,172],[927,428],[777,577],[479,56],[729,958],[953,611],[153,807],[895,539],[513,207],[126,719],[812,409],[415,512],[869,302],[787,28],[767,620],[9,241],[981,318],[689,290],[544,834],[299,262],[991,875],[815,363],[128,306],[815,449],[148,866],[104,633],[913,865],[107,287],[725,133],[672,472],[30,422],[943,751],[779,727],[611,86],[137,293],[724,566],[681,165],[581,563],[66,144],[973,865],[573,798],[260,603],[267,163],[632,68],[367,860],[153,963],[881,120],[4,984],[637,837],[760,539],[302,260],[371,515],[313,679],[888,164],[453,570],[814,367],[637,382],[459,296],[515,202],[330,349],[206,989],[999,554],[767,374],[65,402],[683,672],[37,433],[149,312],[585,596],[81,76],[15,901],[781,441],[363,146],[37,780],[42,189],[499,746],[744,450],[395,533],[390,361],[413,889],[611,870],[695,796],[426,852],[467,116],[556,470],[172,395],[491,684],[811,166],[345,533],[173,362],[679,234],[494,431],[463,645],[849,590],[378,647],[932,374],[698,295],[156,109],[245,588],[161,816],[127,260],[835,412],[451,820],[489,606],[56,242],[335,560],[276,182],[836,82],[947,714],[873,901],[986,329],[312,849],[240,897],[418,248],[986,430],[417,734],[788,79],[838,826],[319,173],[663,372],[403,402],[558,238],[32,967],[584,864],[36,258],[592,508],[613,331],[703,238],[342,82],[868,499],[375,480],[927,250],[745,164],[939,123],[874,449],[243,600],[253,907],[391,595],[281,611],[484,317],[1000,551],[111,577],[210,363],[709,99],[227,120],[726,739],[703,875],[626,489],[996,829],[855,154],[966,204],[961,144],[58,705],[514,529],[967,430],[669,641],[55,603],[379,445],[755,607],[807,748],[899,46],[563,860],[441,172],[373,750],[229,765],[283,98],[700,901],[43,357],[12,152],[217,342],[335,149],[469,897],[932,275],[825,288],[625,830],[318,383],[229,422],[962,502],[877,262],[284,901],[853,856],[558,681],[752,872],[637,587],[738,751],[426,354],[653,534],[480,797],[999,753],[394,783],[17,382],[155,11],[988,524],[310,439],[199,244],[848,750],[624,435],[53,79],[489,127],[705,236],[399,831],[899,550],[70,564],[796,869],[594,876],[745,2],[219,479],[916,65],[887,303],[427,52],[514,704],[116,675],[637,353],[770,82],[144,88],[668,259],[334,361],[216,800],[184,23],[329,68],[960,548],[102,168],[522,580],[138,460],[194,177],[869,397],[680,704],[293,32],[410,726],[781,227],[758,211],[785,901],[70,145],[987,723],[943,694],[833,577],[989,862],[959,774],[734,757],[853,176],[541,718],[844,459],[745,883],[30,735],[62,420],[484,899],[965,239],[155,354],[542,311],[468,974],[210,746],[481,995],[992,949],[454,10],[706,206],[928,286],[111,525],[748,738],[593,93],[938,716],[933,294],[421,304],[846,476],[670,507],[204,39],[774,650],[7,723],[788,893],[388,476],[440,396],[811,570],[320,94],[611,458],[780,506],[792,360],[358,715],[491,869],[804,256],[17,578],[724,708],[210,540],[567,136],[503,356],[579,870],[284,104],[131,711],[465,352],[475,466],[942,851],[526,817],[832,298],[883,104],[182,951],[432,333],[602,781],[75,862],[115,470],[512,745],[584,715],[572,211],[389,567],[449,502],[964,129],[608,438],[288,908],[318,388],[359,597],[393,803],[334,590],[53,811],[376,553],[999,305],[498,931],[76,495],[396,244],[896,188],[49,844],[190,349],[916,577],[572,24],[863,87],[884,152],[247,394],[205,930],[721,840],[289,857],[520,642],[241,675],[623,122],[365,452],[405,595],[842,420],[622,611],[416,552],[581,443],[845,333],[578,350],[173,834],[769,504],[908,991],[592,436],[164,623],[56,410],[806,841],[657,84],[686,305],[845,516],[303,345],[19,544],[844,769],[208,98],[965,761],[606,142],[500,846],[915,929],[784,3],[390,39],[434,114],[475,357],[903,946],[890,933],[180,498],[732,358],[346,531],[37,562],[721,535],[139,700],[859,491],[710,40],[217,149],[820,977],[287,148],[886,527],[386,98],[787,739],[99,295],[988,273],[290,596],[667,254],[236,793],[437,612],[361,175],[806,384],[228,184],[121,190],[261,652],[413,87],[953,970],[465,931],[112,866],[355,609],[118,576],[535,578],[270,757],[690,91],[911,468],[433,328],[131,457],[953,496],[364,731],[96,315],[284,869],[914,353],[602,430],[764,84],[437,794],[257,899],[120,985],[35,46],[264,994],[236,267],[437,811],[195,447],[633,31],[857,4],[53,914],[461,746],[550,646],[500,423],[751,692],[648,680],[757,626],[537,350],[831,255],[165,932],[985,693],[274,777],[978,350],[470,234],[153,426],[180,382],[933,130],[624,640],[320,674],[673,824],[947,774],[11,325],[932,569],[268,292],[655,542],[685,20],[621,569],[243,479],[6,611],[830,318],[485,62],[512,560],[55,976],[792,381],[455,663],[919,511],[241,749],[792,780],[582,473],[426,660],[492,162],[263,992],[382,372],[50,85],[162,359],[429,794],[240,415],[21,942],[435,628],[113,653],[289,623],[996,154],[978,178],[784,875],[252,897],[375,346],[353,291],[482,562],[793,163],[46,26],[406,496],[691,11],[730,984],[315,469],[998,906],[863,268],[464,254],[357,516],[360,285],[297,174],[333,744],[565,240],[694,10],[589,709],[516,627],[212,152],[873,377],[531,854],[673,561],[934,160],[157,977],[153,36],[204,915],[387,614],[96,88],[943,174],[7,68],[732,90],[714,238],[842,604],[728,700],[534,395],[266,637],[486,242],[905,211],[366,909],[209,837],[465,951],[549,791],[710,265],[28,25],[543,959],[166,649],[960,655],[981,652],[470,95],[994,845],[872,415],[525,709],[30,306],[906,819],[711,833],[83,651],[688,629],[387,15],[818,579],[713,444],[263,568],[498,482],[714,176],[326,369],[927,706],[53,485],[187,46],[995,982],[387,521],[735,732],[980,793],[987,916],[387,602],[745,906],[990,814],[159,299],[804,421],[142,471],[831,6],[229,451],[573,934],[618,429],[234,60],[879,694],[899,1000],[363,503],[513,230],[887,219],[395,188],[656,167],[401,210],[332,293],[741,134],[38,814],[158,150],[500,518],[323,11],[30,180],[974,889],[41,947],[543,485],[395,77],[990,100],[234,511],[536,824],[123,453],[70,67],[904,105],[226,548],[954,995],[243,897],[378,235],[745,423],[492,647],[337,151],[569,569],[485,358],[270,660],[608,71],[931,289],[293,372],[57,200],[304,446],[367,985],[46,337],[39,198],[473,37],[848,256],[236,47],[758,248],[348,345],[139,484],[492,353],[23,659],[102,209],[424,581],[527,75],[399,29],[425,997],[122,747],[557,857],[690,696],[795,653],[177,784],[627,392],[266,40],[827,354],[869,290],[499,879],[870,526],[155,942],[769,799],[104,712],[790,598],[66,988],[418,6],[411,342],[988,799],[88,88],[167,146],[878,185],[824,101],[106,747],[194,802],[702,144],[620,882],[678,96],[321,548],[980,713],[985,903],[558,919],[313,341],[728,570],[313,373],[672,559],[541,939],[855,118],[274,364],[978,196],[492,840],[666,20],[480,199],[236,66],[968,93],[146,822],[915,346],[986,762],[172,801],[628,753],[166,823],[961,164],[237,399],[173,82],[533,70],[619,271],[697,814],[239,767],[583,164],[588,655],[98,581],[279,111],[583,495],[806,650],[317,500],[452,305],[633,963],[145,333],[863,106],[496,348],[1000,838],[329,976],[431,277],[222,119],[275,164],[702,173],[542,990],[577,147],[517,578],[818,473],[513,107],[482,772],[645,940],[367,24],[242,422],[711,76],[355,328],[391,430],[318,14],[867,799],[371,934],[442,689],[80,15],[124,799],[875,806],[626,576],[131,240],[111,561],[998,905],[266,732],[261,80],[335,97],[147,445],[404,170],[124,327],[211,52],[656,378],[158,867],[428,466],[267,977],[687,183],[1000,515],[272,661],[975,110],[536,372],[236,724],[27,812],[941,78],[951,169],[760,275],[958,869],[754,108],[199,775],[20,960],[631,332],[257,161],[43,314],[827,685],[867,196],[861,883],[523,457],[24,948],[102,919],[466,454],[265,919],[762,223],[393,857],[116,167],[481,502],[945,480],[862,975],[324,454],[250,990],[635,428],[537,723],[785,560],[508,84],[539,924],[244,337],[872,350],[633,609],[615,49],[659,414],[522,112],[409,59],[13,462],[755,943],[990,332],[215,112],[609,949],[384,516],[658,99],[439,998],[823,341],[677,45],[958,908],[99,306],[99,516],[6,266],[929,956],[970,800],[652,255],[752,150],[271,320],[385,990],[785,243],[174,347],[295,108],[242,138],[185,203],[930,867],[901,881],[756,1000],[412,116],[811,28],[927,400],[31,369],[123,934],[824,125],[516,992],[243,307],[181,780],[117,153],[967,372],[784,765],[161,35],[28,679],[417,403],[262,119],[628,449],[689,292],[437,497],[339,188],[447,42],[473,465],[178,20],[916,811],[543,588],[45,541],[45,39],[866,719],[736,122],[637,990],[827,93],[145,981],[363,148],[597,338],[398,159],[920,966],[144,224],[151,301],[388,892],[933,926],[47,466],[192,921],[809,658],[722,908],[384,951],[305,330],[341,497],[309,298],[964,536],[992,782],[79,825],[383,807],[967,692],[766,584],[942,144],[453,744],[240,558],[792,879],[106,300],[605,745],[442,890],[2,852],[156,939],[850,126],[26,501],[930,345],[212,827],[863,704],[692,290],[947,371],[976,116],[665,509],[90,744],[641,566],[37,772],[124,81],[911,967],[283,70],[60,938],[115,390],[96,567],[357,54],[388,964],[242,813],[57,194],[925,875],[358,47],[794,444],[923,846],[919,350],[940,514],[44,628],[167,960],[804,57],[643,771],[814,770],[569,281],[847,61],[64,221],[658,45],[243,917],[501,228],[255,693],[961,851],[927,212],[515,476],[551,173],[406,533],[581,178],[846,10],[23,555],[59,65],[714,23],[475,533],[830,454],[85,681],[155,775],[284,325],[125,409],[577,963],[527,573],[374,887],[849,962],[96,940],[640,425],[772,999],[308,395],[609,855],[163,187],[828,64],[116,250],[888,944],[87,165],[634,15],[672,867],[625,99],[424,163],[177,798],[942,639],[448,22],[235,792],[64,270],[623,827],[853,962],[558,678],[887,860],[788,211],[434,800],[377,641],[150,27],[188,804],[991,944],[955,526],[904,442],[180,907],[898,83],[747,13],[23,37],[434,939],[32,473],[122,246],[213,378],[209,733],[661,180],[900,594],[333,47],[741,22],[887,858],[515,692],[247,559],[721,700],[108,134],[309,336],[172,404],[721,543],[378,347],[61,808],[744,978],[481,336],[327,156],[802,473],[90,64],[990,95],[858,590],[959,943],[992,941],[550,931],[718,76],[822,692],[387,559],[268,711],[290,813],[96,360],[677,305],[990,410],[483,6],[5,72],[538,632],[561,708],[475,670],[659,706],[487,986],[266,207],[289,513],[822,641],[230,460],[245,67],[868,494],[525,64],[235,386],[323,156],[691,812],[239,920],[396,642],[205,935],[587,857],[800,819],[134,850],[537,590],[548,576],[162,379],[2,428],[507,750],[876,124],[356,671],[356,898],[423,659],[9,668],[575,444],[499,116],[253,757],[429,563],[715,758],[397,395],[404,25],[710,484],[454,245],[941,420],[640,54],[82,381],[135,873],[646,208],[903,308],[88,210],[85,832],[455,988],[625,465],[890,242],[467,256],[871,735],[397,341],[256,836],[657,870],[601,754],[684,439],[465,517],[96,868],[383,35],[344,434],[386,421],[320,691],[327,842],[212,951],[549,361],[845,906],[724,797],[108,31],[949,793],[61,380],[657,864],[187,662],[898,63],[887,746],[598,632],[985,247],[552,225],[279,736],[890,690],[566,912],[95,612],[373,924],[706,556],[888,646],[537,860],[505,542],[404,673],[825,42],[242,367],[240,488],[404,127],[745,171],[864,424],[217,119],[283,606],[897,468],[653,766],[683,282],[742,542],[845,93],[345,473],[185,958],[162,686],[608,236],[285,326],[945,14],[319,383],[138,27],[608,460],[14,317],[10,776],[719,512],[527,446],[700,470],[643,106],[26,375],[288,427],[767,819],[397,613],[966,456],[64,448],[191,90],[928,600],[616,504],[102,661],[211,660],[255,942],[631,946],[826,292],[610,405],[138,765],[501,711],[325,371],[689,563],[546,271],[900,369],[216,666],[739,514],[93,740],[153,370],[36,7],[624,616],[432,365],[404,369],[342,640],[807,930],[752,827],[5,627],[267,989],[478,53],[532,648],[313,955],[164,310],[884,800],[865,72],[764,395],[274,738],[601,455],[259,317],[452,187],[337,610],[800,30],[155,687],[418,947],[21,176],[605,26],[394,230],[264,347],[86,301],[383,140],[659,360],[589,170],[80,443],[576,928],[449,307],[621,964],[479,609],[392,818],[302,173],[569,69],[788,414],[906,366],[436,623],[519,825],[293,591],[493,175],[520,109],[404,762],[462,500],[868,473],[97,816],[133,694],[159,905],[691,686],[69,280],[188,75],[575,324],[25,934],[824,778],[866,82],[760,146],[240,740],[461,227],[952,764],[832,154],[639,646],[217,427],[426,965],[335,86],[385,975],[386,434],[651,477],[852,503],[61,309],[402,535],[578,222],[320,896],[547,327],[384,148],[76,678],[579,871],[679,226],[632,207],[74,936],[911,318],[640,365],[12,610],[690,801],[311,239],[303,528],[719,365],[888,693],[25,693],[428,413],[802,940],[923,746],[932,846],[433,631],[963,864],[33,363],[747,592],[267,630],[481,495],[729,553],[338,993],[246,423],[631,898],[723,981],[119,499],[350,719],[489,400],[904,827],[604,566],[791,871],[119,312],[452,255],[924,964],[510,322],[941,568],[75,768],[568,826],[74,450],[277,717],[147,279],[45,627],[788,729],[102,702],[142,172],[371,427],[16,78],[365,956],[935,538],[292,48],[260,524],[632,337],[532,727],[1000,777],[499,467],[758,437],[830,570],[112,647],[77,766],[29,915],[435,776],[345,684],[886,795],[547,88],[23,468],[958,89],[681,534],[307,595],[331,513],[761,374],[73,546],[78,944],[343,559],[311,412],[334,931],[694,44],[959,120],[819,796],[643,568],[318,649],[505,952],[355,423],[487,251],[573,971],[302,14],[47,498],[131,574],[160,238],[977,256],[186,447],[940,945],[24,669],[603,667],[290,722],[44,651],[962,652],[876,580],[206,540],[376,159],[358,845],[583,68],[775,852],[477,279],[630,953],[520,688],[308,278],[622,811],[442,304],[568,56],[48,487],[747,444],[743,593],[305,301],[612,257],[244,748],[844,280],[863,910],[495,323],[360,461],[354,373],[832,937],[196,528],[634,90],[265,373],[661,574],[715,900],[607,506],[349,79],[654,380],[279,863],[647,968],[163,701],[147,50],[39,997],[463,273],[215,223],[194,712],[767,793],[607,764],[374,644],[842,642],[20,291],[34,413],[164,464],[155,727],[652,218],[426,2],[675,717],[354,123],[929,392],[238,762],[765,478],[919,889],[460,832],[622,202],[998,272],[392,190],[914,939],[297,414],[798,117],[654,437],[123,145],[653,536],[177,442],[217,398],[346,702],[716,977],[471,955],[797,807],[578,49],[365,952],[969,138],[40,92],[336,70],[953,767],[608,392],[936,238],[639,199],[586,896],[994,164],[238,21],[831,597],[898,127],[995,936],[45,760],[89,671],[146,475],[335,421],[636,530],[132,774],[491,780],[220,170],[158,172],[540,471],[806,829],[392,343],[86,137],[749,977],[170,696],[121,744],[212,270],[722,859],[450,986],[931,834],[552,270],[785,666],[177,826],[952,180],[786,861],[121,798],[863,243],[254,800],[69,186],[155,478],[91,131],[546,744],[962,908],[165,69],[714,779],[562,240],[560,115],[565,601],[926,35],[972,840],[232,502],[878,583],[479,584],[738,511],[632,537],[711,851],[768,554],[799,811],[479,924],[563,97],[79,772],[427,135],[538,425],[361,879],[851,586],[791,838],[772,686],[878,979],[576,609],[353,927],[76,303],[860,473],[986,483],[192,99],[218,658],[340,799],[85,254],[684,765],[886,780],[554,976],[506,591],[446,140],[47,884],[190,142],[58,33],[237,234],[285,123],[718,719],[362,537],[330,610],[379,785],[935,728],[232,561],[16,113],[15,907],[456,49],[114,57],[324,810],[821,147],[813,402],[138,346],[993,662],[218,587],[415,687],[301,12],[606,345],[273,671],[823,483],[56,91],[376,258],[243,624],[807,202],[466,473],[913,885],[266,794],[491,884],[867,706],[360,164],[967,559],[820,324],[43,46],[292,328],[255,383],[392,411],[119,967],[391,948],[459,236],[832,807],[923,79],[179,428],[953,276],[854,550],[380,507],[447,722],[587,901],[580,751],[844,127],[36,265],[574,827],[297,572],[72,705],[380,941],[513,341],[938,796],[519,382],[802,597],[180,592],[384,434],[829,75],[716,198],[604,996],[838,532],[674,641],[45,939],[510,655],[872,458],[383,926],[500,408],[355,571],[98,714],[334,748],[88,362],[546,850],[365,122],[656,911],[851,214],[621,519],[688,849],[164,860],[149,278],[572,210],[748,690],[502,136],[7,565],[788,442],[905,261],[818,708],[104,724],[820,671],[955,738],[362,787],[450,519],[294,138],[79,224],[62,381],[260,664],[347,185],[20,678],[125,475],[70,752],[668,970],[566,644],[724,510],[442,187],[771,408],[10,313],[430,238],[244,986],[130,771],[165,576],[968,878],[658,889],[328,103],[886,341],[9,445],[977,778],[51,641],[299,864],[812,974],[833,30],[962,137],[464,45],[796,484],[607,67],[55,572],[966,992],[980,707],[64,632],[768,350],[987,394],[524,216],[284,587],[170,527],[710,12],[303,34],[916,917],[375,901],[26,272],[496,852],[333,560],[382,443],[15,306],[48,60],[928,23],[817,647],[857,576],[566,319],[298,262],[56,525],[595,57],[282,277],[657,178],[333,120],[291,764],[744,751],[884,11],[463,975],[651,522],[612,732],[876,450],[16,394],[401,485],[47,209],[476,833],[502,641],[662,877],[31,383],[179,940],[136,111],[42,184],[771,478],[305,968],[475,328],[2,470],[514,149],[280,803],[920,605],[44,370],[293,397],[7,69],[321,610],[108,94],[38,233],[842,26],[724,667],[595,805],[444,603],[475,166],[798,662],[591,92],[853,330],[536,768],[696,686],[666,431],[851,489],[288,938],[588,915],[713,10],[315,320],[162,680],[349,392],[483,361],[407,267],[442,783],[105,962],[937,59],[334,952],[12,528],[296,930],[360,817],[734,666],[802,493],[231,854],[234,879],[595,285],[781,593],[537,571],[173,885],[608,716],[949,708],[445,71],[238,593],[783,974],[704,579],[412,463],[660,517],[858,19],[354,843],[8,890],[617,731],[686,127],[893,596],[365,101],[781,459],[687,563],[466,599],[954,375],[606,904],[933,778],[518,18],[121,854],[680,195],[153,349],[853,159],[485,379],[294,782],[531,785],[271,205],[610,78],[463,527],[384,873],[592,445],[382,652],[270,478],[380,164],[408,904],[996,980],[892,520],[454,341],[657,227],[721,887],[225,174],[207,505],[538,673],[859,221],[824,565],[305,942],[980,474],[76,923],[507,556],[330,447],[510,884],[862,209],[587,406],[561,606],[575,852],[393,892],[996,663],[118,969],[284,573],[163,145],[154,413],[856,849],[587,412],[509,126],[717,112],[623,762],[406,256],[571,55],[817,909],[919,740],[871,547],[212,714],[527,202],[966,484],[669,880],[63,866],[528,482],[700,130],[89,929],[205,673],[668,708],[953,773],[88,877],[539,484],[920,297],[373,168],[981,798],[140,671],[496,352],[903,995],[384,984],[889,481],[821,152],[222,492],[939,831],[492,752],[692,302],[630,475],[50,620],[330,678],[833,480],[36,975],[864,272],[467,422],[91,724],[347,590],[991,644],[309,129],[881,956],[881,799],[929,357],[143,687],[591,951],[578,97],[256,173],[635,228],[223,4],[889,750],[217,614],[586,707],[566,224],[908,631],[483,648],[124,192],[475,897],[180,351],[341,182],[699,760],[925,981],[789,487],[418,989],[57,450],[697,203],[830,170],[158,558],[50,183],[948,147],[27,2],[426,340],[254,400],[893,975],[291,405],[518,844],[525,326],[845,772],[906,583],[781,742],[864,557],[906,901],[815,195],[691,11],[150,274],[546,379],[982,739],[874,842],[781,361],[340,289],[806,311],[900,160],[195,35],[419,758],[780,520],[913,572],[595,474],[633,52],[520,204],[398,215],[321,320],[583,239],[112,743],[697,960],[850,288],[698,324],[842,601],[919,651],[894,912],[827,564],[119,737],[133,62],[563,88],[563,975],[738,462],[433,523],[731,924],[778,915],[814,651],[126,124],[979,396],[582,877],[808,487],[70,308],[794,362],[273,776],[627,593],[828,30],[705,625],[211,746],[661,625],[947,994],[657,649],[117,990],[789,224],[239,13],[102,759],[861,933],[832,661],[334,639],[480,267],[363,819],[866,329],[79,11],[34,203],[544,260],[226,758],[230,91],[580,195],[108,998],[613,798],[949,920],[707,393],[604,549],[318,742],[905,634],[847,511],[525,549],[494,412],[89,320],[304,196],[371,503],[378,170],[405,583],[413,733],[39,539],[627,150],[799,508],[481,205],[823,634],[781,376],[555,379],[93,172],[169,403],[20,156],[45,225],[808,332],[179,883],[264,593],[370,454],[783,682],[498,965],[773,333],[674,972],[808,649],[389,567],[852,96],[237,557],[679,107],[796,457],[207,992],[155,964],[421,66],[655,612],[956,135],[237,65],[423,798],[539,209],[701,826],[868,337],[545,490],[874,694],[194,245],[353,598],[347,726],[410,495],[136,496],[997,871],[864,975],[823,216],[882,519],[207,889],[644,61],[354,216],[460,90],[819,291],[706,491],[390,776],[359,911],[533,502],[684,282],[931,662],[563,384],[400,251],[145,973],[470,252],[566,944],[297,894],[780,836],[104,9],[829,82],[38,1000],[81,372],[413,79],[440,983],[375,162],[951,432],[804,206],[211,32],[696,257],[216,696],[613,30],[387,506],[851,89],[588,483],[785,93],[419,584],[349,959],[434,894],[801,405],[923,910],[939,119],[424,81],[515,976],[43,82],[471,359],[255,202],[667,79],[1,486],[738,608],[644,317],[608,417],[125,547],[275,552],[371,592],[270,853],[826,55],[555,315],[757,239],[74,925],[887,746],[812,386],[240,403],[586,187],[417,800],[752,620],[973,241],[40,993],[120,633],[598,674],[812,873],[824,612],[676,652],[747,514],[484,896],[870,511],[26,134],[881,64],[656,877],[990,957],[298,610],[2,826],[995,623],[758,531],[606,476],[196,150],[34,585],[39,985],[350,498],[334,521],[779,640],[51,532],[888,732],[229,651],[394,178],[355,159],[110,233],[356,26],[732,326],[331,193],[687,552],[74,283],[570,210],[299,67],[1000,919],[734,721],[283,946],[929,428],[474,817],[336,908],[340,314],[749,763],[828,762],[596,362],[762,428],[40,492],[534,612],[820,747],[588,471],[638,930],[330,477],[669,643],[680,252],[56,349],[281,331],[69,708],[44,191],[566,132],[932,126],[879,338],[708,153],[120,327],[702,538],[456,330],[981,10],[233,880],[378,682],[74,719],[857,952],[378,473],[608,896],[977,144],[105,45],[883,111],[208,729],[893,396],[242,685],[480,180],[421,999],[991,299],[857,293],[73,834],[935,547],[181,66],[789,263],[999,673],[48,35],[586,195],[589,894],[700,979],[191,120],[331,979],[159,436],[19,802],[154,993],[63,918],[341,261],[499,476],[229,77],[155,314],[431,767],[267,691],[586,706],[630,48],[450,62],[258,90],[857,847],[817,215],[297,388],[747,566],[652,728],[82,124],[996,85],[995,292],[505,763],[599,653],[614,254],[787,855],[984,586],[969,369],[515,872],[38,262],[501,980],[985,283],[964,144],[581,369],[572,342],[594,721],[573,974],[818,679],[291,459],[297,942],[66,826],[164,992],[427,829],[582,817],[423,531],[778,980],[593,999],[952,957],[156,144],[211,10],[985,110],[492,70],[451,43],[857,709],[396,405],[941,692],[203,74],[420,561],[36,467],[196,36],[686,909],[512,440],[94,986],[878,573],[661,567],[988,557],[648,348],[567,668],[319,83],[730,561],[36,500],[777,401],[496,554],[937,224],[663,955],[912,90],[678,275],[160,314],[592,821],[364,9],[138,572],[532,331],[648,827],[691,227],[428,949],[167,417],[567,667],[68,948],[908,105],[222,537],[519,975],[454,68],[215,558],[983,83],[415,11],[387,324],[324,942],[202,585],[626,54],[167,452],[922,219],[646,783],[127,199],[18,900],[517,427],[592,987],[686,472],[213,966],[364,254],[848,340],[158,235],[324,775],[151,760],[89,831],[53,612],[860,792],[900,957],[942,449],[72,198],[43,741],[409,844],[564,61],[67,387],[163,60],[53,683],[124,220],[18,925],[129,307],[597,69],[675,844],[3,741],[183,140],[449,267],[597,842],[573,844],[718,951],[69,211],[781,806],[528,545],[898,220],[130,180],[360,293],[766,839],[720,883],[986,553],[242,676],[536,614],[414,428],[918,523],[80,294],[26,440],[518,373],[278,512],[632,632],[387,116],[457,361],[457,355],[943,924],[46,958],[43,746],[557,226],[636,66],[49,562],[62,29],[813,813],[643,524],[296,425],[7,761],[681,650],[152,108],[411,773],[43,712],[678,233],[955,794],[603,596],[961,774],[419,479],[239,244],[611,254],[111,24],[474,57],[703,802],[387,380],[678,421],[39,286],[598,922],[37,972],[657,700],[251,633],[663,294],[887,264],[216,770],[343,402],[176,906],[308,737],[225,158],[715,895],[504,354],[379,763],[112,201],[687,618],[108,46],[31,39],[935,60],[608,132],[207,339],[270,176],[554,823],[319,251],[109,635],[712,384],[86,651],[745,77],[890,831],[856,538],[509,554],[578,362],[251,850],[153,453],[535,484],[124,599],[258,346],[614,728],[953,293],[713,905],[20,497],[524,728],[784,309],[221,764],[145,641],[570,914],[452,210],[301,955],[923,815],[341,108],[862,526],[2,917],[850,280],[720,731],[171,255],[326,254],[1000,831],[942,341],[719,568],[905,223],[937,505],[823,560],[430,84],[293,492],[615,923],[328,728],[178,747],[368,783],[370,309],[713,987],[659,865],[287,989],[283,547],[357,665],[779,727],[946,176],[851,984],[29,409],[840,644],[382,983],[328,649],[978,56],[267,724],[612,191],[991,979],[27,35],[831,548],[815,221],[515,242],[183,615],[712,386],[8,322],[166,707],[374,829],[828,527],[235,186],[626,516],[307,436],[374,595],[971,629],[948,121],[907,947],[52,431],[244,295],[997,59],[928,594],[365,671],[749,82],[450,606],[154,270],[325,171],[732,182],[860,217],[25,807],[945,662],[360,57],[714,468],[927,443],[155,340],[981,204],[258,473],[36,105],[948,88],[885,544],[47,508],[342,61],[139,879],[571,144],[874,423],[723,891],[684,953],[835,258],[288,391],[999,494],[925,745],[116,280],[839,726],[605,801],[29,225],[542,770],[574,990],[104,119],[703,337],[253,306],[95,836],[441,295],[857,722],[364,684],[507,118],[744,322],[421,531],[177,81],[973,734],[425,837],[760,591],[616,810],[106,298],[879,588],[163,774],[231,754],[11,131],[317,262],[73,171],[384,356],[71,193],[73,603],[5,446],[637,728],[900,25],[767,684],[445,403],[146,963],[161,389],[480,66],[411,233],[589,480],[352,327],[8,173],[226,733],[383,220],[885,353],[815,46],[394,483],[69,826],[522,893],[463,745],[887,810],[18,632],[867,941],[484,399],[710,378],[934,505],[339,102],[816,954],[798,709],[896,618],[379,305],[647,215],[724,173],[821,458],[693,613],[372,821],[140,939],[338,202],[543,214],[346,24],[873,957],[195,121],[992,703],[850,880],[594,308],[506,119],[227,3],[785,324],[901,781],[240,103],[61,681],[751,734],[970,275],[221,241],[409,399],[867,652],[388,207],[56,263],[628,669],[494,309],[525,630],[115,126],[74,852],[400,618],[21,23],[110,173],[929,209],[643,56],[672,778],[981,63],[861,724],[299,974],[547,670],[592,402],[990,953],[306,933],[963,638],[863,707],[766,991],[945,102],[258,83],[61,769],[171,52],[223,807],[65,702],[614,703],[813,410],[294,415],[884,286],[167,705],[678,789],[733,80],[938,107],[75,632],[232,194],[60,90],[495,752],[909,368],[528,144],[969,5],[313,60],[4,693],[875,664],[617,585],[936,916],[168,605],[345,800],[514,762],[712,507],[693,297],[587,637],[828,840],[550,256],[545,186],[764,245],[390,261],[626,880],[330,20],[700,51],[812,835],[271,459],[590,6],[127,406],[904,588],[376,223],[447,858],[877,106],[576,757],[975,892],[701,463],[847,208],[925,994],[867,33],[954,296],[594,337],[694,268],[722,152],[48,751],[473,767],[876,622],[860,340],[278,964],[668,802],[811,770],[325,914],[198,629],[900,606],[193,869],[967,455],[537,821],[407,333],[719,186],[847,762],[995,624],[660,240],[66,313],[628,270],[512,965],[611,592],[49,126],[544,887],[701,77],[158,89],[26,582],[251,273],[668,465],[448,262],[283,859],[189,933],[295,271],[575,285],[825,374],[557,629],[831,685],[397,899],[670,906],[77,187],[221,405],[749,815],[769,750],[284,969],[899,675],[789,443],[758,929],[946,394],[799,596],[580,186],[6,354],[758,297],[679,461],[722,737],[954,152],[128,950],[327,816],[618,207],[496,700],[397,562],[89,908],[996,834],[455,219],[68,203],[52,693],[679,277],[314,936],[576,404],[397,584],[313,56],[256,644],[982,31],[857,619],[923,522],[53,712],[224,348],[42,87],[332,287],[939,583],[646,591],[145,667],[185,457],[694,302],[557,246],[305,319],[586,733],[874,602],[358,277],[957,164],[44,289],[499,189],[75,335],[474,139],[436,677],[50,848],[867,67],[9,828],[862,829],[764,806],[428,825],[977,608],[997,137],[286,635],[656,662],[82,634],[674,844],[422,276],[93,983],[64,589],[956,935],[922,644],[148,650],[106,58],[268,850],[302,702],[826,780],[292,58],[738,62],[968,628],[552,98],[392,141],[678,305],[191,474],[167,898],[774,879],[805,708],[716,752],[479,690],[744,346],[502,249],[29,939],[418,534],[530,617],[977,707],[253,515],[648,769],[579,486],[333,398],[67,695],[712,487],[940,771],[749,682],[214,745],[428,811],[134,342],[737,291],[226,588],[526,795],[350,249],[165,80],[531,234],[405,67],[875,87],[957,697],[714,63],[869,330],[475,199],[775,320],[741,933],[894,972],[389,461],[181,74],[755,328],[75,78],[916,594],[222,758],[342,564],[726,457],[179,265],[404,70],[300,365],[831,210],[399,989],[488,286],[715,56],[918,804],[902,46],[26,687],[635,642],[640,616],[285,394],[746,763],[25,837],[39,297],[692,643],[710,582],[34,855],[153,787],[760,321],[684,399],[271,942],[864,294],[590,476],[409,255],[68,731],[60,402],[786,810],[419,873],[566,767],[161,784],[615,853],[223,95],[184,897],[813,254],[1000,354],[171,548],[40,22],[843,537],[993,980],[177,444],[614,466],[915,120],[213,843],[558,740],[994,626],[180,687],[787,216],[548,333],[568,470],[77,776],[174,465],[688,883],[823,694],[81,91],[89,248],[204,303],[530,88],[647,30],[211,668],[898,518],[912,757],[200,240],[281,629],[460,573],[897,101],[902,91],[425,331],[114,493],[983,860],[361,194],[172,739],[254,306],[894,291],[523,402],[428,553],[23,960],[240,78],[353,524],[34,438],[432,551],[605,7],[242,393],[498,935],[497,580],[575,296],[226,37],[874,272],[943,741],[782,362],[861,38],[850,416],[815,729],[583,957],[637,10],[693,871],[79,887],[378,606],[355,572],[720,485],[276,39],[838,978],[445,464],[637,379],[849,768],[83,654],[302,892],[927,227],[242,819],[132,265],[809,409],[511,771],[823,271],[6,420],[964,510],[837,435],[942,352],[198,362],[686,162],[502,952],[113,184],[368,331],[849,177],[919,599],[193,392],[698,378],[107,988],[20,263],[474,918],[324,529],[558,575],[330,30],[813,318],[892,940],[10,857],[343,373],[573,249],[258,298],[884,280],[618,556],[875,59],[863,126],[342,510],[29,333],[613,512],[481,333],[414,622],[513,648],[183,579],[157,874],[298,589],[351,312],[760,677],[499,21],[779,684],[112,13],[676,5],[746,586],[188,446],[56,805],[367,707],[508,161],[100,745],[816,490],[791,32],[546,521],[735,941],[310,796],[387,82],[342,424],[272,991],[855,942],[254,314],[796,871],[397,842],[190,708],[705,289],[561,948],[403,507],[322,149],[158,415],[128,132],[994,781],[974,589],[94,909],[402,242],[92,480],[433,75],[907,203],[581,73],[673,661],[49,367],[880,808],[425,140],[621,721],[48,539],[1,159],[499,614],[632,137],[802,534],[577,102],[928,248],[634,851],[190,573],[867,932],[516,564],[245,795],[923,386],[647,746],[317,755],[914,915],[881,305],[323,451],[79,931],[456,311],[643,514],[999,359],[371,624],[222,750],[83,486],[65,724],[756,780],[142,968],[953,454],[38,819],[616,489],[642,938],[374,905],[581,83],[947,753],[659,783],[991,184],[473,596],[451,194],[217,515],[855,328],[113,693],[543,850],[527,934],[178,210],[93,99],[578,18],[75,914],[149,595],[889,696],[798,99],[13,881],[335,35],[250,288],[545,368],[773,30],[118,697],[454,367],[501,892],[966,713],[286,740],[166,208],[766,266],[622,803],[260,885],[924,141],[834,184],[674,557],[184,56],[107,277],[32,438],[827,728],[738,840],[656,609],[45,789],[307,512],[655,207],[55,340],[354,481],[682,778],[192,250],[247,143],[569,938],[708,563],[43,708],[392,215],[789,495],[981,433],[476,291],[418,640],[794,615],[508,262],[191,955],[9,452],[678,772],[198,275],[963,223],[114,547],[562,151],[462,898],[762,569],[879,483],[205,419],[543,314],[475,178],[495,184],[114,616],[957,768],[264,214],[510,498],[448,566],[10,7],[607,885],[2,640],[60,633],[460,244],[592,367],[859,206],[749,77],[405,399],[169,552],[434,803],[498,101],[471,671],[997,442],[714,347],[597,815],[165,912],[335,223],[112,59],[673,457],[652,485],[778,782],[1,866],[720,710],[331,492],[205,996],[217,865],[605,574],[860,968],[19,504],[690,483],[321,383],[619,87],[138,967],[824,31],[175,448],[744,232],[161,922],[520,634],[270,883],[621,349],[898,361],[652,499],[997,719],[309,817],[429,354],[2,354],[719,339],[271,431],[393,612],[328,965],[840,740],[335,454],[52,408],[484,494],[728,803],[919,824],[978,448],[27,288],[793,665],[787,687],[535,36],[839,518],[746,274],[218,815],[309,327],[964,528],[655,176],[896,630],[387,751],[633,148],[304,970],[637,977],[542,360],[214,442],[713,653],[589,517],[297,389],[921,170],[275,108],[349,517],[829,541],[751,859],[419,811],[854,834],[911,844],[272,526],[342,911],[79,546],[252,995],[532,913],[655,48],[455,836],[635,777],[991,575],[675,905],[159,198],[962,520],[203,146],[324,709],[245,250],[562,499],[480,966],[734,177],[356,235],[27,835],[888,796],[893,798],[209,504],[132,98],[736,279],[185,562],[738,512],[989,829],[289,230],[552,973],[325,348],[435,308],[833,279],[573,925],[835,596],[717,65],[515,303],[179,991],[809,504],[847,548],[171,576],[691,647],[39,790],[969,526],[893,829],[246,826],[871,316],[352,301],[962,376],[380,460],[499,764],[988,169],[535,552],[342,908],[529,960],[379,261],[560,286],[24,376],[595,35],[577,224],[536,351],[531,416],[599,795],[60,285],[711,923],[898,390],[510,703],[990,760],[343,581],[867,96],[996,93],[448,24],[16,671],[473,476],[735,162],[512,359],[731,822],[595,998],[259,156],[967,955],[980,5],[430,397],[597,211],[630,639],[542,845],[867,757],[98,183],[591,983],[489,397],[709,506],[419,748],[653,574],[974,808],[161,370],[715,844],[68,386],[43,862],[828,735],[174,373],[983,133],[763,456],[137,260],[39,902],[1,349],[423,851],[374,271],[531,51],[539,425],[676,49],[834,104],[414,223],[118,312],[58,753],[562,728],[864,248],[7,831],[189,91],[260,179],[190,438],[302,408],[300,736],[214,999],[131,418],[31,616],[985,146],[784,324],[795,89],[945,987],[609,699],[834,45],[690,490],[937,385],[871,990],[945,575],[713,976],[923,983],[694,40],[304,541],[230,922],[181,80],[714,947],[350,897],[263,274],[43,594],[460,920],[1,902],[981,744],[434,237],[185,20],[980,574],[580,680],[946,455],[919,516],[558,339],[811,799],[642,944],[511,244],[487,9],[104,456],[321,251],[783,331],[305,547],[28,386],[429,737],[984,968],[654,20],[46,959],[268,807],[450,27],[832,916],[180,112],[137,287],[626,59],[609,809],[761,541],[156,720],[753,259],[780,601],[44,934],[34,18],[205,925],[177,557],[847,620],[578,595],[325,165],[673,521],[426,533],[142,73],[769,246],[298,390],[840,111],[672,910],[496,315],[520,935],[584,728],[835,899],[154,362],[87,131],[629,370],[20,765],[690,825],[467,836],[189,635],[9,109],[365,155],[704,96],[639,319],[13,985],[277,670],[996,552],[384,193],[477,607],[603,172],[742,18],[289,526],[532,353],[585,620],[445,431],[874,48],[734,885],[683,4],[786,957],[36,222],[833,141],[803,991],[293,978],[712,226],[813,588],[164,471],[336,615],[315,484],[158,955],[168,813],[17,117],[649,948],[54,483],[692,352],[658,77],[977,959],[766,218],[799,98],[96,560],[340,21],[630,743],[144,209],[807,813],[746,242],[621,789],[26,236],[405,996],[437,270],[748,370],[425,629],[177,87],[957,972],[25,591],[200,637],[994,800],[847,63],[451,281],[906,267],[286,729],[319,168],[418,818],[485,618],[675,624],[389,32],[536,240],[79,112],[314,457],[707,949],[791,252],[467,906],[541,410],[452,786],[82,463],[421,129],[924,835],[545,219],[332,554],[984,302],[775,32],[225,454],[64,456],[133,64],[242,92],[135,893],[291,63],[228,834],[777,281],[63,624],[775,133],[605,561],[5,532],[375,653],[751,542],[619,864],[402,967],[469,667],[478,868],[831,586],[561,934],[673,787],[478,73],[886,575],[241,981],[539,849],[375,61],[566,696],[493,777],[105,658],[500,903],[652,405],[42,508],[304,491],[815,746],[398,750],[563,782],[31,276],[608,94],[852,988],[882,58],[666,498],[119,694],[724,285],[105,304],[894,946],[97,240],[648,966],[403,966],[370,433],[773,162],[675,460],[339,595],[149,850],[20,736],[802,54],[527,671],[659,409],[91,496],[146,394],[43,797],[465,180],[709,889],[475,388],[24,299],[941,614],[290,38],[182,653],[343,778],[190,659],[771,255],[765,761],[286,437],[410,645],[686,368],[793,109],[301,689],[535,643],[351,698],[518,705],[118,533],[986,958],[503,660],[299,796],[265,270],[639,432],[479,903],[671,712],[915,432],[792,87],[115,279],[40,420],[879,104],[990,390],[192,735],[990,14],[543,923],[592,195],[722,947],[299,738],[69,399],[358,991],[616,160],[215,240],[52,672],[147,433],[668,106],[238,961],[347,312],[783,36],[554,745],[679,912],[195,727],[227,593],[475,580],[181,109],[752,265],[922,984],[981,576],[109,882],[980,888],[426,968],[969,869],[874,598],[997,11],[20,825],[705,616],[69,621],[995,582],[320,419],[256,573],[851,60],[905,815],[616,697],[932,946],[969,689],[878,768],[736,566],[38,413],[983,348],[736,648],[52,279],[647,673],[510,675],[949,696],[767,78],[352,349],[175,601],[138,138],[912,408],[532,27],[957,614],[294,904],[672,489],[61,312],[336,103],[817,257],[750,259],[277,268],[373,755],[771,855],[36,8],[303,726],[299,955],[183,491],[193,587],[609,301],[815,833],[430,60],[164,972],[643,383],[910,579],[685,235],[803,268],[55,616],[125,459],[805,655],[771,650],[826,19],[895,17],[387,506],[89,484],[56,143],[547,226],[434,592],[79,510],[812,714],[667,908],[442,104],[719,284],[343,602],[752,258],[924,889],[413,682],[34,370],[538,362],[412,826],[508,50],[547,560],[412,808],[575,762],[649,909],[249,150],[585,808],[527,527],[608,60],[480,767],[54,408],[894,959],[378,665],[58,940],[421,727],[25,49],[70,386],[796,678],[728,466],[845,246],[812,323],[809,827],[851,46],[349,297],[154,820],[483,719],[993,469],[898,946],[879,561],[126,539],[813,587],[451,558],[709,311],[188,146],[787,435],[866,137],[984,277],[371,62],[131,613],[656,312],[931,296],[165,609],[856,81],[420,476],[698,543],[958,881],[474,619],[124,103],[136,537],[44,843],[760,322],[406,779],[107,849],[118,3],[217,247],[477,50],[693,142],[124,500],[389,334],[603,638],[305,723],[448,668],[90,267],[321,562],[39,556],[569,661],[621,565],[523,841],[647,175],[352,877],[455,452],[171,213],[637,636],[369,494],[751,130],[109,329],[323,854],[703,483],[433,785],[644,127],[345,358],[412,399],[258,177],[307,154],[484,495],[258,190],[737,426],[239,812],[682,250],[681,548],[195,198],[164,778],[518,604],[877,268],[843,827],[270,675],[34,602],[528,876],[489,424],[528,717],[555,109],[491,958],[864,443],[688,268],[247,501],[956,643],[956,395],[894,770],[377,26],[304,763],[172,164],[586,936],[173,431],[119,591],[258,305],[171,543],[653,107],[360,260],[112,219],[772,184],[856,373],[753,800],[281,30],[906,462],[199,56],[825,529],[845,955],[294,149],[135,214],[517,962],[982,553],[303,792],[647,716],[549,567],[57,856],[588,570],[519,536],[161,297],[410,25],[185,573],[145,879],[676,12],[362,625],[986,618],[112,837],[462,47],[138,595],[475,651],[191,190],[789,804],[256,669],[826,169],[312,344],[486,192],[808,608],[811,996],[923,373],[865,508],[300,220],[713,221],[238,577],[975,89],[961,595],[711,551],[844,310],[651,39],[577,604],[884,321],[105,319],[464,671],[749,216],[328,403],[880,562],[746,277],[803,860],[831,364],[230,645],[553,82],[845,650],[575,597],[42,709],[640,794],[860,412],[121,864],[555,617],[528,929],[424,121],[242,844],[306,440],[973,608],[620,185],[611,848],[641,115],[254,615],[546,970],[702,463],[901,550],[87,94],[915,506],[740,911],[976,645],[217,456],[804,867],[237,283],[610,350],[879,472],[782,745],[199,931],[675,953],[461,8],[804,488],[634,841],[861,166],[791,13],[841,72],[138,369],[145,293],[879,37],[664,212],[899,700],[885,157],[35,586],[24,908],[851,300],[735,79],[546,441],[652,601],[615,638],[871,794],[993,198],[695,745],[213,584],[831,831],[159,969],[877,260],[523,617],[577,598],[609,829],[623,757],[117,685],[987,912],[857,396],[796,201],[602,543],[970,694],[71,216],[908,479],[638,176],[836,89],[247,760],[130,475],[46,523],[301,723],[899,195],[470,288],[983,955],[783,311],[461,666],[106,657],[688,285],[735,737],[955,461],[570,525],[121,407],[730,314],[53,501],[129,637],[180,615],[11,43],[858,965],[297,601],[808,430],[762,663],[772,913],[76,784],[600,277],[352,127],[193,755],[496,873],[960,657],[986,43],[295,982],[570,647],[558,271],[292,38],[305,994],[345,647],[247,167],[527,363],[643,332],[974,870],[319,84],[818,828],[34,492],[615,46],[809,574],[608,975],[464,977],[818,903],[881,956],[250,419],[781,34],[649,656],[936,825],[524,779],[819,9],[884,122],[581,460],[627,436],[755,655],[207,488],[639,964],[682,110],[249,661],[344,950],[272,161],[406,478],[346,693],[728,701],[264,304],[678,651],[333,520],[348,497],[842,38],[758,17],[36,821],[449,249],[826,718],[53,683],[431,252],[772,342],[654,604],[401,679],[776,187],[657,452],[695,402],[517,246],[755,518],[412,891],[574,747],[1000,579],[545,539],[498,962],[322,589],[677,813],[206,268],[15,901],[928,592],[178,372],[3,128],[24,448],[89,748],[799,625],[554,866],[198,117],[218,156],[686,187],[628,878],[9,234],[145,923],[657,650],[945,85],[120,399],[825,432],[480,815],[316,649],[984,785],[164,237],[919,62],[878,277],[430,583],[112,832],[667,134],[781,750],[378,673],[25,38],[571,747],[475,470],[235,136],[849,222],[134,532],[332,531],[735,412],[198,347],[234,308],[516,118],[384,891],[875,289],[620,511],[243,959],[525,481],[645,824],[363,393],[527,807],[156,471],[950,935],[495,41],[58,3],[86,116],[975,695],[702,519],[561,966],[585,141],[42,650],[116,254],[889,887],[745,658],[389,743],[162,496],[298,135],[396,454],[821,40],[939,827],[290,596],[794,152],[126,251],[979,480],[773,330],[792,607],[915,831],[526,192],[937,399],[733,10],[89,259],[739,23],[485,559],[764,256],[1,377],[54,260],[419,93],[674,560],[93,650],[311,915],[771,153],[233,381],[12,658],[73,16],[591,796],[564,7],[749,600],[988,196],[445,610],[298,86],[102,941],[331,567],[374,243],[982,753],[959,607],[408,607],[805,468],[226,574],[996,510],[560,299],[944,641],[654,567],[50,472],[39,469],[817,269],[394,447],[625,890],[685,384],[616,813],[608,408],[652,984],[645,919],[263,408],[130,304],[168,62],[281,317],[692,624],[119,711],[36,249],[462,752],[539,36],[257,576],[129,235],[156,877],[71,299],[606,715],[938,15],[29,436],[211,691],[786,649],[388,910],[931,324],[313,969],[71,487],[125,276],[176,478],[677,856],[31,372],[550,23],[607,534],[82,454],[209,855],[60,311],[973,508],[884,852],[853,235],[411,228],[716,217],[734,669],[708,544],[918,322],[312,671],[416,198],[986,169],[197,118],[594,180],[600,108],[293,220],[596,974],[881,908],[863,511],[920,206],[314,496],[456,50],[825,949],[654,173],[480,684],[15,628],[52,597],[471,293],[412,521],[524,669],[956,421],[122,212],[387,645],[510,720],[455,828],[748,48],[600,183],[241,369],[971,538],[140,403],[501,914],[269,897],[38,933],[695,561],[58,807],[206,658],[33,403],[595,104],[121,995],[206,211],[798,930],[128,949],[652,376],[541,864],[108,791],[475,661],[501,406],[270,968],[161,554],[785,831],[433,59],[738,537],[402,707],[934,60],[818,631],[459,376],[834,825],[37,734],[631,356],[116,607],[575,758],[697,438],[832,654],[426,99],[429,263],[55,729],[855,888],[656,871],[836,138],[820,853],[201,667],[954,968],[843,693],[896,473],[87,351],[21,737],[945,789],[294,632],[741,536],[784,527],[200,434],[536,401],[321,853],[208,488],[944,399],[453,322],[689,664],[936,897],[337,397],[145,779],[810,408],[893,964],[278,693],[257,60],[460,307],[969,881],[627,448],[553,641],[322,811],[227,353],[547,512],[268,153],[465,876],[620,189],[567,483],[310,829],[74,613],[712,529],[795,720],[635,522],[658,939],[886,693],[231,91],[189,111],[791,364],[334,548],[435,46],[1,926],[488,725],[230,386],[446,745],[718,3],[841,11],[709,695],[286,915],[236,597],[666,574],[765,743],[479,548],[126,959],[605,21],[986,455],[341,679],[598,97],[771,595],[334,939],[132,897],[653,908],[770,357],[672,109],[701,95],[392,196],[348,381],[510,408],[401,646],[830,602],[761,204],[331,193],[673,445],[942,891],[354,910],[3,110],[579,751],[510,589],[845,200],[313,34],[162,362],[582,478],[126,187],[529,163],[375,399],[288,141],[933,877],[409,452],[890,892],[882,183],[908,456],[882,579],[32,179],[129,102],[19,13],[644,843],[397,959],[304,45],[646,862],[888,623],[786,864],[912,855],[386,494],[835,97],[936,152],[670,665],[450,581],[23,594],[349,313],[121,88],[604,715],[711,864],[951,107],[568,497],[931,139],[551,346],[349,518],[125,871],[965,918],[504,968],[711,56],[639,958],[694,650],[609,484],[413,55],[310,692],[156,119],[846,292],[268,25],[749,32],[73,571],[452,986],[52,770],[454,76],[117,292],[271,730],[978,501],[410,711],[416,524],[778,536],[75,689],[911,926],[232,566],[480,596],[958,827],[80,940],[280,566],[392,732],[757,945],[657,715],[76,303],[824,29],[39,444],[189,82],[573,902],[246,693],[590,325],[414,707],[458,855],[144,881],[234,277],[143,262],[622,336],[770,726],[118,72],[751,916],[121,540],[651,18],[132,865],[446,272],[44,587],[210,800],[12,346],[756,559],[615,630],[686,301],[842,904],[992,211],[917,862],[86,418],[11,746],[986,566],[800,915],[453,573],[512,947],[613,156],[103,355],[547,228],[467,806],[928,348],[557,290],[527,795],[962,274],[462,974],[314,567],[581,562],[207,77],[975,233],[903,723],[657,818],[801,948],[367,329],[64,510],[82,551],[54,138],[14,304],[241,128],[578,63],[710,984],[193,170],[646,619],[674,442],[480,602],[664,167],[127,897],[861,202],[340,885],[492,867],[925,769],[687,216],[217,504],[451,294],[629,861],[141,333],[885,982],[868,67],[495,81],[120,781],[407,92],[604,257],[244,797],[324,121],[998,931],[554,348],[194,332],[102,22],[909,774],[794,340],[814,472],[861,785],[316,333],[354,270],[378,611],[206,948],[216,591],[366,805],[105,619],[15,26],[810,119],[746,89],[851,382],[557,646],[638,866],[300,678],[673,624],[900,899],[393,411],[963,727],[561,204],[965,526],[867,463],[995,654],[640,326],[640,337],[256,693],[773,404],[277,225],[855,51],[942,234],[11,745],[168,622],[455,763],[596,401],[647,954],[396,76],[736,782],[487,255],[269,463],[575,292],[70,130],[421,66],[513,844],[345,112],[86,99],[955,212],[728,509],[518,455],[236,803],[719,118],[12,443],[508,640],[968,788],[503,361],[422,528],[371,937],[415,998],[676,373],[897,253],[591,14],[812,351],[953,177],[387,263],[879,933],[559,454],[380,699],[234,681],[28,510],[529,767],[195,602],[330,465],[211,635],[836,574],[468,247],[285,281],[672,841],[613,456],[899,800],[860,296],[861,116],[856,717],[957,148],[336,896],[642,389],[78,482],[791,994],[662,312],[554,238],[969,164],[386,233],[370,38],[347,455],[290,993],[198,229],[462,259],[848,634],[54,603],[7,12],[930,163],[638,368],[524,895],[355,829],[477,749],[544,798],[106,861],[752,826],[302,612],[644,672],[826,146],[926,421],[327,728],[478,443],[914,2],[596,270],[461,530],[348,965],[106,664],[75,352],[152,233],[969,108],[92,1000],[832,145],[157,504],[372,224],[995,366],[275,678],[980,892],[566,917],[90,770],[117,575],[630,324],[299,108],[410,838],[420,439],[550,823],[992,605],[62,967],[984,465],[34,484],[477,85],[294,167],[141,294],[891,250],[868,527],[682,353],[381,570],[106,313],[624,511],[684,848],[166,681],[484,998],[368,483],[493,134],[893,553],[694,61],[503,53],[699,783],[634,653],[725,707],[341,253],[150,487],[914,976],[915,899],[636,841],[32,40],[194,710],[295,958],[844,131],[717,258],[525,525],[381,292],[245,160],[882,519],[554,654],[263,109],[923,324],[909,711],[878,705],[382,662],[817,188],[562,822],[800,218],[865,513],[704,272],[812,947],[781,219],[960,188],[642,955],[161,11],[660,910],[86,662],[330,33],[762,662],[566,569],[223,280],[345,244],[963,117],[675,61],[89,20],[960,901],[393,331],[196,330],[635,165],[865,918],[216,661],[402,989],[748,456],[767,36],[340,84],[646,480],[138,154],[716,102],[780,902],[811,575],[168,525],[190,843],[609,615],[197,714],[695,719],[654,648],[439,989],[67,513],[740,17],[671,897],[893,129],[60,650],[690,345],[214,665],[626,486],[866,55],[487,788],[788,946],[432,71],[541,192],[432,413],[707,709],[618,281],[830,358],[487,667],[105,666],[756,547],[788,371],[525,652],[324,411],[1,179],[481,806],[174,939],[667,350],[733,587],[884,588],[86,188],[227,956],[827,794],[654,788],[634,373],[96,639],[396,490],[210,350],[430,856],[334,825],[923,369],[880,100],[995,864],[741,497],[753,546],[98,482],[97,717],[513,155],[330,410],[611,800],[632,27],[827,870],[781,16],[488,135],[419,721],[204,8],[645,554],[465,536],[182,921],[924,429],[269,760],[135,969],[480,733],[383,982],[66,657],[624,184],[227,673],[633,177],[318,932],[624,441],[384,249],[459,148],[179,499],[498,805],[323,562],[403,61],[149,875],[399,339],[571,20],[88,504],[18,987],[281,420],[700,143],[368,648],[573,504],[811,798],[323,830],[1,971],[723,369],[626,365],[468,202],[903,437],[153,305],[363,207],[975,388],[405,760],[911,846],[851,110],[279,103],[566,853],[381,62],[150,754],[610,549],[230,430],[137,518],[545,274],[712,718],[392,569],[468,111],[671,27],[591,432],[342,588],[821,774],[345,107],[909,384],[61,535],[788,317],[525,439],[429,694],[582,781],[449,738],[960,707],[450,597],[292,802],[175,960],[960,247],[84,298],[385,866],[13,37],[901,935],[527,74],[761,627],[13,712],[739,335],[518,981],[515,157],[941,756],[572,551],[313,603],[248,36],[186,742],[338,92],[91,691],[236,265],[908,936],[525,674],[343,817],[615,780],[891,593],[936,328],[381,205],[951,949],[25,699],[388,237],[547,769],[986,647],[822,372],[830,40],[175,95],[292,149],[754,783],[708,25],[375,832],[794,883],[371,674],[607,932],[315,351],[998,837],[116,894],[801,993],[748,611],[144,153],[306,395],[933,802],[702,630],[186,611],[337,284],[719,829],[12,600],[143,848],[350,795],[336,751],[714,225],[141,600],[567,654],[347,279],[610,760],[991,729],[267,398],[518,117],[649,150],[141,970],[137,926],[380,213],[207,829],[718,517],[291,599],[451,665],[458,415],[381,132],[127,174],[944,503],[62,557],[256,649],[832,14],[508,572],[913,860],[133,733],[37,905],[914,931],[625,509],[42,682],[848,102],[286,169],[54,889],[416,726],[238,147],[101,374],[419,631],[94,370],[191,236],[940,215],[802,702],[475,762],[684,288],[460,663],[694,516],[701,607],[273,676],[617,412],[733,782],[937,475],[690,100],[775,541],[319,833],[707,640],[537,624],[971,394],[385,20],[383,741],[244,193],[886,480],[608,244],[520,721],[628,13],[491,500],[401,657],[908,386],[915,823],[88,694],[124,83],[159,240],[258,905],[753,316],[662,747],[22,414],[120,462],[659,804],[546,840],[269,740],[838,793],[628,409],[127,773],[506,528],[197,450],[66,409],[150,765],[811,529],[543,589],[732,378],[52,540],[360,863],[489,891],[777,11],[142,459],[533,633],[569,640],[709,622],[640,18],[845,779],[420,398],[995,650],[926,957],[552,315],[801,677],[572,403],[831,901],[408,855],[55,110],[704,642],[278,475],[152,837],[977,327],[212,801],[847,173],[190,778],[591,606],[593,191],[458,265],[678,87],[699,315],[975,990],[358,769],[866,840],[316,193],[274,774],[685,486],[106,582],[961,608],[585,904],[757,322],[93,83],[166,519],[694,996],[234,792],[40,506],[744,22],[172,332],[540,51],[422,803],[774,624],[251,235],[744,536],[960,728],[132,855],[530,539],[582,879],[51,380],[430,118],[716,798],[245,207],[38,65],[494,845],[846,492],[635,80],[990,182],[129,439],[153,920],[933,535],[707,610],[722,781],[330,353],[958,579],[298,952],[418,285],[889,500],[618,606],[127,116],[412,861],[959,955],[937,535],[6,939],[299,648],[658,896],[465,539],[734,614],[754,477],[448,206],[5,993],[468,895],[299,428],[183,780],[698,211],[563,630],[503,820],[897,927],[268,611],[925,853],[58,788],[273,348],[739,426],[938,241],[296,256],[689,237],[275,589],[220,295],[284,74],[503,378],[17,749],[412,932],[83,301],[92,767],[769,723],[767,815],[439,942],[652,829],[627,208],[204,646],[9,238],[446,128],[345,129],[550,583],[689,529],[512,801],[318,723],[623,244],[176,887],[194,43],[63,94],[88,7],[59,960],[267,705],[990,614],[26,239],[15,319],[289,168],[409,83],[103,258],[757,428],[843,399],[82,820],[395,79],[937,457],[523,84],[275,821],[503,205],[585,933],[792,667],[275,725],[367,712],[518,740],[202,801],[544,268],[167,368],[960,29],[935,167],[694,153],[668,749],[639,80],[305,58],[35,618],[145,753],[516,5],[721,47],[423,790],[368,554],[226,498],[662,593],[415,641],[758,823],[250,206],[819,890],[867,120],[288,453],[870,309],[183,965],[806,936],[146,739],[513,407],[8,301],[329,333],[506,809],[399,574],[506,327],[545,816],[774,495],[749,504],[856,185],[531,722],[337,558],[930,914],[68,397],[692,534],[253,902],[124,582],[179,537],[944,261],[376,631],[968,760],[615,522],[409,102],[983,878],[784,830],[240,81],[544,142],[220,811],[2,765],[973,448],[781,492],[59,907],[668,187],[516,318],[275,436],[670,646],[32,450],[332,602],[116,931],[602,936],[150,21],[206,395],[631,807],[877,475],[47,681],[405,638],[861,297],[918,788],[736,412],[907,257],[515,128],[481,831],[407,189],[194,550],[71,881],[774,187],[380,560],[887,692],[799,214],[740,583],[944,481],[650,91],[43,400],[145,686],[136,280],[630,535],[721,204],[249,263],[911,957],[338,961],[707,232],[950,521],[105,210],[500,150],[168,166],[690,79],[215,613],[975,280],[680,300],[392,758],[838,368],[256,526],[881,219],[741,517],[900,765],[211,644],[64,813],[473,180],[316,345],[401,544],[852,390],[228,520],[730,481],[810,703],[141,461],[907,857],[840,252],[165,200],[489,81],[69,230],[459,236],[823,332],[868,155],[598,5],[399,432],[570,768],[807,953],[593,323],[841,227],[421,529],[103,996],[142,836],[23,292],[717,127],[300,232],[86,590],[222,455],[164,433],[913,536],[276,749],[204,76],[465,649],[105,925],[603,331],[201,175],[168,993],[788,441],[454,288],[128,822],[734,869],[908,439],[75,754],[293,321],[888,576],[147,873],[832,509],[674,944],[207,474],[628,9],[553,761],[42,563],[912,358],[530,581],[857,816],[640,654],[278,704],[770,394],[230,876],[513,872],[245,464],[39,891],[432,343],[201,260],[158,682],[691,867],[187,147],[203,2],[880,313],[916,285],[599,163],[799,357],[848,752],[349,880],[165,237],[62,497],[422,851],[838,843],[580,66],[397,576],[749,658],[99,479],[905,66],[72,679],[578,141],[273,6],[946,716],[803,81],[120,324],[881,107],[891,741],[792,51],[41,900],[934,624],[310,604],[678,32],[388,969],[216,803],[814,651],[420,734],[721,105],[893,15],[891,11],[847,574],[2,610],[99,755],[229,512],[746,678],[683,973],[639,39],[850,220],[734,911],[980,451],[132,164],[91,831],[732,579],[278,69],[489,511],[286,628],[85,84],[231,886],[236,206],[428,640],[842,382],[884,744],[462,218],[251,984],[531,338],[665,53],[22,469],[681,500],[303,143],[932,144],[446,917],[606,485],[263,772],[268,550],[634,190],[186,327],[470,713],[328,137],[171,124],[594,535],[681,488],[274,408],[898,371],[340,40],[576,935],[784,971],[519,234],[785,328],[774,832],[169,663],[809,467],[158,7],[862,800],[322,322],[77,440],[393,581],[732,735],[684,329],[826,174],[345,955],[319,772],[1,719],[722,693],[288,105],[23,204],[476,780],[936,84],[142,605],[85,943],[257,62],[461,221],[459,653],[279,842],[377,702],[225,182],[777,616],[106,321],[238,401],[938,557],[541,216],[523,397],[805,496],[285,481],[23,730],[458,603],[532,321],[315,201],[535,469],[27,462],[646,840],[746,160],[988,40],[850,38],[903,793],[126,950],[145,395],[151,276],[637,102],[860,133],[835,153],[208,484],[212,349],[314,805],[174,191],[573,152],[693,843],[878,560],[346,612],[122,839],[566,983],[211,565],[557,199],[777,344],[154,202],[934,684],[777,560],[659,842],[355,626],[749,269],[885,368],[41,878],[461,403],[4,574],[56,682],[341,628],[779,58],[807,149],[367,19],[431,959],[552,295],[942,251],[697,691],[851,198],[123,573],[129,78],[544,669],[928,486],[622,180],[7,640],[294,207],[1000,384],[548,609],[446,966],[646,320],[524,335],[297,885],[978,29],[737,17],[540,361],[586,844],[445,205],[782,114],[213,754],[794,331],[988,5],[720,968],[972,316],[27,311],[18,909],[536,527],[947,446],[699,409],[685,984],[193,183],[649,664],[933,544],[37,27],[566,266],[740,578],[747,984],[222,130],[683,99],[718,569],[555,890],[822,888],[798,799],[952,62],[308,987],[975,393],[542,88],[87,22],[339,168],[595,986],[370,570],[996,7],[74,737],[150,614],[497,769],[171,424],[365,720],[830,458],[792,83],[629,278],[111,219],[785,500],[954,24],[549,640],[501,439],[371,115],[770,25],[266,752],[153,470],[186,816],[295,364],[253,14],[36,368],[198,350],[454,805],[280,730],[796,706],[422,417],[722,995],[771,340],[764,791],[569,844],[404,837],[480,682],[48,104],[528,338],[821,268],[70,811],[395,445],[166,511],[116,890],[230,614],[729,194],[889,424],[326,587],[477,53],[431,407],[247,368],[945,245],[828,140],[630,453],[551,120],[377,766],[994,217],[602,289],[713,930],[565,635],[334,56],[215,435],[295,917],[839,854],[910,853],[676,84],[178,710],[991,301],[185,465],[41,499],[130,13],[425,402],[351,648],[529,571],[887,829],[221,151],[548,921],[391,18],[31,529],[173,596],[575,639],[760,514],[408,148],[818,514],[545,119],[1000,218],[433,889],[454,61],[413,963],[479,597],[188,670],[358,135],[592,208],[887,341],[828,598],[323,754],[455,466],[619,792],[33,719],[644,975],[423,82],[498,335],[37,752],[557,780],[459,642],[749,993],[561,941],[402,583],[298,683],[404,719],[473,650],[843,722],[954,989],[732,797],[475,377],[226,517],[724,386],[701,300],[41,197],[65,705],[347,180],[727,27],[685,148],[186,261],[10,344],[987,696],[528,217],[555,219],[969,340],[371,203],[994,262],[436,880],[585,338],[155,220],[164,675],[899,458],[907,350],[659,125],[954,246],[32,105],[598,919],[123,256],[586,39],[165,298],[968,65],[346,320],[779,676],[827,718],[213,108],[37,402],[893,368],[131,376],[743,869],[337,910],[772,944],[968,221],[485,446],[656,715],[338,300],[793,669],[104,678],[986,463],[146,592],[263,824],[567,185],[719,962],[663,17],[579,880],[953,764],[964,17],[77,161],[779,453],[722,630],[836,439],[36,896],[356,962],[765,669],[313,952],[844,337],[261,779],[813,324],[429,499],[194,202],[779,957],[678,721],[807,975],[462,604],[938,774],[416,780],[521,727],[393,145],[661,135],[355,354],[827,293],[110,114],[536,583],[327,27],[210,564],[834,87],[494,375],[823,967],[173,57],[22,895],[337,543],[11,50],[947,810],[976,160],[572,203],[172,910],[631,615],[108,505],[629,394],[703,567],[207,273],[786,78],[299,670],[937,930],[792,487],[333,46],[195,26],[181,659],[440,749],[652,986],[497,545],[752,93],[863,607],[884,153],[800,502],[33,430],[559,297],[449,777],[154,295],[513,874],[690,623],[942,816],[157,773],[415,645],[688,451],[898,31],[809,476],[767,412],[10,991],[598,196],[528,94],[81,230],[704,396],[962,912],[271,398],[621,346],[69,853],[599,31],[765,265],[43,569],[64,933],[298,857],[794,506],[298,835],[782,674],[515,109],[478,793],[430,566],[841,743],[192,862],[785,471],[344,671],[318,100],[225,267],[148,264],[458,465],[429,541],[72,150],[803,290],[719,763],[586,179],[933,897],[695,595],[342,411],[744,131],[959,648],[939,141],[238,988],[10,80],[990,763],[380,606],[143,350],[281,798],[515,632],[512,749],[141,648],[784,451],[235,715],[11,41],[579,602],[45,161],[680,894],[375,83],[549,968],[441,120],[818,116],[858,325],[835,975],[518,799],[261,559],[35,905],[346,964],[419,615],[144,332],[983,875],[250,265],[492,592],[501,77],[313,657],[593,68],[967,824],[614,835],[564,753],[393,475],[584,347],[708,812],[705,776],[186,743],[573,717],[804,489],[408,495],[179,535],[183,22],[522,790],[972,820],[495,211],[302,153],[219,691],[388,608],[528,894],[560,873],[400,679],[716,196],[919,457],[766,777],[940,540],[902,555],[318,276],[477,769],[963,683],[380,245],[670,867],[764,605],[787,175],[92,296],[454,619],[423,9],[469,178],[739,265],[488,941],[154,754],[867,277],[146,780],[188,719],[430,712],[164,401],[314,536],[923,37],[228,887],[918,806],[425,499],[33,9],[68,923],[113,477],[833,206],[980,41],[778,230],[319,226],[765,410],[629,890],[825,958],[521,908],[87,779],[612,529],[440,805],[161,977],[796,901],[423,149],[908,928],[204,953],[450,66],[133,423],[529,759],[192,376],[946,383],[203,789],[388,193],[500,994],[515,396],[586,796],[913,340],[658,639],[362,470],[977,714],[263,761],[266,601],[522,280],[472,354],[680,896],[369,275],[201,156],[769,792],[918,847],[901,542],[44,514],[46,24],[895,296],[941,950],[260,722],[881,701],[462,103],[259,763],[507,968],[629,693],[36,230],[633,686],[688,31],[75,564],[782,617],[525,166],[666,666],[747,214],[275,77],[61,106],[384,322],[36,646],[386,589],[174,751],[183,481],[62,632],[724,225],[685,661],[108,42],[245,12],[954,378],[458,766],[623,477],[118,881],[808,527],[95,523],[142,468],[566,218],[135,814],[79,489],[10,489],[515,795],[146,971],[27,332],[276,638],[884,2],[560,955],[422,859],[551,743],[881,400],[73,512],[995,937],[937,270],[44,834],[676,93],[209,547],[830,366],[848,757],[2,240],[117,38],[370,826],[533,838],[323,654],[320,301],[158,744],[519,520],[455,440],[254,970],[772,779],[498,188],[436,953],[812,981],[529,606],[422,805],[228,171],[667,386],[728,921],[408,593],[60,26],[226,712],[88,482],[297,581],[753,646],[626,915],[400,738],[845,544],[663,844],[88,640],[781,269],[769,901],[886,712],[780,464],[139,229],[941,887],[705,498],[26,207],[249,666],[914,142],[446,663],[581,53],[266,427],[19,408],[755,72],[467,702],[672,752],[368,768],[396,824],[779,229],[509,130],[132,786],[856,476],[752,249],[424,182],[956,966],[448,691],[826,321],[853,773],[586,495],[939,54],[762,721],[338,241],[16,295],[523,640],[549,640],[969,108],[42,610],[564,744],[893,931],[355,349],[148,294],[789,330],[719,18],[889,190],[707,845],[586,299],[102,193],[843,124],[63,552],[692,276],[873,686],[269,519],[513,493],[34,159],[8,330],[272,430],[25,429],[281,967],[869,123],[135,442],[791,438],[386,866],[998,709],[384,468],[360,43],[988,247],[199,749],[110,845],[385,244],[967,822],[482,43],[13,59],[827,190],[953,447],[160,397],[945,811],[103,634],[198,501],[30,543],[645,41],[876,325],[583,7],[257,407],[698,801],[952,383],[114,583],[674,635],[132,778],[561,345],[351,46],[911,883],[673,71],[153,119],[78,601],[836,305],[251,285],[790,278],[78,416],[152,539],[978,544],[898,312],[115,23],[282,444],[366,797],[18,930],[989,689],[28,186],[858,857],[809,305],[513,434],[538,688],[995,815],[838,586],[733,476],[926,926],[112,355],[749,486],[597,607],[124,922],[39,819],[851,303],[978,640],[706,483],[972,29],[334,899],[853,321],[504,162],[233,474],[534,607],[343,220],[28,963],[961,94],[760,326],[955,995],[791,631],[282,55],[859,97],[370,733],[294,452],[590,592],[649,437],[859,873],[199,144],[611,66],[583,28],[339,59],[43,780],[820,535],[515,685],[471,358],[552,526],[772,339],[121,542],[71,8],[645,134],[155,315],[872,970],[476,571],[365,101],[276,244],[679,959],[552,627],[853,884],[147,482],[355,331],[314,503],[880,781],[864,679],[750,593],[160,897],[21,31],[187,207],[23,318],[117,687],[791,39],[406,52],[821,620],[151,660],[583,531],[408,188],[112,235],[182,614],[495,36],[126,174],[454,846],[32,351],[430,376],[60,416],[629,318],[384,759],[948,512],[579,285],[955,712],[758,133],[721,456],[263,906],[300,35],[803,865],[857,551],[280,463],[445,693],[903,399],[409,449],[818,887],[733,491],[353,45],[367,124],[195,460],[649,453],[103,261],[157,107],[547,871],[131,625],[461,101],[674,306],[24,389],[939,196],[647,597],[527,414],[349,663],[893,660],[144,579],[589,57],[144,523],[471,88],[738,277],[84,780],[334,666],[266,276],[252,281],[729,330],[696,655],[616,962],[563,292],[524,449],[194,719],[753,731],[639,486],[818,589],[21,467],[879,482],[82,969],[177,447],[347,361],[681,573],[435,447],[697,153],[896,44],[790,772],[32,415],[250,873],[277,309],[372,933],[866,629],[403,657],[590,307],[963,160],[541,817],[641,32],[932,20],[309,122],[891,815],[931,424],[322,265],[195,322],[402,912],[412,120],[364,809],[88,604],[184,208],[754,665],[438,228],[342,535],[337,569],[893,279],[115,282],[138,880],[794,202],[945,83],[643,981],[765,563],[886,985],[254,99],[599,586],[459,58],[298,962],[400,408],[924,814],[515,429],[957,353],[604,181],[895,849],[230,367],[180,688],[789,326],[195,9],[968,806],[692,752],[744,83],[848,862],[609,534],[24,853],[98,287],[823,742],[269,480],[389,221],[191,535],[444,873],[312,880],[114,774],[516,92],[534,317],[958,958],[617,729],[978,12],[470,630],[962,721],[443,130],[465,542],[242,906],[935,299],[797,45],[577,199],[261,502],[457,303],[529,512],[663,149],[403,323],[889,481],[650,852],[734,984],[621,547],[586,543],[166,918],[981,994],[624,888],[108,451],[539,543],[435,647],[317,55],[461,344],[672,126],[188,519],[711,97],[415,38],[255,815],[829,335],[234,255],[807,386],[334,501],[658,25],[666,758],[771,265],[764,538],[352,883],[285,551],[234,431],[845,627],[179,207],[915,494],[400,905],[614,522],[973,525],[513,759],[605,891],[563,740],[624,417],[203,528],[824,753],[964,726],[20,213],[234,261],[225,795],[447,444],[568,169],[783,682],[125,438],[436,102],[516,656],[394,809],[582,323],[464,656],[540,976],[975,677],[731,220],[367,929],[641,777],[813,3],[45,235],[383,672],[919,489],[286,906],[66,645],[587,739],[586,247],[873,809],[563,463],[931,777],[917,105],[577,315],[729,217],[791,164],[761,520],[980,175],[205,752],[361,539],[152,430],[572,505],[709,528],[641,249],[713,71],[841,126],[854,114],[262,707],[513,160],[141,190],[957,970],[635,534],[301,322],[791,336],[431,127],[218,662],[537,701],[871,811],[941,82],[341,940],[985,714],[65,148],[823,123],[747,824],[904,993],[350,809],[133,383],[895,115],[392,817],[383,884],[88,266],[425,610],[32,641],[820,421],[79,966],[273,773],[696,588],[725,115],[161,924],[135,804],[581,595],[491,538],[681,641],[503,771],[49,61],[103,890],[40,246],[902,312],[581,709],[70,707],[335,776],[377,113],[315,181],[983,328],[483,214],[824,291],[9,205],[622,70],[263,305],[327,652],[595,913],[402,118],[630,931],[188,871],[656,746],[762,272],[786,269],[799,415],[408,17],[32,50],[255,778],[99,640],[983,398],[925,88],[32,247],[977,509],[429,738],[750,728],[348,238],[599,702],[365,268],[298,902],[873,530],[108,350],[610,578],[58,98],[106,911],[748,320],[767,153],[565,312],[281,679],[573,699],[631,489],[341,600],[295,5],[863,862],[150,393],[568,838],[830,981],[20,968],[426,859],[641,351],[880,187],[253,308],[466,272],[440,69],[848,380],[358,854],[665,966],[508,482],[282,275],[425,264],[594,534],[278,113],[326,109],[667,258],[771,181],[181,15],[393,298],[276,592],[622,445],[376,88],[135,429],[987,322],[933,137],[952,115],[47,876],[810,720],[886,454],[294,790],[815,278],[813,740],[580,21],[774,878],[625,794],[753,22],[639,946],[152,722],[725,827],[91,480],[227,146],[347,149],[435,227],[641,145],[982,212],[964,994],[473,409],[485,556],[549,198],[398,328],[936,93],[953,507],[408,78],[300,332],[445,219],[595,126],[174,849],[247,732],[240,321],[212,865],[140,574],[694,949],[297,292],[474,297],[287,827],[499,841],[590,118],[455,55],[64,865],[188,74],[336,12],[970,223],[853,813],[669,764],[391,312],[171,223],[213,770],[217,575],[705,897],[905,730],[634,875],[782,757],[885,566],[500,242],[847,612],[310,792],[50,608],[370,559],[725,962],[665,153],[95,745],[922,206],[830,559],[395,385],[630,929],[55,921],[977,105],[812,756],[16,170],[914,918],[895,712],[319,324],[893,40],[485,345],[391,510],[141,841],[34,754],[450,393],[572,472],[380,483],[717,515],[841,796],[972,735],[908,812],[862,567],[759,731],[494,765],[999,81],[58,744],[226,382],[236,862],[444,347],[672,280],[90,778],[141,473],[909,961],[107,210],[981,486],[518,606],[935,896],[388,25],[799,959],[540,643],[716,661],[727,799],[467,502],[159,869],[870,103],[646,838],[330,528],[684,116],[814,733],[978,380],[6,831],[845,630],[31,249],[483,923],[360,725],[939,801],[916,105],[128,339],[904,992],[429,430],[815,233],[890,33],[884,104],[171,806],[187,143],[509,654],[442,72],[202,336],[499,184],[573,357],[366,276],[563,590],[68,904],[623,731],[553,127],[823,927],[794,592],[699,643],[942,963],[231,881],[260,467],[964,310],[238,810],[675,853],[846,659],[974,970],[139,986],[713,839],[268,722],[644,983],[156,606],[730,206],[445,138],[461,7],[467,638],[226,831],[688,139],[153,3],[426,483],[688,199],[303,870],[107,681],[996,94],[943,816],[670,989],[237,415],[855,939],[741,242],[634,361],[94,907],[960,53],[355,699],[759,963],[723,258],[759,564],[247,56],[655,336],[727,381],[239,89],[540,181],[378,536],[374,49],[478,687],[121,987],[373,850],[387,374],[881,394],[547,843],[346,794],[436,381],[592,469],[27,459],[234,542],[507,110],[606,179],[746,925],[539,680],[856,997],[110,38],[495,527],[288,826],[978,798],[958,60],[651,272],[214,460],[825,32],[812,666],[366,747],[569,394],[219,913],[312,56],[138,245],[196,162],[559,928],[293,461],[364,161],[67,884],[756,75],[186,955],[956,147],[24,961],[530,37],[209,5],[541,17],[346,538],[475,626],[540,862],[700,323],[454,899],[543,447],[663,567],[406,322],[53,852],[769,679],[532,697],[67,270],[850,228],[16,867],[257,390],[812,549],[163,980],[34,693],[288,117],[231,44],[552,393],[934,337],[118,164],[722,17],[491,643],[244,656],[614,293],[75,291],[959,16],[402,668],[451,704],[660,806],[565,106],[354,887],[942,396],[107,303],[554,371],[205,767],[181,536],[51,804],[708,75],[658,216],[95,674],[540,760],[254,956],[219,9],[960,729],[117,423],[683,871],[865,23],[546,311],[940,1000],[604,73],[142,674],[812,728],[843,9],[465,326],[843,898],[388,844],[903,98],[24,124],[594,193],[876,43],[876,951],[360,127],[295,974],[41,334],[570,403],[359,185],[777,77],[156,209],[635,802],[878,626],[173,137],[386,400],[628,569],[338,102],[90,718],[576,234],[980,621],[485,403],[615,442],[906,150],[182,870],[476,475],[657,393],[512,267],[840,631],[749,765],[427,28],[348,498],[205,181],[954,920],[370,305],[549,554],[467,107],[658,161],[902,574],[771,76],[503,812],[511,305],[452,250],[391,241],[702,549],[140,41],[79,444],[598,357],[77,457],[957,577],[938,682],[698,548],[147,255],[345,25],[436,166],[708,26],[335,150],[451,119],[32,317],[28,824],[247,5],[360,18],[794,619],[335,747],[903,655],[782,327],[712,909],[978,912],[637,163],[825,908],[470,14],[428,463],[938,313],[356,115],[378,583],[750,433],[159,647],[85,569],[978,276],[627,808],[223,858],[6,793],[708,586],[893,182],[100,321],[898,192],[644,174],[968,637],[729,153],[623,967],[445,780],[340,528],[637,3],[754,543],[988,723],[318,459],[90,831],[873,864],[370,242],[887,962],[589,743],[834,821],[76,967],[508,575],[178,866],[711,65],[75,736],[60,94],[564,93],[665,764],[469,282],[643,654],[755,671],[636,347],[981,859],[694,373],[645,942],[235,857],[17,345],[894,846],[413,750],[107,21],[357,616],[505,487],[68,77],[357,384],[296,377],[212,790],[216,617],[33,953],[223,127],[557,892],[239,249],[571,256],[836,956],[829,750],[753,796],[551,554],[666,579],[213,257],[326,512],[60,398],[18,599],[724,520],[704,164],[511,400],[843,431],[446,879],[254,838],[840,68],[994,597],[58,827],[216,677],[576,214],[379,103],[552,724],[739,74],[921,196],[641,635],[808,962],[112,289],[366,650],[404,508],[435,85],[343,529],[857,722],[189,942],[546,135],[128,910],[119,516],[82,881],[335,758],[463,501],[12,830],[911,482],[203,576],[713,421],[281,521],[141,981],[106,876],[359,995],[138,42],[646,16],[530,212],[288,191],[12,220],[910,186],[690,473],[764,664],[954,691],[692,325],[961,640],[369,458],[341,780],[207,742],[223,43],[414,909],[589,485],[700,768],[948,691],[295,976],[957,495],[305,221],[252,539],[272,236],[386,396],[502,650],[412,279],[769,410],[912,256],[394,474],[878,609],[22,593],[692,997],[515,924],[644,697],[657,794],[841,943],[988,946],[55,749],[748,630],[512,196],[852,596],[546,967],[453,143],[183,941],[674,308],[942,580],[516,433],[872,946],[726,750],[93,987],[458,787],[992,265],[570,487],[734,320],[682,672],[447,498],[498,575],[883,79],[271,863],[947,126],[909,917],[52,869],[448,211],[203,388],[489,216],[767,534],[940,12],[268,967],[671,508],[88,267],[572,269],[826,520],[395,997],[467,567],[808,654],[381,817],[755,553],[324,506],[239,354],[129,745],[929,739],[824,493],[301,257],[832,915],[621,242],[484,482],[70,172],[271,839],[100,542],[305,382],[634,798],[740,449],[209,748],[740,890],[405,449],[545,146],[311,452],[310,129],[632,219],[50,346],[210,293],[728,154],[732,249],[610,540],[748,993],[601,892],[738,619],[831,812],[31,560],[783,330],[381,899],[238,84],[797,872],[948,728],[402,601],[970,659],[533,734],[441,354],[799,195],[833,692],[109,570],[309,900],[742,838],[164,801],[432,260],[94,819],[71,162],[283,460],[185,487],[594,782],[784,141],[770,420],[596,85],[30,136],[822,732],[753,457],[560,264],[263,781],[305,470],[104,543],[521,425],[164,622],[937,583],[274,809],[235,919],[356,55],[228,585],[632,985],[586,880],[88,107],[179,493],[932,529],[610,608],[316,547],[211,977],[576,610],[112,522],[656,539],[281,980],[179,886],[662,411],[664,701],[832,888],[129,471],[892,431],[63,854],[105,360],[791,715],[401,669],[861,243],[674,902],[1000,668],[606,589],[271,519],[830,909],[692,852],[473,196],[570,802],[484,783],[954,8],[930,811],[610,682],[895,583],[81,88],[714,101],[413,41],[435,878],[15,668],[688,722],[141,546],[693,300],[14,258],[500,901],[970,813],[536,560],[852,97],[29,114],[206,570],[21,27],[310,156],[812,379],[908,997],[624,363],[909,325],[190,257],[369,526],[631,556],[970,673],[965,885],[489,690],[616,747],[281,810],[686,912],[899,312],[202,542],[415,602],[268,354],[774,881],[907,958],[402,876],[690,402],[328,924],[878,504],[663,367],[597,362],[846,506],[986,572],[956,30],[603,416],[317,953],[157,722],[620,496],[480,625],[441,591],[467,397],[133,999],[750,70],[880,937],[150,633],[173,23],[226,911],[511,51],[154,205],[459,415],[629,650],[220,719],[300,983],[919,755],[126,340],[788,668],[316,190],[564,507],[825,395],[51,558],[265,10],[559,713],[156,533],[263,707],[111,758],[212,810],[578,687],[362,501],[536,355],[952,361],[48,774],[816,34],[669,408],[855,668],[653,133],[3,167],[295,823],[556,49],[384,403],[821,358],[961,594],[358,143],[872,497],[518,458],[531,172],[595,41],[57,197],[962,865],[908,325],[948,192],[592,408],[843,935],[149,416],[413,632],[573,850],[284,278],[246,573],[694,964],[518,514],[773,417],[974,88],[278,162],[278,830],[248,323],[213,422],[620,890],[457,699],[447,696],[308,91],[291,749],[412,29],[170,811],[949,900],[938,834],[421,760],[297,30],[299,539],[561,686],[671,601],[946,811],[913,373],[693,155],[637,294],[642,502],[72,621],[911,793],[805,930],[252,839],[350,237],[331,556],[870,359],[362,876],[8,921],[922,636],[596,297],[4,977],[385,747],[568,906],[724,796],[957,873],[546,726],[823,206],[567,903],[743,215],[74,714],[19,779],[491,147],[20,753],[828,768],[971,677],[437,271],[304,992],[533,100],[349,283],[184,988],[430,941],[511,305],[662,348],[128,201],[349,746],[768,841],[196,260],[817,477],[681,564],[152,331],[386,327],[511,330],[964,955],[372,964],[986,563],[997,69],[303,897],[158,534],[513,823],[932,269],[746,659],[897,172],[398,540],[31,644],[328,589],[571,576],[811,347],[680,608],[443,365],[554,121],[189,762],[440,589],[810,98],[547,341],[897,408],[132,400],[421,324],[135,386],[769,829],[598,868],[489,652],[47,716],[429,314],[128,173],[369,905],[789,166],[692,652],[405,243],[235,746],[203,642],[641,554],[701,123],[761,156],[153,322],[648,20],[694,486],[251,626],[976,350],[149,767],[622,341],[859,84],[808,302],[396,288],[943,306],[877,517],[855,558],[363,356],[662,158],[628,399],[664,645],[534,275],[472,80],[925,362],[233,345],[151,796],[323,117],[464,773],[437,483],[267,293],[454,697],[518,120],[181,965],[650,171],[421,783],[209,814],[771,840],[62,950],[695,285],[133,208],[558,322],[749,472],[737,85],[282,674],[743,642],[653,257],[306,550],[684,86],[653,502],[120,973],[411,488],[602,727],[498,504],[640,294],[599,865],[773,789],[785,357],[619,534],[689,646],[981,200],[182,137],[528,100],[853,208],[191,260],[501,553],[24,412],[578,530],[140,531],[25,254],[530,639],[976,53],[445,621],[393,225],[30,741],[132,356],[691,937],[290,740],[973,313],[136,311],[971,618],[844,949],[291,515],[719,797],[361,987],[803,40],[349,609],[535,388],[854,756],[2,259],[468,816],[669,34],[444,697],[903,540],[48,830],[388,948],[804,827],[88,419],[834,790],[35,672],[378,752],[603,960],[993,147],[620,700],[669,704],[64,869],[192,505],[185,256],[26,499],[9,798],[845,319],[630,440],[572,204],[990,995],[252,492],[264,927],[908,322],[514,363],[834,89],[621,2],[512,531],[92,164],[671,956],[40,273],[507,130],[39,750],[897,323],[512,821],[914,357],[408,526],[561,289],[26,39],[632,98],[333,960],[850,990],[107,890],[425,45],[61,792],[427,27],[781,147],[682,470],[102,688],[373,478],[189,467],[200,795],[696,326],[24,273],[133,775],[841,448],[685,9],[270,730],[657,650],[435,700],[764,839],[514,768],[999,835],[888,71],[919,896],[304,245],[829,173],[631,255],[544,843],[527,685],[907,665],[759,163],[272,945],[960,416],[382,984],[119,699],[247,394],[780,980],[38,651],[286,729],[819,477],[774,639],[477,497],[819,32],[384,834],[42,997],[109,94],[408,236],[651,502],[119,594],[265,188],[150,663],[741,54],[94,861],[218,498],[566,314],[413,103],[212,702],[659,241],[143,314],[458,42],[489,302],[397,343],[690,75],[27,250],[404,345],[614,706],[911,71],[744,135],[596,529],[295,626],[377,957],[911,198],[804,578],[474,404],[522,158],[965,928],[466,267],[674,419],[856,821],[9,749],[851,811],[677,378],[375,335],[366,169],[333,291],[805,551],[898,172],[843,773],[775,673],[944,494],[949,598],[935,11],[748,698],[648,63],[835,949],[617,654],[743,483],[90,349],[317,162],[583,897],[388,256],[354,526],[783,801],[552,491],[237,206],[407,483],[482,611],[561,187],[80,441],[869,735],[632,580],[532,2],[262,985],[853,695],[403,427],[904,221],[152,686],[799,696],[812,879],[921,867],[84,166],[179,220],[520,320],[470,722],[510,551],[859,368],[836,928],[387,230],[11,17],[522,601],[689,175],[96,260],[677,96],[946,483],[693,26],[347,102],[19,334],[769,765],[190,329],[810,523],[975,761],[782,598],[930,749],[60,300],[264,611],[533,31],[378,52],[132,176],[305,620],[841,650],[784,923],[585,966],[794,318],[611,68],[485,436],[961,188],[860,77],[193,830],[978,65],[647,762],[924,403],[256,833],[389,58],[335,521],[125,640],[37,482],[553,216],[731,456],[719,57],[163,948],[227,592],[169,418],[934,96],[992,241],[789,620],[720,890],[956,513],[348,597],[843,652],[250,513],[787,103],[745,851],[262,188],[285,911],[949,607],[499,841],[804,16],[832,214],[655,113],[251,773],[618,296],[704,713],[557,914],[309,947],[493,350],[879,204],[974,744],[698,969],[160,861],[744,418],[278,64],[570,94],[351,204],[268,204],[951,517],[793,715],[147,894],[199,10],[166,246],[524,948],[859,677],[821,69],[658,714],[945,615],[738,600],[467,582],[864,705],[573,937],[680,911],[229,771],[242,737],[987,627],[551,174],[59,733],[121,637],[742,370],[866,592],[17,824],[825,543],[856,9],[642,847],[195,128],[668,759],[511,487],[607,463],[2,355],[513,559],[599,522],[451,151],[530,982],[72,510],[577,243],[130,548],[9,319],[635,226],[839,575],[687,52],[877,482],[468,976],[158,336],[549,482],[235,178],[452,307],[701,911],[944,700],[693,699],[9,664],[649,532],[708,384],[521,615],[610,315],[959,336],[482,65],[377,612],[714,594],[155,562],[123,732],[650,87],[888,570],[199,90],[96,424],[406,230],[327,395],[883,368],[27,783],[778,427],[206,891],[90,22],[839,900],[833,37],[174,368],[573,403],[781,265],[482,711],[55,272],[718,833],[939,468],[654,140],[365,438],[962,360],[155,853],[851,819],[547,50],[594,660],[152,653],[984,630],[361,539],[971,182],[401,812],[291,470],[83,921],[269,709],[725,429],[696,838],[677,893],[914,89],[298,810],[863,877],[455,568],[464,568],[921,467],[264,554],[900,473],[159,438],[425,455],[235,469],[458,825],[848,427],[806,575],[43,767],[424,28],[703,26],[354,345],[652,713],[274,926],[6,567],[473,803],[325,806],[298,517],[179,623],[678,593],[626,512],[825,466],[648,958],[46,981],[313,696],[600,735],[710,394],[200,886],[333,263],[548,346],[472,471],[212,766],[698,326],[512,321],[630,365],[252,217],[229,112],[753,43],[360,815],[284,823],[694,703],[359,83],[117,909],[311,261],[70,769],[442,575],[546,800],[213,547],[421,287],[694,119],[441,589],[728,261],[49,30],[888,752],[304,167],[978,787],[85,90],[682,14],[464,348],[603,490],[665,880],[261,969],[747,324],[770,668],[755,801],[276,739],[776,821],[37,534],[128,430],[704,465],[301,685],[553,956],[198,615],[378,876],[367,17],[587,973],[661,34],[496,887],[830,515],[387,445],[594,347],[632,100],[872,380],[888,760],[582,923],[896,363],[820,804],[837,47],[189,693],[215,666],[573,841],[714,697],[303,219],[708,690],[962,896],[979,471],[465,80],[9,643],[252,756],[169,619],[628,87],[281,822],[690,535],[826,514],[968,776],[444,95],[508,105],[81,283],[571,721],[935,984],[659,295],[416,440],[88,447],[336,49],[474,544],[940,182],[397,513],[54,612],[203,362],[372,780],[810,290],[700,644],[217,703],[359,827],[178,625],[562,929],[265,397],[847,196],[452,479],[454,228],[607,497],[296,121],[341,870],[797,719],[206,886],[202,57],[370,428],[804,587],[849,6],[985,186],[919,150],[395,898],[923,344],[410,513],[937,542],[702,348],[725,789],[846,508],[105,484],[286,394],[775,360],[662,890],[929,88],[96,599],[307,723],[369,734],[806,624],[779,401],[185,557],[724,377],[812,58],[850,781],[761,930],[439,2],[738,979],[36,485],[918,411],[844,53],[353,160],[552,722],[890,90],[412,168],[558,877],[26,570],[587,280],[636,453],[405,802],[71,675],[704,917],[829,730],[206,267],[311,134],[667,793],[901,267],[548,162],[370,328],[149,318],[126,202],[661,3],[296,621],[804,419],[39,569],[205,122],[413,967],[750,643],[626,155],[464,928],[373,981],[78,116],[342,568],[210,709],[528,626],[887,726],[815,154],[399,428],[877,959],[284,223],[314,354],[729,242],[385,386],[28,690],[114,855],[995,301],[613,999],[484,774],[390,688],[985,86],[933,300],[494,502],[745,814],[668,828],[408,771],[707,798],[153,849],[883,959],[261,343],[98,217],[573,321],[540,536],[772,138],[176,896],[757,190],[380,380],[440,325],[417,550],[329,592],[858,982],[275,838],[906,927],[929,661],[949,857],[534,264],[784,326],[878,318],[61,969],[389,976],[102,193],[890,490],[589,581],[17,526],[585,445],[644,365],[24,375],[1000,599],[288,718],[633,801],[921,939],[256,578],[130,284],[134,329],[246,267],[430,776],[498,359],[248,627],[906,323],[797,112],[641,700],[906,431],[916,781],[961,324],[278,61],[994,269],[720,247],[85,487],[981,706],[3,81],[203,443],[551,227],[552,583],[149,234],[41,874],[705,771],[327,848],[649,293],[188,983],[876,948],[966,205],[862,557],[94,731],[334,839],[54,747],[476,697],[685,941],[425,101],[925,637],[12,309],[621,83],[815,928],[808,165],[183,5],[172,545],[355,258],[856,973],[627,393],[563,910],[791,338],[787,66],[282,444],[60,909],[159,617],[94,191],[638,918],[84,883],[532,714],[634,349],[951,788],[194,276],[1000,218],[854,868],[997,805],[32,625],[916,560],[940,684],[510,496],[157,963],[391,204],[336,341],[509,147],[770,393],[244,58],[349,569],[989,636],[490,700],[290,686],[802,374],[687,482],[451,895],[423,547],[66,900],[148,502],[716,683],[769,464],[531,520],[892,453],[591,194],[701,503],[414,420],[801,839],[368,498],[965,8],[387,126],[358,840],[232,514],[954,835],[332,812],[226,792],[665,593],[888,588],[76,257],[998,55],[361,598],[878,722],[269,388],[806,618],[436,278],[431,580],[756,272],[739,724],[472,499],[773,530],[914,961],[136,156],[56,801],[601,739],[656,27],[23,344],[429,542],[797,302],[135,731],[101,423],[788,669],[345,800],[417,699],[440,122],[140,887],[114,715],[148,162],[114,892],[939,261],[106,779],[294,224],[971,414],[477,979],[452,758],[724,288],[706,746],[850,771],[373,118],[95,624],[375,500],[336,720],[464,553],[840,360],[415,79],[945,774],[251,5],[280,457],[922,609],[245,726],[736,722],[490,884],[633,444],[848,672],[78,301],[189,825],[759,28],[443,901],[300,304],[978,190],[179,655],[540,201],[233,763],[667,903],[798,176],[96,99],[236,333],[141,643],[440,852],[974,159],[216,122],[163,10],[693,202],[520,951],[375,66],[288,893],[912,952],[32,248],[179,927],[947,619],[572,468],[841,467],[255,943],[490,435],[845,340],[208,884],[427,377],[731,74],[843,7],[422,443],[742,413],[247,147],[804,176],[573,189],[381,394],[566,852],[753,318],[204,753],[23,464],[949,40],[732,900],[238,769],[926,784],[239,684],[633,22],[37,761],[126,450],[153,949],[877,561],[200,849],[502,405],[204,95],[126,387],[928,457],[133,141],[391,651],[421,400],[10,479],[915,361],[413,492],[204,259],[982,850],[75,690],[772,44],[482,878],[680,699],[642,226],[672,783],[703,556],[511,136],[820,543],[340,193],[491,385],[899,818],[549,169],[395,627],[239,466],[277,360],[854,118],[874,707],[479,184],[63,763],[134,126],[817,840],[441,116],[669,744],[108,271],[463,537],[516,109],[890,30],[276,798],[257,602],[720,953],[948,818],[243,159],[181,904],[660,588],[703,25],[671,886],[607,566],[789,58],[447,259],[727,714],[386,335],[441,896],[899,487],[32,30],[319,501],[325,866],[42,175],[229,996],[258,785],[457,304],[246,749],[642,938],[415,917],[554,273],[357,414],[80,620],[148,139],[57,575],[396,862],[270,205],[808,245],[793,196],[552,797],[888,530],[575,662],[695,693],[488,221],[821,52],[629,963],[945,269],[431,594],[289,556],[728,306],[359,382],[39,425],[992,304],[153,692],[580,234],[871,657],[889,937],[705,845],[796,403],[488,893],[712,650],[846,573],[900,668],[226,839],[276,197],[360,641],[278,66],[120,838],[324,148],[454,713],[332,604],[264,255],[688,831],[881,618],[130,392],[711,883],[823,87],[628,322],[569,24],[836,532],[883,138],[503,77],[575,955],[401,738],[460,689],[619,268],[101,7],[296,574],[1000,331],[81,868],[373,277],[845,407],[461,832],[987,379],[15,250],[609,565],[611,324],[631,131],[778,165],[165,149],[448,377],[33,913],[66,529],[807,1000],[416,642],[319,404],[800,472],[668,479],[244,455],[67,51],[312,618],[582,582],[164,898],[910,327],[37,854],[941,533],[8,860],[611,331],[795,541],[405,61],[706,232],[460,11],[807,563],[91,572],[927,320],[414,212],[754,931],[82,486],[743,305],[301,173],[633,990],[981,957],[497,705],[858,583],[186,54],[347,394],[587,350],[361,290],[179,365],[860,740],[535,779],[530,266],[390,125],[748,342],[254,389],[474,846],[368,509],[451,821],[643,460],[770,186],[90,951],[151,961],[938,656],[916,819],[514,207],[197,418],[481,640],[118,290],[577,782],[729,91],[127,174],[610,520],[182,486],[132,121],[922,494],[165,271],[820,246],[229,97],[855,267],[964,111],[98,724],[723,448],[636,544],[792,224],[949,534],[48,894],[804,498],[419,775],[769,458],[175,661],[279,523],[33,279],[288,927],[205,100],[686,187],[154,382],[484,479],[149,63],[726,948],[863,115],[989,463],[305,88],[769,486],[439,518],[260,880],[624,832],[294,680],[805,493],[277,142],[31,931],[771,564],[765,80],[60,476],[527,159],[449,890],[992,384],[297,941],[997,346],[234,368],[296,229],[963,41],[764,601],[723,144],[54,267],[910,234],[361,582],[563,461],[39,654],[1000,77],[178,923],[5,331],[604,428],[996,667],[498,32],[735,679],[818,307],[662,503],[434,395],[26,930],[852,92],[502,929],[403,705],[666,867],[333,978],[387,817],[620,960],[33,293],[886,698],[463,572],[924,472],[471,720],[324,253],[638,662],[694,761],[797,71],[368,935],[483,750],[331,562],[987,233],[27,158],[8,998],[654,540],[490,56],[869,523],[868,480],[234,847],[19,936],[463,252],[672,868],[154,3],[273,259],[525,731],[33,120],[158,355],[825,501],[941,299],[205,109],[370,54],[646,210],[271,303],[626,218],[362,835],[81,817],[680,350],[867,663],[341,183],[692,69],[264,944],[380,449],[76,679],[182,490],[283,571],[605,568],[683,299],[869,486],[276,493],[602,970],[220,150],[743,299],[648,896],[653,783],[526,240],[810,136],[610,641],[177,434],[736,864],[881,106],[976,175],[769,224],[755,186],[17,941],[439,305],[228,735],[563,679],[83,374],[996,825],[352,207],[117,234],[160,285],[559,298],[650,670],[916,187],[112,622],[665,465],[383,606],[648,745],[997,155],[477,675],[658,508],[181,801],[423,61],[776,970],[201,498],[540,967],[755,42],[110,322],[26,983],[44,438],[956,159],[904,662],[112,233],[575,305],[43,634],[641,87],[298,91],[548,915],[458,350],[233,36],[919,912],[927,805],[856,357],[766,527],[966,511],[645,192],[352,360],[494,432],[66,852],[715,514],[399,539],[947,87],[294,894],[116,729],[976,406],[923,594],[601,998],[202,944],[702,446],[397,624],[22,995],[586,115],[866,889],[757,988],[742,816],[61,126],[397,527],[437,506],[843,25],[443,850],[936,188],[54,20],[980,600],[641,448],[661,366],[332,147],[775,321],[948,306],[65,566],[143,697],[379,468],[748,117],[684,100],[763,746],[213,535],[539,716],[645,587],[429,233],[282,476],[203,10],[497,38],[950,102],[271,992],[770,499],[466,906],[269,589],[412,277],[391,10],[861,676],[275,633],[606,200],[604,154],[413,170],[180,496],[426,537],[863,937],[712,154],[915,855],[222,141],[142,997],[617,719],[831,578],[128,159],[322,826],[909,938],[770,38],[526,626],[769,466],[435,599],[643,627],[275,571],[563,338],[709,179],[29,264],[665,463],[234,246],[526,420],[149,393],[984,831],[383,699],[261,468],[39,435],[209,14],[917,377],[271,17],[471,618],[781,905],[635,45],[625,18],[331,349],[925,392],[178,837],[913,822],[649,5],[197,224],[428,204],[494,406],[140,863],[911,73],[224,279],[484,179],[507,864],[674,4],[607,472],[636,688],[937,632],[583,241],[358,797],[476,765],[678,936],[396,771],[301,931],[91,764],[391,244],[725,147],[868,135],[512,966],[909,658],[972,293],[137,492],[984,723],[87,413],[623,847],[952,651],[173,968],[875,51],[605,585],[773,718],[154,131],[938,488],[886,945],[843,480],[335,178],[636,832],[874,874],[971,816],[633,552],[333,370],[928,128],[348,226],[691,343],[67,428],[141,141],[661,158],[521,29],[1000,130],[200,953],[843,101],[56,804],[487,901],[924,84],[67,898],[467,632],[479,444],[742,938],[942,488],[931,658],[730,550],[998,613],[403,492],[706,767],[624,306],[106,937],[251,618],[758,177],[924,452],[153,643],[106,339],[560,950],[295,23],[979,72],[202,320],[490,944],[234,439],[460,280],[314,747],[285,581],[934,18],[636,802],[559,512],[310,491],[200,449],[683,706],[950,715],[976,223],[392,612],[113,8],[263,132],[232,179],[441,120],[985,501],[164,167],[400,487],[771,38],[599,947],[436,628],[751,807],[667,996],[857,575],[842,334],[439,997],[989,625],[438,466],[782,218],[76,365],[167,505],[862,113],[149,391],[190,923],[571,277],[32,774],[567,550],[534,815],[519,40],[362,270],[746,92],[19,434],[606,813],[882,969],[820,982],[531,496],[562,233],[610,661],[132,784],[425,461],[718,989],[197,24],[136,189],[846,455],[771,475],[723,209],[213,212],[799,623],[238,394],[553,85],[458,259],[566,184],[732,704],[869,53],[992,502],[149,27],[342,40],[554,680],[236,203],[551,239],[388,225],[855,366],[233,178],[798,900],[73,886],[973,135],[795,952],[429,645],[809,99],[183,306],[88,949],[971,799],[756,381],[263,986],[681,940],[876,881],[797,255],[916,423],[36,670],[281,827],[44,89],[790,93],[145,250],[716,969],[829,346],[584,200],[1000,74],[294,384],[534,643],[287,629],[616,523],[360,377],[429,487],[585,171],[629,598],[512,511],[958,471],[13,34],[312,143],[479,416],[279,425],[670,16],[974,357],[187,695],[692,972],[748,605],[373,362],[191,195],[534,653],[570,389],[716,182],[805,5],[865,691],[424,475],[750,454],[431,819],[458,206],[967,660],[251,336],[581,414],[99,905],[915,399],[285,572],[268,345],[288,885],[633,263],[666,140],[566,135],[709,992],[475,530],[793,256],[613,11],[899,40],[606,974],[543,75],[482,842],[942,421],[484,815],[993,866],[666,316],[953,934],[867,943],[454,406],[655,962],[903,841],[36,872],[795,248],[597,294],[744,538],[69,282],[35,388],[794,792],[61,188],[986,723],[658,250],[843,748],[891,136],[791,62],[371,275],[642,336],[819,119],[583,636],[984,834],[780,738],[207,631],[69,996],[649,918],[347,692],[66,367],[97,233],[453,991],[987,710],[212,501],[525,308],[715,403],[356,166],[98,325],[508,979],[98,578],[77,76],[560,711],[745,132],[22,451],[424,447],[766,116],[242,40],[164,60],[324,52],[238,408],[757,111],[936,27],[613,783],[602,924],[744,971],[744,959],[217,739],[44,178],[487,296],[983,96],[658,143],[145,684],[150,733],[755,433],[765,157],[928,253],[68,470],[219,934],[756,302],[838,517],[707,931],[912,6],[861,657],[173,89],[59,912],[958,368],[435,40],[441,29],[305,300],[726,669],[325,322],[859,40],[251,383],[732,905],[15,4],[702,513],[159,478],[55,428],[201,830],[563,804],[846,684],[177,72],[718,781],[642,171],[818,289],[975,16],[576,559],[282,264],[811,649],[422,899],[709,859],[939,933],[682,843],[592,80],[54,958],[804,520],[597,202],[835,294],[325,601],[74,466],[831,939],[94,307],[141,318],[80,58],[867,332],[840,584],[540,226],[414,166],[328,897],[655,15],[434,170],[588,583],[833,471],[348,46],[623,642],[33,831],[909,462],[706,912],[755,234],[619,93],[76,832],[754,45],[916,817],[514,27],[160,150],[332,133],[911,356],[961,448],[315,576],[981,113],[273,852],[411,18],[485,802],[960,210],[800,729],[42,430],[106,231],[5,305],[221,770],[333,107],[380,426],[365,555],[421,844],[741,728],[674,7],[130,826],[329,871],[957,270],[368,430],[629,261],[846,9],[780,669],[138,743],[357,700],[333,126],[35,579],[634,576],[815,583],[83,592],[775,361],[250,329],[937,314],[10,364],[714,202],[497,997],[967,752],[53,855],[241,22],[22,391],[202,982],[710,261],[651,28],[718,395],[408,29],[308,167],[678,768],[152,504],[265,71],[721,335],[78,929],[857,462],[102,20],[932,44],[534,111],[366,597],[411,350],[382,215],[311,973],[975,843],[689,386],[432,999],[188,1000],[909,879],[176,875],[269,704],[438,870],[81,393],[308,726],[886,954],[415,903],[529,272],[24,358],[930,383],[1,693],[503,459],[542,431],[377,565],[83,393],[302,78],[498,582],[867,926],[781,489],[668,18],[779,100],[211,844],[891,686],[645,470],[855,611],[501,392],[684,158],[286,240],[601,492],[356,492],[545,988],[970,746],[815,416],[297,791],[857,246],[343,678],[135,684],[569,873],[151,955],[862,450],[346,524],[122,162],[263,37],[803,677],[695,317],[250,283],[914,616],[366,932],[96,547],[399,92],[248,761],[413,948],[335,571],[883,80],[880,111],[145,463],[596,977],[175,516],[351,369],[377,817],[592,22],[563,379],[569,673],[821,77],[647,836],[559,251],[351,877],[66,510],[927,412],[424,549],[454,467],[641,592],[408,136],[803,862],[846,701],[196,337],[316,45],[191,118],[917,451],[699,685],[43,433],[257,821],[368,310],[562,352],[128,513],[468,788],[232,875],[193,277],[541,52],[465,462],[652,56],[859,875],[896,923],[870,578],[265,775],[616,41],[816,316],[918,433],[227,250],[663,877],[21,126],[288,365],[344,264],[262,409],[847,730],[723,956],[405,467],[904,522],[352,744],[324,896],[222,202],[499,508],[246,68],[434,472],[308,770],[839,212],[544,506],[310,604],[77,575],[747,155],[203,649],[429,453],[819,685],[809,645],[707,556],[127,292],[368,171],[939,799],[922,842],[318,679],[110,637],[366,88],[43,436],[978,359],[786,435],[835,164],[394,243],[657,366],[523,918],[946,201],[118,713],[960,416],[698,492],[254,136],[805,685],[300,596],[347,184],[674,172],[532,151],[597,740],[301,524],[210,133],[122,779],[28,700],[518,472],[891,337],[411,47],[64,56],[213,731],[23,832],[348,738],[643,751],[943,155],[246,358],[267,906],[948,639],[23,190],[59,223],[401,267],[539,713],[153,237],[306,206],[287,971],[305,737],[713,646],[871,735],[738,407],[980,76],[688,660],[927,37],[277,343],[222,338],[253,908],[569,988],[894,201],[174,43],[992,605],[907,381],[60,453],[537,284],[666,925],[290,352],[971,887],[229,192],[77,893],[455,75],[253,28],[857,489],[88,898],[822,409],[548,382],[189,560],[624,896],[263,211],[75,879],[522,773],[312,966],[29,282],[689,678],[438,966],[476,511],[428,562],[711,663],[319,399],[670,431],[684,517],[981,13],[665,768],[834,660],[741,62],[944,522],[991,117],[771,201],[659,763],[863,994],[604,90],[791,304],[412,313],[926,342],[581,271],[965,594],[268,941],[703,510],[773,460],[979,332],[278,310],[544,626],[574,276],[398,379],[447,527],[498,28],[983,27],[184,735],[246,79],[781,375],[523,410],[308,288],[567,395],[737,439],[232,341],[420,289],[564,500],[716,665],[834,669],[271,954],[331,967],[158,339],[286,748],[337,68],[451,773],[657,832],[953,545],[180,839],[601,530],[613,316],[216,212],[961,838],[891,995],[295,441],[481,270],[996,566],[356,768],[704,649],[970,357],[726,770],[890,155],[308,65],[493,774],[207,694],[530,558],[620,218],[641,267],[402,575],[641,760],[512,220],[849,93],[187,224],[829,575],[885,812],[432,393],[187,583],[563,980],[808,911],[779,98],[769,726],[126,299],[302,640],[794,64],[188,971],[134,240],[556,243],[446,959],[44,686],[659,618],[444,469],[350,588],[49,435],[754,651],[136,474],[346,531],[736,802],[915,92],[327,817],[678,423],[283,145],[451,964],[737,505],[524,663],[141,763],[907,966],[197,823],[373,277],[435,101],[541,467],[962,849],[601,865],[924,875],[216,16],[279,361],[551,188],[511,922],[668,327],[918,663],[574,750],[27,495],[260,762],[149,506],[890,507],[288,12],[689,949],[267,707],[90,387],[75,344],[601,387],[784,867],[166,648],[322,163],[340,134],[43,963],[814,401],[595,1000],[698,39],[29,831],[628,458],[173,834],[829,965],[921,610],[626,679],[943,157],[157,945],[317,193],[205,466],[827,150],[457,881],[982,231],[791,310],[690,355],[150,192],[616,533],[212,433],[964,870],[47,216],[20,908],[357,84],[762,751],[188,970],[941,174],[844,418],[36,59],[21,802],[255,803],[926,212],[405,120],[768,563],[579,466],[853,140],[859,610],[729,18],[739,354],[779,480],[426,245],[391,956],[558,350],[177,841],[232,81],[677,429],[906,435],[983,744],[535,917],[866,529],[388,691],[236,545],[145,319],[891,973],[474,265],[283,796],[487,665],[579,699],[640,309],[601,964],[136,784],[898,716],[90,471],[271,979],[514,304],[181,779],[711,974],[743,473],[667,321],[661,337],[103,905],[246,181],[756,117],[628,285],[495,341],[406,633],[823,824],[484,480],[879,894],[815,920],[307,157],[38,85],[950,814],[359,514],[891,262],[92,162],[166,685],[551,140],[543,71],[514,111],[451,673],[327,337],[390,53],[98,433],[343,555],[442,749],[589,494],[487,349],[258,998],[226,905],[175,966],[2,441],[720,606],[582,654],[64,295],[467,237],[503,354],[745,121],[740,531],[998,708],[820,913],[411,531],[651,681],[116,350],[346,629],[219,604],[117,55],[592,539],[310,103],[985,234],[222,123],[964,898],[651,592],[617,777],[840,136],[744,369],[427,79],[228,832],[926,20],[609,854],[735,812],[742,67],[530,790],[15,544],[693,694],[842,858],[356,293],[507,900],[197,18],[638,461],[505,454],[909,528],[826,381],[423,713],[610,836],[210,512],[956,995],[331,408],[895,554],[116,306],[685,446],[947,297],[737,362],[156,962],[268,116],[547,544],[578,313],[142,835],[778,938],[302,125],[762,957],[409,225],[739,873],[133,566],[740,906],[186,228],[18,829],[255,529],[222,902],[777,481],[450,302],[543,953],[771,424],[664,684],[814,525],[653,292],[437,161],[301,294],[246,537],[97,950],[702,341],[231,559],[741,195],[100,282],[290,353],[896,575],[702,720],[146,619],[204,669],[180,407],[252,682],[370,970],[281,411],[183,202],[21,149],[763,440],[369,50],[554,124],[721,685],[813,259],[399,96],[917,116],[258,985],[277,897],[849,678],[659,696],[537,748],[726,389],[122,971],[813,190],[227,73],[624,771],[852,346],[233,811],[19,149],[460,538],[23,339],[985,638],[296,972],[730,375],[30,739],[176,406],[81,643],[62,512],[275,997],[346,189],[912,921],[767,76],[501,813],[716,970],[257,381],[869,261],[683,906],[422,206],[856,853],[412,691],[723,666],[647,936],[89,8],[988,253],[993,663],[923,939],[922,560],[254,400],[688,319],[887,637],[148,282],[208,850],[594,340],[274,968],[108,212],[243,298],[948,128],[889,619],[62,604],[618,133],[64,865],[315,269],[289,120],[665,967],[770,690],[590,334],[59,159],[67,638],[793,387],[728,144],[4,355],[540,286],[809,256],[47,997],[291,330],[705,161],[26,977],[187,227],[73,887],[910,255],[284,323],[667,292],[520,796],[676,459],[882,791],[710,841],[847,446],[199,567],[398,54],[636,953],[653,652],[894,506],[567,71],[735,921],[659,250],[776,267],[176,890],[305,562],[11,463],[494,894],[922,322],[439,334],[557,843],[808,941],[481,177],[415,924],[123,351],[741,28],[730,845],[305,830],[643,331],[382,81],[207,876],[717,548],[774,59],[874,347],[368,26],[292,583],[688,732],[933,54],[699,701],[709,4],[804,107],[767,827],[770,140],[8,953],[501,485],[165,147],[752,71],[527,766],[207,513],[890,999],[64,193],[533,432],[371,170],[220,455],[658,802],[402,566],[521,77],[54,274],[825,42],[29,369],[502,629],[913,596],[198,102],[750,766],[667,204],[743,565],[266,864],[950,136],[807,719],[787,652],[465,56],[979,496],[191,642],[322,622],[381,976],[163,522],[231,131],[519,913],[105,293],[665,878],[538,542],[670,353],[6,559],[170,258],[396,98],[653,394],[985,668],[861,688],[479,89],[741,953],[712,943],[933,434],[532,96],[299,819],[433,243],[206,847],[967,918],[86,627],[201,767],[794,782],[142,863],[341,619],[480,200],[179,573],[174,975],[948,468],[170,385],[626,847],[721,459],[546,156],[992,597],[391,689],[452,236],[977,333],[898,511],[5,127],[223,88],[393,210],[722,720],[345,697],[476,679],[442,961],[958,311],[54,32],[515,432],[77,499],[393,335],[320,702],[609,312],[815,47],[528,292],[709,222],[265,720],[427,810],[603,648],[852,393],[421,271],[963,119],[275,45],[196,839],[120,174],[33,267],[384,409],[901,213],[346,856],[194,444],[578,572],[794,596],[707,904],[752,83],[357,944],[733,693],[787,457],[988,312],[394,374],[733,137],[581,465],[11,178],[618,158],[405,802],[814,560],[382,167],[533,316],[979,70],[632,538],[214,695],[846,901],[179,27],[215,743],[328,354],[447,460],[765,214],[269,979],[521,396],[284,715],[895,952],[340,383],[497,386],[885,232],[955,233],[507,677],[424,316],[794,324],[627,407],[639,919],[696,629],[840,612],[256,796],[431,434],[832,595],[592,112],[312,852],[593,102],[435,48],[93,74],[968,945],[546,889],[306,542],[828,228],[666,769],[341,643],[98,569],[677,197],[485,494],[2,786],[974,54],[801,6],[320,98],[463,450],[157,845],[216,413],[815,263],[447,560],[642,857],[82,111],[742,657],[800,546],[408,164],[333,777],[835,688],[30,617],[501,952],[163,898],[393,728],[72,204],[846,109],[147,253],[406,819],[265,513],[637,851],[281,299],[793,660],[370,406],[264,232],[78,882],[97,59],[51,215],[241,614],[401,326],[548,815],[38,27],[588,277],[108,51],[271,521],[675,602],[288,157],[28,779],[373,637],[229,335],[502,244],[572,149],[802,21],[401,309],[304,689],[843,947],[566,196],[395,478],[48,182],[473,50],[839,700],[297,142],[446,213],[62,112],[371,273],[873,310],[379,798],[622,194],[728,985],[308,67],[848,687],[921,789],[43,437],[462,31],[873,871],[725,206],[219,71],[959,388],[987,706],[39,934],[600,968],[216,46],[881,445],[22,570],[963,436],[827,512],[317,120],[938,109],[57,131],[399,44],[913,375],[519,768],[337,770],[776,552],[718,776],[17,93],[455,354],[967,414],[191,162],[790,156],[685,332],[495,27],[659,621],[775,938],[615,847],[177,12],[734,969],[106,752],[79,186],[735,174],[121,424],[695,807],[333,956],[873,227],[102,776],[598,197],[27,151],[978,729],[539,893],[861,5],[13,10],[58,703],[825,262],[280,418],[660,487],[117,73],[255,241],[988,233],[953,67],[903,565],[258,428],[626,9],[16,717],[992,826],[556,668],[549,846],[926,728],[792,830],[880,759],[759,119],[912,28],[446,639],[226,163],[265,123],[289,810],[310,544],[879,527],[643,642],[956,480],[697,947],[351,545],[316,93],[83,881],[801,844],[616,302],[704,145],[580,710],[564,766],[618,532],[188,432],[931,508],[829,86],[517,193],[697,611],[388,180],[353,27],[849,321],[579,888],[583,456],[596,34],[488,261],[833,181],[720,595],[976,182],[925,100],[718,945],[34,503],[574,640],[508,583],[232,514],[657,488],[551,912],[643,338],[450,549],[370,246],[437,127],[206,69],[224,210],[33,569],[407,605],[610,798],[637,720],[557,612],[268,491],[535,342],[930,223],[884,748],[956,74],[820,893],[719,668],[270,582],[567,119],[531,325],[701,630],[148,347],[479,594],[213,615],[744,90],[300,612],[338,350],[574,325],[299,430],[812,649],[647,26],[836,476],[3,650],[407,831],[141,850],[747,965],[144,799],[656,389],[147,937],[330,899],[712,525],[168,447],[751,949],[922,496],[97,231],[307,261],[981,204],[628,975],[318,831],[674,462],[845,145],[95,943],[552,682],[440,47],[203,856],[463,920],[298,302],[887,543],[833,943],[645,820],[588,636],[104,928],[545,534],[222,39],[551,329],[580,611],[634,372],[498,205],[382,44],[397,40],[801,201],[26,317],[615,820],[589,628],[526,272],[190,611],[647,900],[435,286],[531,112],[383,768],[281,754],[188,879],[510,754],[649,181],[595,684],[998,210],[541,356],[955,193],[968,930],[619,612],[620,457],[90,24],[301,836],[709,586],[234,534],[916,796],[115,426],[198,677],[12,805],[207,583],[367,737],[825,997],[883,779],[399,20],[761,812],[67,264],[626,505],[302,935],[229,116],[832,361],[386,526],[405,836],[438,985],[829,783],[14,420],[252,867],[150,435],[93,601],[262,895],[640,292],[231,1000],[60,733],[68,560],[740,787],[340,600],[554,965],[731,505],[49,338],[518,160],[536,519],[103,605],[353,232],[432,701],[280,370],[733,167],[931,388],[617,354],[381,243],[945,248],[26,90],[479,984],[851,573],[175,312],[236,623],[749,311],[872,427],[882,91],[603,720],[439,870],[818,833],[37,867],[639,380],[291,48],[373,153],[846,616],[54,149],[148,527],[787,88],[956,283],[376,284],[61,926],[938,911],[772,81],[426,925],[993,425],[409,223],[366,612],[430,592],[404,722],[817,347],[320,27],[141,40],[899,647],[571,566],[175,295],[182,944],[87,438],[869,714],[209,65],[85,911],[789,527],[343,744],[644,70],[895,758],[746,629],[137,366],[945,857],[616,886],[981,367],[387,622],[113,449],[601,344],[792,240],[860,48],[951,198],[870,522],[928,372],[858,2],[847,296],[154,55],[557,432],[175,640],[697,675],[26,95],[300,268],[661,261],[670,222],[747,19],[742,810],[526,520],[625,17],[825,195],[159,123],[364,596],[180,72],[257,750],[132,10],[592,802],[991,599],[941,718],[511,117],[175,589],[284,5],[467,607],[80,720],[291,961],[329,83],[724,697],[419,596],[176,109],[42,371],[105,473],[391,334],[852,834],[167,31],[345,405],[206,650],[943,2],[335,283],[166,316],[212,307],[623,552],[860,389],[883,891],[928,319],[220,678],[464,534],[977,189],[687,603],[450,333],[339,603],[773,843],[542,257],[619,875],[160,619],[402,672],[873,715],[476,387],[477,713],[94,26],[436,340],[179,256],[593,243],[29,641],[952,845],[871,180],[193,963],[152,249],[275,941],[191,815],[84,916],[708,681],[789,651],[607,206],[109,344],[691,714],[517,251],[555,177],[300,398],[654,529],[906,27],[332,884],[55,264],[747,460],[322,733],[410,524],[547,84],[686,583],[129,383],[592,791],[653,279],[534,137],[447,531],[72,517],[2,103],[333,677],[928,702],[54,990],[65,279],[455,959],[355,680],[992,913],[686,608],[713,115],[750,622],[920,984],[168,364],[621,214],[481,564],[986,342],[223,774],[79,833],[73,429],[86,933],[888,658],[495,795],[912,335],[520,927],[827,374],[269,821],[28,265],[826,384],[637,950],[928,943],[481,931],[157,340],[44,918],[545,257],[861,672],[109,557],[503,987],[964,81],[397,527],[102,953],[179,468],[941,195],[880,225],[869,811],[585,98],[431,209],[698,872],[681,987],[24,209],[392,312],[161,137],[309,115],[396,312],[332,468],[479,97],[728,720],[402,81],[236,538],[963,183],[709,272],[72,60],[608,468],[329,596],[484,244],[996,274],[686,99],[286,254],[346,898],[195,369],[864,161],[915,210],[526,602],[671,561],[553,667],[829,694],[828,974],[291,954],[504,484],[10,794],[43,40],[694,243],[256,312],[571,995],[305,399],[249,425],[711,965],[642,732],[109,649],[708,396],[481,498],[68,817],[97,634],[1000,78],[94,67],[211,233],[303,738],[226,246],[36,890],[767,259],[566,351],[764,679],[428,951],[800,533],[819,732],[932,794],[625,217],[775,206],[174,131],[67,63],[210,254],[33,147],[933,310],[370,823],[783,748],[71,729],[330,601],[658,119],[935,287],[79,824],[169,200],[273,672],[36,701],[659,976],[754,356],[599,584],[700,193],[386,320],[265,771],[307,188],[707,142],[403,626],[282,359],[460,452],[764,990],[471,744],[921,916],[76,624],[934,507],[836,443],[257,992],[199,557],[605,476],[830,153],[959,540],[346,599],[370,917],[97,521],[632,549],[281,460],[601,896],[7,76],[460,936],[839,583],[709,964],[587,541],[116,558],[654,787],[835,938],[610,279],[876,610],[707,356],[218,121],[288,55],[738,378],[845,791],[434,393],[83,962],[219,354],[917,205],[310,20],[184,391],[716,823],[873,600],[804,461],[382,538],[108,578],[43,135],[343,958],[757,698],[624,827],[138,645],[588,878],[899,856],[502,679],[643,62],[269,516],[80,695],[596,984],[979,135],[561,218],[38,146],[728,808],[939,774],[410,318],[544,235],[39,393],[351,157],[327,896],[223,642],[428,299],[767,990],[422,285],[791,178],[270,696],[871,706],[233,820],[272,503],[648,397],[975,998],[789,915],[595,295],[827,804],[242,602],[5,202],[970,923],[37,421],[359,528],[903,269],[312,685],[515,967],[922,424],[480,75],[214,953],[567,297],[198,67],[938,53],[732,451],[191,878],[143,969],[222,334],[879,936],[828,921],[895,101],[276,431],[934,447],[773,156],[289,191],[997,143],[283,403],[8,981],[870,928],[945,887],[943,855],[585,801],[588,108],[57,664],[593,869],[445,225],[708,952],[607,487],[509,585],[48,959],[198,260],[706,803],[975,782],[259,399],[929,620],[941,556],[369,890],[600,584],[906,70],[437,292],[97,643],[749,179],[422,639],[580,331],[219,958],[42,34],[651,540],[613,699],[286,958],[656,405],[441,807],[327,160],[717,975],[63,693],[122,484],[238,658],[843,788],[72,168],[51,295],[180,259],[764,305],[154,441],[424,337],[692,717],[474,793],[967,289],[338,457],[15,107],[347,801],[238,278],[502,212],[299,613],[338,463],[456,160],[489,498],[963,123],[43,217],[552,213],[725,666],[140,669],[664,411],[344,152],[955,543],[58,110],[244,126],[38,691],[901,297],[554,74],[315,432],[597,41],[965,464],[391,129],[906,913],[762,126],[656,944],[398,534],[551,503],[756,13],[86,585],[625,723],[875,791],[330,472],[834,304],[714,623],[634,136],[236,90],[240,585],[219,616],[820,395],[582,985],[341,155],[933,290],[690,417],[891,284],[794,716],[873,802],[8,358],[108,730],[733,514],[616,501],[44,805],[909,575],[234,416],[232,392],[901,403],[885,730],[286,398],[983,259],[332,631],[382,469],[205,155],[474,146],[396,3],[138,696],[157,107],[581,124],[594,386],[562,91],[220,479],[415,988],[31,311],[708,677],[343,354],[412,330],[107,740],[337,467],[523,145],[26,339],[288,393],[532,821],[826,565],[245,496],[669,430],[435,599],[247,826],[421,452],[783,428],[246,396],[944,336],[962,79],[687,712],[992,865],[612,157],[546,781],[189,221],[635,244],[678,898],[749,734],[188,375],[110,123],[961,274],[305,129],[394,864],[541,387],[258,448],[493,92],[91,3],[609,608],[201,660],[204,131],[565,981],[258,621],[542,475],[876,427],[333,618],[537,278],[577,781],[60,940],[821,268],[840,806],[748,267],[671,482],[564,179],[240,246],[805,653],[457,796],[696,243],[584,355],[129,964],[26,140],[584,82],[885,973],[271,977],[145,585],[515,851],[896,553],[395,181],[651,789],[41,488],[180,477],[677,649],[159,361],[659,451],[62,75],[660,272],[429,270],[429,879],[734,761],[20,512],[125,349],[611,798],[825,460],[778,727],[120,991],[936,396],[783,961],[960,423],[597,979],[111,76],[605,10],[179,651],[880,799],[265,955],[717,305],[165,486],[876,992],[704,138],[416,990],[672,703],[795,569],[889,408],[896,817],[77,956],[215,498],[869,695],[132,419],[263,632],[794,601],[387,765],[613,98],[595,462],[112,44],[678,199],[135,643],[329,721],[275,655],[776,849],[483,650],[755,698],[266,565],[735,164],[606,983],[443,748],[396,170],[9,699],[806,118],[210,296],[8,3],[347,897],[740,315],[629,668],[130,570],[218,658],[269,849],[319,761],[627,228],[551,783],[851,702],[155,258],[925,427],[100,785],[696,672],[733,664],[13,781],[159,880],[14,873],[420,154],[498,60],[611,36],[637,536],[530,571],[623,718],[499,418],[310,519],[213,115],[703,803],[589,450],[977,922],[322,747],[502,204],[374,826],[513,816],[418,193],[561,819],[159,284],[912,817],[764,465],[342,817],[63,993],[174,152],[156,876],[447,354],[733,50],[168,389],[422,621],[533,87],[758,625],[399,45],[79,516],[929,353],[786,783],[879,130],[516,161],[233,430],[701,488],[308,67],[345,275],[549,130],[793,611],[802,982],[343,577],[441,735],[893,354],[365,185],[28,718],[664,190],[666,25],[843,760],[833,644],[964,754],[433,1000],[804,942],[977,110],[470,56],[268,966],[292,208],[819,624],[261,209],[601,191],[915,522],[104,114],[322,821],[692,802],[976,261],[417,340],[568,661],[849,802],[985,451],[244,371],[816,538],[476,642],[399,212],[418,122],[430,219],[421,30],[629,723],[868,387],[714,914],[448,69],[779,515],[536,447],[919,339],[796,74],[401,560],[543,210],[238,259],[627,774],[64,69],[400,723],[657,228],[448,623],[516,357],[141,43],[887,485],[718,329],[534,834],[927,670],[105,835],[305,234],[500,542],[931,363],[535,646],[313,416],[984,881],[389,397],[423,582],[45,62],[420,587],[844,783],[777,11],[102,165],[467,783],[736,134],[353,395],[25,996],[301,332],[667,767],[558,749],[332,298],[501,826],[451,552],[315,361],[843,845],[508,67],[159,69],[984,749],[291,450],[429,684],[953,959],[795,145],[549,812],[516,948],[200,104],[42,967],[888,685],[101,685],[85,418],[191,955],[91,887],[805,990],[643,272],[85,786],[732,33],[53,762],[110,149],[108,537],[132,413],[769,801],[969,653],[281,755],[952,892],[774,242],[803,711],[778,199],[743,821],[875,539],[83,504],[147,810],[142,889],[45,152],[497,216],[519,81],[870,193],[618,578],[873,373],[353,470],[760,212],[409,959],[82,453],[852,409],[203,862],[928,190],[913,872],[805,504],[622,572],[332,312],[675,500],[163,489],[334,492],[51,434],[834,959],[889,960],[907,287],[557,85],[53,32],[922,701],[632,24],[8,311],[445,816],[511,104],[354,286],[354,2],[37,461],[864,352],[336,262],[372,971],[15,761],[612,665],[835,693],[62,707],[818,480],[236,215],[361,879],[695,262],[130,194],[303,993],[684,249],[987,730],[121,418],[860,503],[326,441],[133,109],[534,913],[147,861],[349,723],[267,579],[216,809],[736,700],[311,687],[329,542],[466,83],[672,655],[680,860],[230,397],[172,459],[988,982],[364,827],[116,618],[252,530],[627,341],[144,250],[461,243],[625,56],[387,69],[450,374],[359,699],[510,365],[663,295],[337,874],[488,740],[307,238],[757,299],[396,61],[60,619],[3,988],[479,638],[331,901],[959,783],[339,51],[117,409],[540,359],[394,71],[562,667],[165,649],[196,308],[300,958],[154,826],[665,584],[714,968],[54,209],[532,880],[238,81],[290,746],[262,535],[943,9],[320,800],[713,575],[920,595],[453,246],[812,617],[716,513],[43,755],[177,133],[161,677],[330,271],[842,488],[89,788],[564,439],[44,933],[201,284],[932,337],[165,84],[980,81],[276,202],[966,270],[631,935],[288,462],[126,22],[753,919],[512,857],[777,138],[643,224],[865,517],[200,51],[115,368],[526,673],[141,782],[25,295],[499,832],[666,185],[842,578],[56,738],[682,15],[898,840],[931,304],[232,397],[619,458],[147,971],[234,990],[274,25],[823,891],[258,509],[581,163],[845,663],[587,429],[918,767],[770,571],[964,895],[502,308],[908,325],[879,908],[483,435],[770,328],[529,391],[498,476],[490,336],[797,310],[31,25],[659,358],[928,167],[973,608],[888,996],[631,339],[527,410],[213,366],[415,76],[106,412],[542,330],[947,221],[945,565],[982,747],[737,79],[708,282],[367,952],[21,410],[441,295],[231,146],[552,476],[851,892],[237,820],[522,768],[127,97],[180,530],[257,16],[548,203],[902,113],[92,733],[77,498],[23,990],[287,616],[662,812],[175,54],[991,161],[656,69],[850,131],[648,681],[51,953],[961,523],[161,582],[897,250],[419,59],[324,918],[712,167],[203,679],[803,61],[794,814],[126,97],[313,297],[34,448],[997,262],[499,751],[492,496],[13,224],[32,738],[473,366],[586,114],[736,55],[951,958],[388,223],[87,684],[48,313],[115,25],[430,568],[795,303],[888,152],[2,69],[793,914],[973,723],[764,224],[905,405],[332,368],[50,456],[314,109],[700,658],[850,167],[231,507],[352,430],[694,306],[977,80],[112,110],[200,320],[907,266],[770,130],[407,303],[813,319],[806,494],[279,237],[886,399],[561,913],[335,578],[143,777],[171,85],[318,663],[986,426],[624,167],[980,790],[422,526],[303,132],[999,757],[494,247],[716,450],[719,907],[256,276],[821,65],[79,753],[505,366],[91,401],[875,687],[826,860],[818,655],[149,427],[446,657],[440,162],[166,589],[79,803],[121,892],[897,194],[645,551],[32,640],[214,555],[595,371],[686,151],[716,675],[48,391],[336,674],[77,558],[584,972],[47,786],[805,104],[210,213],[802,983],[755,634],[11,324],[343,859],[722,989],[185,742],[77,540],[151,39],[818,95],[685,507],[364,344],[744,524],[168,867],[208,677],[846,443],[283,712],[952,457],[509,205],[2,363],[350,436],[791,295],[39,594],[888,447],[71,371],[343,94],[188,710],[16,638],[78,162],[592,447],[566,789],[356,381],[897,65],[640,645],[987,724],[264,565],[752,866],[756,778],[870,837],[236,666],[957,421],[727,3],[510,361],[832,621],[294,552],[19,117],[981,234],[199,848],[749,859],[996,853],[539,927],[696,667],[723,787],[229,417],[135,888],[115,775],[894,918],[418,148],[541,72],[904,429],[599,892],[945,674],[733,216],[700,408],[975,375],[101,879],[637,248],[116,197],[439,556],[694,729],[599,110],[12,82],[300,644],[690,558],[1000,767],[618,555],[628,571],[546,9],[380,123],[232,837],[308,409],[965,212],[43,266],[357,399],[18,600],[960,686],[206,320],[696,279],[22,153],[564,961],[787,849],[19,273],[734,548],[760,453],[957,976],[875,646],[213,534],[430,812],[784,469],[352,909],[1,464],[637,804],[692,319],[825,617],[533,169],[916,740],[901,527],[471,804],[103,735],[741,536],[571,967],[603,951],[323,340],[946,544],[644,14],[852,810],[225,974],[77,974],[503,779],[912,617],[546,582],[353,844],[625,396],[993,214],[411,239],[221,845],[836,915],[311,338],[358,701],[776,491],[145,613],[788,167],[459,562],[239,913],[321,550],[339,892],[484,968],[769,936],[524,127],[372,571],[407,818],[239,914],[988,716],[205,79],[36,476],[840,208],[545,719],[166,453],[223,727],[180,327],[253,593],[961,88],[406,365],[643,860],[960,136],[376,806],[941,180],[20,460],[528,225],[263,845],[363,962],[127,291],[127,757],[494,862],[856,860],[711,785],[11,380],[266,787],[314,497],[15,758],[529,654],[934,219],[558,80],[686,315],[881,397],[219,487],[807,937],[405,993],[309,570],[768,587],[532,956],[102,860],[887,320],[966,929],[699,517],[910,802],[939,637],[796,189],[846,557],[316,528],[162,491],[600,536],[232,997],[678,928],[60,453],[364,507],[619,706],[458,480],[788,709],[342,505],[257,610],[239,259],[77,558],[605,754],[395,932],[48,825],[686,21],[737,744],[111,784],[743,4],[434,233],[388,127],[628,682],[510,618],[62,848],[565,41],[815,119],[756,705],[986,960],[901,340],[382,130],[427,417],[345,889],[435,922],[555,173],[690,557],[177,503],[940,476],[661,168],[478,392],[315,846],[905,272],[581,406],[937,955],[983,78],[653,247],[752,912],[254,20],[214,183],[578,914],[465,493],[11,40],[701,952],[818,440],[387,80],[902,10],[812,139],[650,381],[890,487],[865,876],[178,441],[86,861],[259,619],[865,649],[418,690],[261,667],[800,212],[896,451],[77,692],[937,607],[15,406],[15,866],[171,795],[769,58],[132,21],[539,903],[289,457],[890,558],[314,735],[809,737],[712,266],[490,805],[964,179],[169,39],[200,779],[521,150],[200,611],[687,818],[999,370],[454,253],[214,232],[263,599],[49,707],[38,28],[503,486],[415,346],[516,94],[418,364],[923,624],[250,81],[749,876],[680,282],[115,300],[565,470],[368,515],[375,7],[571,567],[131,986],[47,32],[451,140],[555,540],[476,256],[780,151],[640,769],[812,916],[511,29],[805,48],[854,15],[786,667],[967,882],[840,179],[420,98],[425,434],[443,343],[305,908],[404,549],[366,851],[2,258],[678,271],[80,643],[220,783],[552,50],[874,235],[134,348],[596,992],[514,450],[459,649],[688,231],[22,519],[526,235],[483,648],[240,93],[237,859],[254,45],[829,443],[995,76],[749,70],[770,514],[247,4],[680,792],[249,831],[281,800],[632,7],[153,423],[435,181],[20,75],[867,406],[730,797],[133,147],[579,376],[536,925],[476,703],[749,236],[589,712],[651,558],[471,925],[759,559],[95,858],[733,106],[636,152],[311,255],[855,930],[95,954],[40,804],[870,62],[463,171],[470,598],[421,846],[36,298],[189,160],[566,127],[500,297],[872,254],[937,564],[838,419],[36,606],[160,859],[185,881],[675,933],[189,199],[948,794],[449,315],[766,652],[613,269],[206,984],[619,756],[850,56],[313,814],[437,124],[34,749],[634,289],[847,586],[318,4],[895,28],[955,966],[734,420],[901,941],[112,87],[808,212],[853,770],[202,795],[630,883],[351,217],[171,998],[431,334],[580,951],[447,71],[977,528],[767,181],[866,660],[147,830],[617,879],[458,707],[126,831],[216,810],[248,378],[714,732],[690,5],[121,749],[809,481],[953,460],[339,748],[187,855],[379,793],[658,79],[894,321],[316,453],[504,45],[92,776],[883,416],[55,35],[888,191],[828,774],[173,854],[346,778],[207,734],[92,829],[66,547],[961,766],[173,262],[476,326],[651,542],[596,48],[346,85],[579,302],[991,119],[100,617],[964,698],[810,64],[364,561],[439,401],[441,640],[429,637],[73,628],[936,948],[601,244],[729,193],[810,125],[672,337],[53,36],[617,130],[231,460],[277,586],[197,190],[311,781],[89,37],[744,479],[258,808],[985,467],[331,51],[260,190],[123,638],[229,831],[593,147],[494,923],[670,873],[103,564],[620,723],[497,299],[970,609],[82,311],[196,629],[733,398],[842,813],[976,165],[983,378],[950,968],[804,903],[257,437],[562,699],[338,945],[634,837],[390,29],[691,654],[611,871],[60,343],[119,662],[653,351],[873,241],[612,493],[701,9],[206,722],[532,597],[845,563],[573,473],[869,901],[67,346],[142,842],[885,915],[864,255],[630,551],[902,688],[612,148],[73,980],[3,592],[957,310],[583,273],[670,459],[508,359],[442,857],[959,22],[258,816],[683,154],[492,274],[295,574],[856,507],[664,242],[493,493],[689,429],[983,509],[180,840],[478,808],[241,503],[80,113],[276,296],[355,484],[425,629],[55,228],[188,224],[862,422],[428,516],[904,174],[776,27],[675,447],[427,487],[451,520],[299,447],[106,219],[35,884],[322,581],[957,900],[933,533],[124,181],[530,166],[380,781],[592,512],[330,838],[819,988],[505,818],[972,130],[849,52],[457,386],[72,535],[147,749],[334,874],[407,713],[662,301],[77,691],[30,875],[540,572],[113,110],[834,704],[499,116],[588,665],[748,345],[131,405],[14,35],[649,980],[58,515],[524,518],[53,258],[858,929],[951,808],[302,352],[291,706],[415,600],[755,11],[956,888],[565,308],[887,960],[153,534],[26,231],[142,957],[210,232],[13,642],[712,446],[682,469],[322,449],[474,657],[967,282],[784,705],[387,237],[212,814],[669,925],[275,123],[128,580],[326,522],[657,948],[475,679],[966,688],[566,34],[586,910],[603,947],[424,380],[401,853],[58,366],[690,373],[234,752],[254,971],[660,409],[37,76],[611,838],[413,329],[273,729],[207,842],[885,431],[347,376],[464,966],[530,629],[867,418],[149,240],[863,113],[732,521],[182,178],[515,240],[125,271],[889,449],[487,770],[467,571],[654,760],[726,787],[170,731],[233,157],[201,386],[633,709],[434,417],[450,750],[153,860],[581,420],[813,597],[722,987],[454,913],[818,350],[528,587],[833,862],[394,240],[569,738],[580,426],[552,591],[190,293],[252,53],[501,579],[490,578],[94,478],[711,936],[650,791],[885,909],[169,998],[559,383],[603,693],[548,212],[121,203],[513,338],[682,929],[330,136],[212,290],[479,560],[772,245],[483,889],[559,435],[456,207],[876,194],[847,283],[910,712],[825,400],[678,885],[616,96],[402,18],[895,720],[961,187],[324,174],[700,945],[530,770],[482,467],[130,666],[342,143],[263,66],[245,588],[958,190],[901,448],[889,451],[277,313],[31,958],[991,31],[162,206],[372,984],[241,586],[917,700],[943,751],[227,578],[896,259],[191,822],[487,382],[366,481],[670,57],[238,31],[330,557],[662,940],[216,242],[197,391],[955,494],[944,56],[607,72],[638,986],[54,166],[564,715],[744,616],[982,651],[544,286],[622,629],[203,337],[442,908],[49,967],[308,805],[232,890],[204,73],[401,477],[257,545],[855,725],[374,624],[738,628],[753,600],[316,277],[572,500],[954,342],[72,995],[453,486],[61,979],[250,621],[68,963],[837,98],[240,175],[612,629],[544,230],[458,733],[812,142],[145,812],[677,775],[171,402],[696,631],[452,677],[71,546],[349,548],[593,559],[512,848],[336,686],[227,917],[437,135],[220,852],[590,819],[239,502],[465,482],[344,762],[90,998],[403,751],[553,58],[53,673],[650,673],[218,332],[541,994],[592,351],[925,385],[769,842],[891,819],[879,94],[114,201],[697,18],[943,535],[128,748],[172,62],[417,170],[744,113],[565,609],[646,388],[468,87],[633,691],[208,803],[659,569],[629,464],[370,627],[601,510],[420,550],[703,471],[594,644],[920,457],[345,268],[504,296],[969,888],[985,987],[753,777],[516,132],[719,723],[738,617],[890,694],[233,694],[314,103],[212,563],[790,635],[322,33],[722,345],[708,642],[582,831],[738,800],[500,357],[137,138],[641,765],[256,296],[477,172],[564,899],[661,714],[516,118],[967,730],[260,125],[76,565],[903,829],[981,307],[649,241],[299,224],[198,8],[28,690],[422,701],[896,569],[470,310],[422,779],[992,90],[523,366],[85,477],[89,691],[810,724],[979,306],[628,299],[980,270],[301,529],[777,130],[584,78],[178,662],[173,741],[57,839],[872,149],[876,628],[600,644],[410,334],[883,77],[555,903],[424,465],[245,540],[505,6],[534,254],[316,301],[152,165],[890,907],[492,496],[85,576],[135,395],[667,493],[967,693],[395,678],[224,222],[915,302],[342,509],[391,570],[179,800],[709,159],[75,957],[266,428],[908,568],[119,859],[786,989],[858,542],[141,403],[785,584],[830,113],[888,720],[543,183],[760,966],[411,781],[744,574],[732,885],[878,487],[372,463],[43,387],[34,65],[939,694],[897,813],[788,460],[770,167],[774,17],[402,490],[609,97],[882,608],[520,457],[275,95],[667,882],[50,132],[730,947],[363,817],[643,799],[183,436],[421,808],[146,761],[940,403],[390,58],[965,295],[683,464],[692,371],[545,639],[411,349],[86,540],[511,59],[941,65],[552,416],[739,870],[158,598],[469,895],[135,984],[409,476],[642,302],[987,405],[330,48],[510,206],[728,846],[321,380],[374,8],[313,986],[873,626],[592,651],[252,585],[733,467],[147,364],[617,156],[82,355],[918,169],[519,632],[887,878],[362,306],[29,851],[532,239],[102,956],[603,180],[240,477],[462,609],[682,283],[36,687],[113,35],[513,69],[168,427],[895,83],[728,54],[986,962],[195,57],[902,67],[934,272],[823,684],[487,943],[950,297],[310,712],[147,647],[974,979],[338,90],[407,101],[511,336],[186,402],[542,998],[133,916],[843,82],[340,60],[341,262],[742,770],[371,885],[645,610],[450,420],[272,875],[905,254],[824,193],[662,940],[876,756],[540,749],[523,262],[788,531],[754,75],[524,321],[718,736],[491,516],[548,107],[106,158],[936,675],[686,412],[237,327],[370,938],[539,789],[56,698],[392,57],[886,690],[658,508],[893,124],[370,820],[523,753],[980,749],[382,925],[456,600],[250,359],[890,169],[203,964],[903,123],[240,662],[212,195],[235,609],[4,467],[847,670],[710,902],[127,302],[564,139],[230,890],[464,927],[908,204],[885,798],[278,846],[415,821],[206,910],[207,374],[752,208],[275,530],[192,706],[857,114],[144,427],[810,613],[247,795],[53,840],[769,409],[431,211],[821,511],[656,226],[730,359],[605,746],[930,636],[481,447],[376,366],[291,791],[166,394],[431,64],[933,762],[177,771],[187,65],[791,343],[807,641],[460,616],[182,75],[771,92],[637,610],[281,754],[855,572],[787,181],[701,642],[328,19],[563,588],[366,946],[5,444],[945,590],[892,195],[716,335],[702,457],[448,120],[190,938],[862,785],[822,236],[885,222],[135,316],[409,57],[869,492],[46,571],[714,455],[545,265],[154,579],[215,748],[849,265],[355,350],[283,347],[366,656],[500,324],[571,684],[213,195],[490,720],[608,918],[239,18],[32,84],[949,91],[699,709],[203,132],[428,960],[611,81],[770,173],[341,561],[41,126],[546,945],[983,317],[837,72],[189,669],[280,137],[72,834],[204,111],[184,756],[367,52],[572,747],[707,954],[637,818],[300,354],[366,50],[567,29],[399,405],[504,971],[32,499],[813,320],[783,424],[90,475],[195,803],[239,197],[434,655],[663,17],[667,358],[293,359],[268,758],[556,379],[381,808],[230,755],[825,371],[672,455],[699,169],[728,441],[944,909],[415,638],[298,352],[841,685],[418,622],[109,148],[833,520],[228,78],[634,820],[336,599],[581,474],[171,61],[95,397],[88,103],[720,767],[671,551],[560,121],[119,329],[945,856],[443,317],[921,898],[112,332],[681,918],[920,390],[451,431],[312,710],[554,390],[425,241],[791,7],[119,225],[73,54],[398,904],[773,468],[337,862],[910,235],[248,68],[139,964],[921,479],[150,31],[309,819],[473,663],[85,422],[743,297],[75,451],[856,923],[619,617],[551,584],[114,165],[425,434],[178,22],[310,716],[286,230],[392,875],[847,77],[435,986],[178,820],[326,642],[60,447],[607,718],[654,198],[547,135],[210,443],[931,389],[58,348],[853,590],[7,785],[524,875],[392,693],[202,255],[201,169],[442,228],[650,395],[600,357],[876,217],[265,664],[707,764],[79,576],[612,402],[488,900],[803,39],[298,331],[90,984],[997,84],[81,22],[466,4],[831,37],[332,470],[569,644],[603,536],[370,670],[394,266],[121,3],[732,935],[416,301],[838,752],[625,548],[589,96],[176,861],[362,642],[92,768],[448,215],[442,247],[545,41],[480,359],[493,430],[293,414],[15,474],[269,365],[387,733],[179,998],[574,810],[216,246],[35,184],[961,122],[235,492],[893,134],[974,368],[706,322],[58,540],[622,805],[705,294],[829,307],[614,88],[422,280],[242,679],[314,714],[663,582],[965,968],[83,367],[529,173],[192,381],[989,98],[544,644],[339,56],[537,71],[862,96],[523,703],[959,415],[477,414],[239,718],[438,36],[917,840],[656,340],[624,877],[481,246],[666,585],[198,128],[722,813],[130,759],[482,735],[659,277],[38,365],[393,448],[514,405],[553,254],[154,756],[500,479],[824,970],[493,824],[769,995],[334,80],[874,388],[478,109],[563,988],[902,734],[294,305],[683,855],[635,536],[116,640],[315,207],[771,78],[831,251],[274,362],[711,64],[365,597],[606,72],[48,13],[860,849],[592,383],[213,788],[248,530],[919,202],[766,137],[271,498],[126,372],[56,875],[345,401],[418,276],[772,290],[830,308],[779,557],[391,564],[933,992],[447,977],[901,41],[426,466],[624,205],[261,36],[480,81],[367,481],[470,677],[826,171],[361,832],[861,748],[505,370],[196,537],[148,36],[844,931],[973,145],[422,219],[48,941],[678,296],[361,505],[11,821],[972,112],[981,279],[492,576],[374,559],[609,341],[909,243],[726,652],[295,462],[42,912],[910,383],[922,457],[792,942],[265,922],[241,267],[244,950],[503,140],[185,131],[946,574],[125,425],[889,18],[33,577],[91,373],[594,155],[352,114],[173,257],[69,235],[807,633],[744,851],[187,57],[519,34],[600,458],[991,868],[260,730],[54,54],[94,357],[241,404],[303,98],[749,683],[559,662],[182,164],[459,633],[248,601],[211,893],[940,698],[778,394],[817,574],[779,662],[570,309],[193,309],[857,350],[534,477],[439,838],[592,496],[423,401],[542,336],[320,668],[805,99],[928,466],[909,222],[462,419],[610,335],[535,240],[484,52],[277,910],[494,545],[545,449],[181,286],[615,118],[672,206],[538,422],[369,358],[143,949],[320,2],[11,693],[26,636],[615,317],[871,358],[914,270],[858,338],[543,371],[145,249],[236,341],[522,155],[424,823],[767,333],[387,994],[370,273],[771,109],[95,128],[828,876],[818,745],[933,862],[168,934],[664,269],[337,29],[232,943],[447,339],[450,756],[390,923],[119,187],[634,148],[773,393],[693,763],[653,356],[742,949],[812,46],[338,872],[706,510],[652,517],[721,769],[326,496],[589,677],[997,198],[275,928],[321,669],[262,301],[852,225],[56,332],[704,346],[281,517],[171,817],[988,439],[410,997],[618,88],[775,38],[967,960],[93,405],[582,418],[398,530],[565,689],[315,686],[920,80],[461,232],[372,436],[690,547],[419,250],[396,647],[73,352],[360,138],[447,162],[814,943],[472,468],[933,183],[440,999],[608,751],[707,841],[112,50],[961,852],[663,655],[419,731],[320,732],[428,981],[24,629],[970,890],[273,811],[78,852],[775,707],[719,770],[249,768],[358,180],[60,182],[303,405],[308,503],[17,856],[75,516],[972,301],[610,921],[563,320],[817,629],[378,810],[554,412],[903,117],[925,972],[117,694],[854,303],[163,933],[963,311],[565,210],[613,892],[94,152],[385,55],[604,405],[625,211],[428,808],[530,107],[898,105],[289,757],[755,572],[181,330],[938,418],[717,731],[193,786],[330,504],[474,927],[38,343],[516,962],[203,534],[183,33],[429,794],[641,177],[63,32],[29,52],[282,776],[81,750],[979,744],[950,912],[910,253],[162,942],[382,813],[32,310],[199,153],[946,832],[145,843],[872,930],[53,722],[789,430],[923,185],[544,472],[408,79],[500,117],[414,697],[830,114],[887,293],[550,828],[381,974],[104,898],[298,607],[199,725],[681,274],[808,294],[437,560],[708,62],[432,985],[511,695],[37,954],[393,368],[694,340],[930,547],[468,127],[228,129],[734,903],[128,276],[317,588],[654,896],[499,589],[188,825],[963,640],[160,548],[480,896],[114,362],[174,743],[818,878],[646,491],[869,788],[665,10],[114,541],[885,579],[784,284],[556,190],[803,514],[513,953],[113,648],[610,934],[125,894],[77,390],[563,337],[636,951],[90,21],[867,150],[218,735],[388,358],[618,799],[246,713],[373,839],[294,632],[988,117],[813,729],[812,85],[242,264],[34,114],[1,548],[705,212],[700,747],[606,304],[785,802],[582,840],[226,516],[875,632],[886,371],[114,906],[491,131],[886,257],[330,449],[980,940],[537,917],[478,896],[691,831],[89,904],[804,309],[987,652],[263,961],[286,871],[721,184],[124,863],[477,674],[616,787],[671,786],[219,718],[246,173],[120,545],[321,181],[107,690],[587,37],[514,208],[692,20],[240,915],[478,935],[178,438],[88,552],[258,908],[612,296],[571,397],[184,379],[957,46],[537,111],[521,740],[922,688],[806,290],[192,242],[965,108],[517,830],[243,228],[238,240],[339,40],[689,884],[948,48],[487,829],[169,576],[270,830],[749,861],[91,145],[506,389],[616,246],[235,306],[353,135],[126,971],[588,199],[255,762],[169,855],[270,433],[264,151],[230,908],[385,608],[379,453],[255,606],[500,885],[253,311],[115,38],[62,952],[450,954],[608,383],[549,441],[1,221],[56,140],[892,605],[808,668],[320,236],[566,496],[563,827],[52,219],[221,277],[888,922],[962,932],[623,454],[949,867],[442,257],[640,854],[122,68],[992,595],[663,742],[632,62],[160,308],[954,455],[595,441],[859,565],[562,373],[221,143],[67,571],[17,965],[958,331],[306,50],[448,901],[702,641],[735,3],[272,310],[663,928],[564,711],[504,743],[346,90],[664,961],[724,142],[958,406],[371,992],[922,407],[495,492],[34,85],[235,375],[644,692],[159,180],[315,547],[956,26],[869,783],[34,685],[824,381],[322,854],[198,737],[894,506],[884,417],[791,249],[691,317],[429,232],[799,863],[259,46],[824,91],[434,209],[56,117],[45,60],[217,855],[980,67],[273,893],[638,801],[315,702],[726,887],[992,201],[225,920],[199,446],[967,452],[329,376],[779,107],[820,315],[658,843],[146,105],[944,699],[171,226],[606,508],[437,376],[227,142],[81,868],[388,790],[676,411],[920,952],[565,779],[348,730],[836,77],[454,382],[953,815],[415,548],[680,534],[714,98],[327,987],[408,500],[823,817],[618,743],[728,214],[435,345],[693,56],[316,686],[680,57],[895,425],[855,669],[97,342],[510,436],[230,575],[389,953],[632,213],[192,745],[388,700],[45,719],[494,315],[424,707],[654,330],[148,854],[890,440],[987,729],[754,783],[647,884],[402,366],[768,222],[139,480],[245,916],[152,642],[573,763],[676,368],[474,563],[628,146],[307,822],[660,263],[534,557],[269,392],[156,984],[45,379],[408,804],[941,283],[223,859],[552,885],[971,506],[488,410],[756,548],[97,55],[880,650],[745,40],[483,863],[892,184],[544,946],[536,211],[655,149],[706,935],[561,531],[330,168],[341,39],[87,928],[373,773],[99,735],[247,33],[724,145],[948,111],[749,358],[757,690],[961,311],[806,869],[737,901],[221,190],[691,536],[859,199],[303,29],[605,72],[541,910],[950,991],[87,813],[474,952],[13,214],[336,840],[778,766],[526,418],[600,149],[489,418],[434,228],[981,41],[686,214],[583,334],[559,362],[723,999],[535,823],[676,121],[239,231],[198,621],[789,997],[120,551],[965,449],[758,19],[793,708],[436,747],[47,615],[430,627],[47,812],[549,658],[437,356],[782,122],[466,395],[248,419],[410,330],[130,528],[736,290],[624,70],[426,897],[833,549],[951,919],[645,328],[591,540],[730,709],[117,126],[708,167],[908,63],[450,593],[662,931],[571,871],[147,510],[10,743],[889,219],[231,92],[133,675],[823,728],[138,512],[840,25],[591,378],[779,690],[665,99],[262,118],[678,179],[565,854],[219,7],[825,364],[197,556],[508,47],[338,375],[178,895],[818,825],[735,344],[115,49],[24,740],[901,627],[58,348],[40,592],[203,864],[405,644],[365,172],[114,931],[350,828],[745,58],[238,367],[432,36],[230,270],[911,554],[518,781],[59,421],[198,147],[280,170],[590,655],[267,117],[238,551],[226,831],[526,559],[596,263],[787,455],[936,730],[82,107],[869,368],[403,218],[781,84],[49,306],[50,399],[910,163],[75,473],[183,449],[954,544],[951,879],[186,524],[524,664],[409,580],[101,926],[210,256],[119,427],[679,567],[401,835],[110,835],[928,245],[690,157],[494,323],[686,870],[545,15],[633,47],[598,551],[664,253],[962,946],[14,164],[348,571],[896,566],[59,751],[770,181],[109,778],[602,985],[371,592],[539,455],[786,641],[551,859],[655,944],[284,794],[863,438],[157,730],[95,687],[391,308],[899,263],[936,718],[675,940],[527,40],[27,104],[247,491],[989,653],[324,680],[222,61],[319,857],[87,470],[502,466],[421,519],[693,274],[805,128],[431,93],[571,997],[288,546],[499,127],[303,10],[495,330],[994,78],[436,837],[964,230],[198,50],[426,438],[983,678],[994,15],[159,2],[930,966],[194,607],[777,534],[273,568],[29,75],[555,779],[510,696],[669,882],[767,29],[963,148],[535,533],[867,90],[194,367],[572,532],[949,481],[434,163],[421,907],[169,687],[242,644],[760,536],[141,880],[788,790],[947,33],[320,53],[554,382],[291,585],[629,811],[659,383],[329,2],[115,827],[936,735],[127,138],[209,949],[619,911],[72,410],[153,979],[272,315],[377,591],[160,317],[65,811],[52,283],[723,637],[554,463],[868,811],[218,427],[135,622],[506,856],[518,339],[757,898],[383,967],[881,403],[142,568],[989,612],[799,950],[934,479],[97,480],[364,195],[437,762],[890,580],[654,490],[993,645],[365,714],[921,962],[134,44],[661,280],[280,556],[220,591],[155,299],[735,40],[427,182],[420,588],[921,342],[476,853],[309,522],[522,166],[973,624],[81,860],[303,858],[697,179],[287,853],[572,697],[651,438],[617,366],[653,698],[837,418],[158,829],[466,672],[970,299],[806,576],[705,821],[553,365],[228,899],[879,419],[928,826],[862,602],[610,529],[336,381],[67,371],[733,697],[990,70],[221,847],[203,671],[231,460],[414,199],[194,555],[61,141],[343,834],[289,791],[801,57],[368,171],[737,409],[773,149],[706,618],[339,204],[212,947],[389,760],[500,374],[215,948],[184,295],[424,999],[80,840],[922,954],[774,216],[892,878],[298,11],[207,822],[810,611],[179,968],[887,861],[386,485],[525,223],[406,67],[475,611],[526,585],[451,402],[948,97],[906,385],[183,801],[720,45],[819,754],[739,807],[309,559],[830,707],[846,197],[102,207],[678,246],[405,380],[550,897],[35,263],[995,171],[119,166],[331,296],[155,776],[385,343],[885,519],[74,501],[668,110],[603,856],[170,294],[227,934],[99,437],[436,163],[41,263],[250,804],[681,275],[957,559],[28,477],[999,63],[208,584],[76,811],[822,160],[89,906],[570,508],[330,447],[1000,239],[698,857],[736,62],[853,285],[123,415],[350,797],[629,672],[148,565],[196,645],[162,704],[61,6],[908,277],[113,771],[898,583],[224,974],[898,748],[380,807],[570,188],[679,660],[413,195],[92,935],[71,341],[976,285],[471,204],[677,253],[34,566],[944,6],[879,84],[853,695],[557,469],[853,577],[451,940],[200,211],[203,630],[70,302],[36,592],[423,573],[311,918],[419,762],[907,451],[368,842],[419,976],[23,319],[432,318],[459,101],[197,111],[571,342],[941,70],[1000,760],[659,16],[721,949],[838,136],[709,480],[569,215],[628,227],[346,447],[608,826],[736,40],[884,114],[936,643],[726,20],[348,871],[435,312],[733,337],[280,372],[868,967],[425,702],[269,481],[495,109],[863,670],[632,873],[974,727],[714,418],[730,452],[39,112],[759,330],[923,952],[694,579],[264,458],[774,746],[688,474],[613,404],[869,419],[870,362],[153,431],[646,395],[402,775],[917,619],[320,885],[66,837],[62,890],[613,380],[241,370],[733,809],[174,388],[520,161],[126,689],[589,648],[810,300],[99,224],[147,823],[701,243],[564,361],[471,879],[453,988],[354,11],[218,921],[621,427],[89,295],[303,92],[392,683],[534,625],[216,166],[799,683],[169,784],[586,919],[690,134],[608,166],[93,603],[618,319],[890,948],[681,113],[361,82],[355,547],[846,322],[245,135],[621,372],[773,975],[833,917],[23,236],[384,422],[527,799],[210,241],[548,986],[289,140],[219,159],[593,172],[414,242],[533,645],[445,34],[169,497],[96,372],[691,31],[559,97],[890,471],[896,142],[479,848],[377,437],[891,662],[951,196],[720,627],[248,813],[462,202],[68,128],[222,800],[832,936],[574,955],[18,416],[145,760],[843,59],[97,713],[319,195],[443,923],[40,979],[265,532],[325,67],[348,253],[840,635],[281,370],[615,678],[619,141],[101,960],[901,139],[193,356],[120,886],[154,814],[661,235],[354,699],[539,229],[93,614],[876,884],[834,637],[569,385],[941,668],[392,418],[764,865],[907,414],[336,305],[179,556],[634,423],[760,606],[74,907],[518,388],[649,957],[541,696],[427,768],[524,842],[489,818],[965,813],[419,902],[25,370],[108,164],[390,752],[766,981],[959,510],[297,998],[625,782],[68,782],[444,489],[611,969],[81,835],[379,383],[211,554],[168,274],[723,241],[521,977],[697,517],[619,268],[616,594],[211,559],[540,912],[140,776],[792,542],[60,431],[427,910],[803,362],[551,168],[630,128],[246,194],[553,944],[135,212],[769,972],[370,80],[84,763],[132,108],[903,119],[275,401],[623,107],[929,905],[33,2],[516,48],[250,317],[695,48],[464,11],[942,127],[48,217],[915,871],[356,50],[972,235],[103,33],[607,967],[507,527],[299,377],[417,130],[738,769],[459,43],[349,922],[517,987],[172,830],[944,850],[36,635],[393,692],[265,113],[504,195],[227,702],[669,198],[68,200],[972,255],[790,849],[630,907],[779,541],[228,572],[180,45],[260,311],[796,372],[530,753],[678,782],[462,540],[905,695],[203,361],[839,323],[425,38],[754,779],[560,512],[945,498],[187,728],[620,412],[64,930],[516,620],[65,934],[797,748],[81,152],[58,614],[707,121],[775,919],[849,711],[202,132],[440,366],[618,266],[11,365],[826,405],[352,997],[546,38],[413,131],[195,192],[585,738],[310,81],[761,595],[282,638],[883,103],[620,172],[62,150],[481,947],[993,445],[495,816],[268,238],[77,67],[687,101],[571,248],[8,998],[947,77],[20,596],[264,28],[888,818],[331,169],[600,374],[124,958],[229,565],[350,89],[433,850],[850,50],[928,523],[325,984],[614,737],[481,399],[638,746],[340,961],[333,117],[481,982],[36,253],[975,945],[72,502],[327,557],[902,616],[204,457],[39,554],[728,197],[473,385],[297,847],[133,670],[293,125],[805,167],[643,997],[118,590],[599,123],[926,135],[6,642],[279,916],[915,62],[369,889],[981,734],[517,58],[427,356],[440,750],[42,527],[292,720],[595,374],[348,929],[755,56],[300,334],[566,285],[773,14],[889,841],[973,955],[932,116],[109,552],[317,606],[615,639],[556,273],[644,310],[703,416],[276,270],[201,300],[371,553],[209,486],[825,879],[750,496],[32,921],[914,728],[904,900],[641,937],[744,402],[138,247],[813,693],[402,925],[262,209],[490,492],[179,432],[239,232],[314,492],[302,152],[286,171],[162,677],[631,466],[614,879],[889,470],[887,20],[313,828],[276,757],[895,80],[92,197],[831,657],[28,762],[779,486],[482,530],[738,635],[182,51],[240,360],[833,330],[126,296],[592,170],[249,101],[861,938],[263,398],[205,535],[135,720],[247,816],[927,590],[845,826],[198,68],[650,455],[382,290],[194,303],[2,523],[10,342],[20,839],[57,891],[435,346],[969,901],[793,703],[473,64],[5,210],[854,458],[881,541],[6,283],[524,589],[770,437],[530,417],[577,108],[465,302],[252,15],[646,261],[474,802],[514,512],[289,215],[966,189],[501,128],[582,914],[256,646],[472,392],[716,748],[1,48],[837,13],[788,556],[461,188],[867,12],[906,697],[131,399],[370,362],[71,239],[972,893],[69,75],[410,168],[639,354],[501,66],[331,195],[178,867],[294,369],[487,735],[550,206],[617,651],[619,996],[376,245],[744,435],[945,826],[517,11],[976,898],[953,626],[637,134],[153,873],[729,584],[519,15],[225,91],[472,864],[548,607],[984,621],[434,215],[906,681],[670,303],[980,959],[477,343],[302,751],[859,841],[816,862],[201,104],[400,490],[325,851],[78,194],[209,262],[868,658],[771,192],[639,140],[1,155],[38,855],[837,547],[136,281],[404,674],[87,745],[653,453],[90,906],[36,693],[891,431],[821,987],[946,812],[547,420],[648,957],[262,460],[773,640],[176,310],[140,580],[39,722],[67,66],[750,675],[231,842],[902,257],[368,266],[737,990],[836,169],[491,782],[759,301],[730,475],[503,855],[184,820],[743,994],[324,56],[58,9],[888,679],[421,409],[181,267],[83,244],[163,78],[302,959],[571,413],[762,769],[277,11],[112,6],[713,968],[339,88],[230,666],[134,360],[813,839],[851,413],[556,465],[969,71],[986,104],[308,63],[68,657],[495,92],[670,177],[669,414],[386,390],[155,565],[947,86],[30,148],[842,921],[460,373],[430,77],[475,473],[451,979],[198,63],[807,494],[25,300],[309,944],[785,441],[562,140],[553,76],[118,893],[767,233],[386,487],[836,489],[496,835],[433,171],[491,340],[356,941],[924,8],[724,435],[465,497],[269,618],[75,50],[714,940],[919,645],[325,762],[742,918],[649,383],[750,706],[783,993],[833,825],[856,183],[332,359],[356,531],[554,259],[298,801],[237,237],[523,850],[244,758],[455,190],[271,433],[277,28],[502,290],[321,212],[949,368],[783,430],[4,345],[708,874],[705,662],[929,921],[825,589],[99,598],[844,903],[726,884],[661,627],[244,150],[970,541],[214,526],[406,394],[12,530],[706,683],[974,270],[740,933],[683,376],[198,755],[21,628],[986,665],[606,95],[451,770],[378,689],[109,65],[304,275],[192,281],[475,949],[310,704],[652,387],[172,595],[34,700],[565,91],[178,790],[561,683],[581,58],[638,342],[146,491],[922,790],[581,542],[896,1000],[692,94],[420,379],[938,864],[312,142],[366,842],[448,390],[856,789],[154,126],[17,428],[954,667],[691,955],[397,211],[774,866],[812,250],[537,422],[404,25],[154,744],[244,303],[6,605],[303,321],[199,235],[543,454],[21,513],[473,218],[117,341],[604,669],[162,332],[845,857],[560,652],[335,343],[756,521],[585,847],[689,866],[842,2],[214,66],[127,317],[532,136],[253,577],[881,780],[77,18],[953,500],[626,317],[516,781],[87,400],[408,484],[356,450],[983,405],[326,395],[144,657],[289,134],[434,968],[288,81],[455,88],[845,176],[528,524],[12,644],[955,302],[167,710],[970,908],[767,56],[773,717],[36,523],[805,699],[845,621],[554,933],[944,730],[86,582],[665,21],[358,418],[352,370],[973,178],[340,430],[265,481],[157,193],[440,514],[748,981],[637,340],[707,337],[150,479],[531,243],[125,99],[357,497],[376,425],[184,322],[536,574],[468,682],[176,252],[752,584],[823,755],[373,96],[539,708],[321,123],[285,682],[963,996],[413,671],[62,496],[791,44],[278,345],[6,756],[251,207],[539,121],[826,657],[352,95],[711,481],[328,270],[883,462],[695,690],[973,355],[503,794],[641,532],[967,54],[50,900],[223,545],[238,983],[513,125],[453,134],[996,101],[43,799],[98,382],[467,873],[759,485],[820,518],[676,136],[467,280],[184,307],[772,209],[405,122],[463,319],[601,620],[602,175],[521,337],[303,706],[529,430],[281,215],[847,792],[342,709],[628,84],[580,883],[73,328],[78,717],[815,408],[560,256],[132,205],[403,430],[884,820],[314,174],[767,309],[134,775],[237,25],[33,86],[58,672],[289,78],[334,315],[428,751],[569,345],[195,109],[523,622],[230,163],[695,982],[744,381],[352,390],[724,162],[434,594],[326,104],[765,146],[187,687],[827,9],[553,39],[450,430],[206,181],[524,991],[941,319],[136,881],[630,871],[727,571],[196,595],[881,572],[736,773],[291,111],[190,729],[407,780],[79,196],[269,468],[276,605],[735,660],[909,791],[232,554],[251,889],[773,585],[230,461],[879,870],[739,835],[61,289],[843,550],[568,844],[298,574],[375,937],[361,372],[921,877],[829,240],[914,74],[98,40],[76,342],[759,853],[76,514],[618,66],[931,262],[924,645],[967,877],[615,667],[253,886],[503,259],[355,923],[938,90],[867,802],[277,591],[511,612],[684,167],[417,482],[215,951],[106,161],[12,281],[872,270],[492,96],[864,309],[87,630],[593,832],[582,202],[740,69],[525,640],[862,170],[720,434],[181,437],[225,440],[361,31],[623,401],[545,361],[846,830],[195,465],[158,720],[886,529],[425,615],[44,47],[873,416],[710,642],[600,139],[383,207],[445,734],[482,529],[206,387],[702,612],[865,634],[189,894],[586,752],[875,549],[627,84],[750,467],[882,610],[57,614],[333,600],[588,641],[86,7],[358,863],[117,196],[338,280],[24,718],[533,550],[909,526],[220,200],[431,873],[880,424],[344,607],[379,674],[775,20],[153,461],[203,776],[844,791],[949,289],[163,529],[322,973],[147,527],[631,741],[851,504],[676,685],[664,4],[154,305],[597,659],[183,928],[381,35],[373,465],[586,918],[822,20],[471,3],[441,932],[395,942],[390,296],[526,692],[23,313],[565,13],[224,469],[847,711],[349,286],[564,239],[37,355],[772,802],[127,118],[838,249],[126,970],[889,483],[345,585],[195,863],[699,530],[808,86],[509,566],[494,935],[889,177],[69,221],[959,71],[363,245],[595,838],[155,138],[328,382],[419,77],[396,468],[648,413],[895,554],[711,126],[54,488],[419,481],[180,233],[93,472],[241,936],[985,100],[149,660],[763,449],[903,423],[741,879],[743,60],[892,161],[555,757],[553,74],[969,811],[707,118],[102,200],[899,167],[579,910],[778,89],[253,933],[716,375],[512,996],[53,445],[60,553],[410,774],[478,597],[372,403],[604,293],[671,911],[747,576],[497,205],[610,879],[37,865],[922,131],[991,138],[230,801],[369,382],[469,211],[697,422],[977,397],[735,834],[508,763],[517,587],[218,887],[471,752],[550,179],[403,432],[34,981],[578,236],[549,157],[47,364],[120,231],[579,972],[986,135],[961,44],[772,788],[437,239],[683,832],[316,188],[247,587],[658,15],[459,681],[121,636],[999,695],[74,64],[210,569],[819,478],[72,476],[328,365],[568,24],[264,49],[901,572],[17,873],[184,827],[671,762],[821,922],[44,226],[137,822],[225,171],[296,736],[828,633],[801,965],[803,970],[820,170],[749,436],[535,653],[223,421],[915,34],[2,466],[829,477],[938,866],[5,175],[447,902],[891,609],[460,126],[880,628],[966,290],[197,526],[579,753],[87,849],[792,702],[751,556],[422,110],[433,498],[803,977],[343,619],[336,454],[321,434],[538,279],[186,782],[648,151],[447,530],[744,985],[250,289],[987,187],[244,164],[289,593],[923,136],[476,662],[131,521],[684,158],[206,529],[912,148],[863,394],[53,749],[563,83],[401,335],[887,821],[756,296],[631,621],[773,563],[675,105],[288,335],[787,344],[365,235],[480,704],[223,477],[354,37],[458,615],[18,37],[532,334],[884,357],[312,809],[304,32],[279,295],[494,963],[695,93],[738,996],[18,861],[280,231],[18,659],[347,663],[563,211],[783,710],[633,883],[374,617],[115,777],[705,846],[537,311],[962,861],[971,908],[954,818],[9,199],[462,698],[455,351],[795,959],[1000,610],[651,884],[471,858],[614,12],[895,67],[471,648],[487,38],[828,672],[499,781],[478,302],[335,213],[548,220],[135,592],[463,446],[435,579],[134,189],[147,444],[685,588],[68,367],[48,666],[540,183],[491,402],[946,887],[909,265],[152,525],[701,799],[968,135],[562,173],[75,374],[538,931],[148,424],[379,675],[801,607],[857,453],[466,931],[741,692],[930,511],[533,434],[873,595],[291,201],[603,969],[726,208],[88,46],[935,256],[774,453],[26,125],[959,339],[552,471],[66,433],[413,903],[592,140],[761,177],[501,703],[373,806],[571,412],[853,139],[334,638],[276,380],[893,740],[821,609],[404,613],[613,492],[216,58],[876,729],[325,165],[769,898],[296,173],[49,598],[256,29],[397,770],[812,144],[676,281],[988,941],[434,724],[185,627],[764,791],[221,575],[171,724],[680,541],[913,102],[392,897],[9,816],[477,84],[631,890],[946,544],[162,426],[847,863],[49,622],[91,649],[309,858],[550,66],[345,965],[926,7],[652,817],[232,632],[174,196],[924,595],[826,237],[825,894],[62,513],[551,518],[785,977],[354,23],[823,865],[320,564],[770,585],[792,410],[962,216],[410,736],[361,530],[774,742],[94,570],[385,429],[444,264],[526,39],[952,572],[896,700],[516,973],[211,485],[95,642],[272,277],[797,761],[418,416],[580,804],[260,473],[173,708],[151,501],[771,815],[246,270],[599,768],[228,966],[444,312],[999,861],[329,354],[826,713],[647,155],[857,28],[855,924],[312,499],[200,979],[494,113],[444,121],[738,807],[297,272],[19,68],[552,529],[703,794],[256,528],[271,934],[410,987],[455,280],[9,162],[973,125],[863,948],[433,754],[794,93],[699,557],[448,451],[403,89],[150,130],[942,967],[93,268],[845,616],[269,983],[593,422],[51,672],[75,660],[309,258],[890,653],[97,980],[823,197],[630,995],[212,983],[157,969],[810,76],[775,455],[941,684],[778,399],[805,538],[670,934],[956,597],[347,881],[481,513],[533,464],[998,706],[824,428],[644,542],[578,464],[752,765],[851,791],[56,115],[780,818],[590,105],[526,899],[893,15],[123,476],[920,881],[554,56],[59,324],[276,814],[448,699],[581,563],[83,29],[119,621],[966,547],[882,529],[47,866],[586,554],[881,34],[4,181],[245,819],[192,20],[94,453],[934,25],[138,874],[575,117],[695,563],[980,132],[62,658],[50,424],[570,701],[694,37],[461,939],[213,888],[886,250],[709,122],[124,952],[46,408],[744,606],[333,26],[933,526],[444,733],[78,862],[673,246],[278,355],[425,308],[638,230],[731,208],[613,511],[221,271],[584,187],[387,239],[583,495],[147,107],[964,783],[435,460],[845,298],[34,250],[249,606],[585,281],[822,173],[34,108],[435,650],[661,130],[788,43],[278,843],[882,339],[568,95],[499,236],[500,213],[223,989],[600,768],[119,835],[22,767],[315,899],[690,638],[243,486],[282,250],[872,600],[241,724],[278,706],[644,344],[835,755],[99,992],[637,282],[657,942],[634,110],[979,32],[151,580],[146,748],[363,463],[594,112],[316,831],[891,131],[109,386],[10,20],[14,525],[15,777],[355,275],[878,469],[981,583],[729,975],[282,895],[141,346],[828,381],[97,796],[830,97],[912,628],[918,610],[921,357],[301,784],[38,703],[133,88],[263,687],[273,903],[770,659],[466,806],[55,750],[605,638],[829,231],[231,736],[745,247],[262,317],[691,274],[721,542],[495,223],[825,710],[320,211],[103,178],[13,356],[825,139],[172,668],[162,571],[495,737],[172,400],[503,320],[866,108],[826,109],[729,474],[438,682],[298,747],[241,134],[138,83],[610,263],[541,932],[612,158],[930,267],[220,615],[583,32],[81,42],[940,989],[958,712],[398,400],[962,778],[295,53],[899,680],[590,935],[40,491],[375,675],[32,573],[710,589],[886,330],[671,947],[104,760],[597,801],[303,864],[566,465],[150,973],[472,771],[26,191],[20,297],[309,253],[557,112],[342,16],[820,958],[636,432],[362,217],[432,867],[577,616],[637,331],[559,495],[219,542],[977,416],[521,790],[74,480],[224,239],[671,398],[906,792],[802,250],[332,578],[706,544],[865,178],[967,284],[833,878],[634,308],[208,822],[900,974],[378,436],[682,140],[932,989],[686,185],[208,884],[306,185],[276,491],[916,770],[745,700],[70,118],[535,251],[319,202],[189,41],[204,443],[777,678],[245,312],[133,466],[300,105],[175,932],[149,966],[720,907],[330,480],[344,430],[743,100],[322,795],[70,61],[46,699],[188,889],[57,837],[610,110],[441,914],[444,389],[515,549],[688,908],[388,161],[228,6],[176,470],[448,19],[261,59],[948,603],[542,29],[620,370],[938,35],[817,820],[494,728],[942,890],[658,674],[40,494],[442,691],[264,968],[822,226],[485,224],[28,435],[71,875],[783,886],[237,52],[223,925],[707,115],[788,409],[202,232],[943,820],[657,553],[982,771],[809,59],[509,743],[962,165],[604,782],[765,42],[464,478],[974,434],[862,884],[807,475],[960,919],[547,679],[515,275],[588,26],[207,943],[568,654],[847,949],[397,792],[105,530],[722,490],[893,701],[312,447],[606,259],[642,176],[976,997],[147,897],[513,775],[475,436],[324,640],[728,49],[970,752],[730,823],[582,738],[684,57],[935,883],[980,491],[895,78],[829,628],[222,435],[186,105],[942,127],[873,827],[322,688],[522,908],[155,182],[610,593],[241,873],[799,654],[604,32],[650,597],[80,127],[618,876],[839,667],[503,128],[833,99],[895,315],[848,132],[795,32],[222,499],[682,617],[208,156],[54,114],[124,351],[780,87],[949,132],[626,373],[238,64],[358,844],[678,969],[257,226],[329,902],[118,137],[318,841],[320,696],[442,583],[778,921],[120,393],[905,661],[166,887],[558,747],[798,198],[88,411],[387,130],[310,87],[111,410],[42,415],[917,668],[578,877],[990,196],[759,244],[737,280],[635,798],[284,713],[823,669],[322,110],[918,778],[109,881],[925,412],[31,963],[26,601],[332,325],[733,959],[533,640],[47,97],[866,796],[238,394],[537,115],[207,322],[770,232],[978,968],[294,939],[951,944],[948,296],[846,262],[798,513],[68,144],[583,272],[908,361],[949,250],[374,658],[209,238],[621,51],[732,58],[406,598],[16,342],[429,545],[699,583],[838,621],[771,898],[80,109],[636,757],[235,480],[294,781],[193,519],[162,577],[466,640],[102,875],[549,766],[226,202],[589,715],[233,522],[284,351],[507,110],[592,547],[285,192],[625,269],[962,972],[901,20],[449,374],[460,710],[843,780],[641,941],[199,439],[252,10],[629,437],[87,66],[920,489],[339,330],[993,759],[253,239],[119,468],[493,194],[605,886],[144,179],[562,529],[862,926],[822,327],[297,179],[265,818],[593,620],[232,537],[305,608],[696,897],[453,312],[87,517],[737,605],[902,56],[613,783],[282,294],[454,434],[860,62],[735,45],[526,190],[410,372],[46,619],[806,794],[42,461],[946,305],[149,154],[787,163],[465,4],[477,446],[954,381],[749,584],[701,45],[302,757],[718,219],[3,265],[619,719],[863,159],[580,13],[465,71],[239,482],[784,213],[446,533],[405,825],[96,911],[701,227],[337,596],[246,257],[471,428],[220,638],[69,544],[249,39],[810,498],[381,715],[144,744],[582,993],[473,164],[408,421],[225,331],[610,656],[682,691],[914,895],[638,615],[401,864],[471,604],[612,625],[21,491],[457,933],[120,903],[126,988],[623,240],[479,491],[881,137],[820,846],[756,57],[296,74],[41,116],[584,972],[819,520],[712,216],[231,282],[64,783],[382,765],[992,269],[773,935],[584,433],[749,738],[536,536],[132,518],[192,810],[940,184],[471,646],[353,724],[470,473],[174,685],[427,552],[711,116],[773,580],[836,564],[117,195],[434,338],[379,385],[814,802],[915,447],[121,305],[417,345],[303,602],[301,559],[190,698],[985,157],[48,806],[689,851],[441,476],[302,82],[921,224],[851,972],[295,431],[695,554],[452,72],[758,599],[694,746],[432,277],[53,894],[95,36],[530,684],[451,617],[812,676],[28,322],[438,328],[803,155],[10,342],[776,536],[79,737],[980,402],[430,371],[731,657],[446,187],[801,704],[487,313],[616,701],[212,732],[145,881],[930,287],[853,694],[249,62],[741,345],[9,578],[801,846],[645,389],[996,35],[822,739],[898,61],[948,111],[651,239],[394,129],[397,534],[103,934],[660,157],[432,141],[337,856],[120,204],[42,950],[451,9],[323,787],[696,490],[317,645],[381,573],[363,508],[365,751],[662,28],[356,944],[809,239],[343,782],[883,59],[25,93],[987,403],[530,535],[188,364],[937,208],[203,217],[998,656],[979,232],[768,27],[1000,523],[734,898],[403,102],[663,673],[702,933],[725,873],[636,594],[632,816],[150,650],[844,128],[851,450],[984,234],[739,22],[690,861],[241,447],[269,637],[430,789],[233,162],[81,244],[157,45],[305,637],[720,686],[758,594],[924,379],[676,228],[523,919],[735,883],[8,518],[673,137],[424,587],[408,733],[488,209],[126,238],[796,524],[123,216],[96,303],[899,434],[7,579],[640,537],[435,56],[118,964],[560,351],[272,719],[350,579],[354,85],[220,356],[292,598],[378,323],[700,218],[489,189],[147,903],[628,693],[959,303],[516,105],[557,274],[465,31],[483,184],[207,364],[57,789],[667,348],[77,920],[419,884],[599,696],[281,846],[852,661],[950,497],[144,853],[60,523],[603,762],[869,268],[831,977],[529,819],[572,89],[293,899],[193,831],[616,871],[20,82],[63,315],[710,531],[935,692],[545,646],[578,591],[816,959],[11,530],[381,955],[123,252],[458,736],[133,85],[773,498],[175,520],[938,719],[920,541],[7,773],[442,204],[116,955],[919,269],[49,972],[446,180],[1000,853],[835,43],[52,323],[53,890],[825,701],[47,714],[60,102],[845,455],[976,23],[353,610],[18,841],[146,770],[41,293],[590,446],[630,125],[271,651],[792,101],[500,146],[973,704],[545,389],[932,830],[435,475],[376,583],[563,388],[106,110],[651,726],[814,824],[417,966],[167,321],[828,30],[982,131],[20,983],[408,660],[41,91],[69,633],[922,932],[609,919],[695,832],[541,103],[579,83],[217,221],[885,635],[868,182],[39,521],[12,139],[33,981],[311,513],[531,609],[462,682],[787,364],[101,166],[825,555],[798,706],[784,80],[223,967],[552,770],[613,138],[16,998],[739,726],[308,231],[735,988],[290,594],[951,459],[35,152],[16,630],[564,800],[781,955],[350,616],[726,292],[389,861],[545,61],[671,270],[590,461],[598,560],[409,909],[56,197],[665,93],[988,336],[958,359],[166,419],[318,934],[805,808],[290,975],[29,525],[899,184],[783,713],[740,829],[753,797],[428,280],[312,95],[434,770],[453,187],[433,122],[634,966],[530,522],[4,537],[218,336],[468,849],[626,213],[360,165],[65,903],[612,238],[508,864],[339,929],[637,147],[766,286],[9,532],[850,825],[130,952],[310,299],[583,512],[460,922],[810,900],[504,759],[914,5],[2,410],[10,508],[293,513],[883,824],[287,227],[708,696],[608,37],[383,146],[124,818],[159,506],[231,525],[279,156],[690,391],[175,564],[932,466],[690,828],[313,494],[132,684],[228,726],[235,718],[429,272],[506,402],[32,250],[294,846],[689,406],[717,604],[592,608],[160,560],[939,109],[833,622],[341,789],[968,848],[762,488],[653,458],[324,265],[404,941],[699,637],[363,227],[467,14],[900,54],[513,916],[810,390],[708,962],[589,139],[558,421],[478,834],[62,671],[476,138],[339,693],[97,28],[969,716],[831,478],[21,791],[886,274],[920,897],[136,86],[656,808],[454,980],[750,165],[107,415],[842,382],[362,530],[997,9],[984,435],[583,82],[260,919],[867,523],[806,207],[920,166],[542,691],[225,815],[903,626],[272,25],[766,505],[927,717],[288,216],[400,35],[814,890],[703,508],[927,991],[746,226],[320,61],[150,14],[953,951],[699,673],[973,148],[872,790],[316,636],[340,391],[275,837],[167,260],[477,489],[991,291],[408,623],[72,636],[137,85],[520,6],[967,686],[542,607],[987,843],[219,380],[119,873],[832,430],[985,775],[197,604],[261,233],[603,928],[840,715],[176,40],[421,937],[555,539],[845,375],[606,891],[601,892],[507,438],[338,952],[526,84],[928,123],[469,825],[705,789],[197,939],[661,205],[857,412],[890,360],[118,26],[994,236],[103,905],[796,686],[632,584],[799,26],[939,467],[680,219],[601,520],[828,397],[219,793],[964,29],[62,355],[223,147],[640,520],[349,204],[440,621],[826,464],[656,938],[751,491],[909,359],[307,119],[796,998],[305,169],[161,302],[63,928],[975,490],[882,606],[674,901],[452,979],[266,967],[190,7],[949,689],[201,320],[318,98],[480,765],[90,535],[728,164],[164,315],[39,345],[433,559],[424,92],[420,933],[762,740],[642,29],[599,941],[568,700],[628,278],[974,950],[978,380],[625,348],[127,534],[907,579],[232,295],[122,330],[520,787],[495,391],[320,286],[288,464],[408,961],[868,140],[577,763],[801,453],[795,688],[862,264],[77,937],[693,426],[552,424],[845,592],[173,820],[148,774],[818,187],[527,52],[621,841],[243,911],[867,980],[974,270],[769,896],[837,445],[996,454],[694,556],[125,432],[867,756],[585,484],[681,16],[918,623],[588,473],[224,974],[970,66],[828,544],[931,810],[680,613],[670,589],[132,382],[333,200],[241,874],[872,967],[545,75],[125,9],[233,696],[892,668],[411,568],[169,496],[825,534],[932,173],[756,30],[646,648],[56,307],[175,514],[104,612],[194,112],[498,967],[486,603],[517,516],[883,741],[38,625],[680,858],[308,203],[680,128],[45,540],[301,269],[949,961],[599,796],[873,98],[168,256],[747,960],[550,711],[9,337],[61,296],[452,640],[704,358],[4,301],[117,892],[607,33],[983,909],[514,588],[627,424],[386,574],[34,258],[99,507],[696,30],[814,306],[740,363],[302,102],[501,44],[880,103],[980,116],[60,706],[375,213],[729,462],[500,636],[944,501],[892,271],[763,878],[720,978],[99,695],[705,736],[552,381],[155,544],[631,531],[885,389],[197,418],[806,57],[774,178],[127,237],[730,119],[470,129],[357,959],[477,461],[406,997],[929,710],[192,284],[873,872],[730,534],[135,140],[129,864],[761,602],[278,257],[419,71],[391,316],[545,969],[374,108],[649,11],[323,695],[866,57],[219,894],[945,933],[827,644],[364,701],[729,74],[299,10],[352,2],[421,340],[341,787],[793,450],[228,734],[117,911],[35,494],[776,130],[556,727],[700,366],[103,337],[166,509],[514,454],[960,488],[272,53],[331,471],[811,550],[422,568],[278,468],[201,175],[216,62],[7,511],[328,239],[7,944],[483,380],[669,78],[274,96],[518,702],[741,406],[399,249],[735,693],[377,31],[728,812],[624,924],[748,287],[581,414],[644,368],[990,307],[931,309],[714,703],[127,797],[495,556],[80,334],[764,616],[72,746],[959,75],[987,506],[313,256],[398,423],[98,427],[866,263],[638,166],[955,813],[869,28],[904,778],[548,243],[502,970],[377,488],[101,734],[811,571],[673,184],[588,985],[882,185],[778,460],[450,114],[892,672],[886,541],[135,315],[475,195],[512,877],[618,476],[774,75],[876,782],[767,151],[976,301],[376,638],[929,190],[962,856],[474,200],[782,406],[588,294],[358,995],[336,182],[702,674],[689,218],[704,397],[252,560],[119,320],[581,691],[20,315],[503,768],[134,887],[96,64],[390,179],[227,727],[32,404],[141,494],[76,878],[457,505],[162,563],[159,712],[849,803],[849,879],[714,671],[715,456],[907,281],[111,536],[820,996],[319,160],[262,768],[86,488],[731,910],[341,668],[405,53],[574,123],[541,286],[888,362],[43,990],[501,666],[97,646],[589,801],[265,752],[142,974],[880,989],[696,863],[486,871],[700,186],[62,415],[999,590],[8,243],[2,162],[437,959],[662,661],[473,809],[33,378],[35,453],[535,44],[11,290],[14,5],[63,866],[694,823],[600,571],[320,916],[258,21],[730,772],[943,102],[233,48],[29,942],[87,801],[890,83],[679,272],[303,457],[299,616],[367,844],[331,88],[482,170],[773,867],[641,867],[997,2],[689,978],[602,272],[801,43],[661,482],[160,781],[82,580],[702,500],[918,87],[7,797],[651,738],[799,416],[658,288],[840,815],[617,601],[620,595],[279,189],[688,708],[884,873],[762,114],[339,951],[848,384],[275,966],[110,983],[728,50],[918,668],[488,547],[901,538],[574,600],[583,695],[308,467],[845,307],[483,265],[749,130],[594,765],[739,635],[29,617],[473,330],[893,802],[117,606],[783,832],[157,537],[201,855],[697,787],[247,214],[688,485],[519,730],[372,958],[54,907],[342,367],[707,64],[481,216],[615,3],[613,581],[760,68],[88,584],[984,19],[766,470],[755,121],[120,542],[199,537],[999,439],[422,566],[787,346],[482,703],[493,54],[959,379],[960,858],[826,332],[830,753],[279,777],[260,691],[385,891],[594,131],[206,476],[839,957],[730,778],[326,853],[842,913],[567,863],[134,815],[224,373],[109,596],[196,250],[797,260],[166,843],[145,564],[162,922],[308,710],[105,399],[392,493],[980,231],[150,997],[455,920],[391,880],[880,594],[472,659],[117,436],[301,629],[16,334],[104,569],[117,283],[72,208],[179,259],[419,472],[804,512],[805,585],[374,331],[969,393],[467,711],[477,321],[63,927],[514,74],[777,95],[946,130],[228,917],[939,504],[862,637],[4,513],[163,992],[566,913],[979,164],[856,254],[17,662],[883,824],[692,855],[213,442],[66,466],[220,233],[902,826],[9,839],[911,24],[475,256],[925,833],[767,108],[655,903],[408,634],[360,891],[344,791],[972,475],[622,418],[39,502],[960,388],[961,451],[625,106],[229,887],[883,540],[851,428],[879,471],[65,612],[989,770],[653,6],[898,725],[58,415],[909,178],[171,554],[275,31],[750,787],[294,642],[865,410],[473,337],[704,351],[257,844],[706,471],[431,203],[44,953],[800,685],[34,461],[909,831],[517,915],[692,288],[432,358],[872,179],[117,459],[345,889],[584,426],[579,709],[396,867],[405,847],[604,275],[592,675],[740,519],[905,689],[127,402],[966,115],[886,671],[882,449],[824,133],[765,152],[852,188],[710,237],[885,921],[25,235],[171,557],[943,698],[875,968],[376,554],[49,903],[140,476],[139,718],[641,430],[516,515],[180,996],[195,791],[219,684],[828,41],[745,329],[84,961],[991,748],[825,109],[554,608],[649,402],[64,196],[921,478],[344,460],[935,765],[331,502],[359,561],[891,884],[992,533],[696,449],[315,442],[804,567],[57,150],[903,981],[491,116],[122,612],[684,212],[987,93],[209,307],[165,131],[165,447],[584,228],[35,556],[842,529],[631,981],[675,781],[30,501],[796,353],[862,274],[234,112],[468,369],[794,108],[132,189],[996,117],[346,392],[682,660],[186,52],[85,681],[397,230],[888,30],[512,989],[224,882],[264,220],[621,117],[839,750],[486,312],[595,271],[831,115],[561,119],[812,126],[938,626],[979,641],[44,831],[573,789],[843,104],[589,623],[601,286],[338,321],[813,392],[465,652],[153,523],[890,364],[196,74],[824,495],[444,951],[89,21],[320,572],[738,348],[802,271],[985,260],[782,451],[468,264],[181,894],[365,154],[818,440],[745,806],[819,872],[970,206],[394,132],[664,968],[468,526],[882,420],[996,591],[612,630],[694,664],[580,923],[837,613],[363,50],[573,825],[59,836],[657,322],[311,283],[512,288],[70,389],[236,749],[999,482],[851,943],[973,594],[719,964],[672,96],[934,580],[334,535],[734,240],[1000,110],[555,583],[694,500],[252,681],[609,738],[575,659],[7,981],[405,843],[897,175],[388,939],[686,467],[11,425],[467,683],[841,1000],[666,301],[739,595],[18,387],[977,500],[842,423],[841,804],[203,144],[839,614],[724,396],[614,439],[619,537],[482,448],[837,513],[710,431],[447,262],[194,249],[996,89],[60,832],[515,412],[379,768],[808,77],[375,286],[323,494],[363,384],[97,428],[318,284],[634,113],[436,418],[846,938],[672,822],[309,534],[221,667],[583,904],[881,251],[139,981],[285,555],[519,981],[687,661],[762,202],[146,238],[629,319],[518,342],[957,501],[728,715],[306,218],[943,249],[563,554],[844,230],[438,739],[690,444],[554,523],[188,773],[577,18],[326,791],[397,210],[910,758],[153,961],[355,567],[709,33],[315,1000],[770,785],[458,214],[441,266],[397,797],[668,666],[954,530],[107,295],[136,341],[569,885],[55,688],[510,609],[573,977],[324,455],[562,381],[952,430],[361,574],[259,799],[386,732],[548,691],[299,271],[509,534],[282,47],[731,430],[376,280],[741,663],[674,799],[86,472],[119,707],[295,783],[171,126],[740,469],[982,408],[198,525],[797,383],[119,621],[465,431],[634,6],[406,533],[684,881],[632,624],[101,811],[434,247],[776,863],[391,38],[509,147],[197,884],[329,398],[442,258],[888,551],[952,727],[301,851],[755,22],[572,765],[988,622],[205,771],[85,930],[275,915],[893,287],[781,570],[688,228],[236,655],[298,86],[958,132],[325,779],[397,574],[489,546],[486,322],[306,616],[708,331],[295,476],[941,494],[598,445],[696,431],[854,278],[235,614],[84,853],[933,974],[117,115],[61,119],[761,197],[297,647],[276,761],[111,478],[167,937],[981,827],[42,64],[199,129],[205,289],[64,545],[361,699],[372,516],[53,613],[183,839],[818,522],[497,163],[501,388],[147,485],[523,902],[82,983],[150,538],[880,407],[599,695],[942,849],[656,231],[720,718],[393,629],[257,887],[984,302],[846,894],[923,861],[684,855],[391,669],[156,115],[628,571],[6,766],[934,610],[169,250],[192,483],[331,315],[721,13],[965,440],[470,238],[807,520],[570,397],[587,458],[566,939],[986,882],[34,249],[234,324],[338,493],[659,930],[846,742],[18,774],[148,454],[183,714],[751,25],[566,633],[884,923],[210,340],[565,632],[217,821],[848,133],[371,587],[12,485],[459,542],[731,89],[381,535],[660,555],[749,700],[290,8],[568,42],[264,512],[438,821],[519,433],[559,249],[787,507],[912,4],[756,92],[955,219],[481,436],[965,160],[319,251],[219,159],[199,781],[796,522],[209,287],[964,361],[910,882],[266,745],[843,341],[270,646],[26,732],[6,547],[637,151],[984,966],[766,424],[508,581],[455,897],[337,728],[39,62],[715,206],[747,412],[51,206],[788,830],[717,852],[213,422],[492,34],[42,794],[867,362],[586,705],[979,484],[367,124],[283,537],[204,156],[724,605],[949,398],[993,312],[518,276],[463,927],[361,24],[630,853],[685,881],[580,182],[141,540],[404,739],[522,547],[521,569],[102,205],[452,93],[813,116],[119,443],[742,14],[549,684],[973,277],[792,790],[124,880],[432,159],[299,322],[653,644],[969,191],[337,933],[886,859],[91,316],[609,340],[771,862],[105,826],[668,342],[942,380],[897,207],[26,16],[827,343],[643,457],[53,207],[761,279],[811,223],[724,48],[285,661],[63,628],[984,334],[77,546],[142,420],[692,550],[349,951],[496,648],[379,120],[460,202],[302,309],[713,915],[487,603],[577,868],[271,354],[708,909],[411,629],[849,532],[62,742],[725,338],[271,792],[480,14],[492,187],[951,115],[737,811],[259,31],[837,271],[838,878],[547,724],[869,11],[117,142],[758,449],[495,337],[985,479],[404,739],[85,674],[77,367],[303,845],[141,815],[468,339],[497,98],[704,150],[516,946],[717,401],[293,497],[57,223],[685,743],[291,167],[562,152],[325,167],[214,640],[706,359],[896,362],[775,882],[397,634],[682,134],[522,68],[279,85],[733,672],[110,922],[203,39],[537,524],[457,718],[541,318],[832,583],[460,827],[583,302],[644,91],[616,393],[645,687],[980,95],[410,76],[684,982],[36,628],[823,9],[611,203],[207,471],[107,895],[266,248],[733,213],[987,21],[16,58],[546,643],[111,256],[572,585],[690,783],[804,539],[80,975],[487,765],[357,766],[833,499],[346,958],[825,100],[714,121],[96,228],[373,581],[789,757],[443,672],[118,337],[925,368],[945,189],[983,539],[803,216],[336,320],[564,33],[485,35],[283,928],[299,392],[714,736],[925,372],[970,687],[350,539],[467,116],[3,681],[821,137],[94,702],[361,72],[373,160],[290,446],[81,453],[481,508],[150,200],[910,120],[79,559],[244,910],[854,234],[561,412],[590,706],[523,15],[595,642],[709,624],[474,955],[189,903],[952,15],[637,525],[260,669],[517,75],[916,58],[67,803],[275,591],[93,249],[659,145],[691,823],[577,593],[396,120],[900,236],[639,949],[309,938],[725,996],[590,599],[810,180],[920,755],[576,798],[832,93],[261,209],[821,94],[746,90],[44,510],[347,536],[68,992],[954,482],[646,843],[837,969],[577,915],[183,94],[226,410],[239,329],[152,425],[397,544],[478,541],[348,331],[700,348],[575,167],[208,357],[673,191],[650,592],[567,41],[591,858],[918,192],[77,73],[413,269],[819,798],[236,593],[489,972],[493,258],[914,374],[758,694],[16,359],[337,667],[132,564],[619,68],[637,421],[334,241],[927,425],[902,469],[201,102],[65,536],[767,143],[633,274],[877,218],[628,906],[645,442],[890,529],[981,982],[30,702],[471,196],[334,890],[925,488],[929,590],[193,937],[233,298],[413,930],[743,424],[720,351],[121,916],[967,461],[867,801],[897,359],[743,10],[484,258],[85,811],[682,343],[448,57],[703,65],[562,915],[393,264],[530,203],[673,915],[94,497],[490,50],[763,218],[14,741],[125,237],[833,651],[805,133],[94,16],[75,506],[363,42],[897,64],[819,154],[739,366],[241,4],[65,479],[737,696],[67,463],[499,473],[805,290],[408,553],[821,458],[98,944],[955,567],[199,178],[68,921],[995,598],[323,388],[256,229],[52,279],[342,323],[739,961],[170,169],[1,346],[804,516],[946,548],[654,272],[633,385],[743,46],[927,791],[658,551],[213,484],[165,255],[975,368],[869,228],[678,173],[20,494],[266,958],[649,33],[505,329],[90,221],[22,577],[738,530],[856,32],[293,449],[369,717],[296,677],[662,902],[938,403],[397,964],[152,164],[302,607],[385,102],[808,56],[872,511],[935,40],[271,478],[112,848],[221,920],[106,523],[579,471],[137,390],[451,285],[564,767],[255,178],[812,309],[554,214],[217,83],[934,889],[121,12],[205,567],[786,693],[304,976],[183,692],[265,998],[49,139],[854,944],[368,520],[190,180],[772,279],[87,73],[861,279],[762,961],[923,960],[595,488],[52,336],[471,869],[553,720],[235,929],[38,765],[697,73],[3,933],[204,405],[714,27],[106,189],[428,845],[816,61],[808,859],[830,831],[183,634],[803,881],[151,208],[190,640],[763,136],[803,54],[748,947],[924,482],[246,733],[349,541],[938,209],[442,368],[556,878],[966,337],[928,461],[93,23],[530,972],[830,830],[991,133],[935,91],[703,278],[223,74],[398,724],[853,141],[67,386],[803,27],[87,926],[696,840],[816,165],[279,33],[133,590],[104,150],[580,279],[353,914],[950,172],[162,768],[620,324],[236,290],[357,835],[911,716],[204,607],[494,737],[40,240],[219,271],[525,818],[664,751],[865,331],[724,938],[593,721],[324,280],[490,675],[443,150],[306,322],[512,265],[543,276],[972,503],[855,908],[110,115],[246,210],[914,154],[619,311],[760,561],[241,214],[384,831],[765,823],[613,416],[187,549],[877,710],[96,932],[657,721],[177,167],[706,369],[65,864],[923,21],[464,98],[624,109],[40,449],[942,580],[617,120],[160,500],[464,681],[655,566],[343,697],[500,860],[907,224],[399,508],[18,440],[67,154],[288,471],[593,407],[308,487],[562,463],[145,207],[270,801],[806,557],[400,213],[430,70],[883,571],[242,376],[491,546],[672,178],[591,776],[325,15],[699,247],[939,533],[967,694],[556,50],[886,527],[302,44],[167,158],[913,971],[983,788],[48,962],[746,332],[746,662],[837,245],[873,806],[975,384],[102,328],[248,391],[600,807],[355,589],[717,673],[172,227],[500,380],[423,667],[269,706],[399,535],[450,47],[24,756],[616,218],[624,412],[396,255],[482,992],[548,596],[648,555],[918,229],[535,739],[791,851],[118,532],[572,212],[472,348],[906,715],[971,413],[90,891],[794,499],[183,983],[533,328],[318,490],[998,856],[743,922],[985,949],[745,137],[846,24],[482,924],[885,778],[480,692],[594,782],[717,720],[949,961],[458,553],[46,683],[138,973],[673,886],[705,961],[307,833],[450,18],[194,846],[140,207],[666,216],[601,833],[439,523],[736,274],[636,799],[111,523],[15,135],[185,686],[421,571],[491,298],[371,710],[869,766],[885,130],[493,449],[221,858],[252,163],[532,929],[800,435],[43,585],[411,991],[770,329],[32,96],[156,787],[740,564],[124,218],[451,872],[563,392],[340,53],[849,14],[908,426],[161,223],[30,490],[752,600],[599,552],[608,408],[22,462],[513,313],[66,992],[55,877],[134,319],[989,84],[589,2],[922,9],[548,808],[452,4],[483,249],[798,703],[262,596],[177,987],[520,134],[767,960],[604,436],[678,893],[143,33],[512,86],[893,263],[302,894],[530,277],[136,911],[812,580],[671,642],[381,599],[133,955],[468,787],[956,128],[800,7],[701,203],[434,926],[397,175],[918,965],[956,486],[902,845],[546,953],[393,495],[140,798],[271,560],[686,48],[657,36],[940,28],[712,655],[297,373],[353,162],[566,533],[241,121],[990,795],[493,428],[922,252],[796,98],[46,314],[18,533],[499,445],[87,834],[974,708],[536,568],[971,463],[487,122],[697,443],[97,145],[294,59],[690,772],[392,597],[870,915],[622,725],[386,580],[811,281],[340,459],[837,149],[853,927],[612,424],[975,383],[504,642],[824,222],[441,729],[710,546],[847,385],[509,940],[113,213],[693,692],[29,223],[785,682],[565,245],[48,190],[625,64],[942,706],[6,128],[67,241],[53,427],[833,513],[20,902],[73,490],[921,731],[362,884],[439,830],[105,811],[83,612],[988,524],[299,512],[683,140],[428,510],[590,583],[456,79],[989,484],[213,178],[230,159],[23,10],[403,866],[428,425],[161,519],[55,73],[688,604],[416,308],[113,887],[760,283],[754,910],[654,21],[400,819],[179,903],[845,728],[680,384],[535,261],[255,320],[166,310],[549,691],[742,904],[632,668],[30,893],[883,312],[387,232],[416,733],[528,387],[218,283],[171,530],[992,40],[496,793],[109,828],[28,583],[928,948],[918,589],[900,715],[215,570],[849,918],[672,506],[770,606],[789,401],[817,101],[992,395],[851,724],[76,275],[80,266],[746,328],[179,705],[573,58],[513,537],[71,321],[328,790],[456,884],[668,161],[760,733],[18,529],[64,243],[691,730],[634,414],[698,789],[181,729],[552,841],[520,94],[104,602],[179,303],[421,740],[134,408],[501,588],[964,483],[797,691],[229,195],[314,749],[941,462],[711,493],[455,91],[393,22],[987,635],[854,789],[955,317],[862,832],[515,581],[704,423],[303,496],[789,900],[986,600],[886,985],[618,257],[583,521],[766,913],[645,341],[372,176],[266,610],[687,747],[401,460],[211,159],[819,630],[979,978],[104,289],[641,849],[935,369],[66,57],[20,759],[993,898],[956,713],[207,875],[460,428],[845,136],[35,558],[992,372],[157,901],[728,772],[274,552],[771,930],[132,818],[938,555],[950,202],[930,390],[864,660],[104,595],[764,657],[239,223],[595,353],[428,315],[914,190],[770,455],[214,315],[481,852],[716,606],[823,619],[250,968],[279,685],[534,60],[128,258],[14,271],[84,56],[974,962],[174,149],[118,815],[455,227],[668,961],[270,730],[476,391],[407,174],[143,164],[64,554],[275,967],[479,854],[383,90],[851,517],[547,240],[616,366],[708,628],[535,209],[514,461],[690,57],[702,250],[180,911],[781,365],[376,76],[920,227],[977,795],[533,296],[338,253],[413,437],[798,362],[15,817],[755,695],[546,574],[386,638],[986,133],[972,436],[339,545],[182,241],[223,687],[625,671],[970,457],[757,254],[930,189],[865,643],[799,867],[638,308],[207,84],[560,858],[760,515],[46,455],[842,7],[399,231],[75,469],[271,396],[954,932],[935,172],[300,526],[359,571],[702,893],[290,574],[63,618],[835,261],[918,811],[937,593],[844,916],[551,857],[428,854],[757,673],[567,441],[312,603],[153,48],[722,465],[5,575],[743,640],[872,245],[87,566],[247,408],[953,448],[637,483],[259,724],[58,58],[55,986],[274,350],[406,571],[433,456],[780,319],[873,479],[583,225],[510,972],[774,692],[384,241],[549,477],[903,332],[516,406],[790,892],[842,699],[989,748],[293,22],[185,783],[267,542],[515,570],[871,127],[273,127],[41,267],[552,410],[675,87],[504,657],[7,373],[273,375],[151,971],[705,965],[796,686],[420,10],[628,526],[632,405],[897,528],[648,757],[395,226],[307,26],[284,225],[952,85],[177,273],[189,37],[166,146],[856,128],[334,671],[324,526],[481,123],[548,179],[875,592],[65,124],[230,429],[706,341],[335,579],[325,42],[23,750],[219,646],[911,655],[359,305],[27,929],[76,196],[88,362],[707,175],[672,383],[504,306],[115,258],[455,709],[292,347],[163,601],[193,342],[398,958],[335,230],[958,843],[960,909],[541,758],[878,344],[929,59],[438,351],[553,266],[441,224],[24,932],[850,766],[552,788],[820,653],[816,20],[946,863],[800,437],[749,278],[898,370],[53,565],[80,711],[945,798],[162,742],[974,924],[995,245],[67,171],[184,769],[720,437],[968,967],[618,25],[982,934],[474,120],[280,364],[221,102],[979,324],[688,495],[55,988],[420,381],[656,246],[887,669],[494,575],[176,168],[207,305],[534,833],[232,723],[931,784],[860,770],[554,640],[131,672],[401,212],[516,95],[896,939],[61,387],[313,667],[559,102],[792,195],[52,471],[925,194],[576,299],[684,129],[82,798],[315,317],[302,43],[659,361],[783,277],[394,96],[142,842],[942,964],[147,497],[564,957],[945,42],[69,93],[621,488],[175,126],[702,713],[837,577],[852,674],[805,38],[31,152],[960,64],[143,492],[903,275],[706,269],[856,471],[891,902],[741,696],[139,284],[791,443],[575,192],[768,414],[515,545],[87,678],[446,162],[765,181],[567,539],[804,744],[347,62],[355,73],[854,856],[789,632],[767,593],[906,361],[894,299],[472,763],[307,908],[367,413],[792,43],[727,42],[581,684],[900,389],[394,209],[677,894],[678,313],[462,174],[239,536],[898,162],[457,636],[536,648],[64,24],[330,398],[900,862],[526,548],[959,353],[417,524],[57,495],[620,258],[859,160],[263,481],[475,863],[870,613],[790,688],[34,337],[159,460],[254,834],[601,511],[282,716],[628,374],[410,637],[914,759],[932,411],[320,107],[153,915],[231,611],[175,440],[285,863],[766,772],[379,185],[238,503],[867,427],[405,297],[542,870],[831,895],[697,616],[129,306],[205,315],[756,629],[477,917],[328,237],[38,305],[979,35],[450,671],[938,434],[252,774],[595,180],[985,899],[793,142],[964,588],[616,583],[979,669],[613,215],[447,201],[282,308],[515,811],[409,258],[113,399],[717,467],[956,899],[153,17],[955,948],[903,979],[806,968],[310,334],[240,576],[708,909],[422,640],[198,171],[465,192],[872,960],[562,325],[899,395],[642,657],[200,720],[295,842],[699,420],[723,24],[306,574],[810,543],[682,925],[557,103],[856,772],[870,465],[376,447],[751,70],[40,486],[695,131],[565,266],[478,946],[556,425],[176,789],[503,240],[160,46],[578,866],[321,311],[347,704],[859,447],[905,136],[728,422],[951,304],[719,848],[834,118],[829,758],[323,105],[519,685],[309,719],[421,119],[19,257],[367,35],[975,440],[293,519],[329,532],[396,375],[173,327],[744,898],[638,937],[652,10],[349,237],[581,620],[760,717],[846,881],[454,35],[712,845],[483,981],[617,922],[331,729],[291,406],[387,457],[351,219],[917,545],[752,31],[476,646],[18,445],[652,664],[707,170],[129,859],[707,616],[118,660],[113,720],[581,566],[941,250],[501,9],[499,965],[945,188],[205,357],[973,199],[661,892],[507,759],[356,766],[200,388],[952,860],[937,946],[451,765],[71,81],[322,981],[394,830],[430,406],[999,526],[674,335],[949,936],[463,420],[888,990],[79,306],[996,346],[682,450],[951,111],[457,325],[96,324],[347,128],[328,434],[241,886],[190,702],[298,93],[815,455],[466,709],[954,175],[920,389],[631,243],[338,293],[145,378],[534,817],[461,788],[192,610],[21,114],[721,341],[430,720],[239,292],[582,632],[47,84],[480,592],[965,200],[606,487],[975,22],[819,631],[194,488],[713,111],[240,671],[203,857],[873,519],[756,600],[348,804],[786,1000],[607,116],[434,163],[568,906],[220,633],[714,270],[537,755],[279,655],[173,461],[622,354],[499,420],[551,358],[517,930],[725,456],[383,230],[556,234],[263,436],[22,620],[928,996],[93,617],[241,532],[264,166],[622,505],[836,117],[327,840],[479,206],[108,755],[281,219],[171,853],[663,384],[207,883],[766,685],[96,991],[749,714],[950,980],[777,799],[984,189],[959,139],[563,329],[58,729],[821,539],[875,292],[965,341],[230,12],[716,88],[832,41],[234,354],[40,966],[758,446],[446,907],[928,186],[581,215],[747,425],[34,895],[489,434],[945,313],[95,935],[732,371],[693,255],[39,51],[935,715],[870,635],[82,116],[822,447],[613,418],[554,545],[805,957],[759,125],[603,316],[184,985],[462,537],[427,859],[820,362],[119,574],[543,71],[487,445],[388,947],[122,837],[424,60],[396,240],[260,775],[139,409],[471,609],[86,818],[719,413],[72,562],[454,189],[211,199],[348,36],[537,86],[953,91],[515,713],[195,739],[864,957],[338,242],[793,888],[614,414],[988,182],[378,148],[461,576],[393,576],[297,814],[916,205],[718,174],[107,90],[572,44],[304,743],[917,691],[778,340],[744,924],[148,4],[747,631],[259,230],[307,101],[714,290],[237,322],[923,517],[732,347],[460,964],[500,983],[555,984],[466,873],[559,762],[401,805],[966,390],[880,243],[394,11],[152,848],[921,675],[58,254],[699,122],[811,315],[538,469],[395,94],[746,148],[329,244],[321,886],[491,972],[541,319],[432,757],[818,198],[138,220],[604,36],[792,153],[925,549],[115,751],[11,597],[618,652],[148,404],[736,797],[881,781],[832,579],[284,434],[653,739],[152,144],[402,981],[667,844],[58,864],[38,710],[973,342],[103,587],[819,698],[195,547],[979,443],[528,189],[368,682],[997,792],[117,864],[430,185],[244,311],[658,613],[77,765],[966,37],[730,830],[300,982],[33,38],[601,140],[193,758],[572,331],[461,3],[757,11],[962,409],[107,911],[738,753],[91,762],[771,193],[505,784],[644,653],[269,189],[689,9],[145,769],[789,489],[84,242],[171,98],[643,306],[277,721],[232,973],[28,615],[800,663],[885,932],[116,24],[887,266],[169,186],[959,411],[953,407],[236,965],[819,829],[790,496],[295,943],[876,675],[471,736],[87,466],[203,77],[162,133],[840,391],[232,979],[606,581],[823,417],[672,590],[303,96],[289,423],[443,742],[702,65],[782,706],[317,517],[548,715],[196,606],[463,586],[50,764],[737,572],[987,877],[512,373],[723,374],[28,480],[587,862],[978,602],[384,467],[622,784],[937,258],[240,833],[211,343],[797,53],[172,639],[421,128],[232,735],[666,920],[688,118],[217,621],[175,766],[11,111],[913,738],[594,453],[998,853],[308,240],[428,40],[180,891],[978,434],[151,560],[636,918],[332,947],[6,462],[512,355],[667,98],[854,335],[228,331],[726,844],[390,181],[633,530],[723,895],[70,719],[383,71],[921,556],[460,286],[128,211],[319,123],[377,152],[29,949],[682,292],[224,579],[731,915],[421,927],[478,100],[418,98],[742,429],[286,929],[40,866],[992,911],[921,702],[156,165],[804,868],[692,192],[659,428],[579,202],[206,492],[763,259],[87,183],[581,191],[262,599],[39,918],[152,90],[67,678],[130,752],[267,227],[811,819],[81,489],[78,862],[689,746],[204,988],[349,116],[119,887],[75,958],[671,428],[91,113],[432,729],[788,789],[1,49],[75,762],[108,164],[454,143],[858,863],[421,129],[429,90],[238,665],[250,27],[929,227],[566,361],[325,666],[239,678],[140,971],[225,738],[640,166],[257,445],[640,677],[431,584],[531,621],[29,766],[761,934],[41,753],[836,153],[318,890],[653,198],[35,608],[579,199],[383,914],[860,945],[563,692],[527,936],[777,552],[412,262],[255,73],[77,710],[953,193],[981,161],[142,142],[932,463],[139,921],[547,458],[696,123],[467,535],[234,748],[601,164],[981,570],[213,505],[431,992],[475,372],[267,259],[339,492],[677,428],[885,220],[805,280],[457,335],[292,610],[433,385],[874,968],[284,324],[185,68],[615,396],[485,856],[60,660],[663,741],[909,465],[54,89],[673,612],[473,694],[400,97],[67,232],[176,469],[526,647],[527,217],[948,39],[825,92],[633,452],[544,157],[394,704],[319,577],[848,5],[703,487],[528,770],[453,422],[146,818],[23,440],[510,560],[377,289],[61,787],[431,355],[429,959],[903,588],[178,531],[898,731],[71,34],[609,721],[729,785],[672,619],[95,59],[169,571],[663,271],[982,571],[436,289],[47,803],[376,674],[905,529],[616,342],[467,991],[445,147],[602,100],[185,638],[62,379],[387,66],[421,442],[4,901],[927,638],[828,472],[241,252],[814,157],[385,674],[717,713],[741,413],[197,748],[344,556],[269,135],[118,350],[194,128],[624,80],[504,354],[781,906],[373,168],[20,48],[48,152],[911,302],[788,20],[525,643],[306,594],[23,757],[410,792],[512,302],[378,641],[791,423],[229,788],[289,107],[453,294],[430,393],[431,928],[411,927],[818,45],[724,359],[330,101],[356,159],[573,199],[788,906],[912,928],[946,174],[850,158],[445,443],[472,263],[134,349],[588,272],[998,929],[921,907],[270,128],[343,11],[437,936],[335,632],[474,103],[637,983],[665,736],[6,739],[62,377],[676,576],[551,551],[605,488],[434,932],[503,667],[224,258],[930,296],[776,528],[269,109],[516,185],[681,872],[414,667],[587,254],[731,381],[163,672],[714,645],[832,245],[776,21],[512,995],[589,881],[930,542],[734,809],[454,988],[565,872],[466,152],[425,528],[468,237],[446,678],[111,583],[851,472],[794,688],[342,490],[709,542],[988,975],[407,393],[613,43],[216,990],[64,129],[702,691],[705,540],[11,610],[561,837],[575,598],[986,550],[471,25],[13,737],[748,297],[200,224],[507,782],[72,290],[103,889],[674,377],[316,838],[248,487],[11,647],[637,148],[657,600],[659,337],[895,76],[433,111],[562,296],[525,876],[390,164],[642,11],[443,564],[302,783],[814,458],[338,230],[844,672],[675,463],[832,992],[604,98],[338,798],[524,781],[656,960],[967,94],[589,907],[836,280],[117,204],[107,295],[951,941],[178,876],[283,721],[769,950],[268,655],[823,390],[564,67],[441,947],[611,363],[820,586],[813,265],[783,634],[52,4],[320,565],[280,117],[811,369],[250,690],[776,548],[854,417],[1,477],[630,858],[415,742],[560,341],[858,261],[902,511],[271,907],[459,822],[538,403],[153,876],[427,95],[947,824],[418,664],[471,236],[340,327],[970,425],[316,879],[570,459],[69,1000],[110,708],[127,597],[254,229],[468,825],[542,936],[733,988],[12,777],[426,849],[695,117],[348,888],[230,926],[137,829],[130,967],[140,662],[630,63],[780,964],[856,277],[210,724],[273,671],[181,749],[41,17],[879,131],[654,903],[856,23],[782,972],[414,487],[809,542],[586,732],[391,752],[116,118],[193,5],[729,896],[648,465],[247,754],[175,793],[995,448],[703,136],[442,717],[885,213],[405,137],[240,183],[816,350],[616,951],[645,828],[166,80],[423,288],[835,849],[482,416],[704,13],[229,989],[688,767],[628,181],[696,846],[307,337],[721,759],[663,417],[679,905],[825,950],[914,798],[915,568],[204,214],[4,994],[590,437],[514,714],[708,528],[574,275],[75,209],[383,739],[904,267],[382,266],[416,186],[237,325],[741,86],[959,338],[129,408],[224,301],[32,998],[87,571],[691,247],[292,192],[344,905],[493,743],[909,718],[130,580],[570,926],[924,471],[406,366],[538,873],[159,329],[796,736],[221,423],[237,900],[274,191],[268,777],[621,224],[170,282],[413,16],[259,76],[811,658],[552,721],[468,722],[493,190],[885,676],[578,471],[451,835],[324,75],[443,443],[532,415],[717,523],[275,22],[297,809],[539,10],[145,528],[315,725],[795,446],[91,994],[116,371],[246,115],[286,272],[769,819],[965,598],[894,62],[451,448],[195,788],[878,790],[556,647],[297,214],[791,352],[144,978],[116,843],[498,209],[126,510],[758,778],[451,877],[867,616],[673,143],[396,927],[341,975],[982,925],[642,500],[349,125],[137,938],[129,477],[993,467],[808,405],[257,488],[564,410],[550,254],[837,41],[750,132],[447,991],[923,590],[260,214],[333,3],[64,348],[517,311],[278,633],[265,350],[666,11],[749,113],[542,885],[835,231],[433,637],[13,213],[607,286],[872,232],[707,31],[77,898],[681,756],[754,832],[583,230],[910,634],[394,595],[384,256],[495,659],[440,209],[265,521],[606,993],[202,145],[221,934],[988,658],[311,17],[637,563],[60,345],[869,540],[589,721],[907,999],[867,877],[969,659],[23,950],[328,555],[318,914],[973,547],[676,363],[191,56],[234,733],[87,405],[888,488],[978,996],[760,834],[982,725],[650,697],[176,177],[910,938],[766,740],[622,414],[728,584],[973,974],[498,71],[647,906],[963,203],[639,178],[565,365],[906,376],[162,981],[154,503],[955,469],[909,726],[582,298],[458,449],[616,996],[838,819],[360,828],[483,739],[188,597],[839,491],[949,948],[218,212],[342,777],[335,382],[507,772],[557,765],[936,400],[914,207],[247,238],[883,223],[371,750],[146,724],[788,289],[353,923],[63,748],[223,468],[127,275],[155,460],[128,106],[93,391],[400,206],[692,155],[728,160],[180,63],[920,554],[525,333],[166,56],[514,517],[982,252],[178,851],[867,966],[754,864],[489,29],[783,519],[841,635],[808,207],[347,384],[473,911],[687,129],[613,643],[433,683],[104,315],[127,437],[788,169],[639,205],[390,682],[445,2],[696,1000],[606,69],[983,677],[155,361],[126,169],[357,593],[454,191],[177,403],[315,879],[293,428],[412,234],[294,898],[558,881],[550,455],[486,762],[976,301],[241,998],[660,687],[997,245],[359,559],[607,199],[670,230],[286,790],[763,582],[84,707],[503,480],[920,894],[433,468],[904,393],[448,900],[270,835],[110,470],[930,771],[588,636],[774,582],[3,947],[240,821],[562,110],[497,395],[243,715],[970,685],[858,805],[908,54],[71,421],[437,378],[932,890],[763,730],[943,845],[760,788],[78,637],[199,837],[470,889],[433,518],[653,446],[116,845],[291,595],[350,939],[683,262],[803,758],[485,316],[445,97],[767,419],[9,644],[457,207],[307,127],[427,712],[811,222],[111,944],[890,127],[443,920],[671,177],[850,347],[663,220],[886,913],[170,16],[532,768],[677,55],[320,381],[18,911],[140,665],[116,148],[973,515],[422,530],[462,522],[733,26],[191,859],[783,58],[387,250],[224,313],[91,557],[762,562],[808,860],[362,463],[389,498],[770,416],[242,733],[124,516],[500,555],[808,99],[775,377],[957,119],[816,443],[498,708],[322,671],[987,281],[237,551],[497,211],[670,863],[576,859],[48,233],[895,98],[482,914],[389,789],[195,411],[6,729],[186,228],[543,68],[831,420],[71,122],[468,192],[189,312],[428,540],[767,771],[91,38],[442,308],[953,676],[434,611],[862,136],[568,180],[354,131],[1,433],[174,593],[708,48],[268,729],[882,637],[434,939],[297,97],[765,915],[418,432],[623,924],[976,805],[574,579],[406,489],[113,764],[691,404],[615,921],[165,61],[425,444],[492,824],[494,25],[727,814],[54,141],[401,715],[694,983],[36,562],[55,791],[206,986],[746,90],[201,180],[937,605],[729,739],[608,189],[276,202],[676,641],[859,432],[974,618],[467,130],[957,497],[446,172],[1000,786],[174,677],[666,65],[314,352],[748,386],[776,713],[159,750],[866,378],[31,916],[301,293],[498,44],[7,132],[105,762],[445,469],[856,906],[284,221],[800,411],[567,780],[830,754],[621,705],[565,608],[463,52],[385,64],[890,54],[290,431],[57,411],[674,826],[55,842],[984,785],[847,868],[495,693],[914,191],[326,184],[148,803],[459,594],[433,97],[87,967],[91,912],[815,388],[8,425],[938,88],[891,450],[379,365],[208,343],[679,284],[88,47],[197,274],[687,352],[222,187],[43,940],[57,595],[609,221],[717,225],[338,221],[610,279],[920,429],[59,288],[880,177],[748,562],[364,8],[846,676],[899,262],[90,615],[89,167],[441,55],[901,272],[748,984],[690,802],[666,84],[309,637],[358,148],[827,883],[69,763],[47,614],[136,1000],[538,818],[56,392],[131,369],[58,340],[95,910],[427,123],[618,302],[708,291],[983,682],[74,422],[445,302],[894,472],[21,944],[784,843],[308,23],[470,250],[367,498],[889,641],[617,602],[243,176],[32,648],[228,595],[913,663],[210,226],[81,638],[867,838],[413,928],[926,800],[889,381],[509,661],[585,879],[384,267],[594,218],[592,224],[207,881],[563,147],[310,255],[74,252],[920,836],[149,897],[421,329],[420,563],[927,12],[610,42],[481,109],[426,181],[897,607],[551,254],[741,750],[466,12],[834,577],[636,461],[111,687],[931,121],[559,686],[700,322],[823,298],[82,450],[775,240],[983,865],[489,791],[355,815],[855,602],[103,480],[275,901],[456,476],[831,534],[612,593],[704,59],[917,769],[565,234],[374,65],[878,178],[744,620],[616,826],[741,135],[577,15],[196,751],[203,982],[33,803],[954,30],[133,965],[358,341],[528,965],[675,572],[305,312],[169,946],[226,158],[113,323],[131,467],[275,292],[981,815],[586,98],[659,409],[544,374],[424,766],[151,497],[846,411],[797,435],[952,520],[71,804],[474,510],[86,228],[218,368],[402,79],[699,677],[917,465],[775,554],[258,528],[708,354],[875,522],[397,664],[899,850],[209,131],[955,197],[16,732],[72,867],[268,841],[953,508],[577,300],[598,131],[961,628],[75,40],[29,344],[848,956],[192,83],[510,971],[975,285],[375,485],[745,406],[922,848],[421,492],[255,366],[79,950],[719,205],[949,797],[375,326],[88,484],[741,900],[749,202],[632,121],[70,733],[552,521],[485,182],[943,370],[878,135],[240,803],[135,964],[597,909],[680,684],[5,373],[297,425],[474,360],[503,833],[839,353],[175,813],[73,2],[387,309],[667,736],[189,803],[45,340],[270,558],[886,705],[326,473],[375,548],[490,217],[263,683],[768,961],[330,108],[711,211],[976,230],[101,508],[127,80],[633,774],[567,249],[768,263],[539,817],[27,619],[292,648],[269,844],[134,424],[83,359],[17,997],[145,579],[151,374],[91,846],[997,310],[735,35],[813,712],[985,926],[932,281],[636,405],[730,151],[839,693],[897,776],[738,367],[696,866],[430,144],[551,291],[81,265],[61,931],[855,599],[987,458],[358,518],[669,310],[60,751],[445,917],[58,46],[973,712],[310,693],[727,476],[417,401],[413,676],[77,436],[356,832],[169,21],[785,88],[518,126],[336,344],[173,650],[731,90],[133,774],[151,766],[969,730],[628,262],[21,103],[284,959],[116,973],[449,436],[738,92],[948,32],[466,415],[995,130],[120,592],[209,86],[705,553],[569,431],[137,504],[18,552],[220,669],[677,848],[842,826],[293,304],[733,679],[960,994],[138,280],[219,213],[814,928],[70,510],[161,741],[179,363],[117,911],[536,335],[107,778],[296,750],[571,494],[322,848],[912,780],[294,325],[409,287],[853,348],[131,961],[889,119],[352,549],[179,483],[31,50],[307,215],[267,363],[824,270],[46,100],[148,793],[452,381],[988,727],[146,769],[416,154],[864,794],[93,745],[831,748],[856,282],[560,230],[516,316],[625,681],[191,420],[274,446],[598,960],[31,709],[608,527],[315,595],[383,708],[916,63],[638,959],[378,583],[114,157],[991,637],[137,233],[895,438],[160,973],[709,88],[962,21],[991,643],[766,900],[19,724],[267,662],[373,465],[834,775],[431,411],[234,316],[550,563],[695,342],[822,536],[565,698],[173,634],[648,107],[310,752],[934,19],[397,137],[345,190],[322,687],[882,24],[504,367],[568,127],[889,150],[730,959],[642,880],[693,882],[377,546],[459,710],[679,45],[998,759],[896,154],[14,921],[479,234],[699,880],[191,332],[436,456],[67,929],[952,364],[511,707],[624,877],[473,899],[163,270],[681,558],[178,255],[771,542],[703,718],[607,420],[491,972],[95,66],[74,22],[647,627],[129,91],[632,164],[923,928],[752,78],[902,751],[401,235],[76,34],[697,96],[655,993],[636,562],[771,135],[677,514],[513,408],[463,908],[13,33],[843,268],[158,599],[733,419],[79,124],[148,539],[904,356],[575,79],[91,130],[726,778],[649,839],[602,75],[707,216],[857,922],[613,890],[17,857],[680,122],[299,126],[84,580],[112,145],[201,415],[88,502],[622,8],[186,165],[659,355],[346,137],[346,787],[520,800],[612,173],[653,179],[339,469],[693,380],[170,157],[253,467],[883,220],[651,97],[669,630],[627,285],[377,783],[301,507],[825,685],[164,982],[718,839],[798,228],[883,627],[86,516],[657,425],[373,949],[639,911],[465,653],[35,296],[930,353],[585,47],[847,329],[707,760],[343,163],[71,785],[940,824],[494,470],[241,98],[656,283],[736,78],[809,944],[751,814],[570,735],[517,257],[17,949],[907,376],[206,456],[780,511],[218,620],[108,391],[458,355],[956,750],[4,251],[973,448],[835,542],[701,58],[569,19],[496,65],[924,642],[866,668],[555,756],[952,796],[431,23],[85,369],[487,9],[883,81],[823,296],[950,255],[608,833],[165,340],[185,610],[425,322],[315,979],[848,654],[487,329],[374,715],[973,236],[799,970],[570,440],[278,425],[820,504],[217,39],[108,5],[468,601],[635,646],[95,864],[853,970],[903,148],[842,367],[684,428],[827,715],[548,23],[787,213],[503,74],[274,130],[783,537],[578,226],[157,256],[306,739],[769,162],[877,480],[504,443],[615,776],[324,195],[91,104],[412,640],[133,854],[1,235],[478,730],[825,243],[930,819],[975,961],[576,262],[218,668],[269,338],[811,115],[449,390],[379,807],[292,314],[111,66],[979,501],[475,293],[738,69],[275,941],[547,206],[303,697],[439,695],[124,20],[71,233],[553,472],[474,610],[400,171],[285,738],[52,288],[143,629],[689,445],[129,102],[77,766],[314,565],[890,303],[935,761],[424,419],[68,616],[953,186],[360,904],[384,272],[118,176],[833,19],[110,131],[749,382],[648,996],[56,206],[628,58],[218,693],[426,91],[233,202],[573,247],[407,461],[501,720],[759,313],[580,202],[301,568],[473,81],[234,901],[55,354],[810,602],[670,94],[17,896],[369,964],[565,954],[547,38],[868,191],[442,856],[344,808],[287,6],[906,925],[514,166],[882,276],[86,699],[231,893],[273,213],[418,450],[431,647],[978,282],[329,184],[45,797],[911,831],[542,6],[979,632],[347,747],[969,144],[122,190],[608,42],[242,929],[267,49],[435,87],[319,333],[962,359],[61,3],[997,285],[680,278],[238,761],[261,655],[198,71],[440,852],[504,411],[690,728],[903,593],[265,90],[899,892],[662,476],[941,493],[43,694],[125,469],[558,925],[790,929],[523,739],[561,134],[929,393],[666,826],[667,656],[182,970],[994,963],[912,814],[92,732],[716,724],[929,536],[350,79],[843,404],[76,923],[681,263],[204,327],[613,834],[61,500],[514,30],[143,134],[368,772],[628,663],[201,435],[355,344],[107,770],[900,288],[138,85],[189,274],[364,474],[861,584],[321,561],[17,48],[398,193],[695,472],[215,2],[694,632],[958,505],[13,516],[576,856],[297,711],[192,415],[385,596],[607,672],[10,286],[826,902],[212,560],[964,773],[31,256],[704,389],[716,722],[652,294],[946,676],[773,905],[411,963],[7,858],[562,743],[633,245],[709,682],[787,365],[953,261],[770,295],[122,665],[523,564],[326,898],[126,698],[874,222],[381,342],[334,597],[470,601],[16,605],[611,96],[335,803],[108,702],[496,283],[744,788],[580,902],[610,95],[508,824],[332,71],[869,592],[795,771],[593,497],[980,22],[631,431],[427,691],[911,804],[58,262],[250,204],[295,731],[882,720],[643,595],[236,901],[410,729],[376,449],[896,742],[1,344],[393,80],[97,993],[891,679],[905,890],[64,140],[402,202],[183,423],[743,39],[817,827],[630,162],[512,341],[702,899],[107,35],[863,280],[104,189],[507,475],[485,739],[475,546],[418,47],[914,622],[656,154],[266,124],[639,384],[891,599],[44,912],[785,60],[945,578],[304,856],[204,625],[7,294],[837,629],[798,357],[667,368],[43,266],[195,655],[326,951],[313,786],[529,348],[155,572],[831,250],[847,665],[959,120],[503,89],[75,376],[220,34],[982,475],[879,812],[34,649],[410,714],[545,300],[624,23],[380,802],[124,847],[932,477],[116,246],[654,533],[179,951],[582,264],[942,247],[883,768],[680,525],[662,391],[238,595],[544,588],[744,162],[981,302],[387,766],[239,386],[187,331],[685,693],[731,432],[732,733],[544,337],[492,314],[467,168],[941,347],[44,305],[378,695],[367,25],[103,552],[493,185],[565,848],[59,187],[756,968],[487,702],[873,743],[324,632],[257,476],[900,199],[431,745],[627,638],[330,82],[545,115],[924,66],[474,596],[552,434],[614,920],[11,19],[800,246],[602,269],[648,36],[434,578],[398,276],[100,238],[497,461],[396,530],[210,620],[855,648],[622,883],[111,60],[570,750],[340,372],[506,956],[225,353],[157,323],[683,717],[195,286],[687,124],[459,306],[228,975],[734,368],[436,136],[620,630],[346,347],[800,727],[10,28],[269,957],[560,126],[115,456],[862,912],[75,670],[737,695],[294,695],[875,390],[161,71],[781,967],[735,5],[734,234],[743,645],[941,790],[195,930],[746,736],[611,758],[418,59],[37,949],[775,236],[970,113],[220,780],[272,842],[417,574],[501,839],[671,368],[55,192],[704,639],[51,265],[71,596],[968,216],[62,991],[839,452],[856,549],[491,71],[93,22],[877,327],[560,424],[567,654],[53,680],[501,651],[482,756],[140,769],[555,494],[404,763],[679,111],[180,580],[908,614],[101,991],[696,696],[855,264],[343,18],[351,213],[781,416],[119,358],[232,196],[128,531],[647,904],[186,652],[582,312],[633,821],[394,841],[949,302],[288,874],[281,890],[911,436],[996,182],[324,532],[500,331],[866,244],[347,512],[756,200],[32,304],[912,466],[866,261],[883,759],[310,194],[353,637],[850,333],[888,321],[328,921],[834,760],[357,485],[510,771],[414,990],[465,870],[515,324],[861,391],[157,329],[410,263],[973,670],[821,192],[328,50],[553,69],[65,130],[32,88],[772,564],[165,203],[158,255],[253,330],[464,705],[103,712],[582,937],[995,946],[486,156],[197,391],[698,788],[730,608],[469,911],[485,879],[600,105],[906,740],[402,189],[138,504],[188,525],[42,125],[601,741],[950,59],[153,439],[485,94],[799,57],[732,247],[556,500],[968,728],[494,999],[562,981],[237,204],[720,227],[923,594],[187,25],[71,641],[414,730],[758,979],[338,773],[810,299],[504,928],[605,400],[698,352],[719,346],[752,459],[245,826],[569,878],[997,9],[159,796],[210,976],[517,425],[117,522],[641,854],[237,378],[676,906],[494,622],[315,880],[740,390],[117,960],[656,142],[321,770],[403,812],[670,325],[673,655],[502,209],[575,74],[420,638],[469,915],[416,341],[609,21],[600,550],[538,151],[230,674],[734,376],[176,847],[440,360],[919,881],[455,773],[504,960],[329,111],[509,464],[837,338],[508,471],[812,588],[287,81],[582,322],[348,87],[379,900],[606,907],[588,361],[323,77],[664,438],[75,117],[954,895],[705,176],[24,531],[903,211],[29,535],[30,452],[584,733],[794,784],[469,292],[322,724],[651,237],[887,849],[396,376],[345,422],[715,590],[383,923],[789,348],[839,845],[369,948],[581,608],[223,637],[897,988],[908,348],[544,414],[844,271],[400,782],[350,599],[368,377],[670,148],[34,589],[870,413],[696,739],[589,847],[878,879],[431,399],[448,887],[632,324],[39,638],[155,693],[806,250],[636,172],[967,424],[357,247],[691,904],[110,13],[333,392],[438,201],[195,173],[773,528],[236,525],[457,132],[356,354],[3,961],[929,323],[144,774],[381,702],[811,659],[192,888],[804,821],[331,154],[602,936],[707,257],[265,726],[834,836],[834,691],[462,108],[36,859],[798,173],[56,206],[586,968],[406,440],[502,324],[824,334],[461,966],[896,869],[895,259],[45,606],[470,914],[227,484],[684,218],[290,997],[150,824],[671,59],[953,215],[393,62],[499,948],[11,987],[315,223],[817,26],[764,991],[3,369],[624,744],[698,774],[271,913],[59,804],[851,546],[810,523],[330,36],[992,521],[727,314],[470,298],[371,525],[549,475],[763,690],[87,58],[232,761],[262,206],[112,385],[888,291],[163,836],[434,492],[324,649],[850,225],[205,746],[667,249],[387,295],[73,242],[621,710],[184,236],[401,670],[921,548],[791,871],[294,43],[138,437],[246,297],[481,52],[558,920],[808,18],[174,809],[758,206],[173,856],[900,134],[589,666],[345,138],[388,408],[599,201],[506,710],[845,817],[376,766],[741,368],[563,197],[650,657],[908,466],[566,657],[425,882],[880,2],[155,658],[865,322],[732,772],[758,442],[689,627],[364,427],[84,214],[115,455],[518,383],[750,783],[83,544],[688,375],[636,682],[475,307],[988,453],[124,34],[578,498],[821,46],[364,767],[797,745],[399,356],[191,935],[757,26],[910,71],[600,228],[312,521],[903,450],[431,569],[70,631],[997,954],[763,473],[495,846],[855,158],[884,977],[207,186],[684,347],[839,694],[752,363],[714,336],[293,498],[144,681],[428,264],[263,275],[425,861],[103,833],[125,298],[572,442],[917,217],[472,704],[9,859],[834,175],[242,223],[663,640],[401,380],[626,110],[95,755],[543,328],[932,169],[299,609],[13,631],[463,97],[845,919],[559,533],[962,758],[373,381],[801,746],[285,709],[539,646],[615,318],[585,989],[966,652],[3,938],[486,77],[903,273],[513,442],[74,718],[788,381],[587,796],[659,437],[725,879],[83,487],[690,454],[672,67],[682,437],[424,110],[458,224],[644,477],[7,975],[492,513],[658,571],[197,217],[736,56],[187,274],[710,143],[197,878],[448,629],[202,895],[36,572],[869,699],[953,909],[209,752],[853,5],[48,446],[758,328],[109,100],[845,778],[517,743],[562,767],[547,360],[260,908],[870,661],[374,136],[750,314],[174,969],[902,38],[958,177],[895,304],[496,15],[970,450],[790,724],[527,286],[688,977],[43,611],[712,501],[935,397],[484,102],[296,641],[998,564],[171,60],[114,285],[926,393],[320,879],[177,361],[517,29],[28,204],[470,85],[680,778],[929,207],[187,507],[808,286],[882,460],[767,43],[753,686],[188,759],[927,965],[165,554],[164,520],[240,235],[811,953],[354,20],[304,112],[490,790],[470,508],[738,2],[620,983],[808,363],[814,549],[963,610],[248,413],[917,332],[906,399],[667,100],[472,46],[554,597],[10,791],[46,420],[460,734],[521,101],[23,411],[129,549],[325,542],[961,727],[317,737],[125,836],[695,553],[498,908],[278,731],[428,596],[778,399],[343,886],[476,147],[781,321],[62,67],[551,568],[72,222],[333,431],[633,846],[719,68],[499,741],[199,178],[952,550],[733,988],[787,719],[863,631],[488,741],[7,548],[286,644],[801,926],[335,579],[878,674],[158,555],[142,605],[598,61],[888,432],[24,40],[875,821],[1,76],[848,617],[308,589],[299,509],[840,695],[134,759],[416,186],[985,366],[608,896],[445,402],[141,49],[593,549],[940,516],[267,921],[718,763],[469,913],[457,858],[392,806],[943,372],[78,291],[428,954],[39,850],[359,99],[974,367],[694,619],[132,129],[299,354],[561,294],[548,563],[203,144],[778,201],[262,735],[78,120],[866,448],[41,762],[734,295],[6,772],[240,137],[227,580],[332,838],[113,196],[525,926],[648,573],[844,740],[602,525],[654,503],[856,717],[857,884],[141,160],[895,666],[15,82],[440,563],[607,515],[941,354],[302,832],[235,780],[842,838],[865,543],[943,34],[472,652],[848,660],[368,849],[217,464],[286,291],[928,393],[316,81],[111,986],[567,350],[807,111],[12,350],[7,518],[690,983],[441,629],[281,664],[91,773],[389,143],[235,451],[515,804],[930,829],[356,266],[532,365],[223,645],[172,29],[517,440],[294,6],[907,505],[894,852],[719,550],[719,288],[283,983],[361,784],[426,969],[721,945],[393,765],[254,556],[699,766],[124,516],[417,161],[443,556],[526,941],[528,858],[692,314],[190,288],[241,54],[560,178],[554,643],[769,22],[968,814],[502,709],[60,121],[346,693],[296,669],[889,834],[187,861],[175,754],[549,276],[662,401],[714,708],[731,273],[388,871],[449,193],[219,86],[629,295],[493,26],[743,877],[737,38],[377,273],[729,203],[101,755],[358,833],[908,356],[371,527],[982,640],[28,309],[532,955],[851,487],[361,991],[465,519],[460,236],[479,518],[133,384],[431,269],[981,542],[305,860],[605,431],[211,425],[137,675],[393,919],[373,298],[473,5],[633,237],[624,258],[233,448],[597,831],[109,601],[881,674],[17,692],[869,277],[150,768],[268,4],[689,908],[497,92],[1000,279],[627,448],[787,636],[657,85],[905,819],[15,86],[421,491],[778,870],[45,336],[510,425],[587,588],[56,741],[968,723],[272,540],[594,256],[722,882],[786,211],[150,172],[824,300],[204,100],[4,152],[748,240],[962,717],[157,399],[85,780],[773,242],[677,123],[577,295],[539,448],[360,850],[139,495],[898,434],[385,555],[958,217],[255,735],[16,81],[187,134],[531,1000],[160,315],[570,282],[934,801],[587,515],[747,89],[865,994],[962,165],[677,733],[219,123],[261,292],[694,701],[892,562],[821,833],[636,35],[501,925],[737,813],[188,772],[577,963],[196,627],[197,154],[935,555],[515,171],[191,336],[530,997],[45,778],[30,840],[659,530],[583,971],[618,453],[620,985],[316,421],[670,627],[817,551],[385,277],[510,102],[215,227],[967,363],[617,949],[780,362],[953,312],[897,993],[304,112],[490,782],[448,156],[197,880],[596,997],[258,992],[853,407],[949,786],[851,280],[496,451],[772,645],[384,594],[890,410],[18,348],[524,807],[289,786],[318,72],[776,445],[146,239],[550,867],[394,717],[223,130],[327,242],[291,397],[945,746],[232,536],[627,359],[628,53],[30,81],[928,660],[283,328],[812,867],[743,472],[632,914],[150,313],[155,691],[345,872],[773,255],[547,386],[771,422],[12,302],[934,745],[143,354],[260,875],[563,91],[673,709],[51,186],[99,699],[937,413],[604,498],[983,161],[59,402],[766,450],[274,5],[174,864],[200,254],[422,804],[107,721],[589,458],[865,648],[377,698],[455,332],[618,971],[962,245],[113,933],[976,958],[265,342],[608,208],[911,530],[424,268],[791,771],[561,514],[390,111],[63,191],[896,313],[394,576],[160,180],[102,291],[180,705],[420,746],[230,887],[195,969],[862,597],[833,26],[624,996],[603,342],[460,607],[403,306],[924,746],[734,117],[870,475],[619,634],[137,105],[335,335],[175,198],[83,957],[6,811],[563,791],[462,929],[304,517],[281,91],[520,305],[287,663],[476,422],[587,727],[153,976],[145,602],[470,51],[773,752],[35,604],[126,680],[86,641],[753,850],[474,82],[45,647],[354,116],[522,894],[993,557],[314,711],[880,212],[546,405],[391,872],[395,189],[64,56],[957,681],[16,663],[746,54],[961,110],[178,23],[391,735],[530,62],[755,710],[46,748],[472,210],[29,778],[527,523],[621,752],[177,865],[287,600],[217,714],[867,406],[894,228],[945,168],[382,155],[37,987],[402,745],[445,15],[258,939],[836,557],[728,496],[837,962],[457,40],[711,720],[329,272],[507,580],[682,693],[180,900],[816,82],[232,312],[439,70],[582,330],[314,450],[215,97],[870,969],[120,634],[89,579],[916,669],[515,956],[619,606],[814,375],[323,479],[59,340],[686,634],[517,407],[541,265],[327,896],[92,716],[805,594],[663,142],[205,741],[54,959],[100,197],[151,170],[949,108],[826,617],[501,191],[891,669],[885,904],[951,164],[615,5],[1,146],[571,9],[631,8],[77,114],[427,430],[452,476],[390,864],[878,854],[832,189],[335,188],[273,297],[983,256],[269,13],[306,709],[433,448],[898,511],[168,263],[309,838],[330,266],[208,455],[888,7],[25,618],[294,202],[201,62],[837,411],[401,316],[137,19],[932,420],[918,652],[363,953],[666,349],[940,955],[648,705],[27,204],[152,708],[445,785],[416,798],[274,904],[43,211],[578,780],[232,198],[47,479],[606,167],[845,936],[434,436],[862,921],[31,760],[114,193],[269,442],[12,134],[346,236],[703,758],[476,662],[456,982],[899,569],[620,910],[40,703],[283,945],[623,185],[863,575],[385,21],[919,495],[322,751],[813,422],[86,730],[326,985],[272,314],[970,656],[539,867],[987,686],[397,683],[257,373],[914,662],[612,644],[905,641],[425,499],[480,722],[840,192],[98,977],[231,652],[446,133],[347,87],[361,628],[499,265],[133,184],[731,316],[472,201],[335,690],[775,592],[177,986],[391,39],[689,120],[299,969],[751,850],[260,447],[563,275],[768,40],[319,15],[260,169],[284,862],[315,115],[513,11],[819,943],[951,731],[399,972],[226,877],[339,476],[429,269],[569,313],[41,700],[483,357],[781,153],[952,898],[356,502],[294,576],[576,968],[861,211],[761,678],[112,591],[931,507],[895,15],[933,661],[863,105],[674,182],[44,305],[112,269],[884,270],[359,663],[863,606],[20,445],[395,206],[108,292],[780,908],[358,338],[853,945],[31,336],[33,562],[282,997],[238,903],[498,728],[549,861],[348,80],[566,559],[335,697],[845,135],[645,765],[677,324],[308,36],[794,975],[119,520],[929,472],[186,356],[520,446],[796,19],[629,882],[455,715],[308,768],[782,124],[550,409],[410,555],[188,834],[21,934],[551,680],[34,169],[410,339],[896,703],[601,429],[729,41],[924,121],[833,42],[373,628],[535,381],[490,550],[28,688],[135,402],[11,231],[808,716],[101,531],[773,482],[950,523],[877,476],[893,18],[402,553],[790,421],[711,46],[633,959],[850,337],[258,296],[492,336],[886,580],[989,777],[942,792],[346,667],[248,850],[244,483],[617,752],[46,56],[931,696],[153,196],[278,778],[127,342],[110,622],[308,718],[543,823],[115,932],[993,940],[319,351],[782,732],[577,751],[988,442],[703,147],[741,275],[31,721],[906,323],[525,256],[970,360],[351,130],[843,50],[517,655],[508,105],[620,637],[94,671],[951,912],[94,741],[641,365],[922,975],[551,151],[619,979],[916,187],[756,386],[100,699],[40,353],[556,298],[262,816],[414,134],[932,438],[820,310],[529,144],[39,281],[849,947],[939,341],[928,659],[871,390],[201,224],[469,322],[658,147],[912,6],[538,723],[400,28],[552,451],[237,204],[914,599],[544,687],[150,213],[632,107],[170,636],[447,462],[615,448],[652,327],[837,50],[438,630],[290,187],[188,584],[324,888],[836,518],[106,883],[524,50],[944,431],[176,467],[130,260],[456,851],[428,773],[415,42],[88,359],[466,142],[930,102],[225,822],[479,365],[595,200],[781,62],[642,87],[192,398],[556,51],[763,789],[761,545],[700,498],[317,524],[215,909],[425,661],[527,979],[931,693],[944,615],[98,813],[170,166],[283,244],[531,161],[240,376],[398,894],[551,683],[418,575],[902,419],[440,684],[301,504],[851,877],[335,842],[261,847],[282,483],[942,990],[330,474],[243,252],[552,49],[79,57],[706,654],[761,694],[589,285],[857,575],[169,925],[229,518],[255,748],[61,672],[471,249],[645,520],[363,200],[908,196],[732,592],[787,847],[945,386],[551,600],[841,361],[977,196],[852,266],[286,990],[602,740],[460,493],[93,282],[800,225],[806,223],[892,418],[8,382],[594,404],[557,131],[712,255],[869,325],[450,193],[189,334],[460,194],[5,507],[767,340],[47,404],[572,107],[858,78],[933,285],[450,269],[466,633],[867,589],[274,172],[733,486],[994,978],[987,829],[848,502],[438,592],[278,87],[749,287],[162,334],[188,298],[737,993],[348,155],[134,37],[803,325],[131,392],[118,985],[934,863],[344,833],[25,134],[712,662],[752,440],[420,197],[357,887],[903,195],[431,977],[221,242],[583,670],[258,968],[422,850],[541,500],[833,38],[179,48],[795,371],[85,129],[561,388],[772,112],[686,364],[183,415],[593,11],[259,496],[637,272],[195,279],[937,78],[386,332],[11,931],[238,553],[571,160],[660,98],[563,255],[333,935],[161,807],[108,712],[402,671],[590,496],[839,414],[207,596],[399,966],[601,601],[30,891],[570,54],[400,637],[813,655],[343,941],[887,227],[738,946],[318,216],[758,793],[388,147],[450,721],[747,411],[522,143],[875,40],[162,493],[148,992],[455,985],[527,270],[324,199],[502,104],[306,232],[589,434],[777,155],[994,182],[164,77],[408,326],[706,722],[136,632],[882,965],[405,89],[866,846],[38,797],[301,226],[34,220],[769,229],[396,728],[782,661],[320,181],[925,817],[924,421],[228,644],[933,293],[433,754],[154,940],[774,705],[290,554],[190,603],[488,499],[400,186],[708,546],[721,793],[824,257],[382,593],[764,331],[450,818],[608,964],[971,632],[175,192],[27,186],[626,377],[133,929],[25,542],[570,480],[919,50],[847,672],[179,633],[506,904],[986,864],[854,56],[400,354],[35,709],[169,151],[5,23],[765,894],[215,29],[304,720],[291,282],[504,25],[228,407],[690,300],[561,781],[271,890],[335,121],[385,148],[295,221],[35,837],[36,10],[861,383],[885,144],[705,356],[936,558],[321,472],[774,641],[999,780],[429,443],[131,8],[198,758],[656,88],[440,387],[132,909],[408,178],[568,258],[176,615],[501,211],[364,351],[599,467],[786,284],[414,441],[874,140],[561,911],[461,592],[83,316],[89,150],[862,908],[286,202],[336,505],[303,666],[686,432],[704,759],[612,191],[197,565],[627,250],[140,56],[981,24],[570,147],[825,426],[810,22],[171,445],[557,344],[275,497],[847,925],[342,618],[47,810],[503,927],[380,199],[287,103],[727,506],[959,701],[142,57],[301,242],[424,161],[599,80],[473,935],[847,93],[991,236],[40,959],[473,580],[950,361],[897,657],[139,883],[628,871],[727,736],[94,676],[490,38],[442,900],[173,410],[271,764],[431,524],[337,815],[996,303],[769,120],[290,664],[751,966],[218,339],[465,285],[317,302],[763,636],[757,265],[93,978],[588,631],[886,516],[107,947],[709,522],[81,743],[939,330],[585,197],[307,373],[188,39],[664,682],[526,481],[654,430],[423,529],[133,638],[293,841],[265,487],[390,227],[927,509],[167,269],[598,899],[590,708],[729,891],[426,661],[151,610],[900,38],[758,895],[221,953],[40,494],[851,863],[236,91],[799,940],[7,36],[110,54],[776,424],[124,895],[840,330],[764,577],[738,420],[258,61],[66,436],[1000,370],[968,470],[279,552],[619,834],[732,203],[325,704],[64,423],[499,736],[669,75],[732,796],[440,309],[443,513],[902,785],[849,313],[422,848],[637,948],[307,834],[795,89],[345,310],[626,378],[636,267],[932,632],[227,642],[894,909],[233,457],[777,756],[472,819],[11,466],[509,336],[819,649],[535,83],[359,937],[161,922],[145,88],[902,722],[60,613],[279,977],[118,626],[535,24],[27,257],[698,125],[240,329],[72,482],[61,188],[680,125],[96,535],[191,384],[811,262],[508,573],[244,508],[972,741],[744,291],[136,285],[947,559],[759,167],[335,771],[580,450],[35,789],[196,620],[528,388],[775,861],[694,715],[246,293],[181,199],[683,917],[576,247],[94,762],[146,807],[999,30],[169,773],[491,521],[471,973],[601,744],[460,613],[456,568],[688,134],[455,576],[899,729],[81,260],[861,672],[377,962],[504,790],[293,795],[679,1000],[743,266],[109,67],[843,176],[295,297],[495,413],[42,585],[849,527],[364,429],[861,115],[341,729],[536,347],[605,880],[208,608],[245,475],[431,950],[26,761],[515,691],[519,690],[403,566],[417,459],[447,762],[676,773],[568,597],[81,555],[101,846],[720,222],[12,802],[533,837],[758,824],[710,113],[389,786],[973,696],[508,858],[765,803],[334,41],[85,608],[555,807],[823,28],[712,981],[504,410],[981,371],[43,314],[398,81],[739,299],[300,757],[734,406],[510,635],[644,549],[216,71],[185,421],[372,962],[368,687],[214,537],[632,209],[568,881],[474,869],[888,168],[602,865],[830,360],[607,101],[745,425],[97,133],[867,107],[9,857],[565,798],[765,598],[90,99],[705,472],[290,260],[781,253],[184,665],[486,55],[94,948],[352,708],[337,436],[651,533],[825,94],[195,102],[801,93],[230,975],[649,486],[27,465],[570,745],[319,68],[413,508],[305,282],[403,927],[233,234],[208,287],[384,909],[913,548],[296,670],[446,199],[450,67],[168,182],[723,68],[654,642],[6,114],[180,973],[583,94],[513,880],[455,992],[956,526],[437,8],[925,715],[453,288],[405,579],[814,401],[178,401],[791,258],[287,902],[959,604],[914,522],[283,602],[800,946],[170,441],[863,883],[756,371],[212,222],[93,610],[686,622],[49,79],[727,647],[979,832],[661,578],[864,320],[831,771],[451,992],[44,654],[277,635],[707,439],[360,368],[226,859],[563,467],[856,402],[569,165],[985,484],[29,855],[714,211],[745,790],[152,243],[497,406],[349,542],[616,732],[53,709],[758,780],[428,471],[293,806],[710,556],[638,352],[428,411],[694,200],[215,161],[615,557],[789,863],[90,739],[173,584],[523,119],[647,739],[717,712],[422,5],[352,534],[296,507],[562,297],[402,535],[534,524],[750,268],[964,289],[92,656],[849,250],[237,3],[900,992],[507,263],[640,957],[504,446],[471,762],[859,114],[236,587],[737,619],[974,390],[850,309],[141,104],[463,705],[731,66],[85,128],[587,828],[162,99],[284,203],[885,636],[848,182],[339,243],[525,733],[536,514],[229,556],[292,802],[809,692],[582,570],[80,936],[788,354],[428,885],[805,895],[752,292],[347,886],[684,392],[67,753],[521,294],[955,729],[959,81],[159,567],[884,555],[316,717],[787,938],[572,999],[326,553],[367,26],[490,102],[353,24],[267,6],[353,545],[367,550],[390,482],[790,306],[921,449],[689,284],[738,879],[662,878],[1,472],[690,311],[858,520],[172,488],[240,802],[89,376],[475,384],[719,715],[835,93],[312,22],[76,633],[417,548],[38,286],[858,902],[770,829],[362,379],[314,736],[905,171],[235,580],[395,403],[421,529],[974,596],[835,273],[593,234],[208,879],[684,924],[765,339],[22,304],[420,810],[763,646],[361,225],[292,217],[664,64],[628,570],[3,101],[776,292],[234,808],[454,969],[747,253],[597,775],[934,452],[233,362],[503,473],[679,510],[299,442],[693,476],[288,544],[251,839],[460,830],[242,454],[455,982],[839,429],[925,715],[700,990],[863,320],[704,83],[232,952],[622,756],[639,31],[745,160],[81,666],[237,229],[405,497],[772,136],[799,712],[714,248],[272,653],[319,159],[743,732],[879,547],[731,253],[477,537],[585,978],[752,295],[763,611],[321,634],[475,656],[494,149],[427,9],[648,480],[301,306],[738,127],[149,876],[986,97],[403,584],[232,648],[936,317],[536,111],[478,449],[563,142],[848,394],[928,231],[276,88],[530,342],[967,321],[912,879],[317,551],[206,240],[117,58],[393,669],[649,622],[474,630],[711,976],[259,697],[784,705],[186,283],[26,277],[525,712],[477,838],[812,565],[368,994],[351,279],[247,790],[58,666],[235,629],[859,505],[849,63],[267,165],[965,477],[465,664],[123,846],[450,493],[603,457],[370,977],[932,955],[262,462],[112,651],[984,76],[599,856],[490,361],[17,26],[631,807],[42,44],[550,54],[401,586],[693,219],[351,387],[400,852],[949,400],[196,849],[862,579],[8,455],[935,406],[8,441],[703,970],[219,270],[902,984],[532,288],[406,386],[584,815],[6,172],[930,362],[58,362],[160,71],[324,969],[765,609],[437,324],[309,452],[599,885],[921,5],[445,513],[157,733],[213,28],[520,567],[655,164],[245,857],[797,691],[236,29],[354,44],[93,247],[467,567],[917,591],[376,657],[200,510],[403,402],[338,79],[829,167],[43,419],[413,566],[60,169],[985,511],[602,874],[54,264],[210,148],[361,633],[662,511],[697,710],[242,667],[53,530],[587,673],[547,51],[73,214],[450,638],[710,551],[537,361],[68,939],[279,820],[527,11],[615,386],[359,600],[975,863],[125,612],[581,415],[870,153],[629,248],[529,688],[223,737],[325,237],[280,509],[679,696],[779,771],[115,665],[136,815],[842,123],[74,745],[88,234],[42,619],[129,479],[95,843],[236,946],[866,459],[529,888],[351,645],[358,504],[506,828],[607,905],[755,388],[802,109],[758,727],[339,808],[962,442],[366,520],[48,877],[47,97],[316,936],[246,593],[63,663],[585,711],[688,356],[479,928],[580,444],[285,497],[255,820],[412,18],[836,364],[865,861],[732,903],[323,830],[671,607],[234,580],[702,581],[924,270],[140,580],[936,359],[265,923],[518,535],[523,698],[700,769],[827,912],[375,640],[573,835],[593,705],[147,804],[835,908],[902,21],[351,39],[22,970],[989,186],[547,334],[615,864],[855,819],[189,658],[979,650],[2,124],[257,307],[278,911],[194,733],[178,949],[199,388],[702,754],[847,66],[748,446],[197,793],[382,907],[100,737],[2,390],[698,201],[595,673],[618,539],[392,897],[871,342],[457,730],[649,914],[659,327],[168,80],[556,919],[726,701],[740,396],[102,941],[337,941],[796,147],[76,438],[122,378],[975,956],[531,899],[445,790],[414,591],[906,399],[35,757],[692,113],[788,866],[473,596],[274,141],[173,198],[875,865],[924,543],[328,780],[610,346],[804,342],[75,633],[152,411],[158,86],[982,404],[71,448],[202,641],[553,594],[154,287],[385,525],[239,349],[830,555],[711,740],[72,926],[983,234],[980,309],[108,75],[466,244],[896,626],[400,7],[530,180],[150,380],[82,755],[785,646],[749,166],[97,823],[562,794],[997,567],[430,268],[373,910],[743,169],[980,699],[765,154],[585,769],[464,744],[942,301],[720,237],[550,782],[600,26],[726,143],[456,376],[788,915],[798,691],[124,956],[826,80],[802,375],[169,296],[597,158],[935,828],[277,858],[755,656],[669,433],[972,991],[787,504],[414,205],[270,849],[302,290],[871,376],[995,226],[602,480],[283,270],[344,19],[148,854],[646,571],[587,193],[920,424],[670,993],[260,420],[795,817],[654,381],[935,152],[880,394],[156,873],[176,801],[254,602],[559,926],[454,28],[763,244],[955,791],[210,291],[69,925],[448,203],[544,665],[70,680],[352,878],[280,363],[764,601],[55,262],[836,532],[653,917],[789,516],[466,661],[715,334],[348,783],[392,906],[264,526],[628,730],[220,96],[996,617],[593,438],[309,726],[374,904],[748,593],[113,342],[888,857],[751,161],[286,405],[105,417],[747,324],[651,356],[673,491],[555,83],[891,885],[941,558],[212,352],[547,773],[642,158],[450,414],[828,381],[293,241],[369,135],[787,154],[891,81],[414,502],[499,413],[815,333],[436,115],[639,244],[311,707],[170,693],[287,221],[362,234],[361,485],[297,193],[8,101],[700,371],[713,321],[328,557],[40,751],[225,11],[819,819],[873,619],[922,944],[584,48],[941,124],[238,81],[637,481],[88,540],[516,852],[522,788],[92,231],[983,401],[256,592],[8,907],[921,524],[413,381],[882,229],[216,664],[378,448],[991,536],[54,178],[232,488],[277,483],[412,72],[851,975],[277,418],[763,375],[542,577],[21,378],[189,272],[190,370],[357,546],[61,188],[71,245],[837,133],[635,491],[629,357],[253,257],[957,975],[480,483],[335,332],[520,524],[20,401],[236,611],[196,102],[477,288],[951,717],[616,410],[629,985],[411,116],[146,66],[379,55],[40,275],[747,544],[894,988],[423,454],[967,711],[658,290],[323,454],[451,712],[487,505],[552,644],[775,16],[318,335],[52,421],[876,492],[75,996],[598,265],[255,604],[961,179],[203,64],[162,550],[698,637],[190,799],[133,981],[12,858],[175,895],[103,800],[522,694],[819,937],[900,697],[492,775],[528,372],[536,335],[52,585],[48,934],[679,982],[585,213],[362,482],[447,971],[697,469],[494,150],[180,181],[486,790],[531,128],[647,933],[595,209],[347,235],[646,109],[113,632],[799,517],[881,363],[418,506],[452,352],[844,38],[994,715],[328,580],[632,449],[276,332],[495,888],[90,151],[397,575],[939,364],[234,719],[80,684],[361,142],[590,999],[378,229],[919,124],[243,163],[224,668],[596,209],[904,958],[672,23],[434,335],[822,219],[378,161],[128,676],[970,344],[223,715],[844,188],[486,309],[711,505],[278,233],[195,867],[405,402],[491,784],[878,215],[826,889],[663,492],[311,538],[228,106],[778,787],[215,824],[758,593],[223,250],[664,361],[247,621],[123,255],[669,740],[709,374],[53,594],[503,843],[610,822],[467,293],[569,616],[856,987],[646,318],[696,840],[192,741],[544,178],[723,930],[531,438],[543,7],[113,701],[398,128],[554,183],[952,982],[803,338],[84,243],[765,744],[286,867],[759,14],[32,810],[657,369],[40,271],[841,54],[879,505],[90,383],[662,426],[656,38],[250,733],[672,141],[497,348],[249,755],[307,303],[419,350],[885,828],[113,507],[492,35],[686,716],[270,883],[560,585],[458,864],[839,220],[391,506],[291,915],[352,216],[535,223],[832,794],[514,858],[234,193],[495,394],[202,331],[703,63],[630,711],[521,530],[291,734],[703,690],[122,27],[323,482],[512,279],[121,427],[93,587],[161,678],[116,428],[656,632],[432,469],[971,368],[811,787],[804,493],[63,375],[144,983],[340,466],[541,742],[632,70],[653,168],[963,104],[692,283],[850,630],[521,331],[559,670],[336,971],[430,120],[956,646],[868,299],[38,837],[846,725],[815,242],[374,691],[190,530],[839,58],[811,746],[150,555],[95,120],[98,778],[114,317],[398,264],[751,849],[497,698],[108,981],[352,532],[694,997],[299,871],[552,477],[219,455],[432,429],[97,772],[116,54],[342,551],[112,111],[213,955],[883,109],[236,384],[481,336],[127,252],[830,971],[873,111],[522,539],[946,760],[70,818],[125,18],[418,587],[740,656],[47,109],[596,23],[635,535],[348,72],[778,500],[508,422],[437,849],[578,327],[51,600],[793,580],[415,896],[28,820],[904,507],[121,500],[422,754],[53,809],[4,152],[803,569],[391,545],[868,339],[929,660],[625,790],[154,846],[273,791],[359,929],[756,768],[545,900],[347,373],[631,204],[967,570],[613,714],[8,177],[717,827],[269,538],[848,363],[127,952],[520,953],[431,253],[445,772],[741,178],[553,210],[255,638],[942,219],[65,427],[311,242],[323,397],[547,701],[701,579],[698,963],[806,996],[624,958],[753,171],[178,674],[145,819],[23,72],[308,574],[975,296],[1,992],[61,949],[731,852],[666,192],[569,366],[349,204],[725,278],[573,477],[125,819],[535,801],[282,539],[346,916],[124,438],[806,790],[548,699],[470,781],[750,450],[722,286],[844,209],[563,530],[763,801],[608,404],[365,500],[324,311],[207,333],[347,485],[772,707],[464,478],[190,707],[688,423],[834,640],[229,11],[425,208],[715,389],[600,437],[306,82],[261,529],[66,37],[558,981],[138,782],[938,671],[624,558],[240,777],[70,48],[362,11],[315,93],[429,450],[339,1000],[245,470],[657,160],[208,880],[381,544],[446,731],[175,265],[841,562],[226,545],[595,884],[618,604],[805,879],[236,33],[970,722],[613,155],[958,749],[204,918],[381,329],[867,926],[17,396],[544,658],[882,362],[775,260],[557,914],[458,973],[601,743],[863,527],[132,241],[694,134],[559,456],[22,802],[640,115],[453,590],[284,466],[25,672],[195,652],[971,728],[488,749],[393,46],[249,72],[276,710],[598,389],[978,78],[751,127],[942,360],[533,17],[631,330],[375,994],[118,245],[23,63],[271,713],[195,616],[523,691],[202,103],[542,68],[685,980],[397,448],[701,237],[891,322],[224,852],[171,442],[410,176],[380,323],[776,757],[154,390],[494,227],[895,287],[925,554],[102,725],[700,26],[970,33],[638,796],[970,997],[322,518],[118,293],[224,618],[928,618],[536,867],[891,834],[772,336],[470,814],[847,563],[776,481],[916,916],[787,591],[412,628],[299,423],[367,635],[81,899],[438,122],[226,546],[2,412],[159,270],[406,620],[289,193],[178,461],[732,698],[573,682],[957,757],[812,282],[184,173],[447,189],[868,874],[45,722],[661,759],[891,372],[978,948],[406,961],[46,308],[461,236],[464,403],[416,40],[984,906],[432,668],[926,229],[905,472],[78,731],[557,112],[310,297],[580,335],[688,638],[124,682],[584,129],[730,93],[695,648],[953,805],[450,496],[895,860],[989,3],[834,567],[229,260],[298,912],[778,667],[411,990],[920,652],[653,961],[679,241],[531,980],[317,363],[25,99],[710,953],[142,63],[798,226],[95,464],[712,127],[886,707],[435,359],[40,678],[661,72],[607,259],[847,508],[386,462],[788,987],[253,352],[177,713],[924,964],[456,267],[29,846],[974,705],[953,927],[617,951],[980,920],[862,511],[274,991],[721,916],[200,669],[698,156],[413,847],[137,155],[704,372],[419,233],[993,333],[67,871],[618,602],[35,640],[287,71],[399,757],[54,698],[707,577],[185,873],[875,420],[694,871],[897,458],[460,138],[881,129],[697,172],[767,219],[619,468],[42,930],[848,360],[654,787],[693,427],[634,735],[281,175],[313,706],[969,873],[964,442],[897,658],[973,714],[637,779],[390,390],[461,859],[431,289],[701,337],[606,462],[163,173],[583,405],[206,636],[175,330],[790,696],[775,186],[959,334],[636,123],[546,322],[645,747],[675,847],[608,954],[590,381],[324,91],[51,10],[156,590],[350,555],[907,197],[977,437],[141,73],[497,846],[154,535],[402,351],[791,184],[25,198],[577,513],[972,722],[649,805],[439,237],[447,274],[41,971],[173,529],[491,962],[404,346],[161,414],[822,99],[43,880],[364,970],[438,333],[734,95],[150,644],[760,177],[618,860],[617,961],[847,326],[614,52],[942,743],[3,133],[801,54],[262,98],[773,776],[191,837],[229,901],[236,774],[881,75],[928,517],[777,753],[859,723],[608,405],[739,438],[468,693],[232,909],[967,830],[604,27],[392,596],[634,323],[24,236],[188,317],[29,238],[561,807],[436,635],[214,945],[629,895],[506,227],[607,75],[971,910],[125,971],[187,725],[951,229],[140,513],[493,642],[382,519],[140,557],[848,922],[380,372],[347,766],[233,480],[684,846],[628,177],[56,977],[974,996],[324,870],[162,700],[124,639],[537,497],[649,490],[400,329],[424,475],[416,188],[253,37],[858,535],[875,849],[928,643],[105,740],[865,500],[985,800],[283,356],[139,638],[525,627],[347,792],[58,340],[761,66],[932,555],[469,192],[632,983],[780,788],[386,567],[802,568],[355,16],[993,2],[238,238],[352,555],[188,251],[312,910],[220,878],[644,363],[38,964],[453,39],[949,985],[177,708],[746,226],[181,70],[588,728],[706,455],[500,305],[368,720],[92,873],[404,579],[77,563],[39,879],[71,221],[821,54],[855,189],[13,116],[879,416],[523,457],[897,294],[261,893],[263,115],[181,733],[988,391],[641,179],[857,469],[444,591],[396,548],[430,232],[802,405],[760,212],[814,862],[538,615],[372,874],[681,892],[124,97],[966,671],[616,966],[335,577],[969,469],[785,863],[93,585],[773,273],[983,983],[395,811],[997,849],[762,112],[245,286],[796,469],[507,590],[247,965],[544,634],[519,846],[543,167],[78,823],[173,127],[838,732],[357,983],[622,535],[651,327],[662,522],[699,907],[332,907],[170,128],[77,752],[676,355],[836,933],[233,232],[867,809],[104,526],[98,729],[668,358],[125,297],[693,208],[390,515],[729,551],[123,141],[135,294],[317,403],[372,68],[969,426],[470,214],[455,126],[235,498],[754,391],[201,184],[147,256],[665,980],[943,136],[467,863],[659,664],[898,460],[595,575],[764,76],[179,282],[248,4],[78,999],[132,712],[140,356],[912,951],[180,915],[129,644],[294,691],[874,501],[905,359],[60,343],[659,560],[961,499],[234,16],[694,875],[153,929],[535,569],[983,419],[440,703],[465,980],[82,625],[297,169],[997,6],[410,838],[176,939],[274,478],[67,482],[519,615],[860,283],[734,909],[482,927],[233,944],[556,716],[271,795],[333,885],[364,582],[697,107],[848,303],[991,682],[686,957],[637,436],[244,44],[132,448],[387,520],[742,993],[11,795],[325,319],[790,645],[176,450],[167,815],[784,66],[520,133],[627,315],[158,904],[794,715],[656,693],[694,781],[714,487],[229,41],[743,428],[183,435],[602,967],[754,957],[216,328],[838,690],[989,263],[521,498],[475,633],[189,550],[226,882],[808,410],[597,880],[630,756],[701,662],[40,67],[160,58],[518,964],[846,679],[428,998],[854,644],[821,470],[552,913],[52,117],[124,742],[452,266],[997,17],[607,904],[876,847],[360,701],[71,991],[78,63],[570,720],[65,196],[710,136],[972,641],[548,869],[561,342],[4,951],[602,782],[440,857],[843,243],[395,922],[131,895],[228,24],[318,847],[772,974],[658,557],[683,516],[684,665],[789,881],[793,640],[107,419],[196,773],[366,537],[622,990],[490,122],[683,677],[925,438],[180,341],[417,721],[49,217],[657,113],[622,880],[848,939],[56,165],[289,379],[228,594],[102,720],[968,897],[602,55],[883,765],[455,674],[150,382],[240,776],[280,516],[28,664],[719,751],[634,60],[250,599],[461,18],[836,898],[213,550],[979,797],[504,721],[645,522],[699,204],[119,571],[15,700],[922,770],[605,192],[459,727],[967,348],[583,251],[153,160],[986,510],[254,774],[538,921],[848,307],[589,383],[429,456],[625,496],[486,623],[574,91],[424,974],[343,912],[94,871],[55,315],[302,280],[363,23],[57,342],[550,511],[439,973],[928,321],[246,620],[130,745],[52,425],[557,449],[278,480],[698,129],[856,582],[669,546],[797,227],[326,671],[464,483],[266,3],[590,579],[746,323],[729,4],[101,108],[864,54],[408,725],[706,983],[17,162],[355,424],[470,750],[881,206],[108,746],[266,849],[208,568],[169,520],[356,566],[222,75],[814,907],[206,764],[375,138],[443,971],[730,398],[921,542],[868,63],[266,357],[591,431],[416,892],[735,386],[926,760],[295,842],[660,524],[938,346],[148,847],[213,700],[39,91],[947,781],[409,879],[405,558],[643,975],[297,975],[857,559],[605,85],[620,107],[148,920],[262,413],[352,979],[558,988],[772,140],[284,127],[472,299],[335,134],[559,67],[413,682],[524,711],[718,782],[567,716],[384,37],[526,387],[137,797],[718,218],[319,441],[717,748],[92,321],[55,699],[550,639],[464,49],[233,238],[571,714],[220,375],[123,547],[2,95],[504,361],[756,134],[898,278],[596,15],[315,362],[957,823],[511,19],[146,960],[771,119],[536,839],[806,267],[202,564],[935,730],[687,878],[635,240],[540,934],[932,922],[735,76],[958,531],[293,827],[278,142],[141,258],[428,698],[915,4],[298,341],[586,744],[142,190],[645,782],[563,673],[43,99],[441,361],[705,615],[366,605],[540,777],[113,193],[978,634],[766,366],[749,377],[41,324],[17,688],[78,443],[356,890],[801,575],[772,36],[514,496],[889,426],[826,588],[474,533],[175,458],[859,297],[214,524],[743,128],[460,674],[338,779],[340,666],[532,299],[91,648],[56,754],[300,637],[247,135],[1,191],[765,452],[511,100],[250,531],[386,795],[80,666],[26,798],[796,557],[24,908],[493,452],[225,738],[99,56],[698,980],[578,232],[988,923],[985,278],[246,373],[666,137],[363,622],[332,309],[800,862],[905,507],[981,754],[118,618],[773,185],[874,520],[380,963],[386,585],[4,840],[311,850],[619,793],[953,836],[48,643],[422,180],[900,434],[198,681],[106,553],[350,605],[261,121],[695,521],[204,247],[723,257],[412,535],[86,421],[643,336],[717,300],[209,130],[746,361],[371,876],[386,13],[26,21],[740,671],[45,513],[465,693],[27,150],[19,315],[246,679],[941,892],[514,409],[427,823],[600,923],[492,992],[922,848],[510,839],[102,748],[107,841],[272,869],[942,852],[477,121],[776,34],[167,429],[854,441],[498,445],[638,423],[49,807],[998,84],[468,466],[951,850],[443,682],[251,853],[73,909],[296,78],[888,878],[64,165],[891,313],[819,815],[841,729],[406,377],[395,940],[542,69],[416,645],[885,161],[602,119],[883,285],[440,710],[555,796],[473,400],[983,6],[450,504],[873,770],[274,715],[522,873],[189,119],[805,478],[398,852],[462,654],[719,800],[421,917],[546,572],[971,844],[369,54],[745,241],[990,622],[426,430],[825,107],[198,10],[377,569],[604,935],[657,444],[274,287],[479,989],[344,207],[25,657],[941,71],[855,918],[209,868],[411,629],[986,186],[669,732],[382,635],[837,440],[921,579],[450,453],[97,375],[617,157],[67,86],[633,796],[451,260],[71,525],[364,717],[180,427],[867,858],[496,558],[208,533],[745,883],[872,583],[395,797],[287,304],[953,711],[409,26],[188,671],[136,718],[594,103],[755,673],[58,431],[835,726],[910,682],[893,490],[977,576],[70,246],[484,792],[190,809],[133,51],[511,565],[213,554],[48,988],[550,488],[406,924],[66,828],[73,96],[30,460],[716,452],[560,659],[643,139],[145,631],[741,937],[482,780],[937,168],[555,17],[497,293],[830,840],[584,980],[86,897],[456,385],[301,231],[754,153],[271,342],[526,712],[338,354],[402,512],[166,911],[180,183],[816,407],[887,544],[76,552],[204,349],[66,891],[340,382],[949,898],[188,452],[276,727],[83,381],[811,192],[913,599],[254,236],[974,326],[282,285],[652,249],[768,747],[341,340],[332,727],[284,598],[679,276],[329,380],[211,487],[931,899],[46,953],[831,770],[51,250],[485,140],[398,13],[741,671],[89,674],[659,367],[103,115],[55,433],[848,830],[532,458],[224,716],[548,245],[728,483],[168,727],[919,705],[650,785],[854,417],[517,422],[906,806],[334,138],[288,521],[182,417],[157,644],[73,529],[192,718],[761,567],[57,505],[961,787],[954,505],[486,626],[547,291],[239,106],[544,979],[33,308],[667,973],[643,171],[281,249],[837,30],[171,518],[434,795],[2,659],[25,749],[173,146],[508,725],[352,799],[995,320],[120,194],[188,515],[331,378],[94,942],[447,472],[283,133],[784,544],[572,608],[761,241],[901,245],[949,903],[809,258],[442,198],[675,67],[994,82],[568,11],[618,571],[483,147],[41,438],[596,345],[346,703],[757,742],[96,612],[462,143],[628,917],[70,141],[449,978],[409,83],[32,718],[449,662],[820,915],[855,978],[989,988],[63,529],[268,452],[231,758],[367,225],[893,898],[57,617],[474,495],[871,408],[283,872],[824,822],[113,760],[496,405],[584,348],[41,159],[945,828],[71,106],[611,587],[991,88],[583,821],[418,76],[576,846],[354,314],[303,838],[528,388],[856,428],[385,32],[757,51],[446,79],[335,167],[701,423],[67,671],[415,722],[613,720],[513,681],[411,394],[842,219],[111,56],[193,544],[401,349],[890,533],[472,9],[41,745],[917,314],[455,569],[227,401],[666,25],[693,604],[357,97],[434,547],[34,142],[118,994],[82,119],[618,591],[673,917],[199,643],[254,911],[687,77],[576,582],[317,730],[685,36],[153,14],[709,592],[616,411],[913,335],[663,893],[631,787],[165,573],[371,180],[955,370],[594,997],[476,956],[953,906],[123,433],[902,14],[73,328],[2,910],[690,91],[317,910],[687,515],[112,627],[949,546],[533,934],[633,602],[726,493],[286,381],[802,76],[792,982],[862,816],[195,597],[487,900],[9,978],[864,659],[947,187],[911,916],[261,106],[957,608],[92,743],[68,945],[572,546],[659,554],[727,199],[673,596],[946,204],[785,741],[978,846],[741,486],[31,240],[717,968],[724,727],[615,894],[357,794],[442,756],[597,64],[742,767],[856,659],[605,723],[541,269],[208,155],[628,255],[434,561],[152,80],[707,889],[780,734],[17,694],[941,765],[683,831],[891,354],[378,162],[383,869],[418,907],[514,686],[926,468],[703,998],[572,679],[361,416],[575,68],[595,89],[3,79],[199,610],[362,636],[497,838],[420,975],[417,212],[349,424],[899,642],[614,587],[327,240],[194,910],[865,148],[534,221],[804,888],[431,721],[382,590],[560,704],[395,502],[538,836],[685,698],[647,41],[153,701],[398,38],[370,69],[542,875],[471,15],[901,515],[445,631],[999,892],[279,412],[715,466],[147,255],[107,825],[593,942],[831,869],[736,810],[170,121],[223,932],[791,379],[145,7],[855,909],[760,524],[965,34],[786,800],[739,648],[396,803],[632,377],[11,913],[101,681],[111,732],[508,259],[426,317],[994,47],[992,984],[980,261],[531,5],[23,239],[681,742],[103,487],[766,847],[349,246],[138,652],[684,30],[603,880],[412,337],[156,568],[395,360],[290,919],[102,906],[586,770],[269,230],[666,425],[211,832],[808,71],[899,700],[849,773],[897,63],[793,402],[846,361],[767,981],[395,128],[332,162],[440,940],[431,141],[300,557],[537,932],[501,88],[760,896],[529,166],[862,822],[312,425],[98,431],[415,956],[116,518],[66,787],[802,826],[386,26],[889,766],[214,494],[949,772],[265,689],[309,88],[180,988],[998,683],[740,804],[546,485],[977,824],[116,628],[155,265],[423,572],[977,898],[100,101],[228,624],[237,254],[27,441],[259,801],[433,554],[574,500],[80,408],[902,738],[72,189],[956,322],[367,224],[330,679],[974,206],[928,39],[594,689],[378,338],[191,355],[438,519],[965,900],[221,783],[284,809],[44,47],[217,998],[827,244],[674,673],[320,327],[422,902],[370,109],[489,662],[653,289],[779,5],[644,825],[520,14],[206,591],[769,66],[625,357],[725,573],[385,727],[153,662],[337,733],[314,302],[876,590],[805,881],[593,736],[716,746],[802,140],[162,953],[886,422],[566,596],[894,877],[599,373],[959,136],[688,234],[409,343],[853,238],[385,154],[638,963],[831,643],[470,743],[695,69],[917,68],[767,597],[685,489],[721,523],[165,18],[467,312],[415,866],[544,754],[396,709],[79,720],[127,334],[935,400],[833,344],[265,921],[32,472],[157,453],[353,456],[96,359],[733,769],[241,419],[29,110],[77,886],[641,789],[39,391],[695,325],[143,522],[183,893],[175,555],[600,288],[951,993],[768,844],[923,967],[545,525],[621,842],[196,672],[317,440],[443,565],[898,611],[563,997],[128,514],[594,641],[571,528],[846,676],[374,270],[292,281],[644,987],[447,987],[975,123],[942,536],[584,126],[303,46],[317,96],[757,432],[892,976],[910,220],[642,918],[764,775],[441,659],[680,515],[459,331],[993,272],[303,910],[217,788],[770,365],[414,209],[307,495],[348,713],[545,978],[126,141],[703,681],[433,712],[961,828],[532,502],[34,152],[281,639],[521,467],[111,897],[383,156],[510,977],[455,933],[824,41],[848,849],[483,465],[149,18],[412,742],[839,91],[453,169],[721,887],[202,932],[111,475],[774,941],[155,107],[197,571],[503,578],[553,34],[603,649],[595,775],[178,407],[898,191],[969,388],[541,185],[702,531],[579,101],[775,232],[91,256],[637,931],[157,75],[831,500],[105,6],[226,752],[768,34],[719,51],[159,239],[604,702],[949,9],[294,111],[904,609],[872,686],[800,379],[139,52],[686,264],[482,932],[262,805],[846,679],[657,973],[331,625],[343,487],[239,130],[630,752],[679,18],[767,161],[6,965],[416,176],[567,508],[287,232],[714,497],[350,757],[323,913],[798,125],[520,841],[956,999],[978,516],[560,661],[49,54],[263,838],[781,903],[119,537],[163,279],[100,333],[374,182],[211,56],[754,159],[987,69],[17,710],[640,238],[644,180],[395,707],[735,679],[783,737],[776,679],[738,188],[646,637],[796,357],[978,591],[301,339],[674,258],[504,327],[812,208],[470,804],[597,683],[637,285],[490,88],[639,503],[734,467],[82,404],[276,18],[997,598],[614,721],[199,980],[128,939],[58,910],[748,40],[735,60],[64,924],[562,839],[391,956],[876,58],[408,774],[80,388],[226,403],[4,874],[35,713],[18,533],[454,867],[457,84],[998,863],[461,855],[372,486],[25,7],[297,915],[140,1000],[981,923],[438,164],[220,264],[499,455],[291,698],[443,418],[362,918],[972,439],[722,614],[904,296],[203,670],[104,854],[23,97],[678,639],[733,709],[558,484],[299,640],[120,669],[583,209],[971,750],[13,484],[909,407],[503,852],[34,228],[802,667],[906,716],[311,198],[930,421],[338,279],[750,666],[690,291],[109,975],[562,628],[75,490],[35,138],[1000,802],[423,297],[136,470],[239,285],[715,3],[265,19],[438,219],[47,287],[991,919],[738,196],[265,319],[591,504],[703,859],[295,724],[165,29],[293,216],[84,376],[169,249],[346,776],[43,174],[83,392],[674,556],[762,541],[240,515],[957,679],[913,993],[385,777],[209,155],[229,659],[320,435],[794,346],[109,71],[282,431],[422,72],[188,750],[60,222],[546,494],[104,463],[987,461],[114,691],[171,993],[705,635],[639,553],[202,60],[618,720],[585,423],[193,326],[875,117],[216,565],[735,601],[299,225],[995,440],[51,773],[813,736],[923,989],[700,203],[361,651],[350,397],[77,224],[663,33],[723,302],[529,126],[578,776],[467,722],[433,384],[535,335],[907,140],[42,762],[341,100],[421,239],[515,607],[493,306],[86,366],[329,229],[450,995],[412,761],[893,243],[533,901],[258,998],[655,519],[727,767],[419,648],[448,63],[320,949],[882,949],[35,637],[726,997],[349,757],[927,279],[166,459],[993,750],[361,750],[27,319],[543,506],[783,986],[478,723],[680,775],[296,487],[348,790],[219,352],[228,860],[706,544],[78,715],[619,925],[515,88],[404,200],[106,716],[866,871],[659,381],[795,286],[497,159],[522,865],[301,781],[88,619],[173,547],[922,862],[637,303],[953,504],[163,305],[77,583],[214,604],[356,820],[22,583],[720,214],[205,987],[333,389],[708,969],[446,145],[485,235],[966,72],[264,858],[479,899],[24,814],[120,913],[658,614],[283,32],[752,693],[794,937],[373,4],[726,684],[603,580],[76,576],[114,230],[872,919],[373,596],[760,248],[346,33],[886,195],[953,67],[969,760],[737,174],[867,898],[477,120],[440,955],[972,383],[715,70],[53,522],[534,830],[614,425],[518,367],[891,421],[691,250],[699,223],[409,590],[3,366],[199,932],[250,990],[578,583],[878,131],[570,152],[382,606],[855,846],[143,728],[498,150],[336,941],[286,531],[29,4],[425,593],[336,990],[847,889],[868,219],[974,18],[130,681],[533,466],[66,389],[229,618],[235,466],[881,24],[779,403],[810,543],[712,218],[706,50],[577,241],[929,626],[765,789],[810,544],[881,375],[382,81],[583,554],[441,146],[794,358],[615,451],[295,909],[522,801],[797,693],[46,517],[142,86],[603,841],[814,154],[95,647],[348,555],[593,103],[427,683],[137,482],[389,139],[628,934],[715,850],[506,650],[447,330],[535,720],[51,36],[979,887],[257,64],[82,220],[490,862],[521,432],[159,893],[623,342],[285,156],[799,473],[291,403],[448,666],[295,761],[108,666],[727,828],[999,121],[172,769],[649,201],[506,997],[973,85],[15,575],[797,339],[323,300],[437,676],[469,244],[330,641],[632,530],[439,372],[347,457],[558,742],[302,114],[628,841],[192,841],[670,195],[664,903],[297,264],[384,511],[845,636],[866,603],[812,781],[184,206],[780,2],[615,961],[40,270],[166,26],[107,610],[186,441],[800,497],[223,939],[383,385],[875,561],[933,638],[260,133],[446,634],[161,475],[805,382],[148,75],[27,220],[595,207],[917,267],[879,560],[921,711],[525,445],[920,33],[312,812],[903,96],[46,335],[885,606],[745,431],[503,526],[296,145],[500,200],[817,966],[201,209],[783,759],[441,497],[242,893],[217,340],[57,857],[648,879],[467,249],[202,924],[180,65],[77,321],[492,858],[956,360],[617,588],[15,937],[879,927],[33,550],[293,291],[142,528],[807,240],[696,244],[120,244],[951,194],[746,117],[453,629],[505,427],[923,160],[197,524],[505,13],[533,972],[813,584],[863,672],[891,826],[5,539],[423,949],[525,262],[90,820],[18,571],[55,379],[378,112],[382,903],[161,371],[283,922],[141,883],[369,856],[829,850],[972,996],[897,153],[197,349],[959,95],[179,767],[782,249],[271,913],[501,55],[645,651],[770,349],[970,11],[813,758],[381,877],[589,25],[919,839],[987,526],[17,809],[242,397],[749,828],[747,656],[582,835],[256,179],[119,915],[303,32],[287,617],[118,863],[431,351],[835,502],[765,595],[323,827],[151,561],[41,371],[339,407],[673,226],[412,990],[537,825],[145,871],[571,802],[737,380],[416,317],[499,28],[840,13],[953,423],[93,159],[597,741],[964,11],[65,241],[124,811],[61,24],[700,110],[364,706],[254,734],[466,541],[930,316],[619,822],[896,336],[718,188],[753,84],[227,34],[270,378],[888,169],[963,653],[392,419],[652,135],[701,905],[378,468],[252,191],[244,772],[964,811],[980,667],[337,350],[320,296],[946,856],[308,690],[564,204],[176,436],[596,982],[946,477],[912,83],[490,599],[879,499],[407,937],[80,833],[960,858],[828,772],[653,942],[338,584],[516,582],[684,886],[758,37],[11,65],[785,77],[750,33],[775,830],[398,674],[816,273],[931,523],[237,412],[853,826],[908,863],[679,160],[363,434],[870,561],[447,775],[643,70],[603,528],[273,994],[666,301],[451,132],[573,165],[758,481],[495,943],[82,54],[639,487],[27,331],[720,502],[376,32],[510,321],[447,936],[453,202],[938,431],[279,490],[147,310],[17,610],[432,57],[225,348],[638,427],[109,952],[960,612],[486,836],[114,655],[276,736],[392,924],[88,673],[668,446],[143,975],[112,215],[366,350],[774,34],[22,82],[865,553],[54,440],[442,958],[179,278],[319,24],[130,477],[55,832],[447,74],[924,218],[726,826],[795,683],[752,876],[60,924],[947,15],[465,205],[922,856],[743,557],[558,100],[451,988],[842,259],[3,75],[68,677],[580,223],[717,220],[896,329],[122,880],[312,662],[148,370],[642,182],[729,394],[900,83],[945,999],[364,938],[162,627],[886,238],[312,13],[87,241],[933,54],[934,92],[793,239],[867,744],[695,721],[386,546],[408,345],[85,442],[20,568],[151,726],[270,699],[234,913],[270,674],[647,174],[111,937],[143,426],[39,446],[970,5],[891,596],[820,833],[90,308],[472,275],[801,127],[495,819],[888,282],[417,200],[60,623],[196,984],[632,816],[729,978],[828,559],[423,261],[911,6],[459,607],[221,487],[894,904],[519,440],[439,809],[99,665],[919,195],[5,439],[487,781],[945,906],[326,143],[102,275],[182,124],[37,632],[648,379],[504,580],[48,637],[684,768],[464,268],[399,521],[657,117],[575,638],[961,359],[614,694],[251,243],[297,459],[846,776],[657,390],[966,286],[246,289],[257,327],[812,768],[404,153],[327,151],[509,74],[580,465],[24,118],[600,748],[110,61],[589,192],[801,14],[638,460],[755,854],[664,113],[881,505],[880,946],[879,447],[123,700],[418,495],[794,303],[938,832],[964,432],[958,856],[951,579],[1,764],[617,290],[64,41],[433,688],[229,488],[117,25],[600,873],[701,827],[936,635],[938,974],[210,811],[512,51],[172,877],[778,794],[968,527],[889,462],[765,619],[951,494],[120,712],[52,339],[892,196],[326,770],[608,991],[981,801],[926,792],[313,338],[525,408],[219,171],[211,561],[6,773],[991,396],[981,64],[681,249],[942,188],[263,369],[824,340],[630,485],[597,458],[350,120],[115,179],[552,134],[861,109],[679,822],[640,623],[445,220],[136,658],[223,335],[461,467],[357,223],[642,176],[822,461],[253,263],[535,796],[998,780],[735,653],[12,274],[623,541],[11,85],[493,665],[479,498],[76,769],[167,779],[969,373],[959,66],[95,63],[863,983],[938,644],[427,981],[462,835],[48,84],[229,613],[648,113],[959,873],[114,998],[133,834],[721,374],[803,28],[822,349],[170,493],[595,49],[869,558],[36,962],[115,650],[637,792],[819,761],[483,304],[472,874],[390,145],[30,381],[341,800],[580,297],[866,511],[4,209],[497,878],[895,368],[101,452],[889,549],[128,300],[528,534],[53,512],[360,476],[953,473],[246,514],[763,147],[979,480],[674,86],[920,91],[639,234],[584,98],[204,47],[256,119],[265,333],[357,758],[886,115],[691,687],[285,849],[915,268],[342,861],[822,877],[226,973],[791,602],[103,987],[806,467],[105,989],[405,971],[129,739],[405,814],[583,313],[425,17],[692,467],[117,46],[197,444],[956,979],[576,986],[914,506],[299,110],[888,163],[689,114],[793,255],[403,61],[336,460],[869,462],[381,572],[498,134],[422,908],[296,546],[520,105],[680,698],[539,234],[940,126],[663,125],[781,561],[885,762],[197,752],[396,594],[500,786],[267,305],[562,751],[824,654],[474,270],[14,118],[43,258],[174,45],[684,686],[371,153],[148,334],[422,820],[629,47],[452,122],[329,650],[828,735],[287,623],[913,54],[937,768],[624,743],[146,272],[378,334],[201,658],[862,381],[764,908],[182,404],[217,231],[375,92],[326,660],[129,110],[375,783],[365,983],[708,28],[97,601],[846,947],[858,48],[416,174],[174,307],[248,873],[237,749],[964,487],[331,257],[439,253],[439,385],[622,282],[718,834],[568,542],[372,451],[805,140],[1,106],[326,923],[56,73],[129,154],[994,804],[614,5],[635,650],[34,288],[828,797],[456,767],[265,351],[989,973],[330,689],[269,587],[197,743],[25,462],[203,596],[388,57],[228,678],[971,34],[877,256],[692,376],[544,717],[184,920],[131,925],[48,52],[731,408],[425,200],[540,641],[485,43],[982,875],[812,38],[188,494],[532,661],[413,681],[770,878],[732,934],[981,403],[526,754],[119,867],[638,818],[114,42],[23,804],[816,389],[669,833],[611,400],[457,641],[392,509],[102,608],[309,847],[664,166],[459,543],[119,510],[110,166],[48,351],[483,911],[155,676],[473,451],[594,46],[579,454],[899,783],[994,33],[169,177],[438,490],[772,428],[919,931],[272,315],[474,383],[24,339],[602,888],[544,701],[309,609],[581,677],[482,720],[422,283],[737,422],[255,341],[156,826],[632,152],[235,214],[414,132],[372,23],[645,179],[736,657],[319,307],[195,50],[703,200],[220,381],[630,725],[687,343],[431,743],[644,357],[560,341],[62,937],[959,636],[633,975],[187,177],[488,249],[335,975],[819,498],[963,992],[672,818],[293,809],[579,763],[655,490],[488,2],[312,317],[456,378],[408,136],[283,800],[853,862],[728,761],[928,290],[421,235],[105,446],[922,902],[220,571],[218,119],[58,904],[918,828],[860,154],[112,784],[959,707],[596,480],[934,658],[271,730],[305,850],[317,767],[854,75],[495,284],[229,567],[456,58],[763,569],[749,853],[320,679],[444,146],[891,419],[470,679],[122,223],[305,323],[484,6],[909,523],[719,713],[199,829],[716,361],[219,893],[275,579],[456,43],[341,724],[780,929],[560,493],[624,640],[212,33],[171,384],[98,231],[965,990],[235,994],[642,149],[987,896],[633,767],[614,134],[503,443],[949,678],[83,806],[579,305],[366,306],[992,318],[959,813],[150,377],[955,31],[994,599],[332,539],[750,448],[160,659],[717,85],[432,788],[543,51],[605,776],[498,269],[939,498],[83,925],[590,729],[724,319],[73,394],[141,7],[337,708],[817,535],[680,467],[733,91],[972,606],[330,304],[435,850],[219,467],[60,852],[354,859],[765,930],[923,72],[836,544],[959,879],[439,7],[612,482],[619,312],[20,174],[912,885],[920,271],[644,990],[52,730],[140,90],[428,215],[348,340],[939,785],[733,352],[181,190],[822,836],[323,103],[766,269],[642,14],[256,421],[596,233],[267,175],[180,950],[788,73],[165,87],[527,4],[155,475],[885,286],[399,426],[531,878],[98,415],[602,821],[476,977],[543,245],[274,108],[42,514],[327,36],[538,155],[488,768],[318,991],[880,161],[223,881],[734,341],[68,665],[394,514],[948,280],[557,565],[704,488],[125,517],[363,858],[200,88],[499,301],[549,921],[828,275],[792,701],[220,63],[367,729],[984,149],[272,90],[442,364],[215,721],[575,935],[400,385],[158,106],[307,601],[303,674],[188,377],[273,951],[825,467],[980,203],[605,557],[649,177],[153,305],[99,682],[287,514],[82,624],[874,525],[955,895],[122,364],[168,529],[570,611],[416,339],[567,775],[44,489],[834,720],[45,992],[989,667],[815,909],[669,772],[572,980],[73,323],[506,825],[442,678],[880,25],[284,245],[119,708],[345,270],[543,803],[499,462],[401,638],[392,617],[108,351],[634,946],[664,435],[250,304],[218,934],[949,822],[932,499],[823,409],[668,917],[409,443],[615,88],[571,78],[714,640],[401,28],[483,512],[307,488],[837,257],[317,986],[588,86],[200,771],[455,901],[855,868],[31,752],[19,343],[788,142],[825,751],[944,80],[156,286],[646,613],[562,647],[567,235],[472,811],[980,482],[111,33],[327,749],[546,171],[38,734],[225,92],[729,517],[758,930],[737,947],[347,236],[345,851],[357,439],[50,921],[922,893],[650,142],[88,773],[354,21],[165,729],[245,267],[511,659],[920,548],[31,988],[518,424],[749,886],[22,113],[615,940],[217,995],[319,45],[640,204],[524,663],[469,411],[425,836],[955,901],[885,926],[269,749],[518,54],[205,175],[439,495],[901,457],[589,830],[171,983],[28,231],[426,835],[519,747],[451,103],[811,417],[951,601],[69,483],[49,807],[243,222],[119,984],[922,953],[260,446],[45,644],[374,547],[613,848],[782,406],[864,373],[699,131],[941,914],[121,99],[738,446],[801,20],[167,128],[965,833],[451,504],[381,437],[670,625],[27,160],[923,728],[519,612],[215,185],[918,345],[726,772],[770,15],[971,312],[79,71],[26,913],[885,232],[472,500],[180,94],[530,756],[158,27],[583,415],[258,596],[644,16],[446,552],[454,312],[350,935],[461,389],[145,908],[726,870],[153,80],[153,525],[678,369],[801,412],[823,73],[912,86],[6,996],[391,561],[366,162],[785,524],[438,212],[579,684],[702,366],[858,958],[683,698],[516,583],[91,902],[724,860],[222,917],[627,976],[573,511],[280,758],[805,616],[201,861],[3,823],[837,526],[992,33],[233,901],[731,935],[727,40],[64,34],[25,734],[208,589],[517,6],[616,585],[555,844],[408,510],[498,341],[269,73],[84,448],[228,543],[359,251],[72,407],[750,152],[613,250],[783,534],[581,100],[868,702],[577,204],[805,423],[565,572],[767,405],[17,504],[829,992],[202,80],[396,815],[430,284],[406,387],[340,226],[506,880],[847,2],[156,640],[841,372],[237,136],[263,395],[485,86],[536,959],[98,352],[805,738],[777,75],[151,745],[458,133],[288,808],[229,509],[474,459],[780,177],[341,819],[855,21],[824,322],[36,916],[16,59],[730,844],[234,881],[849,913],[960,231],[594,699],[442,949],[571,146],[537,623],[898,998],[114,867],[919,476],[902,194],[300,214],[417,117],[16,15],[375,723],[897,581],[10,619],[804,269],[570,658],[938,823],[146,926],[845,946],[672,724],[112,774],[577,498],[510,939],[37,540],[33,75],[236,72],[501,396],[24,619],[683,232],[16,421],[374,482],[999,750],[239,539],[298,95],[558,761],[905,669],[494,144],[883,480],[266,681],[68,426],[722,334],[951,641],[441,293],[712,36],[447,576],[211,496],[355,810],[430,933],[968,162],[911,620],[397,327],[986,910],[791,284],[509,623],[8,934],[239,370],[560,518],[381,515],[902,9],[984,449],[864,552],[915,102],[56,88],[491,207],[295,791],[358,712],[826,117],[605,345],[840,202],[907,986],[157,173],[38,323],[277,741],[804,631],[422,565],[843,24],[779,725],[790,488],[182,151],[469,808],[273,185],[204,458],[739,842],[713,457],[82,841],[466,339],[810,569],[652,187],[261,841],[622,129],[775,868],[242,146],[798,66],[498,188],[554,244],[813,411],[669,797],[317,439],[449,844],[422,699],[376,338],[836,590],[709,193],[69,700],[687,707],[1,382],[192,38],[522,901],[908,461],[263,929],[740,842],[470,822],[320,661],[124,8],[829,769],[95,27],[179,486],[51,128],[565,590],[997,459],[211,169],[265,631],[299,813],[212,130],[512,105],[453,210],[857,461],[706,831],[260,36],[868,182],[973,100],[93,344],[242,452],[78,483],[878,70],[414,959],[227,484],[146,103],[279,453],[392,532],[322,587],[989,724],[805,737],[433,880],[60,421],[634,619],[534,186],[816,93],[779,248],[79,239],[716,422],[410,935],[853,190],[294,931],[986,895],[117,954],[232,700],[389,91],[734,723],[479,898],[51,921],[155,247],[716,692],[185,269],[918,909],[339,449],[837,97],[388,516],[429,242],[479,934],[689,515],[769,318],[134,821],[17,949],[136,519],[461,529],[641,917],[250,988],[571,232],[358,81],[683,623],[339,982],[772,556],[465,233],[691,580],[221,823],[974,107],[155,683],[10,19],[956,294],[883,507],[329,417],[412,575],[895,69],[604,556],[940,803],[11,272],[913,722],[406,806],[226,814],[720,699],[720,722],[190,340],[318,548],[87,939],[985,953],[886,885],[697,503],[85,281],[901,850],[602,909],[611,580],[347,516],[822,229],[525,63],[734,766],[374,659],[199,722],[116,491],[881,155],[606,31],[840,586],[681,260],[337,697],[227,980],[319,271],[840,686],[898,934],[93,590],[867,44],[731,381],[296,199],[385,936],[881,326],[10,506],[261,712],[824,257],[56,379],[618,637],[233,198],[107,844],[776,72],[532,610],[741,698],[145,881],[303,286],[481,42],[496,789],[594,214],[65,960],[215,787],[355,816],[390,200],[954,393],[770,957],[794,240],[907,511],[235,697],[563,973],[429,192],[401,988],[123,528],[37,487],[242,333],[624,703],[753,83],[705,772],[762,919],[279,27],[552,936],[35,556],[72,480],[438,829],[287,470],[429,960],[270,441],[262,782],[29,440],[588,505],[467,275],[705,245],[736,711],[621,686],[74,827],[894,216],[95,817],[577,677],[35,952],[927,11],[96,922],[667,446],[807,382],[745,257],[433,771],[914,922],[977,758],[803,369],[542,305],[47,99],[966,114],[724,277],[512,972],[396,36],[794,707],[617,320],[567,297],[127,822],[6,897],[816,959],[15,542],[562,969],[834,851],[120,982],[346,263],[713,82],[989,222],[566,450],[728,510],[129,509],[554,786],[367,313],[859,884],[94,122],[989,188],[600,175],[165,180],[709,748],[800,670],[677,778],[706,217],[764,479],[821,807],[177,144],[404,960],[256,124],[801,847],[461,814],[54,257],[146,989],[975,279],[229,306],[581,674],[544,726],[573,9],[228,837],[486,382],[93,502],[176,632],[308,156],[526,86],[887,644],[796,818],[543,472],[888,83],[336,529],[432,986],[372,604],[500,271],[403,442],[930,627],[639,174],[226,873],[417,436],[16,152],[472,826],[478,652],[696,499],[267,347],[823,936],[768,714],[212,478],[532,769],[666,955],[42,13],[904,966],[364,64],[636,440],[757,168],[483,705],[708,33],[735,16],[824,895],[845,796],[458,321],[331,794],[46,605],[449,1000],[639,774],[811,329],[521,913],[967,732],[299,728],[857,617],[765,825],[653,898],[267,732],[726,60],[830,274],[880,294],[435,901],[664,139],[833,676],[451,13],[220,921],[339,388],[47,836],[477,123],[516,78],[249,89],[670,13],[494,53],[469,569],[820,310],[550,485],[507,634],[498,322],[423,928],[42,552],[761,815],[874,131],[795,429],[843,370],[610,421],[2,792],[99,967],[221,731],[989,589],[330,450],[451,907],[35,26],[277,998],[974,895],[309,661],[451,847],[430,326],[900,638],[581,782],[199,642],[629,109],[340,5],[883,289],[118,876],[310,62],[963,835],[334,31],[675,534],[664,917],[6,320],[878,40],[764,574],[158,569],[465,581],[256,552],[210,152],[338,291],[370,962],[421,171],[755,935],[747,295],[455,824],[735,864],[948,858],[146,899],[275,18],[916,254],[793,358],[465,790],[741,660],[512,902],[312,799],[708,496],[702,189],[579,549],[969,896],[196,980],[346,733],[509,366],[232,47],[838,880],[326,12],[109,117],[751,253],[610,475],[321,276],[437,195],[499,285],[956,688],[260,201],[197,310],[581,427],[575,954],[314,763],[58,178],[298,639],[313,881],[906,590],[376,258],[553,343],[469,824],[533,441],[59,447],[917,391],[166,241],[548,269],[246,866],[801,989],[946,230],[89,298],[307,561],[801,100],[759,466],[7,287],[585,925],[660,536],[493,341],[595,524],[427,375],[613,404],[970,952],[25,48],[154,212],[918,489],[345,940],[913,589],[579,607],[697,133],[88,870],[972,318],[957,196],[919,66],[177,65],[561,691],[719,277],[100,431],[33,325],[783,884],[188,167],[648,411],[431,150],[109,313],[485,641],[364,155],[836,205],[409,956],[891,206],[111,221],[315,487],[385,17],[874,126],[495,730],[413,700],[842,317],[304,553],[663,444],[596,109],[890,239],[520,593],[41,585],[60,183],[90,548],[755,592],[88,702],[428,969],[67,83],[78,513],[639,623],[697,886],[90,69],[66,352],[881,543],[94,486],[474,352],[280,873],[453,461],[417,423],[415,844],[260,817],[318,20],[978,886],[949,644],[302,479],[606,809],[260,881],[179,144],[111,803],[169,233],[117,225],[748,836],[334,918],[280,454],[398,79],[111,989],[222,723],[12,709],[491,842],[438,452],[300,142],[967,477],[646,716],[107,498],[65,691],[317,337],[568,26],[804,104],[18,142],[597,612],[233,63],[693,804],[960,30],[168,571],[647,511],[10,638],[117,586],[90,251],[632,45],[718,180],[737,909],[821,398],[62,902],[324,271],[377,540],[242,481],[594,380],[519,158],[570,379],[811,439],[705,977],[344,289],[574,781],[500,972],[347,786],[762,874],[652,538],[323,577],[830,801],[413,330],[606,247],[120,977],[828,555],[533,802],[617,177],[552,410],[799,171],[608,737],[95,113],[765,386],[166,543],[143,122],[368,149],[498,411],[738,492],[396,834],[548,364],[503,123],[267,867],[722,869],[681,117],[440,66],[30,820],[319,934],[382,462],[495,313],[449,15],[153,387],[980,42],[520,71],[297,568],[373,247],[495,618],[267,70],[650,68],[545,351],[200,808],[811,784],[328,587],[687,349],[791,995],[757,461],[859,193],[307,458],[848,990],[533,603],[495,246],[878,61],[238,853],[194,420],[276,318],[253,884],[678,123],[896,554],[615,793],[795,837],[406,794],[460,343],[452,604],[744,521],[438,241],[542,208],[553,629],[657,285],[305,809],[101,528],[930,787],[809,45],[477,486],[911,923],[132,463],[194,604],[651,581],[194,94],[34,140],[1000,353],[919,785],[811,414],[260,605],[826,724],[78,627],[696,350],[780,712],[112,346],[775,853],[546,546],[623,96],[863,963],[195,574],[52,345],[74,924],[144,211],[601,741],[514,422],[433,723],[686,317],[501,407],[467,545],[310,867],[65,475],[317,790],[529,852],[773,435],[788,554],[40,643],[392,769],[19,80],[401,157],[698,817],[727,98],[615,421],[174,244],[508,447],[167,45],[217,24],[93,741],[758,744],[878,559],[306,851],[981,386],[291,812],[999,12],[153,659],[430,556],[623,965],[397,607],[768,148],[655,417],[634,290],[898,731],[477,141],[361,616],[163,490],[759,709],[441,148],[310,747],[40,282],[506,755],[464,970],[813,280],[742,53],[300,677],[304,753],[9,339],[838,711],[211,730],[433,392],[314,55],[469,585],[398,747],[810,118],[253,283],[466,687],[941,524],[392,178],[419,872],[923,300],[690,250],[657,619],[86,652],[962,317],[754,849],[937,134],[240,987],[141,195],[457,998],[604,454],[190,623],[25,477],[919,883],[456,619],[594,451],[813,819],[296,296],[251,498],[88,531],[675,728],[30,746],[496,319],[147,796],[541,525],[317,190],[114,671],[542,329],[925,993],[136,8],[266,684],[50,202],[486,657],[768,273],[970,287],[689,999],[289,108],[637,42],[118,431],[166,70],[398,863],[589,911],[838,385],[713,879],[106,741],[135,434],[783,260],[542,442],[864,686],[714,770],[254,411],[100,780],[309,575],[51,525],[346,512],[7,770],[611,829],[150,802],[598,470],[414,702],[838,771],[988,110],[502,446],[328,926],[386,748],[691,210],[98,490],[284,836],[824,564],[79,796],[917,645],[252,18],[279,210],[732,367],[330,456],[821,450],[311,607],[587,907],[901,709],[510,198],[941,260],[384,208],[625,392],[9,216],[283,568],[306,149],[409,239],[666,959],[952,498],[592,454],[135,191],[890,689],[351,401],[789,448],[682,626],[491,791],[872,361],[978,374],[688,805],[976,302],[805,992],[785,316],[817,889],[761,882],[657,501],[263,303],[41,407],[90,571],[97,370],[118,23],[240,901],[627,558],[494,982],[289,95],[433,812],[578,355],[20,423],[341,419],[244,514],[957,369],[490,97],[176,440],[828,283],[459,993],[411,832],[973,59],[286,246],[156,470],[914,628],[11,743],[870,401],[162,224],[850,849],[725,371],[558,48],[670,441],[239,961],[807,802],[619,307],[972,19],[499,75],[563,177],[829,660],[185,938],[26,768],[878,247],[550,382],[56,516],[814,690],[157,952],[974,1000],[243,563],[853,915],[919,689],[76,726],[585,766],[14,216],[928,998],[260,485],[419,361],[307,331],[604,263],[188,808],[451,534],[35,241],[719,226],[853,165],[224,812],[959,557],[340,322],[597,245],[661,95],[435,332],[371,865],[229,864],[201,72],[508,391],[219,173],[697,572],[706,65],[79,810],[438,542],[789,410],[543,76],[743,780],[192,951],[741,103],[559,426],[372,263],[7,953],[30,337],[433,309],[469,828],[389,128],[379,589],[981,986],[222,979],[122,991],[47,903],[915,286],[962,275],[574,314],[112,175],[217,569],[424,340],[126,773],[535,205],[86,692],[288,675],[791,818],[681,711],[910,213],[645,307],[379,522],[86,826],[969,404],[82,293],[879,730],[364,220],[257,909],[700,918],[117,131],[851,898],[808,644],[371,580],[330,673],[225,594],[74,81],[487,611],[575,250],[499,537],[993,265],[654,524],[114,264],[189,28],[121,564],[695,228],[483,661],[234,557],[926,682],[821,798],[853,300],[923,557],[487,671],[370,837],[977,320],[311,468],[153,991],[562,410],[62,142],[439,785],[159,281],[92,219],[877,766],[185,122],[681,411],[106,704],[912,523],[176,980],[803,590],[702,920],[706,947],[491,421],[173,660],[430,411],[206,719],[568,867],[149,667],[819,92],[821,225],[749,60],[714,875],[142,67],[166,122],[201,685],[980,257],[375,816],[374,694],[661,750],[573,314],[565,686],[126,743],[994,678],[532,509],[479,791],[605,88],[910,448],[171,850],[518,419],[363,44],[770,748],[301,956],[187,990],[172,788],[819,353],[730,501],[544,980],[64,887],[136,987],[544,589],[615,117],[76,818],[333,429],[45,460],[415,613],[12,826],[552,744],[713,942],[753,837],[974,669],[955,557],[752,893],[250,967],[473,892],[62,743],[604,990],[287,426],[21,794],[23,680],[743,428],[299,776],[274,296],[840,771],[750,233],[792,131],[945,650],[845,964],[911,734],[579,515],[930,193],[24,678],[641,343],[415,504],[502,349],[24,682],[986,30],[154,394],[497,346],[706,489],[301,365],[636,723],[701,212],[670,259],[666,947],[137,47],[721,114],[640,133],[832,101],[579,715],[667,996],[950,887],[799,280],[441,430],[15,682],[308,963],[881,598],[367,431],[106,409],[835,558],[568,660],[606,576],[382,256],[992,68],[205,777],[962,650],[86,179],[95,78],[182,25],[769,602],[177,133],[240,177],[524,818],[780,405],[60,580],[472,445],[285,718],[922,876],[133,732],[446,652],[276,77],[528,894],[265,747],[221,313],[526,2],[899,598],[964,833],[746,742],[425,900],[519,622],[463,440],[5,769],[833,76],[119,887],[857,987],[480,553],[568,252],[57,810],[289,135],[731,795],[977,92],[591,867],[527,296],[190,365],[334,885],[56,350],[33,470],[17,743],[170,965],[366,924],[44,307],[143,344],[682,950],[911,603],[841,175],[285,987],[977,729],[378,625],[760,925],[642,647],[366,920],[648,471],[460,167],[518,375],[212,594],[785,530],[266,980],[206,391],[551,595],[611,332],[184,333],[928,480],[804,25],[977,524],[434,922],[968,338],[716,415],[52,535],[674,963],[795,253],[155,561],[974,604],[433,809],[730,904],[568,814],[918,551],[760,896],[336,763],[838,211],[249,118],[790,754],[612,437],[70,281],[133,39],[297,609],[751,364],[60,14],[810,713],[568,97],[254,866],[701,262],[570,185],[504,929],[436,973],[557,789],[633,312],[146,76],[249,736],[236,991],[94,146],[45,484],[728,33],[672,898],[159,546],[113,550],[728,596],[702,352],[350,941],[451,141],[931,937],[786,188],[795,771],[125,501],[990,110],[355,510],[666,743],[567,572],[133,772],[480,144],[980,362],[999,356],[392,916],[698,124],[106,981],[934,147],[4,876],[483,188],[864,895],[834,813],[99,431],[909,430],[480,305],[830,594],[152,989],[301,286],[830,32],[8,873],[717,706],[190,784],[159,703],[531,373],[645,860],[975,792],[696,737],[191,895],[472,922],[784,88],[646,509],[365,647],[564,90],[925,726],[840,169],[161,489],[465,5],[991,595],[888,830],[49,565],[865,630],[262,383],[55,427],[852,682],[703,874],[850,695],[664,943],[423,273],[869,181],[867,126],[372,581],[442,813],[24,921],[524,528],[168,832],[368,508],[458,221],[583,117],[694,791],[286,639],[38,561],[731,929],[540,988],[634,364],[74,145],[772,409],[90,281],[100,814],[517,569],[469,726],[851,418],[987,131],[413,605],[344,919],[141,532],[543,393],[998,6],[823,260],[692,709],[302,881],[204,634],[246,54],[296,451],[52,678],[716,785],[123,988],[531,8],[770,720],[667,20],[379,899],[295,103],[136,466],[246,60],[587,73],[647,964],[778,141],[622,756],[895,288],[868,528],[842,818],[671,45],[418,637],[71,907],[104,7],[747,282],[769,452],[402,609],[307,651],[594,540],[486,699],[115,494],[117,490],[670,821],[640,80],[523,210],[627,913],[390,878],[605,191],[581,206],[429,778],[634,850],[993,174],[736,892],[253,889],[449,16],[187,853],[243,569],[722,701],[816,595],[647,364],[825,735],[953,929],[653,180],[217,838],[640,520],[198,688],[17,362],[722,336],[463,37],[719,830],[22,553],[628,46],[366,39],[367,763],[54,694],[273,168],[483,251],[691,716],[306,144],[671,564],[861,609],[326,937],[503,686],[101,327],[657,243],[684,436],[695,806],[945,562],[256,486],[882,948],[298,827],[336,868],[535,397],[597,699],[955,942],[988,415],[505,729],[106,211],[171,618],[233,475],[275,486],[85,349],[925,78],[638,880],[600,861],[181,725],[470,637],[639,101],[489,511],[424,677],[651,210],[200,317],[42,567],[172,63],[350,716],[697,653],[652,633],[885,323],[575,911],[456,781],[932,24],[556,935],[399,933],[367,542],[807,597],[296,548],[479,311],[242,698],[54,853],[27,433],[37,548],[845,958],[198,407],[214,91],[188,284],[990,998],[392,595],[466,729],[450,467],[319,567],[402,311],[502,371],[277,690],[461,200],[815,333],[594,701],[368,156],[759,219],[555,38],[125,771],[774,887],[849,466],[982,968],[67,147],[951,897],[650,493],[996,278],[266,783],[522,685],[60,98],[404,828],[908,425],[795,307],[149,611],[440,644],[114,342],[461,172],[802,889],[489,11],[123,182],[426,273],[125,446],[118,376],[24,270],[575,116],[953,722],[559,681],[33,837],[988,982],[371,643],[519,410],[373,831],[188,325],[102,843],[435,969],[471,722],[831,720],[231,689],[888,598],[2,622],[848,439],[455,331],[33,598],[340,766],[881,32],[657,607],[524,675],[185,14],[175,732],[91,436],[994,276],[978,707],[161,642],[170,688],[526,16],[12,545],[792,50],[386,530],[396,493],[980,680],[956,412],[72,599],[810,966],[64,242],[440,830],[849,426],[950,879],[514,879],[624,332],[867,612],[268,901],[840,207],[113,626],[393,375],[877,659],[665,746],[953,34],[502,80],[54,796],[898,529],[991,865],[900,32],[521,731],[633,548],[88,920],[69,996],[738,186],[379,535],[330,490],[485,430],[446,150],[568,952],[160,794],[306,498],[767,548],[712,903],[89,122],[570,612],[572,563],[610,461],[683,422],[997,198],[320,551],[364,405],[275,547],[452,502],[236,594],[61,613],[370,351],[293,500],[714,690],[605,809],[358,667],[228,455],[610,727],[23,368],[22,124],[224,372],[666,495],[149,280],[673,339],[133,948],[730,485],[264,733],[800,834],[707,269],[451,628],[596,63],[167,530],[930,364],[907,356],[841,213],[558,747],[539,290],[312,364],[331,437],[208,737],[330,334],[192,62],[164,901],[159,489],[843,531],[375,331],[692,541],[700,90],[114,479],[93,255],[264,211],[118,977],[480,157],[738,595],[398,618],[102,539],[49,290],[955,559],[26,302],[938,816],[735,468],[207,993],[922,590],[817,5],[733,935],[950,413],[644,792],[717,444],[413,224],[397,789],[591,3],[387,518],[70,794],[861,859],[427,935],[130,606],[951,225],[772,349],[3,888],[327,497],[984,456],[500,465],[31,126],[92,567],[335,507],[270,618],[464,669],[778,104],[364,299],[163,586],[570,892],[526,890],[667,226],[207,58],[978,637],[602,557],[529,99],[597,458],[929,798],[817,635],[587,361],[465,747],[894,777],[769,564],[24,610],[205,341],[995,234],[241,259],[594,814],[390,959],[129,634],[621,967],[477,275],[705,964],[625,709],[69,216],[710,520],[1000,41],[19,98],[998,577],[48,437],[40,594],[94,312],[425,718],[878,981],[248,64],[154,139],[34,312],[628,710],[904,176],[633,587],[349,534],[27,238],[274,199],[198,593],[674,505],[508,44],[906,684],[228,368],[211,640],[127,174],[865,955],[375,326],[648,812],[241,133],[770,591],[653,513],[555,555],[873,588],[300,510],[982,351],[93,360],[165,818],[364,608],[530,211],[857,971],[23,690],[618,405],[238,411],[643,785],[731,159],[979,709],[263,314],[135,431],[79,796],[592,647],[377,487],[342,300],[556,866],[830,780],[48,10],[932,146],[249,156],[565,161],[875,738],[257,802],[168,275],[561,430],[669,285],[190,833],[47,626],[629,109],[268,279],[404,367],[230,498],[765,605],[744,78],[609,826],[782,90],[319,973],[508,69],[535,949],[700,53],[167,370],[654,201],[655,832],[995,862],[592,2],[598,461],[134,27],[856,929],[967,752],[752,824],[311,216],[91,674],[170,601],[548,274],[452,962],[243,957],[52,337],[924,32],[141,283],[451,288],[64,181],[847,404],[526,732],[462,354],[602,774],[901,648],[286,918],[44,192],[984,652],[589,9],[725,295],[327,309],[3,93],[936,537],[966,679],[406,913],[410,332],[598,769],[273,64],[940,728],[394,829],[588,78],[772,693],[137,72],[856,558],[670,729],[798,604],[498,387],[503,491],[697,362],[658,146],[558,681],[118,596],[887,550],[138,833],[633,168],[646,516],[456,934],[331,173],[14,191],[768,142],[388,244],[592,487],[663,260],[66,486],[740,955],[135,747],[861,695],[702,232],[126,70],[737,539],[11,110],[868,490],[695,955],[335,888],[612,688],[127,835],[627,708],[453,689],[862,343],[848,867],[850,135],[114,364],[412,459],[552,231],[614,474],[450,963],[354,928],[703,701],[168,766],[57,411],[741,169],[486,648],[691,149],[817,725],[583,111],[38,210],[19,486],[53,679],[216,879],[157,608],[190,690],[229,889],[905,791],[722,235],[993,929],[715,370],[643,327],[529,921],[120,596],[425,749],[487,239],[700,618],[25,124],[425,414],[935,519],[169,4],[501,241],[829,191],[892,801],[376,275],[102,177],[866,470],[429,186],[199,121],[440,790],[683,660],[184,458],[762,260],[830,709],[914,463],[133,646],[169,741],[704,906],[383,490],[280,581],[213,594],[573,872],[143,656],[99,334],[472,775],[747,305],[19,178],[225,282],[240,67],[625,429],[825,934],[810,379],[765,246],[93,280],[759,744],[959,894],[460,256],[181,649],[467,48],[820,675],[27,262],[490,207],[614,890],[72,603],[221,243],[265,272],[7,233],[10,838],[822,303],[954,371],[702,791],[987,349],[554,40],[52,283],[265,51],[655,589],[498,66],[790,128],[700,706],[155,505],[137,861],[870,831],[6,104],[335,131],[850,689],[135,840],[646,383],[270,785],[202,372],[886,968],[543,89],[708,894],[837,980],[125,943],[104,902],[676,842],[537,363],[553,554],[309,751],[689,227],[311,971],[883,744],[181,202],[420,755],[663,907],[809,927],[237,980],[54,607],[286,984],[514,336],[809,842],[802,238],[187,576],[105,700],[594,736],[549,286],[741,30],[872,767],[467,400],[582,428],[141,32],[701,959],[180,114],[860,663],[756,231],[830,695],[59,262],[174,270],[788,695],[365,674],[302,50],[678,176],[853,325],[234,24],[680,906],[944,446],[674,64],[392,511],[321,594],[55,722],[126,697],[199,963],[182,483],[306,308],[995,674],[85,263],[667,34],[807,928],[679,548],[308,964],[535,768],[669,659],[209,343],[994,618],[890,604],[931,750],[895,477],[182,221],[746,770],[396,572],[122,255],[884,456],[123,24],[420,209],[91,608],[171,353],[657,634],[800,642],[650,332],[304,459],[907,509],[364,888],[295,767],[675,235],[743,215],[809,685],[968,409],[98,382],[575,120],[990,586],[492,165],[302,249],[561,323],[462,890],[835,96],[12,773],[255,25],[588,795],[944,215],[34,608],[742,205],[943,313],[332,230],[308,425],[707,230],[767,25],[921,983],[922,176],[743,413],[993,417],[472,657],[29,52],[188,106],[418,365],[513,540],[889,867],[209,17],[447,758],[353,246],[31,696],[374,947],[763,42],[813,252],[24,406],[879,13],[949,435],[370,510],[355,335],[847,614],[306,701],[874,156],[941,97],[523,31],[901,877],[483,784],[329,777],[310,723],[205,88],[985,722],[74,103],[143,183],[659,391],[187,738],[353,641],[120,277],[699,676],[299,443],[182,395],[292,369],[319,291],[296,212],[177,528],[975,682],[145,727],[404,255],[473,323],[808,508],[303,822],[379,360],[394,278],[338,277],[805,837],[608,212],[673,937],[562,316],[308,940],[537,605],[3,674],[436,924],[396,983],[727,485],[301,784],[534,821],[134,630],[781,416],[40,163],[684,173],[25,445],[609,509],[960,437],[295,581],[88,364],[82,277],[461,726],[324,305],[679,75],[291,237],[447,82],[207,189],[993,695],[3,673],[519,5],[978,958],[727,637],[299,252],[492,748],[99,622],[422,249],[859,591],[325,423],[132,353],[327,951],[846,184],[598,67],[110,67],[363,949],[805,116],[668,203],[159,165],[39,759],[204,919],[680,604],[413,163],[115,879],[406,903],[393,435],[802,401],[668,46],[964,799],[773,444],[814,169],[934,960],[337,662],[443,562],[57,523],[202,318],[212,68],[325,254],[361,845],[600,748],[812,43],[920,934],[529,659],[316,426],[108,648],[735,761],[213,769],[701,831],[579,458],[837,357],[441,32],[775,981],[813,580],[198,361],[567,174],[380,933],[288,296],[302,903],[13,78],[543,907],[151,420],[959,17],[585,964],[880,885],[308,811],[362,65],[492,947],[58,560],[636,859],[259,307],[664,632],[272,349],[545,370],[980,418],[99,116],[620,939],[505,566],[788,308],[870,874],[917,239],[144,963],[909,365],[783,135],[861,823],[799,996],[779,785],[314,711],[112,359],[662,140],[836,344],[619,275],[936,999],[723,159],[71,700],[573,178],[118,372],[477,441],[113,336],[741,176],[59,660],[385,371],[370,468],[789,934],[44,528],[472,819],[249,650],[529,272],[944,760],[993,571],[667,871],[516,489],[230,797],[348,972],[780,219],[76,364],[71,625],[573,450],[888,778],[259,327],[276,774],[166,26],[764,643],[646,726],[635,782],[236,370],[576,689],[612,421],[168,815],[284,129],[644,511],[967,503],[857,230],[554,68],[928,846],[587,155],[357,545],[367,605],[611,107],[553,701],[729,975],[302,523],[903,612],[946,51],[231,259],[484,651],[1,370],[154,557],[612,182],[804,518],[581,535],[824,382],[754,122],[310,346],[209,549],[569,15],[401,9],[32,390],[279,805],[235,974],[119,549],[599,426],[17,468],[397,149],[491,707],[432,419],[989,506],[238,722],[59,807],[105,828],[16,91],[301,595],[973,181],[549,153],[72,388],[276,391],[494,674],[219,929],[204,928],[412,762],[591,729],[921,290],[397,276],[349,678],[955,785],[482,919],[513,513],[51,121],[349,617],[913,283],[54,137],[704,214],[849,758],[617,972],[654,973],[284,61],[557,160],[182,228],[834,357],[785,631],[969,624],[543,314],[829,2],[141,100],[953,852],[750,797],[63,841],[95,944],[683,350],[383,904],[839,155],[608,709],[736,946],[828,124],[323,959],[554,905],[454,975],[818,887],[568,222],[679,222],[496,761],[413,452],[422,380],[881,121],[985,35],[704,831],[816,913],[266,985],[603,644],[78,515],[659,879],[886,474],[887,888],[360,420],[310,993],[288,457],[511,575],[649,591],[592,502],[82,538],[490,425],[216,878],[143,755],[404,57],[84,377],[293,903],[422,790],[910,38],[737,426],[830,113],[369,580],[39,594],[763,181],[664,871],[897,3],[170,791],[627,441],[51,680],[418,635],[5,488],[227,145],[299,320],[291,162],[327,340],[570,491],[173,893],[179,209],[201,672],[447,958],[58,710],[716,576],[800,955],[502,176],[860,632],[756,341],[474,509],[142,545],[485,329],[277,867],[608,530],[45,608],[120,74],[890,822],[236,985],[621,882],[276,877],[746,51],[774,754],[627,888],[750,203],[890,25],[219,455],[770,724],[648,463],[391,892],[366,669],[806,216],[815,117],[55,532],[42,311],[620,849],[687,513],[20,400],[610,155],[418,686],[248,101],[977,180],[733,616],[843,253],[379,661],[544,388],[989,781],[125,142],[795,380],[152,338],[453,254],[798,300],[164,812],[587,361],[373,361],[86,168],[358,198],[367,350],[740,317],[917,963],[357,472],[80,850],[128,854],[120,759],[848,838],[128,430],[689,578],[970,139],[591,245],[502,353],[126,631],[572,782],[855,596],[786,614],[598,817],[914,224],[825,797],[232,589],[891,295],[502,327],[562,289],[512,359],[845,644],[252,639],[774,921],[213,444],[404,11],[619,188],[120,378],[313,917],[681,207],[550,30],[687,111],[226,189],[248,630],[549,502],[649,833],[958,552],[711,758],[369,963],[521,263],[181,670],[741,165],[315,343],[637,528],[474,454],[22,112],[21,9],[956,583],[544,779],[302,753],[739,562],[424,801],[84,732],[109,951],[510,821],[646,391],[310,625],[799,588],[975,358],[205,345],[948,398],[490,288],[656,620],[672,918],[493,439],[875,362],[559,598],[132,392],[800,318],[457,252],[649,173],[939,761],[616,140],[561,583],[975,579],[652,867],[970,764],[181,858],[996,752],[774,802],[997,190],[456,126],[786,553],[755,677],[585,767],[773,160],[340,472],[473,339],[552,130],[666,600],[505,413],[384,44],[423,676],[714,754],[13,900],[388,703],[481,176],[562,450],[122,564],[191,850],[871,387],[653,995],[577,652],[356,540],[913,496],[271,564],[935,353],[670,751],[124,948],[374,765],[814,253],[495,484],[467,442],[362,698],[132,939],[863,58],[149,471],[384,299],[743,450],[554,650],[160,321],[529,251],[433,363],[665,174],[333,772],[436,78],[370,795],[293,191],[642,411],[845,982],[932,218],[211,110],[266,729],[874,817],[21,173],[404,741],[451,281],[104,242],[393,143],[370,237],[116,373],[875,654],[329,143],[244,301],[864,648],[278,455],[326,823],[904,661],[187,100],[913,932],[214,4],[776,967],[566,178],[71,350],[81,195],[142,971],[192,933],[214,543],[113,338],[244,315],[988,233],[723,270],[128,394],[90,966],[410,46],[277,612],[396,436],[325,646],[119,75],[268,958],[265,524],[986,65],[439,771],[351,131],[758,245],[867,50],[258,343],[491,374],[164,913],[610,596],[194,876],[611,555],[882,242],[999,588],[267,88],[938,897],[89,462],[324,879],[23,177],[842,774],[575,622],[525,537],[574,524],[105,751],[817,438],[861,462],[992,279],[537,673],[783,496],[417,220],[150,957],[719,411],[277,962],[985,203],[103,938],[812,285],[25,648],[605,166],[715,694],[655,200],[394,929],[614,42],[718,479],[527,9],[422,947],[335,835],[668,639],[971,281],[113,228],[486,905],[498,13],[167,237],[321,67],[786,723],[827,817],[614,290],[661,730],[877,522],[521,365],[947,25],[152,5],[163,683],[327,148],[110,828],[893,26],[783,85],[82,675],[242,116],[529,920],[702,872],[410,836],[728,418],[614,837],[858,790],[223,972],[782,236],[299,63],[485,876],[315,479],[371,40],[727,976],[480,993],[511,394],[927,960],[675,725],[861,754],[260,890],[645,864],[670,617],[328,769],[355,87],[689,485],[540,771],[215,126],[256,291],[393,299],[174,328],[605,20],[146,53],[630,700],[684,773],[108,615],[313,981],[803,524],[546,909],[153,726],[444,413],[503,565],[507,948],[938,193],[929,492],[742,222],[187,246],[938,730],[330,985],[254,735],[459,933],[281,225],[299,385],[427,442],[877,450],[109,440],[363,485],[151,844],[878,591],[813,564],[130,140],[758,222],[887,253],[222,769],[430,121],[200,262],[188,483],[981,45],[118,8],[50,454],[132,916],[552,790],[592,908],[687,264],[806,536],[651,844],[442,760],[188,462],[628,561],[752,590],[89,631],[788,120],[816,673],[151,354],[368,786],[835,275],[217,443],[890,523],[2,253],[913,142],[639,715],[364,915],[58,107],[744,572],[32,679],[152,875],[785,407],[31,396],[39,663],[699,179],[357,835],[169,817],[762,628],[896,549],[358,292],[635,561],[21,687],[666,961],[856,921],[932,559],[419,297],[683,73],[550,620],[356,837],[972,633],[349,520],[484,763],[362,779],[622,146],[912,389],[256,308],[349,49],[837,858],[298,903],[21,291],[960,782],[44,328],[806,224],[667,991],[490,371],[709,757],[571,313],[915,927],[326,715],[112,635],[961,148],[88,763],[272,327],[351,237],[497,180],[638,996],[535,532],[167,902],[536,874],[338,551],[460,745],[548,370],[841,823],[929,130],[997,49],[186,944],[578,726],[753,878],[521,604],[587,892],[93,185],[362,406],[216,407],[442,689],[795,844],[33,550],[217,258],[860,324],[966,773],[166,281],[904,377],[281,636],[369,911],[995,824],[588,120],[583,784],[941,377],[793,486],[336,250],[925,256],[980,68],[851,777],[184,98],[882,632],[10,867],[80,12],[339,61],[880,489],[952,160],[843,121],[253,242],[926,334],[415,140],[629,848],[929,911],[168,199],[813,852],[286,298],[945,8],[735,247],[388,196],[62,823],[88,300],[169,764],[735,157],[97,941],[541,468],[274,177],[362,18],[8,230],[5,7],[991,221],[968,288],[370,434],[72,764],[695,394],[4,895],[64,283],[238,851],[584,317],[747,71],[742,62],[215,350],[536,387],[238,543],[3,7],[954,879],[634,176],[449,473],[588,511],[373,809],[567,513],[203,291],[591,525],[188,672],[112,525],[835,392],[251,63],[627,493],[948,175],[691,28],[595,149],[174,25],[811,875],[851,253],[422,409],[561,644],[821,832],[331,668],[716,955],[352,835],[596,603],[290,771],[322,609],[857,792],[454,161],[963,273],[674,503],[592,13],[65,888],[827,674],[810,228],[964,733],[925,973],[182,254],[973,505],[371,129],[718,571],[801,552],[669,952],[510,766],[438,688],[688,979],[366,926],[17,339],[210,531],[726,873],[200,641],[118,105],[244,172],[587,125],[324,249],[655,921],[874,484],[720,104],[412,732],[786,347],[724,989],[622,131],[622,706],[773,594],[928,209],[584,829],[639,224],[288,57],[738,146],[984,558],[501,624],[435,259],[357,101],[719,910],[57,619],[24,282],[823,447],[95,881],[169,324],[149,423],[951,151],[491,276],[721,22],[320,372],[722,386],[957,689],[978,687],[560,973],[110,169],[757,998],[21,694],[671,6],[431,254],[560,294],[861,466],[469,805],[186,547],[935,832],[924,592],[169,688],[721,144],[504,773],[129,468],[558,452],[85,479],[814,616],[657,865],[650,276],[403,341],[86,149],[26,417],[149,383],[594,842],[766,994],[151,292],[36,127],[773,240],[579,301],[227,657],[107,550],[530,712],[763,334],[806,251],[243,569],[232,865],[658,594],[4,196],[189,312],[808,939],[577,698],[17,312],[231,139],[128,375],[510,833],[935,338],[679,755],[190,570],[785,546],[725,893],[260,715],[569,595],[771,588],[285,438],[639,509],[474,778],[985,537],[519,768],[164,597],[355,14],[440,771],[348,127],[205,785],[724,617],[865,545],[160,904],[934,91],[318,761],[587,878],[500,734],[195,889],[773,556],[239,105],[747,465],[635,645],[33,946],[311,851],[138,609],[370,386],[334,607],[199,904],[276,719],[829,504],[83,608],[375,623],[557,754],[110,750],[2,195],[424,438],[216,606],[359,527],[897,62],[73,682],[781,19],[846,690],[877,145],[59,171],[914,213],[348,887],[987,612],[315,417],[386,400],[826,854],[564,797],[249,287],[689,95],[465,547],[674,86],[818,110],[105,191],[88,127],[623,210],[1000,726],[177,448],[448,167],[482,168],[333,630],[338,137],[505,84],[462,787],[717,389],[814,263],[668,481],[567,27],[380,215],[849,608],[815,445],[19,178],[754,158],[705,394],[14,620],[171,775],[988,825],[105,415],[146,837],[205,165],[963,642],[701,256],[187,62],[304,421],[69,137],[853,454],[152,549],[497,415],[41,748],[967,274],[590,996],[854,875],[600,746],[650,807],[863,553],[132,31],[641,560],[153,260],[947,933],[490,354],[477,405],[132,191],[384,919],[756,340],[955,476],[845,967],[92,597],[325,899],[340,910],[435,702],[238,856],[676,661],[708,301],[372,66],[358,654],[404,191],[931,936],[413,230],[554,995],[856,559],[1000,651],[241,255],[593,831],[836,771],[736,776],[369,424],[817,796],[749,83],[581,238],[379,447],[40,158],[377,328],[818,436],[572,85],[241,950],[204,180],[180,94],[709,305],[797,785],[387,420],[381,37],[589,460],[850,128],[421,291],[692,881],[706,808],[750,583],[120,504],[956,173],[73,620],[459,385],[26,260],[244,401],[938,800],[225,75],[688,209],[828,608],[986,475],[256,244],[79,475],[282,108],[314,219],[165,418],[526,412],[373,373],[173,545],[423,851],[195,322],[482,410],[844,497],[202,684],[721,390],[162,627],[718,864],[731,327],[484,196],[75,711],[213,947],[874,287],[402,58],[755,208],[234,609],[383,564],[38,185],[975,821],[312,444],[875,886],[493,995],[873,365],[702,999],[985,428],[339,234],[13,88],[418,930],[246,153],[455,777],[171,576],[37,440],[968,884],[212,496],[433,959],[678,264],[403,399],[29,776],[700,241],[822,790],[903,352],[433,401],[110,549],[965,142],[209,901],[38,169],[410,21],[117,64],[3,348],[228,942],[422,829],[210,968],[946,39],[281,862],[521,988],[550,838],[833,404],[375,414],[755,846],[938,766],[824,456],[287,922],[350,99],[964,417],[170,957],[330,830],[737,605],[922,653],[881,823],[95,455],[173,123],[874,712],[148,474],[332,11],[745,681],[138,547],[744,917],[872,219],[422,989],[865,554],[285,918],[981,982],[731,371],[545,77],[989,737],[50,373],[667,618],[137,79],[795,703],[227,60],[43,522],[162,878],[811,162],[447,110],[530,886],[369,472],[726,467],[945,168],[336,510],[277,938],[315,603],[722,295],[350,983],[341,682],[874,175],[515,810],[422,750],[226,503],[683,45],[656,680],[504,33],[416,264],[855,137],[584,810],[943,999],[564,123],[210,871],[384,75],[896,266],[648,647],[564,856],[866,138],[478,646],[125,393],[721,491],[537,612],[128,415],[962,206],[858,448],[281,614],[256,349],[396,391],[824,45],[531,788],[893,447],[945,168],[916,667],[428,504],[333,287],[878,213],[982,120],[895,529],[888,191],[226,961],[530,420],[856,366],[606,215],[982,740],[85,366],[536,522],[705,101],[690,22],[990,664],[704,279],[907,595],[592,843],[391,527],[69,938],[95,994],[574,661],[164,259],[405,113],[371,508],[393,421],[635,445],[439,889],[441,248],[586,943],[302,245],[352,691],[193,135],[744,260],[57,731],[520,873],[605,337],[715,513],[50,182],[348,759],[655,351],[450,120],[42,600],[895,362],[517,841],[890,66],[969,738],[197,940],[15,487],[724,843],[882,694],[678,747],[501,957],[682,600],[979,768],[492,928],[491,641],[704,838],[189,521],[54,319],[528,342],[317,437],[44,796],[496,957],[28,904],[673,607],[601,920],[307,922],[604,820],[723,341],[590,36],[330,897],[322,594],[437,418],[68,378],[722,705],[377,924],[540,83],[724,53],[68,701],[305,761],[440,223],[316,924],[913,982],[932,373],[522,803],[475,128],[859,705],[410,845],[988,426],[49,830],[606,276],[889,811],[794,345],[785,195],[158,395],[395,809],[494,660],[278,763],[353,891],[129,47],[124,269],[969,831],[310,929],[328,405],[212,841],[442,1000],[37,88],[34,71],[493,166],[35,809],[781,577],[148,418],[254,80],[170,545],[814,973],[701,351],[267,641],[198,164],[690,113],[531,423],[154,72],[84,864],[696,725],[97,263],[177,120],[933,713],[723,818],[253,867],[44,541],[531,204],[193,828],[412,715],[342,208],[151,105],[289,125],[136,948],[205,730],[956,606],[270,288],[867,344],[596,153],[299,247],[983,154],[762,236],[514,774],[138,347],[930,10],[115,94],[568,996],[306,386],[746,709],[238,356],[600,730],[389,491],[472,957],[229,205],[139,603],[306,7],[499,971],[947,912],[149,218],[352,798],[529,512],[923,222],[329,407],[61,396],[471,42],[845,400],[437,918],[806,275],[580,288],[892,315],[151,865],[372,656],[967,818],[957,287],[48,184],[942,848],[434,6],[236,177],[151,989],[138,88],[852,924],[408,943],[304,869],[677,770],[601,26],[74,2],[819,103],[193,337],[50,547],[20,329],[841,644],[745,7],[39,773],[915,612],[743,13],[97,380],[9,125],[203,705],[300,62],[657,305],[668,551],[674,982],[402,503],[569,887],[22,148],[821,975],[578,57],[280,36],[309,496],[125,17],[64,207],[809,406],[61,702],[589,152],[369,48],[516,918],[736,577],[165,190],[517,886],[185,656],[742,523],[394,410],[356,880],[60,563],[703,134],[769,188],[981,477],[638,14],[391,847],[698,348],[335,338],[427,528],[257,525],[721,976],[121,378],[41,451],[332,200],[263,211],[866,758],[468,745],[198,378],[661,872],[546,347],[83,413],[578,399],[500,20],[187,226],[161,660],[136,65],[949,30],[524,979],[662,47],[123,889],[7,850],[719,878],[975,695],[680,70],[306,740],[140,66],[873,454],[30,484],[662,409],[895,362],[671,58],[368,247],[82,597],[11,367],[478,393],[236,131],[519,960],[849,388],[167,48],[218,854],[328,126],[56,921],[199,694],[340,269],[272,364],[951,543],[815,320],[144,250],[244,766],[725,840],[872,775],[897,591],[796,247],[460,548],[668,24],[660,230],[557,569],[225,709],[574,456],[883,628],[743,557],[42,889],[800,82],[550,21],[327,734],[860,328],[986,340],[892,190],[825,37],[712,320],[258,762],[90,780],[635,407],[254,468],[96,883],[338,832],[414,519],[765,705],[159,195],[633,299],[118,118],[425,994],[949,551],[536,350],[594,809],[406,754],[899,307],[538,420],[618,833],[712,969],[855,64],[239,573],[438,501],[565,567],[284,982],[607,268],[716,683],[448,206],[330,191],[812,201],[199,111],[285,937],[75,291],[445,284],[121,788],[81,726],[342,818],[477,763],[428,823],[452,734],[42,505],[196,398],[510,755],[932,543],[462,646],[188,862],[225,970],[326,890],[421,569],[359,481],[940,293],[119,969],[924,568],[134,126],[254,804],[94,842],[968,536],[399,605],[647,375],[786,167],[122,833],[725,809],[155,617],[315,771],[389,660],[993,567],[693,462],[900,226],[599,250],[80,226],[756,260],[930,339],[324,706],[512,770],[869,720],[461,510],[251,551],[580,370],[43,534],[179,950],[681,688],[523,127],[716,823],[382,764],[922,499],[42,576],[360,730],[310,489],[230,839],[750,562],[662,231],[741,170],[6,375],[239,105],[411,151],[325,291],[912,450],[240,209],[51,58],[491,795],[300,933],[136,313],[472,171],[17,942],[300,666],[844,533],[11,980],[1,965],[843,341],[737,907],[757,586],[964,434],[747,982],[811,866],[443,499],[342,639],[231,223],[869,832],[716,761],[620,866],[720,447],[221,280],[26,922],[773,358],[261,789],[194,739],[565,736],[873,239],[312,621],[627,608],[237,430],[665,489],[359,358],[413,529],[857,222],[552,976],[234,989],[722,679],[491,498],[178,734],[993,21],[477,457],[372,548],[755,311],[956,974],[712,213],[770,53],[420,995],[837,211],[261,811],[688,622],[461,669],[792,711],[822,866],[986,289],[244,107],[388,732],[164,878],[498,494],[965,472],[330,491],[506,287],[49,866],[780,231],[570,987],[61,56],[64,722],[5,430],[801,5],[977,855],[537,368],[683,671],[131,338],[268,662],[449,312],[892,29],[859,660],[644,814],[807,947],[288,22],[319,474],[177,162],[517,247],[232,129],[740,65],[921,421],[914,150],[615,592],[500,565],[137,413],[447,869],[621,65],[156,185],[332,75],[386,702],[920,351],[642,942],[263,682],[814,678],[112,44],[281,55],[861,617],[382,422],[21,187],[998,424],[688,337],[835,174],[969,913],[56,985],[631,5],[872,672],[675,812],[225,632],[1,320],[338,123],[910,485],[56,529],[481,525],[619,519],[573,264],[318,583],[311,555],[887,559],[536,168],[520,775],[45,520],[971,887],[29,50],[785,437],[480,234],[240,38],[441,132],[425,177],[584,361],[959,446],[491,657],[664,977],[570,420],[361,246],[680,728],[976,138],[190,426],[614,688],[423,503],[538,64],[801,241],[434,150],[744,441],[805,258],[788,443],[119,142],[639,26],[531,377],[466,726],[71,135],[694,535],[483,129],[24,590],[761,250],[332,114],[299,886],[994,912],[376,740],[56,610],[648,764],[597,722],[193,390],[11,251],[546,917],[666,861],[62,956],[108,729],[251,7],[91,369],[471,760],[275,125],[531,636],[800,783],[902,751],[177,290],[226,150],[578,987],[569,854],[461,13],[375,214],[592,171],[132,217],[232,190],[369,738],[501,34],[434,29],[763,774],[638,240],[706,292],[363,612],[315,218],[375,571],[470,712],[16,510],[15,876],[922,203],[248,703],[185,640],[3,723],[730,138],[957,787],[279,934],[209,896],[794,818],[511,171],[795,33],[262,839],[265,303],[951,61],[190,249],[272,40],[488,402],[891,776],[930,221],[590,136],[453,597],[147,99],[423,911],[283,510],[5,552],[999,8],[275,23],[558,7],[131,179],[818,336],[667,394],[283,394],[96,374],[682,477],[928,41],[476,798],[16,254],[87,626],[559,430],[740,221],[673,637],[853,654],[135,703],[773,152],[810,536],[810,213],[28,408],[743,542],[475,858],[474,465],[815,637],[283,524],[857,934],[811,895],[680,131],[353,116],[907,553],[4,237],[565,327],[139,989],[634,29],[908,42],[912,405],[494,673],[396,950],[972,450],[335,851],[815,455],[274,574],[443,897],[317,962],[381,36],[723,810],[478,501],[959,567],[754,496],[708,863],[624,678],[297,249],[625,241],[51,909],[486,960],[616,482],[901,820],[737,664],[21,456],[189,791],[433,332],[64,810],[172,260],[717,453],[464,718],[471,974],[858,831],[127,94],[303,197],[908,155],[562,436],[930,690],[954,834],[315,508],[498,464],[865,865],[90,649],[943,88],[217,575],[198,741],[853,919],[793,207],[990,546],[951,703],[952,580],[905,203],[197,692],[250,980],[488,670],[261,222],[78,86],[316,274],[312,431],[760,71],[525,914],[951,612],[283,565],[268,725],[610,770],[434,362],[910,26],[626,184],[59,796],[877,443],[221,239],[425,17],[290,166],[685,962],[473,833],[604,338],[479,688],[310,11],[288,2],[65,991],[906,366],[490,13],[365,759],[763,27],[686,960],[590,854],[484,389],[77,854],[148,575],[268,531],[2,457],[880,163],[401,437],[393,678],[14,961],[674,392],[596,365],[257,963],[224,523],[139,918],[561,41],[762,415],[908,969],[328,975],[562,334],[890,587],[64,378],[308,975],[971,141],[801,685],[271,697],[401,403],[684,851],[552,388],[618,47],[205,898],[343,268],[859,855],[197,405],[178,295],[223,984],[562,29],[155,882],[978,162],[864,18],[541,919],[27,666],[465,861],[324,692],[593,683],[584,22],[588,81],[997,586],[375,368],[378,887],[180,142],[208,237],[352,89],[362,685],[284,731],[496,744],[126,75],[31,47],[47,720],[201,818],[69,149],[603,371],[546,197],[589,40],[195,673],[549,56],[613,751],[529,101],[937,524],[342,689],[644,845],[447,1000],[222,548],[120,772],[147,680],[502,635],[966,310],[125,804],[337,517],[828,278],[584,312],[995,618],[438,867],[870,235],[826,198],[631,869],[334,210],[19,468],[334,265],[675,968],[565,355],[44,748],[385,660],[851,281],[869,249],[849,924],[689,137],[882,823],[609,970],[953,312],[470,518],[71,883],[66,490],[501,432],[583,935],[371,349],[341,933],[889,551],[515,904],[385,726],[617,293],[332,439],[981,434],[585,471],[167,507],[123,6],[272,704],[844,743],[797,177],[125,135],[376,858],[864,347],[866,462],[518,161],[594,873],[184,969],[796,392],[407,780],[728,871],[6,696],[253,755],[718,567],[518,35],[945,619],[798,911],[712,242],[148,604],[820,727],[75,700],[852,6],[614,162],[541,869],[972,207],[408,678],[385,58],[648,405],[388,785],[653,428],[896,569],[950,717],[992,940],[766,541],[373,934],[450,692],[969,526],[414,556],[219,359],[94,183],[327,531],[625,680],[741,63],[678,62],[899,93],[994,831],[674,263],[804,760],[23,281],[863,600],[951,431],[591,859],[592,554],[245,95],[600,345],[679,95],[929,266],[250,637],[224,624],[56,46],[942,866],[670,101],[817,520],[525,161],[769,664],[985,591],[84,865],[79,594],[866,809],[63,761],[532,361],[478,637],[873,423],[965,284],[982,911],[358,369],[328,812],[894,337],[572,161],[18,324],[604,15],[955,63],[436,541],[654,632],[584,404],[523,118],[693,764],[35,122],[949,428],[133,964],[919,357],[150,882],[754,963],[823,978],[423,810],[682,318],[295,991],[260,924],[651,832],[594,276],[345,979],[539,748],[938,990],[256,402],[908,322],[847,889],[349,728],[829,341],[254,372],[434,53],[402,648],[853,335],[211,450],[259,182],[358,818],[324,575],[725,223],[593,502],[469,437],[131,884],[447,200],[265,22],[604,710],[753,284],[122,907],[346,759],[211,868],[244,130],[116,489],[549,977],[48,879],[329,341],[544,493],[186,31],[427,761],[951,222],[575,625],[764,185],[482,50],[155,306],[150,260],[832,758],[193,98],[928,335],[521,396],[912,260],[683,347],[630,484],[887,767],[558,358],[372,389],[235,404],[476,730],[623,184],[82,928],[977,122],[31,432],[839,443],[363,938],[142,208],[614,773],[168,749],[577,569],[828,185],[249,874],[230,902],[244,285],[717,600],[82,329],[895,772],[363,18],[893,325],[428,602],[209,579],[929,576],[530,656],[122,917],[687,27],[136,981],[920,783],[37,71],[421,385],[479,796],[386,242],[151,704],[486,738],[227,151],[89,354],[560,963],[319,562],[731,944],[877,739],[235,908],[344,355],[903,398],[98,246],[558,286],[477,242],[583,580],[212,647],[339,261],[998,956],[423,679],[330,422],[991,244],[209,314],[834,790],[105,808],[237,549],[521,382],[341,942],[399,67],[952,351],[216,775],[357,711],[157,624],[519,650],[182,384],[254,622],[172,502],[970,506],[884,428],[400,756],[879,532],[816,688],[330,580],[488,232],[290,685],[581,579],[944,44],[675,361],[377,776],[506,968],[153,815],[492,743],[397,581],[217,177],[227,713],[295,244],[663,749],[834,182],[711,143],[358,683],[674,229],[743,586],[129,714],[991,664],[39,130],[624,458],[470,131],[157,114],[874,207],[753,153],[108,260],[147,604],[400,754],[662,390],[488,367],[642,404],[801,173],[600,370],[959,515],[128,279],[722,241],[942,176],[501,601],[491,804],[532,210],[429,723],[250,403],[441,569],[685,241],[296,489],[123,947],[925,891],[105,529],[463,647],[247,11],[325,140],[749,798],[869,468],[746,769],[1,968],[423,727],[541,98],[150,379],[818,446],[316,253],[619,826],[234,994],[903,34],[74,640],[283,500],[247,151],[63,994],[747,29],[755,990],[24,253],[657,485],[902,899],[383,15],[310,945],[298,986],[589,852],[82,658],[306,202],[649,822],[648,164],[40,737],[946,128],[67,911],[930,143],[335,166],[971,447],[638,303],[535,135],[87,740],[610,383],[218,382],[624,520],[649,960],[461,446],[303,499],[494,293],[642,242],[12,426],[575,761],[695,565],[703,762],[688,597],[611,86],[635,990],[904,523],[218,89],[820,93],[86,714],[365,640],[953,827],[114,511],[428,674],[701,38],[116,252],[101,471],[808,571],[710,775],[334,366],[176,374],[157,874],[275,672],[455,175],[83,471],[250,170],[680,240],[515,646],[647,530],[614,418],[732,946],[220,717],[229,553],[566,597],[999,910],[780,175],[394,361],[223,322],[406,224],[950,186],[224,210],[644,531],[745,905],[399,40],[86,513],[354,207],[695,478],[465,833],[780,885],[72,522],[917,613],[220,705],[672,259],[641,352],[428,486],[795,955],[501,641],[780,982],[543,883],[302,792],[21,652],[869,253],[437,640],[297,471],[842,472],[555,712],[451,992],[729,674],[193,730],[138,632],[51,989],[179,745],[134,920],[383,533],[401,24],[950,847],[858,169],[505,509],[447,168],[417,116],[337,306],[472,810],[146,850],[54,622],[230,811],[299,182],[435,96],[202,106],[924,651],[14,340],[910,822],[716,334],[899,483],[933,535],[438,423],[602,543],[267,664],[636,897],[558,766],[119,509],[37,331],[860,84],[635,487],[525,606],[709,84],[276,418],[981,268],[963,524],[429,106],[956,184],[549,363],[150,44],[685,159],[869,846],[730,389],[11,146],[971,844],[520,126],[683,687],[258,85],[950,995],[72,748],[622,989],[159,196],[990,78],[114,216],[920,328],[467,150],[538,401],[941,858],[981,640],[66,711],[768,780],[891,693],[107,739],[759,822],[565,922],[503,884],[664,763],[442,751],[899,934],[594,435],[578,227],[201,589],[383,234],[880,593],[972,71],[950,655],[751,717],[256,798],[302,348],[911,629],[533,930],[384,605],[978,837],[694,810],[306,626],[373,79],[264,300],[120,433],[763,115],[541,77],[948,860],[135,834],[590,202],[422,596],[499,633],[138,612],[450,524],[63,856],[109,514],[402,424],[533,24],[675,790],[103,71],[473,36],[932,613],[898,435],[846,353],[627,11],[353,983],[471,591],[199,166],[517,416],[962,953],[211,92],[226,421],[381,278],[151,77],[622,928],[35,260],[92,558],[947,714],[936,428],[953,330],[212,69],[899,683],[708,55],[175,238],[364,381],[357,882],[508,570],[383,924],[863,802],[133,659],[878,425],[209,367],[773,277],[25,320],[862,695],[17,767],[278,890],[863,269],[329,335],[387,213],[173,425],[214,63],[280,947],[47,407],[881,425],[635,802],[573,601],[642,33],[871,871],[627,976],[253,359],[111,185],[196,553],[587,887],[287,410],[951,951],[801,345],[655,241],[279,498],[89,918],[567,720],[113,387],[784,234],[258,227],[713,223],[964,347],[781,57],[208,471],[103,365],[321,327],[322,376],[978,287],[658,756],[673,724],[198,820],[818,472],[967,933],[435,457],[385,325],[334,377],[19,459],[552,22],[326,660],[980,437],[874,227],[891,468],[960,223],[6,94],[303,127],[411,375],[695,345],[15,465],[762,887],[945,88],[711,944],[547,191],[877,244],[816,568],[415,558],[515,798],[997,96],[294,711],[21,419],[883,113],[797,475],[866,732],[303,453],[246,195],[714,116],[759,736],[26,558],[121,273],[779,329],[174,394],[744,501],[570,974],[973,992],[375,306],[560,873],[976,573],[699,607],[461,481],[492,959],[893,626],[400,693],[342,841],[818,989],[361,967],[737,596],[904,644],[994,901],[59,329],[850,887],[451,189],[987,939],[519,44],[530,95],[805,668],[54,462],[262,14],[111,472],[129,512],[394,810],[687,266],[78,363],[152,184],[193,195],[284,633],[294,787],[627,824],[790,573],[679,856],[643,592],[808,926],[26,70],[931,1000],[116,178],[989,846],[149,329],[106,250],[649,189],[276,307],[210,689],[421,668],[250,159],[2,921],[259,704],[922,532],[783,45],[610,591],[543,332],[453,972],[635,180],[778,987],[288,941],[560,955],[455,830],[924,581],[963,698],[381,71],[875,83],[896,810],[27,465],[619,362],[419,570],[892,50],[633,951],[71,572],[357,290],[339,673],[927,229],[943,332],[317,748],[9,717],[562,693],[255,240],[71,802],[424,488],[503,367],[316,482],[284,640],[333,749],[240,491],[383,335],[838,373],[950,884],[726,184],[182,45],[961,925],[169,33],[907,929],[525,514],[331,564],[440,902],[758,77],[444,329],[491,956],[353,967],[290,821],[635,471],[140,355],[128,175],[358,833],[756,44],[192,51],[60,525],[364,237],[907,67],[283,598],[467,846],[656,219],[24,714],[997,64],[189,766],[725,651],[895,325],[22,207],[826,869],[19,658],[269,472],[968,603],[503,365],[112,646],[569,591],[272,880],[699,85],[243,736],[386,785],[732,506],[802,52],[380,753],[478,159],[937,135],[368,638],[957,910],[429,322],[332,517],[30,862],[416,511],[943,298],[357,345],[507,752],[216,875],[508,364],[573,623],[547,937],[287,764],[104,173],[263,723],[128,94],[151,677],[510,482],[195,523],[8,260],[984,361],[566,177],[471,752],[603,589],[403,636],[606,143],[380,646],[570,515],[458,842],[478,44],[880,279],[449,192],[448,645],[262,824],[584,846],[667,121],[432,19],[108,352],[372,690],[739,162],[447,866],[879,758],[811,379],[403,991],[321,903],[717,217],[925,594],[657,611],[513,454],[298,355],[222,808],[31,578],[368,482],[303,946],[723,80],[300,79],[671,632],[967,22],[955,328],[597,834],[956,359],[786,608],[47,948],[68,507],[453,405],[233,149],[876,317],[302,316],[73,623],[238,442],[33,878],[586,854],[318,438],[457,269],[238,204],[129,512],[395,910],[628,603],[295,789],[595,252],[168,166],[369,67],[949,386],[291,142],[660,93],[69,79],[492,82],[20,796],[219,36],[153,653],[580,582],[900,340],[121,599],[45,631],[372,329],[946,54],[50,579],[817,570],[1000,501],[566,304],[355,720],[122,256],[600,60],[667,694],[456,538],[218,834],[175,315],[540,452],[191,122],[281,313],[743,468],[985,128],[299,587],[951,558],[431,18],[993,249],[276,491],[916,832],[233,490],[270,603],[638,876],[631,558],[992,895],[557,426],[34,265],[250,403],[91,120],[525,640],[483,435],[963,325],[78,125],[576,434],[441,157],[247,911],[218,112],[123,264],[84,971],[523,577],[661,279],[834,692],[437,121],[866,325],[537,313],[317,972],[361,448],[327,923],[79,458],[599,237],[912,681],[420,66],[30,919],[5,603],[169,219],[122,715],[735,228],[907,651],[348,590],[597,901],[723,554],[209,186],[50,742],[914,832],[747,345],[495,551],[238,271],[828,591],[205,257],[70,8],[841,54],[429,268],[668,913],[691,216],[220,163],[540,716],[277,698],[355,275],[114,125],[366,861],[111,863],[71,655],[438,4],[880,344],[985,889],[965,627],[89,246],[638,500],[258,929],[100,613],[904,297],[221,436],[26,541],[44,775],[29,30],[343,426],[339,162],[140,967],[766,510],[87,296],[469,349],[824,64],[357,134],[530,677],[426,84],[65,459],[954,933],[373,875],[355,755],[937,4],[795,708],[259,282],[163,835],[587,307],[424,762],[474,812],[13,192],[12,740],[858,952],[8,678],[668,232],[666,271],[556,263],[742,998],[353,783],[58,918],[648,671],[50,361],[643,550],[630,337],[897,593],[228,460],[308,964],[200,54],[15,409],[267,256],[194,86],[894,222],[811,542],[182,264],[471,782],[811,578],[233,697],[530,106],[69,576],[704,336],[326,203],[325,14],[563,957],[693,956],[196,374],[798,147],[269,301],[344,195],[423,527],[674,687],[121,762],[870,36],[548,155],[652,348],[828,684],[308,80],[77,361],[556,194],[508,253],[963,588],[763,533],[916,582],[281,985],[298,119],[745,314],[332,986],[187,136],[973,281],[316,780],[16,516],[167,691],[134,379],[458,343],[75,103],[13,12],[458,5],[421,913],[160,892],[862,468],[114,474],[35,97],[243,119],[558,605],[651,228],[478,220],[571,214],[759,400],[561,377],[443,92],[299,764],[203,408],[972,566],[945,794],[450,535],[330,589],[639,449],[483,965],[139,434],[446,637],[554,690],[989,342],[142,487],[377,249],[90,433],[103,244],[672,727],[364,285],[331,493],[603,722],[923,882],[53,14],[602,524],[421,183],[401,411],[1000,745],[865,443],[85,995],[41,1000],[795,13],[567,832],[170,196],[36,87],[306,546],[147,453],[70,223],[9,470],[763,131],[934,110],[99,708],[878,224],[224,584],[245,928],[613,504],[879,49],[918,927],[958,701],[175,592],[711,346],[569,844],[824,561],[682,384],[920,302],[885,197],[675,840],[257,610],[55,953],[920,850],[776,251],[771,399],[698,539],[292,214],[858,362],[942,683],[243,64],[616,233],[703,182],[465,639],[724,827],[564,423],[822,774],[714,835],[721,956],[541,285],[176,381],[684,628],[470,52],[17,406],[392,950],[45,191],[523,687],[36,497],[91,219],[313,766],[486,278],[99,150],[48,823],[463,21],[292,220],[588,477],[553,223],[137,90],[864,306],[736,507],[325,977],[383,237],[244,392],[129,698],[322,509],[195,410],[181,234],[313,30],[750,912],[255,877],[462,469],[386,508],[762,454],[245,330],[904,281],[713,96],[931,409],[970,166],[337,106],[920,723],[105,404],[551,947],[60,448],[635,795],[706,491],[214,751],[796,736],[485,716],[832,930],[93,961],[579,24],[870,980],[39,359],[572,19],[374,417],[82,959],[301,416],[701,830],[811,575],[24,507],[794,496],[561,432],[469,785],[318,742],[931,870],[75,807],[426,529],[48,233],[7,229],[367,477],[673,290],[753,669],[993,716],[594,623],[309,764],[72,702],[692,780],[33,198],[810,859],[379,847],[232,480],[914,926],[579,704],[610,655],[79,781],[539,200],[968,206],[366,216],[331,58],[935,418],[185,717],[367,119],[372,515],[821,966],[25,508],[374,468],[622,487],[648,168],[943,888],[529,977],[274,726],[304,101],[796,648],[610,264],[743,780],[918,249],[387,605],[299,193],[493,360],[673,266],[364,671],[568,631],[646,686],[730,418],[292,47],[285,705],[604,758],[325,270],[978,131],[960,181],[506,669],[629,604],[246,499],[873,886],[962,128],[598,809],[49,382],[175,406],[460,518],[351,454],[560,336],[765,556],[437,37],[314,887],[188,699],[12,837],[221,226],[384,817],[163,358],[119,406],[913,597],[269,964],[200,616],[36,767],[544,375],[642,167],[421,15],[257,464],[414,120],[722,564],[597,560],[316,744],[284,195],[555,479],[20,85],[160,971],[944,344],[136,206],[577,985],[54,892],[426,472],[117,425],[120,848],[155,959],[10,249],[138,610],[741,888],[605,747],[505,415],[542,488],[839,639],[660,69],[475,946],[326,305],[345,811],[687,826],[431,809],[472,172],[480,426],[248,15],[855,904],[284,884],[956,573],[242,296],[71,583],[530,569],[124,872],[404,897],[67,90],[771,553],[362,932],[276,713],[769,970],[92,278],[869,812],[875,937],[221,862],[449,308],[319,242],[690,323],[593,880],[586,828],[491,844],[984,198],[944,852],[470,589],[127,730],[925,680],[906,869],[955,182],[514,656],[671,918],[735,831],[52,210],[781,888],[807,693],[521,586],[549,331],[465,205],[667,527],[48,969],[512,545],[271,652],[797,795],[588,316],[949,806],[229,943],[444,926],[870,399],[171,771],[399,898],[560,783],[553,693],[894,444],[903,637],[917,7],[712,296],[712,613],[295,556],[598,404],[247,519],[681,871],[984,671],[416,216],[490,98],[971,355],[994,780],[13,442],[815,191],[705,303],[535,671],[874,39],[240,117],[649,498],[249,696],[487,816],[407,858],[306,461],[781,868],[581,803],[266,493],[495,443],[559,145],[627,960],[271,690],[606,128],[494,963],[686,230],[958,126],[639,201],[650,779],[900,279],[341,285],[289,465],[739,659],[265,338],[991,665],[102,119],[437,390],[616,766],[518,688],[800,478],[118,560],[169,930],[838,798],[368,729],[103,943],[870,10],[82,184],[167,476],[654,447],[680,321],[222,244],[44,346],[82,689],[980,647],[794,807],[545,565],[584,639],[842,981],[384,913],[131,488],[916,591],[223,212],[70,950],[30,620],[469,76],[618,756],[279,302],[545,650],[918,914],[971,926],[566,445],[989,862],[121,394],[780,968],[721,291],[145,44],[547,45],[749,452],[665,330],[228,352],[310,739],[682,749],[868,278],[321,808],[925,998],[339,173],[126,368],[910,848],[394,497],[150,621],[941,446],[340,417],[909,543],[157,703],[329,963],[722,905],[280,150],[772,556],[374,436],[370,458],[992,981],[212,261],[974,823],[347,596],[174,667],[879,961],[447,781],[792,173],[438,100],[940,313],[291,100],[15,489],[711,371],[632,890],[309,244],[701,968],[737,44],[973,862],[167,363],[402,163],[792,249],[981,683],[258,439],[114,426],[325,348],[752,455],[45,224],[592,754],[406,761],[26,963],[427,478],[891,388],[764,839],[175,449],[583,588],[416,65],[854,683],[932,396],[143,913],[709,820],[412,908],[220,332],[690,170],[514,916],[871,978],[333,633],[476,208],[544,193],[596,271],[439,891],[871,588],[522,155],[804,911],[283,584],[880,915],[560,426],[128,583],[302,956],[115,765],[994,431],[556,937],[255,272],[69,433],[608,833],[2,554],[416,973],[854,531],[888,942],[701,961],[714,851],[339,885],[43,646],[686,606],[183,895],[230,53],[175,987],[320,780],[608,927],[895,595],[536,97],[329,638],[166,246],[551,251],[237,333],[377,850],[193,749],[937,403],[691,822],[611,560],[547,16],[417,464],[618,807],[315,933],[722,455],[867,945],[426,442],[722,912],[613,640],[813,889],[182,55],[643,699],[197,925],[798,372],[715,734],[971,627],[433,249],[349,867],[116,770],[220,67],[941,651],[634,621],[198,66],[711,236],[905,122],[875,783],[641,813],[540,901],[606,374],[344,84],[391,625],[537,268],[977,103],[785,229],[37,264],[909,133],[198,553],[913,893],[105,79],[229,98],[619,462],[600,499],[538,51],[794,704],[615,170],[290,254],[43,949],[190,899],[207,734],[188,629],[767,916],[705,37],[394,466],[393,945],[742,330],[267,879],[372,656],[632,987],[298,786],[733,304],[191,97],[754,371],[265,720],[203,652],[830,674],[739,445],[131,653],[579,251],[730,254],[475,405],[670,969],[644,382],[422,291],[660,580],[212,947],[45,857],[728,295],[237,231],[662,453],[615,210],[41,466],[777,886],[162,317],[294,464],[34,795],[757,365],[825,556],[75,392],[827,724],[679,457],[143,484],[407,625],[194,296],[501,577],[849,528],[596,2],[512,974],[352,353],[579,751],[429,872],[447,354],[980,731],[489,534],[970,30],[209,49],[430,346],[48,647],[371,572],[762,624],[811,377],[431,80],[426,649],[636,21],[386,317],[160,160],[871,15],[106,40],[38,800],[984,183],[747,352],[620,618],[227,990],[163,396],[490,287],[450,653],[792,308],[936,457],[187,981],[465,773],[190,565],[784,270],[261,699],[36,143],[643,524],[251,755],[882,280],[845,751],[737,720],[438,121],[277,187],[500,645],[603,3],[924,904],[423,103],[562,539],[250,103],[482,446],[148,20],[481,756],[673,671],[615,156],[260,941],[473,871],[325,108],[161,511],[496,691],[308,839],[515,493],[835,515],[575,638],[167,156],[830,67],[99,391],[832,718],[101,421],[891,121],[966,205],[481,40],[681,900],[514,277],[270,580],[460,704],[646,700],[25,167],[404,832],[566,350],[523,188],[251,200],[807,775],[216,21],[89,590],[570,469],[12,659],[767,875],[236,181],[783,931],[174,131],[968,429],[328,77],[303,828],[361,839],[215,426],[202,104],[237,396],[393,363],[499,404],[276,203],[456,924],[342,467],[141,966],[712,316],[519,4],[210,624],[324,543],[66,578],[88,214],[746,267],[673,665],[908,95],[124,390],[991,231],[739,128],[683,395],[837,720],[204,182],[300,97],[260,951],[875,42],[528,314],[691,182],[491,738],[375,274],[610,140],[669,791],[410,229],[401,340],[593,334],[412,730],[157,265],[639,257],[762,917],[420,371],[301,82],[247,395],[16,520],[44,423],[581,442],[7,541],[850,509],[178,278],[503,829],[401,806],[137,727],[144,200],[148,836],[35,943],[827,205],[481,543],[318,714],[137,27],[296,450],[542,751],[670,104],[990,601],[424,234],[561,202],[108,924],[627,168],[215,696],[838,968],[608,730],[183,367],[373,285],[341,111],[118,212],[705,153],[168,880],[628,113],[930,718],[727,756],[538,846],[605,436],[41,315],[64,557],[494,749],[903,398],[434,812],[123,584],[811,391],[103,345],[628,710],[519,925],[338,808],[456,203],[635,230],[97,71],[581,342],[462,7],[992,142],[437,181],[227,824],[326,719],[482,41],[912,725],[55,649],[907,435],[108,829],[315,803],[175,136],[495,424],[366,515],[674,395],[15,254],[964,381],[760,115],[568,894],[255,471],[531,827],[329,382],[177,305],[77,345],[471,54],[825,594],[189,221],[292,669],[94,989],[912,758],[328,547],[100,107],[982,624],[32,289],[815,155],[90,171],[86,809],[607,877],[673,915],[408,572],[167,646],[142,290],[723,833],[700,28],[182,877],[541,697],[102,370],[477,641],[568,450],[963,223],[253,297],[666,791],[715,789],[849,676],[260,602],[970,376],[721,314],[558,983],[474,499],[608,239],[360,799],[869,823],[300,559],[490,172],[151,70],[435,756],[941,143],[869,198],[104,17],[360,363],[472,613],[719,476],[611,367],[757,221],[799,593],[887,550],[866,587],[643,526],[351,563],[292,254],[898,697],[729,103],[817,266],[989,916],[848,357],[522,311],[924,744],[598,777],[289,494],[631,450],[208,671],[12,43],[364,253],[648,464],[852,503],[8,770],[386,248],[801,414],[670,384],[663,199],[359,801],[295,395],[472,555],[662,298],[921,291],[974,52],[676,947],[403,389],[254,311],[501,212],[389,139],[795,451],[174,587],[486,605],[612,578],[183,665],[473,787],[164,728],[586,837],[421,556],[491,131],[810,188],[341,444],[619,990],[410,197],[19,278],[765,470],[448,638],[639,159],[770,653],[726,490],[337,624],[961,935],[596,844],[718,395],[554,940],[445,520],[834,730],[533,533],[164,285],[315,82],[332,811],[610,936],[76,893],[704,355],[529,216],[944,372],[41,928],[892,379],[793,11],[877,377],[772,188],[684,76],[950,479],[116,653],[187,266],[550,429],[569,378],[412,167],[483,110],[183,889],[378,927],[924,743],[828,804],[949,761],[755,552],[236,139],[959,149],[561,305],[426,411],[196,62],[873,693],[494,58],[753,57],[775,689],[901,966],[356,268],[878,942],[742,605],[758,758],[184,751],[30,314],[824,332],[698,995],[400,969],[212,232],[296,973],[173,253],[417,36],[712,33],[212,773],[602,576],[643,820],[761,596],[637,107],[10,693],[956,822],[326,14],[41,737],[946,563],[879,164],[304,91],[520,184],[3,58],[315,412],[917,269],[532,31],[911,563],[69,752],[75,404],[521,551],[188,643],[963,328],[3,442],[762,156],[484,260],[644,112],[365,403],[241,262],[384,803],[469,414],[598,361],[142,433],[967,724],[872,454],[996,327],[585,982],[455,639],[42,820],[696,451],[914,154],[584,789],[656,221],[112,426],[796,890],[299,24],[50,237],[467,950],[287,293],[474,874],[944,653],[902,238],[494,664],[540,822],[794,199],[97,411],[235,161],[812,657],[519,935],[328,876],[459,394],[181,313],[417,891],[234,954],[520,413],[271,732],[402,649],[300,499],[287,468],[999,157],[959,855],[199,515],[114,307],[226,817],[625,722],[421,136],[210,363],[788,446],[11,690],[899,667],[587,407],[285,345],[422,112],[146,955],[87,207],[389,182],[608,904],[49,606],[816,223],[323,283],[138,780],[6,75],[795,422],[47,815],[548,792],[487,125],[319,663],[42,281],[92,864],[934,736],[457,689],[337,168],[61,996],[809,148],[671,216],[957,643],[986,463],[336,906],[514,650],[550,532],[59,974],[418,903],[381,918],[972,709],[479,566],[497,268],[735,683],[386,948],[180,407],[686,630],[884,375],[523,109],[551,217],[421,539],[469,975],[730,940],[730,249],[144,109],[524,945],[865,393],[177,625],[285,55],[610,455],[22,368],[562,805],[163,447],[954,82],[625,292],[996,149],[158,251],[116,577],[870,154],[339,760],[481,381],[643,539],[503,115],[512,916],[119,142],[870,664],[653,821],[571,233],[907,69],[974,241],[595,861],[97,995],[677,951],[867,581],[998,438],[736,432],[160,532],[444,176],[766,71],[469,207],[443,361],[362,866],[294,950],[112,616],[601,836],[672,347],[310,125],[723,123],[597,396],[70,93],[328,237],[402,793],[520,366],[884,863],[95,52],[783,394],[417,923],[996,922],[62,709],[152,798],[201,921],[667,992],[567,584],[131,221],[526,426],[35,46],[236,507],[298,607],[716,222],[652,116],[30,810],[475,307],[486,856],[500,599],[559,979],[338,872],[749,777],[319,37],[431,751],[307,284],[673,673],[249,653],[666,173],[777,483],[355,77],[755,299],[294,962],[116,614],[238,25],[49,622],[893,34],[73,517],[438,844],[474,383],[885,375],[707,461],[86,205],[447,259],[808,317],[497,606],[362,613],[317,201],[13,861],[640,725],[830,129],[449,557],[824,404],[942,268],[577,966],[984,192],[69,896],[899,908],[963,38],[396,828],[362,622],[482,109],[579,224],[944,366],[139,805],[845,921],[545,477],[181,838],[787,580],[870,76],[750,199],[339,371],[117,868],[722,488],[767,543],[788,792],[115,786],[88,58],[469,167],[388,367],[445,345],[19,869],[821,566],[605,338],[327,697],[390,494],[173,359],[813,369],[222,250],[261,319],[294,919],[534,625],[985,463],[222,105],[516,636],[738,133],[447,943],[518,463],[726,818],[249,639],[848,108],[436,662],[637,493],[21,433],[597,712],[277,608],[530,512],[701,346],[43,79],[42,637],[871,268],[423,916],[768,748],[975,932],[821,89],[302,84],[198,143],[8,663],[777,543],[36,127],[166,388],[896,967],[50,890],[261,938],[375,487],[958,470],[643,46],[9,42],[623,344],[955,971],[807,355],[311,314],[893,110],[673,842],[877,109],[951,324],[416,162],[777,435],[516,571],[713,694],[758,90],[954,678],[927,672],[451,650],[271,816],[562,396],[147,619],[177,118],[514,982],[616,121],[23,890],[795,640],[183,517],[962,175],[385,865],[772,424],[701,187],[814,336],[511,612],[456,700],[348,567],[606,831],[383,859],[682,277],[504,58],[816,241],[209,762],[767,372],[989,687],[786,948],[567,369],[469,880],[275,703],[249,92],[379,744],[778,366],[150,981],[885,671],[769,548],[248,506],[877,916],[556,595],[54,984],[334,530],[85,24],[593,428],[499,836],[616,303],[941,657],[596,887],[937,259],[263,163],[285,418],[385,934],[896,384],[91,266],[463,529],[678,833],[335,891],[191,557],[140,350],[471,667],[839,629],[929,573],[911,343],[601,744],[329,385],[956,822],[837,810],[1000,781],[118,536],[798,874],[442,95],[332,670],[166,987],[243,832],[922,25],[571,17],[271,588],[995,740],[778,585],[320,187],[918,709],[882,892],[367,99],[182,245],[973,661],[226,399],[615,483],[916,413],[903,155],[994,895],[332,272],[917,883],[163,392],[251,798],[595,644],[940,568],[612,223],[210,136],[516,394],[540,824],[93,476],[395,763],[973,788],[705,768],[574,634],[242,552],[286,677],[246,737],[210,329],[314,950],[464,985],[494,417],[851,820],[593,869],[240,153],[257,445],[649,983],[22,255],[296,424],[162,37],[768,959],[973,314],[613,332],[195,671],[734,872],[263,101],[871,684],[169,342],[599,923],[876,366],[401,892],[102,216],[394,480],[7,898],[321,946],[362,161],[713,205],[924,159],[267,788],[398,277],[85,72],[311,966],[390,17],[562,278],[365,294],[955,126],[397,827],[211,313],[397,138],[453,385],[23,409],[17,858],[232,918],[744,452],[6,170],[740,132],[616,272],[69,258],[911,534],[589,392],[643,683],[764,937],[108,936],[713,100],[330,665],[153,815],[710,224],[38,158],[389,815],[85,445],[275,656],[546,938],[622,324],[994,115],[289,112],[662,732],[47,369],[646,97],[241,77],[585,504],[898,738],[838,581],[740,539],[259,835],[542,364],[876,679],[941,726],[340,66],[179,587],[194,206],[144,729],[687,994],[103,926],[511,247],[481,177],[175,188],[680,913],[95,615],[632,771],[796,208],[34,525],[276,904],[756,149],[922,887],[693,470],[860,977],[910,265],[233,342],[471,495],[41,22],[192,98],[205,216],[996,990],[899,819],[945,881],[288,387],[263,506],[105,558],[42,976],[329,301],[924,75],[359,266],[130,656],[675,291],[986,186],[445,169],[623,95],[34,202],[150,940],[881,575],[837,759],[863,812],[363,406],[749,503],[97,85],[721,789],[284,943],[756,728],[741,491],[257,718],[183,392],[523,186],[638,554],[510,576],[612,852],[625,954],[322,740],[323,31],[426,312],[570,165],[417,678],[713,544],[12,81],[876,951],[185,333],[723,772],[608,970],[237,451],[918,820],[922,375],[912,703],[910,202],[629,932],[936,592],[953,781],[319,828],[405,336],[940,817],[798,11],[613,764],[217,358],[684,504],[17,571],[233,813],[382,651],[724,263],[322,807],[959,544],[139,247],[945,844],[520,836],[334,376],[136,575],[783,670],[727,364],[505,868],[436,15],[303,907],[982,462],[483,127],[225,679],[914,904],[187,147],[585,210],[892,324],[614,508],[369,693],[292,766],[439,153],[760,871],[782,564],[229,990],[142,266],[779,196],[590,872],[115,178],[427,594],[448,494],[670,696],[896,975],[601,827],[429,522],[604,6],[180,675],[877,175],[629,199],[535,249],[769,892],[348,571],[356,46],[393,845],[685,8],[456,117],[15,59],[859,864],[649,816],[467,911],[480,18],[782,539],[104,944],[496,859],[638,257],[794,793],[300,437],[357,780],[532,935],[436,889],[428,373],[675,110],[493,703],[773,985],[997,693],[810,301],[117,287],[742,704],[209,96],[637,370],[228,715],[590,633],[282,990],[895,301],[557,555],[323,625],[794,287],[134,942],[249,819],[797,739],[619,148],[37,59],[49,749],[382,442],[1,880],[46,468],[309,60],[274,196],[883,32],[402,780],[245,481],[116,800],[668,680],[100,682],[493,525],[65,377],[165,927],[571,308],[730,778],[373,202],[340,77],[75,467],[142,147],[343,583],[137,237],[674,60],[914,784],[977,167],[650,809],[768,643],[996,494],[596,537],[19,449],[63,176],[413,559],[949,13],[413,390],[363,452],[434,794],[757,175],[77,16],[640,549],[867,9],[593,996],[403,972],[625,252],[243,381],[718,340],[316,506],[30,338],[59,682],[677,84],[161,66],[620,602],[487,729],[863,892],[989,351],[14,567],[801,599],[26,183],[292,637],[965,442],[286,957],[761,809],[793,326],[602,859],[159,40],[339,706],[747,327],[623,185],[973,101],[900,544],[727,231],[355,671],[484,549],[180,94],[559,18],[945,498],[469,611],[591,435],[269,719],[612,631],[176,588],[325,927],[614,611],[33,348],[412,242],[37,970],[28,909],[577,341],[973,440],[110,756],[176,33],[909,201],[980,837],[42,387],[743,33],[599,825],[489,211],[140,268],[934,21],[133,466],[442,951],[577,503],[348,198],[30,885],[555,231],[32,214],[418,65],[860,997],[162,272],[374,333],[396,351],[81,295],[591,640],[723,557],[219,236],[882,553],[516,77],[932,859],[409,63],[565,137],[688,995],[458,997],[537,361],[254,804],[73,763],[512,496],[761,404],[195,225],[725,835],[422,606],[97,733],[428,808],[54,858],[310,149],[822,349],[786,679],[21,12],[972,351],[987,704],[194,165],[3,648],[188,596],[599,332],[63,335],[421,958],[76,35],[341,582],[971,315],[335,95],[383,505],[996,308],[998,365],[278,280],[412,779],[448,565],[27,253],[457,928],[499,25],[906,720],[547,930],[169,594],[794,801],[118,636],[883,993],[72,48],[188,179],[791,544],[847,414],[613,258],[569,379],[60,260],[893,809],[661,346],[173,669],[341,555],[602,550],[557,827],[27,553],[523,494],[347,597],[583,313],[944,775],[896,353],[814,336],[847,452],[733,53],[34,179],[120,16],[676,735],[969,285],[707,729],[312,726],[164,664],[403,664],[415,97],[459,895],[343,51],[234,831],[31,216],[973,130],[528,168],[262,136],[986,839],[573,223],[457,164],[692,342],[479,497],[567,647],[791,717],[126,671],[818,330],[130,520],[268,72],[988,572],[795,304],[387,305],[622,312],[175,791],[795,330],[908,854],[485,553],[375,857],[44,783],[24,282],[305,399],[562,382],[822,3],[802,406],[120,794],[273,336],[754,228],[833,543],[330,60],[625,557],[363,458],[397,932],[850,849],[64,260],[226,365],[281,199],[457,449],[322,992],[622,190],[508,322],[14,842],[274,800],[565,412],[328,909],[146,155],[884,861],[339,885],[39,970],[481,446],[931,518],[599,381],[317,753],[483,947],[711,912],[115,631],[443,385],[880,239],[141,811],[482,998],[578,380],[481,94],[26,601],[624,891],[566,128],[678,700],[865,644],[357,121],[51,815],[156,831],[876,499],[717,299],[759,451],[131,212],[371,980],[791,448],[986,294],[606,198],[573,16],[122,302],[235,43],[811,143],[402,895],[12,788],[375,734],[718,122],[399,939],[406,225],[939,968],[670,248],[21,960],[980,869],[764,481],[654,129],[555,638],[273,531],[555,962],[628,193],[971,101],[150,314],[789,867],[414,587],[253,460],[607,416],[938,895],[829,851],[900,247],[495,651],[170,217],[455,891],[659,835],[732,742],[860,511],[310,277],[255,310],[408,60],[692,500],[465,458],[236,325],[817,130],[991,175],[37,647],[173,801],[878,247],[825,785],[361,997],[660,302],[107,574],[29,23],[935,390],[955,457],[144,812],[921,146],[105,962],[885,741],[908,246],[587,728],[832,344],[75,413],[733,647],[461,337],[887,615],[259,26],[402,112],[433,584],[96,739],[394,67],[39,679],[481,850],[923,37],[729,647],[733,106],[98,864],[807,771],[916,411],[509,584],[413,613],[347,341],[892,867],[814,279],[379,477],[477,832],[405,743],[922,695],[136,348],[675,510],[881,960],[981,465],[426,45],[681,354],[337,522],[258,939],[102,253],[646,892],[473,844],[989,450],[404,22],[968,236],[642,895],[208,867],[88,586],[226,726],[126,236],[297,13],[505,988],[311,429],[430,306],[520,901],[508,885],[701,651],[811,320],[509,587],[815,486],[241,602],[924,90],[775,489],[665,688],[586,858],[790,398],[859,670],[429,74],[401,621],[630,451],[941,578],[107,25],[230,894],[987,804],[797,418],[217,11],[268,754],[781,659],[466,901],[908,983],[30,495],[288,16],[503,953],[273,120],[877,691],[272,64],[488,520],[793,874],[684,100],[750,488],[28,616],[711,469],[528,713],[496,164],[629,513],[97,761],[993,565],[559,457],[367,668],[377,861],[938,339],[376,226],[421,848],[919,984],[88,986],[457,51],[69,727],[713,558],[222,78],[49,476],[813,197],[945,543],[491,891],[607,171],[519,245],[828,634],[674,213],[84,173],[538,732],[298,734],[769,232],[926,552],[859,942],[294,786],[724,326],[957,258],[891,230],[422,520],[717,546],[287,487],[956,923],[446,186],[59,48],[549,957],[102,716],[398,516],[465,13],[385,208],[416,348],[68,295],[249,168],[905,121],[329,468],[712,942],[448,317],[655,521],[551,330],[842,471],[212,597],[522,392],[228,852],[722,748],[781,680],[936,485],[863,180],[866,704],[729,515],[957,14],[956,41],[22,669],[257,984],[41,528],[379,375],[589,70],[898,133],[527,164],[240,765],[327,262],[435,114],[147,63],[818,603],[117,77],[877,588],[983,419],[334,265],[96,840],[380,927],[801,233],[776,343],[185,271],[975,856],[131,583],[158,190],[232,855],[468,984],[509,977],[391,412],[369,939],[512,896],[595,365],[681,469],[327,496],[738,441],[336,238],[423,721],[701,956],[678,225],[761,977],[940,988],[634,675],[198,690],[637,432],[346,985],[550,410],[52,554],[421,696],[382,737],[524,834],[826,620],[857,347],[573,105],[695,46],[482,919],[366,872],[310,966],[518,41],[888,690],[870,490],[854,360],[267,973],[240,459],[537,57],[173,163],[174,584],[725,90],[800,454],[48,424],[550,943],[345,224],[528,719],[955,868],[339,333],[179,819],[299,68],[200,538],[871,182],[102,359],[449,304],[285,719],[613,666],[856,746],[690,855],[811,286],[519,173],[389,874],[809,309],[184,245],[170,325],[874,320],[981,940],[819,729],[116,660],[26,193],[204,842],[331,608],[485,554],[775,678],[950,528],[275,885],[321,806],[506,589],[374,635],[355,107],[346,982],[869,175],[718,373],[845,318],[60,905],[312,505],[706,281],[468,700],[492,655],[438,209],[739,471],[805,107],[733,405],[171,741],[863,745],[226,927],[570,956],[41,990],[820,601],[725,357],[200,455],[206,467],[481,640],[580,628],[4,260],[162,553],[119,386],[901,600],[19,850],[480,193],[255,865],[912,143],[813,337],[43,813],[523,378],[341,209],[672,210],[320,662],[662,701],[36,161],[171,441],[55,928],[939,535],[533,292],[967,398],[119,427],[300,956],[358,392],[508,465],[721,104],[29,377],[430,895],[96,726],[483,969],[624,570],[523,188],[542,894],[740,631],[999,961],[426,296],[263,110],[347,319],[903,209],[799,211],[549,7],[371,352],[381,217],[136,795],[852,3],[379,840],[394,572],[411,629],[206,557],[363,513],[261,426],[264,83],[353,27],[920,81],[387,583],[81,131],[194,420],[897,219],[869,335],[122,95],[866,846],[700,456],[224,250],[687,815],[898,786],[766,644],[348,971],[337,804],[168,908],[254,186],[797,197],[872,265],[811,970],[984,634],[996,339],[706,557],[239,965],[369,107],[906,110],[205,223],[109,65],[309,342],[322,955],[302,25],[552,625],[373,215],[931,286],[282,894],[31,811],[739,669],[491,976],[909,31],[304,920],[765,407],[481,930],[79,224],[539,530],[600,484],[648,212],[337,895],[654,136],[975,449],[148,226],[675,539],[574,549],[270,996],[146,77],[377,578],[229,913],[666,995],[250,147],[567,19],[770,456],[410,558],[149,335],[581,642],[216,724],[829,170],[939,710],[598,131],[701,826],[913,728],[538,576],[704,465],[1000,981],[817,385],[116,408],[907,568],[588,128],[848,656],[324,19],[519,174],[457,358],[596,626],[871,678],[120,151],[822,389],[919,78],[242,862],[67,405],[951,172],[630,929],[501,702],[193,193],[572,134],[459,960],[114,759],[931,491],[628,980],[878,292],[538,142],[349,392],[474,176],[73,936],[33,68],[381,5],[931,780],[959,129],[530,133],[706,526],[328,547],[122,32],[26,499],[114,727],[717,903],[500,598],[305,206],[441,944],[130,944],[424,161],[279,225],[686,320],[725,718],[60,606],[187,466],[78,344],[206,365],[608,268],[55,486],[242,707],[609,141],[243,313],[754,4],[371,397],[31,593],[213,588],[392,695],[498,184],[197,213],[867,698],[985,498],[156,251],[508,724],[310,323],[562,810],[429,955],[73,629],[134,386],[932,414],[343,774],[996,823],[194,567],[277,334],[45,722],[7,475],[795,990],[706,766],[489,125],[582,42],[764,281],[893,186],[152,693],[456,914],[555,165],[398,102],[202,17],[204,106],[300,305],[551,315],[564,38],[353,901],[727,562],[330,603],[682,721],[490,602],[275,555],[57,248],[261,849],[338,488],[839,52],[10,516],[32,493],[320,653],[439,194],[158,673],[829,137],[214,743],[754,502],[664,616],[335,427],[475,279],[28,966],[367,917],[789,838],[35,632],[976,65],[708,50],[272,521],[117,244],[706,815],[526,428],[597,448],[448,506],[636,831],[756,425],[378,445],[787,362],[457,994],[705,200],[931,594],[718,552],[54,435],[204,465],[610,730],[62,647],[126,115],[187,581],[813,867],[450,622],[215,357],[770,266],[743,680],[470,871],[409,680],[901,814],[722,668],[583,758],[624,728],[531,101],[852,591],[570,746],[777,915],[63,382],[172,255],[992,255],[453,674],[395,372],[28,716],[176,628],[217,541],[383,532],[642,449],[325,878],[920,726],[58,639],[410,616],[426,196],[821,323],[464,590],[84,223],[741,115],[33,581],[337,7],[747,994],[751,244],[74,301],[165,554],[532,977],[340,792],[238,982],[172,746],[33,692],[387,654],[925,923],[828,242],[54,100],[142,985],[695,713],[991,758],[586,29],[560,625],[769,641],[690,790],[374,949],[818,698],[872,305],[492,996],[936,40],[832,988],[614,116],[907,456],[707,626],[822,953],[600,840],[415,665],[899,863],[835,681],[825,190],[923,373],[447,230],[551,197],[505,305],[936,90],[539,947],[679,513],[645,798],[200,499],[219,527],[497,32],[555,28],[626,619],[769,413],[923,598],[14,402],[909,707],[477,991],[8,472],[828,557],[416,572],[485,661],[452,516],[605,535],[448,9],[545,92],[148,392],[695,794],[791,354],[299,471],[70,710],[94,517],[66,721],[323,892],[288,129],[739,79],[592,21],[55,792],[770,596],[263,992],[593,376],[577,125],[130,931],[358,790],[326,307],[524,54],[23,626],[442,857],[136,185],[207,415],[19,735],[330,843],[453,764],[67,414],[573,189],[701,273],[749,238],[773,508],[678,646],[226,333],[832,359],[29,969],[166,389],[87,69],[706,733],[687,207],[986,278],[538,412],[15,971],[451,634],[235,470],[569,791],[496,88],[144,238],[715,837],[803,41],[936,667],[690,962],[824,227],[193,434],[26,319],[932,437],[911,253],[719,446],[560,102],[393,252],[498,556],[354,593],[459,353],[587,285],[73,580],[754,723],[276,937],[681,410],[381,85],[792,867],[742,630],[597,328],[633,895],[760,389],[653,864],[306,69],[952,915],[92,330],[973,857],[790,118],[989,982],[800,356],[731,2],[50,194],[449,837],[889,536],[902,390],[590,253],[33,326],[582,454],[279,307],[764,612],[84,417],[946,474],[412,340],[1000,743],[756,782],[236,200],[164,572],[835,954],[957,778],[338,763],[988,794],[625,612],[291,196],[772,284],[878,306],[475,522],[593,41],[22,414],[962,530],[161,228],[140,72],[539,556],[252,743],[301,636],[739,20],[833,670],[735,538],[775,342],[459,282],[322,521],[289,599],[8,678],[499,479],[489,716],[452,208],[808,564],[434,690],[964,265],[191,49],[896,645],[87,258],[760,976],[575,912],[333,884],[807,719],[11,179],[684,733],[962,951],[760,374],[427,153],[335,583],[45,711],[944,81],[644,170],[393,591],[221,38],[980,371],[207,333],[406,7],[982,396],[135,475],[616,692],[530,682],[75,32],[307,769],[97,855],[505,412],[51,284],[859,228],[313,100],[330,991],[735,484],[367,17],[565,655],[555,979],[611,997],[9,545],[685,686],[52,84],[447,696],[30,647],[822,80],[387,5],[771,902],[992,687],[632,488],[561,897],[762,275],[568,307],[329,497],[69,710],[532,574],[166,305],[48,746],[500,783],[600,21],[19,496],[172,21],[914,70],[999,579],[180,754],[912,48],[329,975],[471,496],[624,168],[492,240],[99,252],[159,334],[549,679],[549,729],[325,367],[834,327],[360,222],[877,787],[510,880],[230,79],[935,556],[860,376],[885,815],[25,857],[861,127],[62,99],[191,460],[861,489],[166,258],[795,850],[429,491],[577,497],[55,283],[97,324],[804,644],[373,197],[932,495],[859,1000],[13,375],[360,210],[998,178],[356,801],[308,131],[142,869],[860,155],[818,59],[346,654],[765,3],[661,123],[740,309],[134,79],[561,380],[61,255],[672,822],[191,594],[437,755],[521,583],[547,613],[680,143],[42,524],[418,53],[339,401],[15,585],[756,978],[446,530],[394,325],[267,44],[635,329],[133,113],[731,693],[25,47],[232,897],[882,452],[967,687],[562,21],[72,784],[578,577],[108,750],[450,995],[695,784],[178,240],[224,594],[684,853],[253,594],[561,503],[943,445],[927,928],[852,13],[191,310],[293,641],[535,403],[688,956],[282,649],[565,383],[237,645],[901,739],[535,729],[108,603],[488,586],[857,713],[39,989],[587,553],[714,391],[321,891],[714,689],[983,889],[315,375],[584,971],[851,850],[495,308],[863,43],[936,836],[55,786],[853,863],[815,92],[78,449],[961,814],[969,728],[399,994],[783,394],[835,78],[34,723],[820,400],[364,717],[791,456],[824,652],[170,744],[752,21],[805,95],[159,576],[53,476],[270,123],[916,84],[569,197],[318,110],[124,559],[351,740],[651,873],[531,78],[61,48],[909,381],[539,121],[23,423],[799,792],[493,454],[988,325],[373,201],[562,581],[474,800],[27,790],[632,327],[525,187],[571,331],[512,442],[987,808],[23,361],[687,27],[995,762],[204,49],[827,364],[657,659],[961,48],[966,516],[201,942],[828,84],[261,304],[295,433],[974,82],[44,423],[280,864],[3,886],[450,114],[288,862],[766,651],[379,513],[857,785],[675,734],[444,589],[208,828],[459,150],[433,748],[376,183],[770,547],[785,494],[269,44],[466,963],[862,946],[391,803],[391,368],[505,689],[691,759],[122,443],[911,475],[376,73],[224,941],[678,666],[249,970],[427,577],[751,466],[712,523],[873,997],[705,904],[432,386],[206,760],[573,868],[756,389],[879,819],[646,502],[421,646],[920,649],[605,217],[185,327],[537,839],[518,578],[487,961],[89,774],[492,25],[574,238],[618,821],[691,70],[49,295],[411,224],[41,317],[317,301],[39,381],[615,436],[835,805],[939,248],[277,450],[818,692],[263,598],[876,443],[354,531],[192,833],[281,111],[236,128],[506,21],[545,94],[531,341],[387,85],[656,165],[583,787],[837,437],[808,375],[238,599],[417,686],[800,972],[939,352],[308,918],[880,921],[296,258],[317,734],[178,815],[235,84],[674,338],[924,739],[488,425],[939,898],[281,45],[927,894],[520,396],[33,657],[308,836],[929,640],[480,239],[135,907],[691,336],[970,568],[24,296],[256,106],[760,64],[52,241],[272,968],[787,226],[999,697],[876,133],[6,471],[677,827],[678,368],[558,940],[631,666],[527,425],[506,668],[635,214],[864,701],[794,942],[551,968],[964,897],[299,497],[211,692],[434,424],[126,851],[276,647],[178,500],[267,827],[857,308],[614,549],[442,903],[659,12],[914,500],[839,574],[488,293],[192,115],[983,198],[949,539],[638,735],[515,942],[673,370],[914,907],[745,202],[292,454],[815,534],[904,996],[302,598],[966,711],[639,76],[264,632],[601,733],[563,495],[533,540],[374,208],[975,152],[403,291],[651,564],[884,359],[389,688],[44,548],[861,753],[464,989],[218,341],[967,780],[234,636],[571,811],[819,967],[689,586],[246,339],[949,321],[446,600],[516,646],[473,200],[700,106],[335,76],[780,33],[140,359],[619,766],[597,110],[227,927],[440,681],[716,176],[181,655],[185,110],[492,982],[179,486],[432,388],[69,404],[246,204],[10,178],[319,670],[670,179],[458,671],[21,233],[808,396],[563,603],[179,484],[297,467],[85,371],[203,267],[70,279],[420,339],[776,709],[649,548],[259,914],[318,821],[413,703],[828,116],[867,804],[590,180],[359,644],[177,870],[299,666],[757,237],[204,602],[128,459],[971,74],[45,843],[206,358],[548,505],[56,402],[588,28],[588,798],[293,618],[667,374],[698,115],[38,540],[953,903],[380,382],[420,424],[147,828],[820,483],[128,62],[925,254],[740,474],[791,949],[996,909],[169,791],[914,737],[309,656],[711,809],[955,834],[535,216],[803,852],[823,205],[246,87],[778,334],[262,487],[350,804],[902,256],[850,524],[892,713],[129,56],[864,318],[741,63],[655,892],[591,350],[956,559],[409,797],[363,930],[50,578],[396,246],[650,217],[780,370],[522,835],[439,211],[65,572],[880,84],[685,711],[223,183],[941,953],[937,598],[925,854],[207,261],[448,665],[410,283],[549,711],[380,557],[806,682],[810,978],[302,475],[231,892],[219,945],[353,165],[416,587],[443,726],[53,619],[19,834],[367,567],[235,254],[64,860],[836,641],[975,337],[792,460],[513,87],[54,831],[48,215],[76,582],[92,358],[288,555],[709,637],[597,731],[612,934],[498,251],[333,285],[824,169],[489,462],[204,297],[480,250],[839,178],[772,31],[186,653],[11,320],[552,919],[793,588],[288,14],[155,558],[237,468],[253,505],[93,757],[18,457],[96,866],[239,345],[788,644],[243,151],[297,18],[461,600],[545,106],[123,42],[683,807],[537,6],[993,801],[842,900],[386,293],[188,523],[692,348],[681,38],[384,947],[453,640],[295,841],[819,328],[804,832],[619,606],[292,46],[299,961],[511,524],[909,370],[500,417],[341,177],[843,361],[197,267],[765,648],[226,304],[656,452],[758,172],[463,901],[63,939],[520,609],[525,341],[58,469],[744,571],[448,4],[658,613],[330,896],[129,364],[190,390],[290,427],[609,75],[738,628],[224,269],[175,56],[642,671],[39,381],[825,541],[997,879],[236,311],[620,970],[319,588],[164,425],[905,466],[652,784],[201,403],[949,901],[239,252],[895,115],[893,318],[422,83],[415,261],[321,786],[345,559],[404,488],[661,817],[328,239],[288,666],[683,55],[958,984],[92,193],[898,494],[194,111],[412,702],[24,36],[242,953],[511,239],[127,429],[388,152],[998,995],[687,671],[642,4],[829,80],[595,655],[265,107],[640,580],[490,9],[450,970],[704,954],[943,797],[349,691],[675,43],[79,489],[95,30],[985,940],[524,510],[665,240],[776,864],[802,873],[941,254],[842,292],[408,462],[637,732],[651,687],[616,547],[883,138],[971,53],[176,159],[464,333],[251,366],[359,571],[499,190],[284,444],[935,72],[346,390],[749,1000],[922,304],[100,438],[121,362],[385,423],[913,56],[317,673],[753,434],[2,237],[998,170],[940,120],[436,904],[123,326],[570,661],[744,645],[87,332],[575,613],[980,607],[937,99],[976,652],[565,716],[288,131],[331,7],[266,447],[476,817],[165,593],[714,740],[306,965],[725,94],[918,54],[262,714],[942,375],[458,791],[743,687],[763,616],[255,75],[144,380],[730,385],[528,791],[175,418],[646,842],[116,775],[697,308],[593,277],[462,158],[992,330],[783,255],[286,379],[774,403],[87,712],[266,789],[391,157],[489,842],[607,892],[964,282],[510,844],[384,906],[689,923],[862,224],[3,755],[947,165],[834,794],[759,22],[767,677],[798,468],[535,77],[950,184],[488,451],[624,919],[585,540],[29,227],[229,463],[898,42],[249,508],[926,856],[791,511],[285,312],[432,131],[9,259],[175,838],[116,755],[390,676],[569,195],[796,341],[441,893],[254,33],[864,851],[781,293],[578,903],[264,174],[118,413],[885,272],[432,678],[868,868],[558,544],[817,122],[966,544],[308,484],[183,621],[889,261],[293,180],[277,440],[715,220],[545,532],[354,617],[424,366],[68,906],[691,498],[827,835],[987,515],[686,76],[937,706],[131,879],[523,663],[994,195],[468,863],[644,97],[554,383],[586,949],[276,62],[80,113],[684,687],[890,727],[33,591],[700,718],[914,99],[89,363],[187,954],[801,637],[700,735],[434,432],[891,404],[871,815],[261,534],[831,812],[37,524],[527,959],[962,537],[738,777],[897,494],[856,620],[363,421],[139,196],[312,194],[493,37],[29,182],[175,520],[302,928],[931,291],[445,817],[261,770],[492,288],[506,379],[295,511],[140,834],[30,985],[663,474],[314,807],[924,72],[245,330],[25,854],[708,836],[225,159],[344,711],[815,938],[850,952],[136,172],[31,649],[694,888],[516,646],[421,948],[896,837],[512,317],[938,784],[960,759],[870,597],[972,41],[700,473],[785,281],[932,730],[445,518],[256,868],[744,735],[688,313],[16,631],[545,264],[515,62],[274,517],[902,513],[272,701],[92,233],[52,713],[659,437],[548,40],[91,244],[228,78],[669,994],[513,178],[248,762],[759,173],[527,175],[527,617],[1000,634],[663,376],[867,144],[595,582],[664,594],[404,478],[792,999],[413,363],[155,777],[271,889],[309,2],[342,215],[640,234],[460,690],[116,1000],[988,309],[766,201],[485,30],[234,292],[504,254],[867,398],[760,150],[287,287],[914,532],[487,593],[262,100],[69,601],[882,488],[313,434],[951,44],[252,284],[128,317],[410,925],[167,515],[166,243],[796,433],[715,826],[842,840],[220,923],[355,210],[354,676],[100,173],[207,723],[806,227],[20,299],[338,628],[21,798],[576,503],[406,478],[388,390],[332,789],[329,152],[612,239],[264,224],[457,712],[679,922],[605,533],[479,770],[315,146],[902,995],[798,17],[72,222],[807,68],[564,789],[99,203],[721,238],[300,743],[59,795],[187,179],[48,323],[758,610],[424,83],[380,50],[252,320],[779,720],[403,584],[933,339],[220,715],[930,512],[431,126],[38,640],[349,519],[453,334],[397,135],[923,629],[969,874],[105,460],[117,366],[700,4],[837,224],[833,357],[885,66],[488,982],[468,956],[71,327],[507,186],[330,74],[389,872],[960,600],[51,482],[344,384],[1000,858],[691,626],[831,38],[82,834],[977,925],[114,518],[211,370],[537,590],[43,606],[46,560],[528,883],[412,675],[263,511],[476,354],[793,48],[870,136],[860,472],[826,784],[738,135],[695,415],[348,9],[517,106],[297,906],[659,291],[397,483],[996,131],[846,918],[822,22],[276,97],[45,31],[882,416],[854,176],[418,685],[93,769],[620,249],[686,944],[34,462],[198,806],[535,944],[818,312],[921,362],[472,303],[428,53],[608,784],[462,738],[930,642],[494,20],[897,682],[622,472],[757,19],[729,145],[800,280],[30,841],[154,943],[702,50],[470,152],[886,537],[697,169],[120,603],[878,556],[36,883],[36,627],[472,975],[2,158],[414,635],[271,585],[923,700],[443,226],[64,944],[661,322],[631,585],[168,259],[736,699],[137,974],[472,740],[696,930],[532,254],[549,753],[824,130],[895,329],[349,774],[163,658],[796,10],[53,85],[786,398],[351,871],[968,683],[72,156],[787,292],[468,820],[999,48],[78,630],[407,644],[127,160],[952,498],[792,11],[169,530],[682,514],[202,692],[50,114],[692,357],[124,491],[531,895],[406,47],[360,611],[497,600],[589,503],[281,867],[19,692],[785,99],[279,308],[434,692],[690,104],[407,47],[402,334],[812,46],[246,767],[130,838],[710,39],[68,673],[360,446],[566,313],[608,251],[760,757],[461,707],[58,60],[789,755],[21,697],[816,58],[180,86],[309,906],[943,865],[711,607],[704,138],[937,741],[957,388],[7,617],[377,230],[490,157],[940,945],[841,658],[220,293],[445,392],[944,214],[549,252],[788,330],[104,141],[559,410],[929,395],[286,382],[724,942],[155,690],[212,963],[144,994],[60,628],[375,299],[2,556],[789,689],[793,772],[590,495],[549,252],[340,654],[231,47],[697,572],[179,559],[178,736],[645,80],[274,614],[373,882],[328,255],[592,264],[691,671],[167,629],[300,640],[300,857],[511,553],[458,14],[963,223],[624,204],[73,702],[101,362],[889,897],[426,146],[102,866],[466,623],[229,120],[681,842],[492,785],[349,264],[886,645],[177,592],[750,380],[852,60],[594,227],[60,51],[94,376],[340,390],[902,730],[283,165],[614,411],[210,666],[941,974],[176,875],[672,114],[558,850],[94,274],[228,103],[864,901],[315,641],[212,622],[780,458],[188,446],[478,498],[128,535],[919,637],[728,999],[999,367],[837,699],[360,804],[355,965],[652,682],[853,362],[461,793],[551,320],[360,292],[741,578],[918,328],[421,17],[477,161],[664,346],[399,478],[485,915],[194,662],[833,752],[38,798],[123,203],[579,595],[447,970],[59,659],[38,813],[755,8],[379,855],[281,169],[532,35],[519,740],[333,650],[26,674],[566,988],[279,241],[510,633],[161,918],[704,348],[923,884],[767,168],[675,783],[61,288],[297,249],[139,682],[816,234],[240,940],[317,257],[73,859],[45,812],[711,384],[38,987],[618,783],[808,612],[588,263],[441,295],[804,492],[69,271],[739,934],[198,817],[770,329],[759,722],[681,960],[313,566],[434,218],[381,722],[361,911],[459,758],[414,682],[967,314],[343,580],[2,888],[207,533],[17,912],[541,441],[166,538],[393,255],[688,181],[722,652],[576,527],[678,936],[822,844],[548,990],[409,227],[540,118],[743,23],[47,270],[767,893],[706,336],[371,999],[117,163],[273,124],[154,370],[557,919],[22,976],[95,962],[531,531],[369,954],[673,917],[799,916],[735,646],[649,852],[552,98],[934,681],[766,403],[808,266],[885,234],[133,886],[800,243],[438,739],[812,836],[88,661],[514,569],[752,454],[31,583],[163,46],[125,711],[332,408],[976,739],[365,198],[823,354],[531,935],[161,28],[87,246],[604,482],[84,370],[509,256],[958,140],[424,126],[131,145],[552,442],[654,419],[926,211],[137,223],[535,510],[182,334],[79,926],[257,81],[627,165],[937,575],[753,368],[920,280],[623,378],[625,55],[518,425],[60,369],[978,67],[842,487],[749,583],[75,1000],[296,600],[956,4],[96,578],[549,381],[929,840],[255,113],[424,350],[314,808],[553,630],[19,765],[583,104],[456,555],[764,204],[361,260],[222,544],[264,337],[277,145],[416,500],[484,977],[409,88],[30,921],[605,941],[836,41],[319,705],[766,615],[388,21],[558,200],[659,481],[32,951],[891,418],[207,60],[729,57],[672,14],[465,43],[302,744],[18,396],[590,478],[11,938],[883,658],[578,903],[600,318],[535,817],[742,138],[377,681],[620,765],[715,43],[342,85],[336,255],[514,596],[683,135],[357,991],[841,349],[114,114],[378,567],[865,904],[440,328],[257,644],[965,92],[363,695],[365,926],[900,763],[861,868],[328,6],[314,594],[760,268],[582,832],[502,978],[631,965],[856,75],[365,107],[615,683],[848,49],[884,707],[724,973],[61,537],[868,248],[200,603],[721,525],[6,351],[938,241],[80,958],[677,425],[784,923],[75,603],[86,186],[588,189],[493,221],[862,757],[389,755],[516,122],[269,988],[467,939],[50,682],[101,559],[136,158],[819,43],[175,678],[142,979],[995,839],[566,340],[983,400],[228,28],[876,14],[776,567],[50,211],[728,690],[189,75],[724,817],[136,869],[65,239],[860,473],[479,742],[759,489],[528,223],[898,273],[101,680],[607,761],[660,575],[780,572],[72,989],[183,844],[574,626],[142,119],[592,446],[619,637],[402,253],[493,495],[58,30],[698,719],[163,758],[779,868],[37,340],[3,597],[735,52],[503,580],[202,884],[652,183],[304,687],[47,976],[717,69],[233,477],[445,134],[941,849],[139,394],[657,834],[983,842],[173,650],[200,499],[755,961],[101,305],[77,92],[118,236],[205,428],[420,248],[82,73],[984,774],[391,801],[721,193],[104,301],[718,353],[807,185],[182,726],[135,988],[467,206],[92,814],[218,467],[211,106],[826,459],[360,687],[376,273],[395,920],[102,850],[383,466],[960,639],[453,376],[629,502],[30,910],[609,446],[562,383],[145,611],[732,599],[960,295],[521,898],[198,292],[209,349],[474,10],[924,34],[231,668],[981,171],[300,236],[863,831],[844,392],[874,830],[556,283],[606,803],[803,960],[857,183],[486,762],[393,343],[823,422],[905,708],[534,529],[339,450],[103,237],[708,204],[930,54],[428,619],[224,395],[381,298],[805,202],[273,212],[264,35],[310,102],[521,232],[95,418],[874,519],[297,179],[995,308],[176,578],[117,177],[37,33],[637,233],[542,19],[326,684],[518,455],[606,207],[289,211],[641,485],[581,42],[499,522],[543,979],[58,797],[189,316],[161,722],[408,971],[6,765],[64,86],[595,846],[678,700],[889,912],[88,880],[979,281],[684,968],[779,277],[680,81],[545,126],[320,346],[546,834],[13,949],[160,454],[161,715],[751,398],[995,154],[171,581],[972,209],[879,659],[183,747],[279,539],[650,517],[393,862],[31,72],[286,867],[218,526],[851,980],[596,584],[281,417],[452,62],[862,382],[282,116],[437,587],[971,959],[556,37],[89,770],[739,620],[23,425],[942,485],[502,994],[32,383],[562,935],[335,397],[522,421],[499,20],[282,184],[158,195],[278,83],[773,958],[393,88],[941,724],[9,981],[854,541],[696,91],[427,924],[939,248],[392,673],[209,267],[922,299],[16,827],[759,505],[169,126],[50,375],[596,774],[716,387],[304,338],[89,260],[949,728],[759,782],[846,720],[279,833],[163,462],[168,77],[969,927],[588,725],[893,14],[172,270],[17,164],[334,671],[279,208],[260,896],[907,272],[64,372],[722,151],[733,371],[27,42],[130,685],[327,537],[48,260],[32,656],[12,864],[447,961],[671,911],[463,779],[558,274],[564,400],[971,985],[715,598],[398,896],[971,979],[116,808],[409,591],[443,260],[687,553],[229,286],[549,250],[832,525],[15,878],[76,924],[115,805],[295,956],[641,353],[901,239],[333,639],[785,847],[187,863],[445,532],[590,223],[11,943],[319,989],[635,608],[648,305],[934,607],[25,856],[316,586],[199,313],[10,520],[770,662],[200,949],[763,308],[27,243],[966,586],[497,418],[95,149],[340,153],[148,528],[355,121],[570,240],[576,673],[126,954],[721,339],[141,534],[151,140],[887,132],[956,729],[925,535],[661,19],[421,715],[310,807],[425,226],[113,949],[762,759],[998,673],[745,457],[652,143],[661,911],[111,616],[749,174],[136,994],[819,450],[632,975],[804,822],[381,285],[850,249],[688,351],[495,241],[115,767],[231,705],[429,348],[748,123],[358,779],[367,422],[285,806],[990,719],[767,556],[880,763],[979,286],[997,869],[356,763],[492,572],[262,877],[591,363],[785,945],[597,166],[97,891],[474,720],[879,898],[80,93],[868,588],[6,750],[230,933],[665,43],[861,585],[942,291],[201,552],[11,822],[659,533],[731,731],[460,447],[941,773],[381,946],[961,517],[626,372],[916,293],[679,577],[928,453],[411,183],[992,970],[835,397],[442,262],[42,10],[175,555],[639,452],[215,373],[767,370],[512,127],[816,641],[152,240],[486,751],[741,320],[764,863],[438,867],[569,331],[35,777],[998,684],[390,682],[763,887],[202,948],[638,410],[730,83],[999,815],[315,840],[171,571],[143,1000],[907,297],[97,654],[696,844],[320,677],[359,255],[563,626],[168,820],[870,335],[944,706],[634,505],[868,765],[145,377],[182,968],[585,451],[248,755],[159,857],[340,257],[81,515],[600,833],[537,197],[729,425],[512,23],[77,398],[664,60],[590,435],[86,389],[640,22],[183,952],[363,846],[104,913],[133,407],[26,194],[156,385],[730,29],[126,376],[142,390],[934,953],[628,395],[323,140],[293,599],[607,812],[79,530],[917,266],[707,300],[81,963],[806,575],[563,672],[533,862],[112,190],[533,853],[412,724],[309,90],[957,208],[199,138],[93,303],[907,873],[398,114],[353,89],[670,671],[733,934],[328,531],[859,189],[682,126],[419,589],[210,547],[125,745],[165,115],[299,290],[488,479],[833,803],[921,645],[731,19],[663,539],[973,117],[639,881],[905,235],[787,899],[69,362],[703,817],[78,558],[463,913],[23,379],[673,440],[373,600],[121,892],[22,39],[624,300],[254,708],[212,731],[837,49],[194,140],[491,11],[320,560],[148,207],[701,721],[728,821],[86,488],[420,368],[867,971],[17,87],[292,398],[383,138],[109,306],[665,115],[314,328],[632,238],[861,734],[669,171],[156,754],[711,485],[665,326],[405,391],[635,594],[381,319],[450,51],[738,521],[202,898],[711,563],[573,350],[305,941],[784,820],[885,145],[781,138],[113,267],[768,906],[550,187],[177,133],[879,483],[152,409],[392,910],[513,289],[557,350],[58,702],[116,119],[366,62],[31,51],[377,848],[560,278],[462,553],[622,109],[327,879],[154,821],[454,296],[248,84],[326,938],[24,516],[93,409],[248,864],[405,184],[250,772],[35,693],[426,797],[776,922],[123,206],[40,518],[737,855],[815,891],[173,819],[824,960],[852,177],[690,736],[101,263],[908,620],[103,131],[98,713],[811,876],[726,633],[819,197],[405,753],[810,408],[298,190],[444,843],[228,663],[787,546],[932,505],[357,341],[265,339],[897,593],[36,383],[2,974],[34,472],[623,676],[111,64],[379,103],[333,998],[281,530],[837,737],[607,442],[132,960],[329,385],[248,57],[963,533],[145,371],[822,419],[532,960],[243,793],[244,887],[154,757],[290,957],[639,139],[309,349],[182,267],[457,78],[102,436],[974,471],[267,270],[859,549],[312,542],[340,27],[79,959],[154,384],[23,888],[158,796],[779,403],[985,74],[606,577],[231,927],[556,622],[989,216],[457,943],[265,653],[754,654],[92,825],[993,657],[526,715],[637,84],[656,589],[247,144],[380,492],[741,923],[60,169],[822,289],[492,724],[359,206],[833,792],[460,10],[770,240],[263,142],[915,242],[940,322],[866,980],[936,293],[984,70],[17,929],[768,160],[221,842],[481,111],[142,793],[24,632],[386,756],[93,536],[29,77],[571,540],[791,872],[829,309],[557,246],[716,601],[30,612],[870,954],[768,568],[78,180],[892,929],[496,923],[404,700],[553,294],[61,536],[480,219],[357,258],[857,263],[752,340],[453,389],[409,449],[383,9],[328,724],[434,162],[264,557],[207,13],[578,185],[279,157],[415,218],[869,79],[792,762],[294,139],[161,229],[336,242],[359,274],[806,414],[717,509],[666,751],[223,735],[285,247],[685,275],[953,48],[493,700],[515,227],[806,350],[281,642],[157,153],[715,407],[758,130],[941,393],[595,479],[332,143],[159,666],[364,553],[633,372],[562,103],[661,692],[173,320],[925,623],[136,902],[128,411],[587,391],[14,562],[589,748],[202,906],[299,800],[853,894],[266,887],[862,745],[685,553],[778,276],[82,533],[333,209],[585,640],[761,621],[148,821],[379,239],[559,367],[258,282],[606,555],[249,553],[156,920],[225,815],[717,329],[952,234],[985,763],[200,714],[804,944],[9,532],[812,931],[190,662],[881,654],[486,796],[415,144],[883,62],[664,525],[335,405],[429,843],[851,341],[342,248],[460,157],[852,785],[167,828],[963,558],[473,346],[52,174],[321,938],[812,690],[320,588],[241,245],[534,430],[93,755],[236,177],[399,22],[979,763],[694,377],[932,938],[980,551],[514,836],[114,639],[757,738],[707,312],[708,482],[84,850],[80,535],[560,310],[703,831],[638,122],[643,296],[460,488],[886,262],[768,9],[520,73],[595,613],[659,370],[697,302],[13,894],[251,393],[460,878],[632,223],[854,240],[896,771],[776,95],[717,591],[365,160],[406,854],[68,40],[539,462],[849,400],[986,230],[689,778],[321,246],[669,145],[77,226],[143,972],[99,919],[893,172],[748,588],[343,152],[721,495],[760,352],[380,963],[745,908],[495,66],[859,649],[332,441],[297,173],[297,503],[511,268],[35,395],[664,69],[295,899],[612,273],[767,600],[233,500],[138,541],[404,753],[750,436],[465,673],[178,895],[397,885],[494,687],[400,68],[221,274],[419,960],[709,848],[361,927],[314,470],[952,882],[151,578],[203,558],[472,355],[404,234],[387,406],[845,262],[349,472],[244,674],[741,760],[807,781],[610,746],[14,455],[226,899],[855,1000],[726,480],[869,590],[217,301],[662,419],[803,126],[55,135],[561,962],[313,615],[805,104],[458,135],[88,63],[180,764],[103,118],[718,469],[802,935],[728,306],[67,226],[660,249],[515,35],[154,398],[752,691],[588,440],[421,949],[663,497],[986,674],[367,628],[288,499],[841,881],[655,846],[717,404],[861,228],[74,722],[471,574],[495,494],[931,205],[585,989],[890,356],[944,268],[906,673],[746,980],[913,305],[830,864],[274,265],[625,486],[9,456],[378,668],[354,456],[600,870],[673,826],[286,692],[530,596],[563,543],[81,939],[9,370],[854,959],[960,11],[871,851],[47,383],[733,657],[456,566],[770,274],[347,150],[413,727],[528,483],[181,322],[38,794],[573,933],[416,668],[433,285],[288,591],[139,568],[205,18],[523,697],[885,558],[478,278],[326,805],[747,164],[783,137],[949,75],[774,75],[928,410],[112,759],[403,627],[213,486],[629,229],[805,250],[956,564],[583,644],[348,356],[995,778],[789,162],[855,411],[938,255],[143,248],[339,543],[289,195],[646,870],[440,257],[584,136],[900,268],[583,180],[508,275],[588,33],[995,107],[149,293],[952,805],[826,995],[380,785],[589,790],[531,501],[239,281],[444,643],[81,642],[704,993],[811,537],[809,437],[415,808],[908,915],[994,970],[734,923],[145,88],[196,336],[715,903],[221,777],[435,885],[309,661],[552,783],[712,883],[229,880],[443,382],[131,157],[787,693],[941,254],[290,9],[92,666],[764,781],[955,227],[480,37],[876,579],[539,215],[536,230],[547,477],[996,448],[669,692],[803,446],[535,891],[674,192],[834,830],[281,136],[219,891],[295,626],[562,748],[247,720],[363,437],[398,999],[934,852],[371,607],[816,708],[656,463],[167,478],[128,961],[698,640],[799,263],[865,539],[186,432],[911,396],[933,395],[569,654],[55,186],[262,443],[163,882],[170,308],[561,422],[843,390],[619,810],[64,549],[538,322],[729,869],[352,74],[879,895],[103,193],[479,380],[708,627],[60,373],[664,98],[299,170],[251,618],[397,130],[543,80],[958,966],[14,243],[624,637],[901,919],[562,60],[512,695],[518,364],[632,7],[611,353],[508,468],[741,716],[331,640],[167,609],[788,749],[293,367],[725,806],[822,697],[160,401],[433,824],[393,149],[590,120],[988,842],[945,641],[214,470],[661,855],[601,667],[666,74],[672,63],[310,561],[576,215],[175,712],[823,387],[316,82],[943,912],[892,270],[980,905],[831,529],[164,921],[48,27],[94,413],[256,252],[668,761],[69,566],[446,297],[394,726],[15,489],[906,305],[608,499],[627,790],[139,293],[35,151],[351,193],[594,570],[258,61],[171,54],[845,157],[364,590],[774,747],[178,112],[547,782],[583,92],[949,143],[19,567],[502,709],[409,40],[203,548],[211,115],[417,20],[349,648],[80,457],[32,186],[841,564],[670,332],[913,616],[457,661],[372,596],[351,176],[947,941],[143,802],[883,769],[278,827],[889,764],[648,536],[481,301],[86,684],[827,697],[290,997],[143,201],[154,754],[881,963],[115,580],[469,263],[487,423],[177,818],[39,354],[592,72],[296,420],[578,749],[200,583],[595,839],[70,789],[1,700],[228,985],[89,109],[646,174],[428,462],[791,394],[882,493],[979,536],[478,736],[308,625],[455,139],[216,371],[169,149],[553,476],[749,635],[505,512],[937,147],[282,585],[382,241],[82,223],[209,162],[379,225],[525,614],[329,480],[328,732],[714,147],[567,169],[667,621],[270,161],[802,326],[543,118],[28,142],[7,941],[406,55],[869,903],[652,126],[618,24],[499,547],[822,954],[515,359],[717,515],[449,793],[244,907],[31,205],[156,47],[309,588],[692,319],[439,796],[812,657],[979,612],[522,70],[221,236],[839,741],[487,726],[584,957],[997,722],[701,994],[10,466],[786,8],[754,379],[758,953],[34,941],[579,607],[158,673],[887,972],[448,941],[52,934],[535,161],[672,715],[801,370],[980,158],[233,76],[444,360],[448,441],[601,207],[45,332],[653,293],[126,932],[957,518],[725,507],[12,215],[861,425],[158,992],[997,226],[157,759],[571,520],[200,724],[967,934],[882,738],[903,499],[830,872],[6,860],[779,464],[885,759],[820,163],[813,291],[960,294],[953,970],[690,112],[751,539],[163,814],[798,158],[167,807],[512,726],[557,63],[48,801],[839,941],[193,16],[286,688],[394,93],[462,482],[319,460],[88,925],[977,703],[825,206],[518,392],[887,392],[563,639],[529,119],[726,435],[605,430],[902,22],[195,383],[265,328],[337,904],[655,403],[203,259],[140,612],[585,254],[695,466],[583,512],[662,60],[384,579],[978,843],[257,60],[717,385],[298,978],[305,647],[632,820],[722,181],[513,474],[392,608],[8,825],[698,483],[19,287],[746,305],[628,941],[733,164],[355,369],[245,776],[726,313],[476,265],[110,317],[532,883],[356,991],[322,70],[94,882],[591,118],[879,436],[871,559],[947,231],[481,848],[886,878],[957,869],[899,862],[260,505],[440,39],[675,142],[592,323],[817,427],[558,719],[837,603],[725,756],[194,975],[284,336],[569,179],[985,877],[514,62],[691,387],[804,634],[658,243],[884,362],[384,815],[632,806],[189,456],[825,676],[124,15],[67,138],[599,176],[734,707],[522,278],[871,536],[677,957],[808,526],[540,911],[771,36],[633,367],[468,51],[354,464],[244,765],[530,1000],[86,747],[460,581],[617,740],[199,520],[728,269],[893,422],[606,575],[479,923],[552,253],[841,609],[179,431],[162,967],[405,946],[906,556],[424,735],[189,879],[588,315],[217,897],[750,358],[856,72],[482,534],[120,723],[407,63],[471,295],[85,688],[327,264],[227,127],[471,305],[11,588],[769,30],[972,775],[4,802],[305,148],[87,349],[79,139],[112,300],[644,460],[585,267],[110,548],[73,717],[988,253],[285,960],[435,10],[883,788],[762,261],[262,760],[542,931],[134,385],[97,457],[193,343],[229,479],[418,931],[316,311],[396,19],[379,942],[859,122],[711,793],[682,358],[368,879],[591,174],[579,25],[480,170],[172,264],[717,196],[694,32],[274,849],[346,89],[65,4],[850,851],[312,455],[31,6],[783,361],[493,755],[731,566],[932,820],[581,303],[832,17],[276,374],[34,306],[98,859],[33,102],[581,364],[219,411],[565,595],[748,844],[324,359],[398,5],[824,48],[978,903],[631,636],[863,825],[350,907],[718,531],[228,834],[84,163],[109,169],[46,222],[853,821],[13,637],[851,741],[502,328],[615,671],[760,126],[329,239],[221,109],[128,714],[360,425],[548,112],[885,78],[562,206],[932,381],[823,588],[980,549],[970,251],[142,618],[451,777],[970,332],[582,600],[385,646],[295,347],[849,274],[945,381],[981,387],[658,225],[31,600],[541,497],[972,313],[478,18],[740,645],[55,269],[204,542],[759,731],[335,110],[175,653],[272,13],[358,275],[954,721],[347,774],[959,311],[578,626],[195,643],[663,787],[562,255],[994,964],[737,425],[325,207],[596,988],[157,625],[926,844],[373,354],[38,427],[209,317],[288,110],[465,891],[263,980],[279,118],[292,133],[372,712],[478,917],[419,886],[280,202],[707,621],[383,973],[487,209],[218,39],[157,114],[713,760],[758,829],[971,620],[208,242],[618,648],[730,419],[252,414],[220,404],[109,144],[895,610],[278,222],[431,74],[539,484],[852,42],[537,627],[121,235],[518,453],[928,242],[47,265],[272,675],[411,29],[964,852],[199,114],[889,296],[539,281],[180,519],[473,927],[931,182],[172,685],[346,62],[489,45],[933,638],[552,292],[550,378],[595,932],[754,366],[574,85],[38,49],[774,399],[575,666],[98,93],[954,986],[55,218],[598,232],[61,465],[626,127],[459,337],[328,924],[706,538],[329,704],[715,537],[709,786],[72,372],[707,268],[842,894],[457,294],[454,977],[415,806],[169,943],[503,535],[955,427],[209,728],[629,565],[22,582],[883,475],[730,885],[577,641],[391,365],[851,522],[241,132],[597,714],[779,96],[59,982],[609,943],[697,698],[661,67],[887,704],[131,399],[2,294],[531,778],[749,891],[843,286],[889,150],[405,628],[986,658],[247,21],[739,819],[901,218],[427,13],[636,635],[940,791],[979,190],[275,865],[339,760],[746,68],[719,515],[849,323],[561,487],[477,992],[215,283],[932,448],[942,83],[90,9],[321,484],[753,397],[344,686],[559,759],[259,64],[775,951],[441,712],[275,657],[850,381],[522,711],[926,481],[935,375],[834,565],[998,215],[467,500],[265,30],[67,472],[309,990],[264,216],[417,502],[527,755],[975,460],[527,321],[724,13],[882,885],[534,523],[653,334],[426,740],[76,145],[947,414],[889,977],[920,432],[515,548],[119,12],[227,698],[250,752],[208,385],[486,96],[630,475],[467,876],[775,417],[618,645],[896,640],[619,33],[373,244],[850,576],[190,626],[319,980],[72,613],[607,907],[475,975],[313,20],[907,910],[24,569],[846,812],[846,284],[354,516],[523,649],[452,938],[532,505],[804,902],[282,923],[42,690],[821,613],[993,280],[60,452],[460,878],[136,320],[401,572],[368,363],[116,523],[752,831],[726,156],[203,493],[257,69],[828,725],[661,871],[467,357],[586,377],[356,167],[109,718],[5,16],[532,511],[566,159],[280,564],[951,442],[145,519],[393,345],[187,469],[256,907],[161,217],[894,125],[613,601],[875,847],[478,714],[279,318],[610,118],[36,559],[560,278],[226,527],[474,877],[314,934],[863,21],[750,702],[338,187],[545,910],[988,423],[394,876],[807,810],[505,9],[301,742],[393,787],[105,548],[405,29],[189,61],[144,898],[667,205],[805,660],[619,77],[270,416],[274,655],[138,810],[40,895],[448,431],[591,524],[45,441],[548,928],[552,381],[768,128],[544,26],[830,893],[597,14],[321,902],[701,198],[819,951],[896,584],[491,841],[675,725],[601,417],[356,104],[641,986],[551,464],[98,451],[371,447],[979,975],[841,113],[360,760],[46,736],[679,348],[902,66],[377,146],[116,732],[692,197],[432,317],[17,745],[644,66],[275,228],[66,687],[520,307],[11,662],[583,185],[811,726],[248,941],[114,136],[827,801],[723,257],[956,971],[329,896],[94,380],[273,129],[888,59],[855,134],[663,14],[851,980],[422,220],[296,212],[377,275],[434,315],[903,671],[636,933],[103,48],[32,505],[55,40],[418,687],[679,768],[680,468],[7,532],[388,279],[265,828],[129,571],[821,524],[29,157],[666,685],[111,799],[274,239],[189,125],[717,45],[919,184],[424,492],[471,902],[687,671],[779,345],[816,903],[107,456],[78,227],[444,189],[603,76],[466,508],[788,539],[385,699],[431,762],[839,625],[343,153],[902,473],[295,824],[155,882],[80,803],[737,560],[770,590],[549,758],[495,644],[693,344],[223,201],[914,836],[824,80],[988,645],[71,213],[228,355],[319,814],[31,893],[427,316],[934,290],[932,567],[132,806],[613,155],[666,254],[881,227],[158,460],[600,146],[848,324],[933,64],[414,826],[967,233],[520,906],[912,437],[40,185],[340,23],[662,855],[751,871],[294,775],[210,651],[77,790],[91,1000],[993,661],[459,804],[670,11],[768,365],[317,39],[988,577],[420,947],[243,340],[501,230],[631,69],[539,932],[370,993],[517,47],[352,777],[793,367],[510,509],[116,596],[265,367],[436,697],[403,883],[633,998],[893,857],[512,482],[90,936],[60,417],[146,899],[221,482],[680,538],[436,657],[259,272],[273,948],[5,425],[213,264],[976,604],[166,275],[694,268],[487,455],[65,422],[252,707],[42,94],[538,840],[599,85],[758,328],[284,678],[117,844],[984,778],[784,341],[996,253],[320,62],[549,183],[771,490],[276,485],[137,840],[821,248],[24,583],[70,485],[52,708],[847,244],[631,500],[710,477],[877,252],[65,106],[412,735],[808,544],[758,595],[818,461],[507,475],[726,246],[438,633],[89,930],[846,183],[181,208],[191,383],[185,446],[188,695],[521,105],[3,247],[277,918],[965,426],[179,364],[650,367],[516,139],[822,890],[566,757],[302,823],[265,913],[748,833],[693,159],[93,688],[404,690],[246,21],[769,575],[256,428],[108,952],[84,850],[727,358],[894,325],[121,688],[557,966],[307,280],[519,590],[849,390],[972,667],[108,646],[797,80],[307,209],[84,138],[486,689],[737,156],[863,570],[270,852],[30,66],[717,531],[288,907],[673,641],[68,519],[669,778],[852,479],[939,323],[897,351],[234,564],[614,653],[250,675],[781,572],[341,550],[614,816],[553,270],[36,750],[163,39],[905,176],[527,137],[202,289],[367,401],[29,645],[438,62],[551,5],[938,404],[265,479],[309,379],[185,26],[669,696],[965,206],[341,581],[789,864],[296,961],[217,188],[746,979],[483,296],[304,341],[408,777],[900,152],[468,196],[48,371],[920,553],[294,280],[451,939],[4,468],[960,398],[86,418],[381,914],[392,798],[471,103],[981,434],[705,582],[56,397],[266,141],[32,689],[693,17],[736,349],[246,24],[187,262],[491,357],[511,78],[853,215],[414,962],[250,33],[9,482],[646,765],[396,227],[297,788],[982,815],[857,155],[567,122],[797,146],[982,103],[812,780],[464,882],[515,56],[210,381],[79,743],[624,713],[771,225],[637,19],[757,265],[85,748],[196,139],[293,432],[496,286],[868,86],[248,948],[272,442],[95,404],[95,954],[306,208],[65,908],[456,997],[864,798],[979,765],[399,32],[37,510],[149,316],[795,90],[811,782],[226,312],[291,292],[520,831],[844,195],[63,428],[752,527],[386,23],[215,134],[414,662],[6,543],[657,371],[830,141],[434,361],[181,58],[995,378],[216,708],[919,795],[463,480],[498,71],[486,918],[633,83],[410,261],[551,741],[222,874],[117,772],[987,212],[640,325],[862,939],[683,131],[440,909],[772,409],[96,580],[823,709],[33,688],[913,576],[622,38],[765,954],[172,918],[84,237],[188,844],[666,436],[100,42],[387,535],[141,305],[905,100],[731,40],[479,314],[394,20],[195,722],[187,589],[333,264],[47,876],[36,230],[647,98],[647,97],[795,710],[721,158],[28,765],[892,75],[698,409],[468,242],[392,888],[28,602],[273,966],[848,485],[347,76],[390,938],[165,244],[868,227],[587,698],[385,979],[292,160],[82,174],[776,724],[652,654],[926,451],[407,329],[503,308],[503,950],[174,283],[629,235],[398,891],[158,255],[667,226],[776,784],[587,542],[598,803],[422,301],[584,542],[58,552],[433,432],[555,662],[94,213],[264,804],[325,498],[956,719],[387,126],[671,956],[291,92],[230,741],[624,616],[257,718],[215,484],[86,405],[517,281],[184,853],[80,88],[905,99],[76,639],[982,123],[970,873],[18,886],[564,220],[595,306],[258,287],[575,153],[404,80],[852,867],[795,746],[101,742],[432,262],[533,838],[648,427],[578,579],[831,225],[303,283],[636,426],[407,159],[717,273],[248,266],[715,865],[594,976],[459,369],[322,759],[7,137],[106,716],[990,718],[521,121],[37,681],[791,630],[934,168],[795,281],[680,800],[213,873],[169,298],[802,524],[458,762],[324,383],[743,988],[92,333],[327,280],[517,808],[244,997],[788,771],[314,245],[995,658],[798,105],[99,530],[488,421],[184,884],[469,133],[447,653],[183,703],[322,4],[429,992],[367,184],[929,937],[998,580],[74,50],[169,149],[87,882],[979,557],[546,471],[912,796],[692,57],[941,727],[94,285],[758,149],[876,231],[240,561],[217,109],[269,26],[257,618],[411,437],[158,324],[394,867],[561,18],[71,324],[683,916],[161,416],[341,298],[291,360],[206,700],[865,64],[247,591],[377,164],[573,567],[407,526],[767,213],[245,797],[214,416],[917,713],[21,537],[420,551],[735,897],[531,710],[528,341],[546,536],[57,346],[211,758],[911,880],[800,233],[966,823],[402,591],[662,817],[222,286],[989,751],[852,12],[179,9],[376,340],[145,254],[659,249],[582,805],[200,886],[62,270],[874,140],[760,759],[880,530],[54,378],[367,379],[268,698],[626,395],[223,563],[402,123],[277,777],[419,434],[208,961],[312,973],[429,14],[32,604],[572,517],[599,964],[923,285],[726,929],[396,965],[448,552],[585,26],[616,521],[399,808],[464,90],[772,723],[99,431],[837,246],[444,26],[697,854],[655,391],[504,121],[97,228],[416,179],[391,308],[973,692],[905,195],[119,789],[613,620],[563,981],[875,285],[366,574],[910,390],[691,277],[261,344],[532,458],[356,851],[39,376],[589,590],[421,209],[643,763],[272,363],[522,883],[528,344],[911,53],[133,490],[837,632],[787,508],[736,207],[486,253],[73,442],[907,978],[614,321],[685,827],[543,493],[971,646],[380,595],[606,26],[536,235],[15,501],[660,330],[572,915],[323,86],[795,240],[13,195],[161,922],[768,80],[417,523],[692,398],[496,132],[704,118],[247,555],[233,237],[522,266],[820,338],[482,841],[333,582],[552,911],[455,171],[180,997],[831,74],[815,257],[122,420],[57,986],[531,616],[632,6],[86,277],[490,713],[334,996],[392,745],[654,115],[858,355],[14,985],[932,724],[392,574],[182,621],[301,98],[558,962],[529,150],[242,796],[764,357],[457,652],[287,126],[278,205],[787,243],[498,213],[759,567],[632,691],[549,57],[634,462],[469,198],[803,142],[98,906],[349,594],[416,377],[121,999],[892,618],[689,510],[808,926],[433,880],[987,248],[697,857],[543,626],[935,881],[379,671],[623,633],[721,630],[65,853],[387,692],[791,707],[724,555],[601,542],[867,605],[711,464],[763,905],[718,196],[361,596],[75,475],[818,583],[949,258],[484,975],[990,685],[174,615],[850,698],[487,249],[822,40],[241,834],[792,991],[367,540],[135,139],[595,344],[271,975],[345,137],[327,878],[406,666],[612,136],[179,604],[480,605],[562,478],[9,563],[156,471],[19,505],[849,910],[266,354],[628,299],[883,212],[285,906],[450,532],[577,291],[192,784],[457,727],[880,299],[390,733],[233,758],[305,32],[973,443],[277,263],[36,849],[268,308],[547,414],[95,269],[749,245],[904,198],[743,168],[685,499],[95,804],[1000,472],[848,90],[399,601],[662,122],[849,799],[612,999],[278,929],[882,718],[447,809],[95,607],[13,774],[102,579],[955,993],[952,154],[83,282],[339,701],[761,762],[896,103],[980,907],[270,430],[995,296],[523,735],[558,810],[657,410],[819,612],[864,868],[632,110],[281,846],[23,151],[98,685],[290,874],[91,512],[895,782],[163,901],[285,990],[234,435],[191,75],[250,448],[398,498],[519,536],[819,4],[998,843],[612,848],[727,415],[79,249],[584,527],[920,693],[950,956],[880,447],[89,878],[374,622],[266,772],[723,556],[392,703],[349,440],[431,36],[836,793],[725,193],[420,600],[329,405],[753,467],[57,315],[56,202],[717,504],[624,879],[639,369],[753,320],[836,153],[282,598],[213,131],[639,252],[559,683],[813,157],[801,348],[246,948],[637,572],[551,613],[222,588],[287,174],[696,763],[798,913],[137,36],[699,422],[990,493],[666,504],[730,263],[451,136],[139,71],[645,333],[846,380],[316,141],[724,881],[610,100],[114,939],[442,258],[198,363],[62,631],[974,949],[814,404],[283,994],[40,569],[346,76],[370,501],[586,499],[332,544],[526,868],[962,260],[312,220],[857,337],[323,287],[559,714],[811,104],[864,307],[793,163],[904,411],[178,462],[201,826],[601,638],[82,79],[512,684],[958,830],[223,324],[332,515],[703,628],[296,511],[9,429],[892,460],[552,273],[379,530],[583,107],[720,433],[959,705],[25,781],[466,629],[534,298],[985,31],[349,455],[337,330],[62,321],[528,761],[728,8],[720,868],[276,222],[79,565],[898,696],[780,356],[281,25],[814,362],[845,510],[636,911],[522,867],[257,35],[850,367],[119,739],[638,126],[736,647],[626,126],[911,207],[207,402],[229,927],[669,456],[425,218],[13,371],[317,249],[554,872],[807,78],[905,919],[305,318],[269,129],[774,562],[632,127],[100,459],[708,875],[77,290],[528,435],[328,34],[403,94],[346,599],[325,618],[599,19],[613,885],[822,413],[449,444],[220,386],[722,838],[418,560],[877,257],[341,500],[341,57],[575,306],[531,59],[779,785],[638,963],[749,505],[43,166],[82,78],[102,954],[362,93],[765,491],[587,223],[881,942],[212,483],[638,14],[893,597],[566,522],[623,431],[392,317],[319,135],[28,395],[109,959],[646,273],[428,75],[974,555],[731,517],[475,476],[933,533],[617,157],[168,98],[980,335],[465,723],[484,919],[485,280],[211,876],[413,685],[709,288],[143,286],[551,275],[651,12],[338,375],[598,526],[935,699],[696,279],[907,150],[771,181],[675,83],[901,390],[80,806],[749,150],[820,611],[967,509],[445,225],[434,488],[944,199],[219,513],[275,756],[367,975],[826,219],[252,572],[219,978],[522,467],[113,230],[704,325],[333,751],[528,750],[178,969],[297,339],[289,296],[144,809],[471,722],[195,481],[351,764],[787,791],[708,523],[765,969],[244,191],[749,203],[595,501],[47,514],[254,575],[548,330],[213,233],[216,842],[140,671],[108,90],[239,838],[738,885],[257,641],[873,944],[669,118],[320,658],[296,849],[815,565],[221,194],[330,193],[447,225],[163,369],[962,840],[952,800],[95,726],[742,335],[618,409],[478,723],[440,49],[879,594],[86,799],[322,704],[72,468],[902,431],[760,341],[468,591],[866,395],[625,391],[870,11],[728,76],[244,511],[346,886],[760,394],[249,369],[934,311],[694,390],[510,918],[548,140],[937,563],[548,43],[322,315],[347,888],[847,911],[144,733],[122,307],[532,893],[426,741],[1000,864],[360,867],[404,514],[904,125],[106,869],[943,950],[500,628],[441,599],[69,763],[856,848],[762,507],[683,201],[632,241],[160,398],[929,487],[321,109],[342,935],[437,822],[761,67],[418,518],[623,488],[4,244],[807,255],[238,257],[363,24],[698,442],[295,570],[634,946],[630,587],[29,31],[438,357],[538,232],[298,417],[618,858],[10,308],[339,227],[133,192],[974,959],[841,515],[369,451],[748,773],[444,659],[657,95],[166,589],[430,263],[33,308],[48,83],[890,849],[979,363],[629,450],[634,300],[326,840],[582,809],[882,4],[352,338],[282,856],[913,366],[747,756],[31,245],[195,568],[873,939],[759,74],[150,593],[430,576],[544,262],[100,557],[469,872],[586,435],[926,851],[873,145],[394,235],[682,561],[883,897],[897,952],[82,239],[730,928],[993,532],[211,888],[764,854],[214,522],[181,790],[466,295],[666,410],[194,498],[985,248],[844,732],[159,300],[478,506],[382,246],[623,387],[991,940],[285,224],[161,85],[122,515],[972,83],[855,674],[81,416],[272,167],[747,292],[48,74],[533,313],[402,974],[698,760],[611,599],[347,438],[744,344],[623,630],[590,990],[431,557],[343,530],[445,986],[10,336],[256,242],[905,761],[656,184],[154,663],[659,995],[448,964],[497,99],[206,74],[277,559],[783,594],[849,856],[446,321],[655,524],[297,657],[80,988],[240,426],[741,813],[585,875],[958,766],[389,589],[258,29],[519,919],[662,96],[856,520],[405,373],[181,783],[93,359],[576,357],[387,924],[721,801],[153,221],[894,96],[598,883],[266,310],[537,701],[495,555],[538,598],[477,298],[484,330],[507,834],[250,738],[654,185],[918,523],[683,522],[148,90],[582,983],[56,730],[672,676],[297,426],[296,696],[400,672],[612,446],[807,803],[263,233],[337,879],[15,866],[733,234],[200,714],[981,992],[867,766],[229,481],[717,137],[480,336],[716,758],[18,984],[916,947],[931,285],[425,362],[444,120],[883,740],[632,715],[443,275],[11,401],[10,19],[280,233],[508,580],[622,118],[293,385],[978,42],[745,994],[556,173],[260,354],[213,750],[228,123],[426,860],[645,572],[423,921],[355,633],[268,905],[599,68],[300,407],[753,108],[276,819],[631,505],[402,591],[173,501],[69,941],[800,103],[367,451],[560,95],[869,931],[930,174],[936,175],[313,632],[782,476],[337,975],[109,982],[913,916],[721,592],[359,314],[857,793],[279,867],[141,150],[19,57],[600,464],[996,8],[973,498],[502,118],[281,380],[106,60],[287,497],[167,288],[149,380],[741,286],[500,441],[762,415],[30,157],[248,481],[423,332],[28,463],[289,374],[118,898],[685,58],[721,486],[763,301],[554,597],[360,488],[883,366],[641,686],[488,973],[586,542],[574,467],[510,248],[209,122],[148,348],[159,195],[167,375],[428,638],[79,929],[608,693],[417,332],[98,377],[419,124],[92,391],[218,642],[88,663],[651,636],[848,642],[934,63],[372,451],[730,303],[739,103],[554,833],[213,655],[515,554],[481,709],[417,226],[891,28],[681,525],[674,454],[854,82],[458,247],[651,160],[691,627],[121,555],[275,352],[291,158],[98,444],[840,652],[775,129],[649,175],[648,310],[88,409],[424,553],[865,942],[884,283],[786,9],[140,606],[948,31],[703,650],[399,333],[844,343],[754,197],[552,256],[918,643],[967,1000],[42,29],[310,590],[275,734],[940,706],[771,412],[45,433],[68,545],[87,83],[785,652],[687,433],[471,713],[888,335],[408,230],[524,567],[721,179],[50,703],[627,690],[415,417],[823,199],[97,393],[816,966],[687,694],[475,644],[788,536],[789,491],[592,79],[227,641],[77,460],[688,302],[960,365],[643,631],[400,492],[270,823],[413,355],[556,855],[142,861],[261,914],[782,962],[852,50],[152,134],[156,439],[805,727],[980,815],[313,100],[71,184],[509,812],[788,678],[430,618],[116,423],[400,184],[404,215],[747,859],[455,273],[598,256],[963,941],[147,476],[245,567],[222,248],[921,102],[482,912],[243,829],[203,944],[578,260],[681,870],[15,879],[536,529],[633,52],[109,813],[745,312],[237,94],[983,737],[748,799],[864,293],[189,146],[662,206],[453,217],[503,449],[879,524],[255,779],[977,713],[113,828],[778,775],[256,355],[337,88],[19,967],[640,470],[84,292],[197,367],[310,843],[440,756],[756,68],[620,468],[588,531],[325,945],[87,806],[306,791],[529,856],[530,360],[975,582],[641,672],[79,696],[677,44],[719,168],[927,575],[286,655],[241,401],[398,443],[658,114],[511,954],[179,98],[462,91],[21,789],[796,862],[541,663],[650,329],[59,139],[491,925],[769,49],[703,282],[681,93],[653,122],[612,778],[795,456],[546,896],[861,106],[142,711],[982,487],[270,604],[265,450],[876,498],[106,81],[764,820],[859,232],[616,3],[772,216],[640,606],[483,261],[919,607],[449,897],[535,425],[278,916],[970,433],[296,18],[910,259],[488,793],[434,926],[268,865],[670,610],[678,85],[934,493],[298,137],[26,122],[864,298],[864,465],[768,412],[984,711],[44,901],[811,33],[206,90],[405,963],[886,13],[708,456],[845,115],[709,4],[728,724],[233,714],[138,641],[436,354],[331,650],[593,617],[528,914],[64,12],[281,885],[503,477],[169,961],[512,247],[426,43],[16,818],[598,170],[78,967],[565,874],[359,153],[413,111],[621,171],[529,275],[154,578],[976,680],[231,839],[284,244],[153,877],[330,260],[268,525],[966,235],[121,61],[889,843],[927,495],[25,28],[903,484],[252,864],[533,425],[266,284],[58,152],[944,655],[961,497],[87,129],[964,673],[260,840],[808,838],[928,281],[578,274],[68,549],[420,988],[812,291],[800,888],[569,776],[513,155],[464,439],[282,886],[785,721],[73,431],[757,607],[558,427],[557,673],[95,436],[57,896],[110,91],[423,429],[189,861],[434,900],[252,574],[325,177],[489,161],[265,721],[217,986],[400,527],[193,67],[527,665],[339,117],[361,565],[843,716],[323,575],[672,362],[624,207],[649,566],[443,849],[189,846],[207,378],[523,124],[448,254],[875,660],[20,531],[645,363],[465,318],[823,653],[733,688],[538,453],[284,462],[155,862],[132,532],[591,918],[29,99],[295,900],[376,572],[801,871],[370,959],[119,71],[148,201],[205,31],[741,476],[88,100],[230,910],[275,363],[380,721],[351,875],[795,235],[18,937],[990,945],[991,687],[633,976],[963,583],[1000,818],[501,351],[515,632],[236,105],[659,908],[415,95],[981,24],[6,753],[761,682],[462,794],[102,816],[687,531],[858,175],[678,643],[137,881],[988,443],[309,461],[472,74],[619,763],[335,940],[552,524],[431,317],[15,196],[239,736],[361,756],[714,867],[221,811],[59,606],[619,373],[354,760],[67,290],[553,137],[704,848],[760,788],[198,433],[925,617],[397,169],[276,857],[65,807],[616,683],[64,502],[221,193],[884,910],[53,176],[585,325],[181,444],[824,646],[234,79],[50,727],[149,720],[159,684],[276,205],[748,360],[437,867],[386,482],[447,194],[925,419],[458,507],[181,67],[957,153],[301,169],[40,998],[295,762],[879,914],[283,287],[626,885],[769,135],[755,571],[946,307],[880,841],[798,600],[887,164],[811,210],[764,796],[179,980],[958,91],[14,587],[41,821],[832,377],[778,305],[335,339],[651,76],[519,674],[560,441],[511,792],[958,163],[898,179],[25,866],[309,30],[969,679],[584,630],[744,534],[863,747],[83,870],[738,345],[950,995],[587,723],[430,698],[473,495],[20,529],[480,892],[962,293],[947,237],[943,717],[453,532],[262,404],[700,352],[752,629],[163,751],[622,411],[367,463],[718,248],[985,273],[874,177],[116,533],[464,50],[958,192],[123,730],[173,596],[507,423],[100,671],[174,81],[349,177],[715,867],[908,524],[442,680],[623,763],[213,702],[530,440],[417,640],[802,460],[296,76],[276,125],[877,388],[736,184],[823,542],[898,861],[568,744],[487,447],[847,534],[379,281],[346,858],[510,490],[888,45],[927,664],[78,562],[133,90],[942,782],[506,837],[203,669],[679,302],[648,810],[585,519],[312,397],[511,462],[352,451],[142,306],[239,70],[153,567],[929,452],[748,385],[465,307],[387,282],[908,140],[681,187],[508,918],[673,619],[959,827],[242,558],[846,127],[243,607],[761,600],[839,291],[246,111],[98,3],[778,178],[575,556],[737,460],[56,468],[468,42],[11,758],[198,992],[171,882],[530,284],[742,468],[37,154],[924,17],[582,280],[214,836],[2,606],[889,681],[553,503],[1000,182],[170,242],[526,494],[804,868],[468,909],[14,862],[742,959],[509,811],[252,94],[568,637],[637,713],[403,971],[77,697],[86,52],[866,693],[525,200],[150,504],[369,199],[703,608],[18,421],[685,249],[29,789],[868,539],[500,579],[352,169],[337,87],[295,653],[616,312],[19,901],[262,824],[625,571],[694,897],[502,72],[565,162],[185,27],[455,280],[144,844],[691,221],[327,46],[262,519],[466,966],[447,577],[899,22],[424,600],[110,422],[426,122],[612,256],[981,835],[752,227],[454,394],[526,335],[284,230],[911,508],[306,878],[29,107],[57,652],[221,699],[76,692],[661,987],[326,437],[25,811],[672,611],[339,919],[378,906],[815,528],[986,716],[24,168],[662,862],[970,835],[110,78],[477,136],[263,287],[41,726],[267,957],[253,71],[147,771],[64,216],[69,203],[231,172],[478,290],[176,233],[612,735],[2,678],[948,364],[500,770],[35,342],[497,368],[793,569],[709,76],[633,105],[165,180],[423,774],[136,355],[494,321],[915,739],[48,890],[100,134],[51,327],[403,996],[225,214],[137,976],[877,8],[764,712],[116,575],[739,781],[679,191],[58,500],[939,719],[165,520],[808,369],[68,646],[122,134],[983,949],[986,233],[607,359],[646,68],[801,664],[562,741],[807,990],[984,335],[843,50],[544,527],[527,435],[847,612],[925,187],[226,904],[440,982],[834,802],[150,774],[391,516],[576,180],[861,970],[483,337],[229,398],[747,864],[810,908],[667,917],[992,497],[416,249],[296,847],[412,432],[306,862],[819,733],[622,829],[434,830],[555,721],[53,675],[224,656],[24,521],[420,985],[18,115],[470,218],[172,975],[175,915],[991,25],[190,875],[823,758],[161,233],[268,265],[980,587],[550,5],[203,696],[598,485],[547,890],[695,825],[63,399],[303,107],[691,935],[129,499],[408,989],[918,6],[867,148],[86,147],[739,756],[915,868],[340,20],[990,336],[900,322],[41,32],[110,125],[26,960],[81,755],[899,776],[121,433],[770,259],[33,787],[543,687],[130,394],[412,186],[251,783],[276,285],[33,195],[306,401],[919,101],[3,786],[243,748],[497,826],[836,584],[786,427],[497,497],[279,373],[136,428],[494,327],[78,156],[975,557],[150,382],[683,914],[328,181],[627,765],[680,334],[314,841],[289,243],[122,409],[593,554],[231,118],[37,690],[355,987],[990,607],[334,785],[401,688],[997,427],[185,24],[523,693],[831,933],[584,335],[197,391],[50,840],[459,865],[935,101],[895,342],[17,386],[627,731],[141,171],[500,173],[135,709],[928,223],[548,534],[190,57],[396,913],[624,649],[563,561],[512,153],[864,274],[240,700],[998,193],[341,917],[813,572],[844,997],[776,200],[958,616],[743,542],[269,84],[98,963],[422,270],[457,862],[70,258],[945,450],[603,759],[316,747],[680,602],[900,768],[119,335],[589,621],[912,510],[943,46],[539,445],[50,231],[905,754],[528,609],[90,985],[272,742],[78,41],[699,593],[351,562],[642,668],[881,16],[627,225],[930,850],[334,631],[912,904],[611,254],[735,870],[255,376],[41,891],[778,9],[969,815],[753,276],[504,620],[368,406],[38,755],[131,670],[348,971],[152,440],[231,670],[602,290],[531,516],[962,65],[845,165],[758,521],[356,269],[456,51],[68,613],[819,300],[914,47],[520,469],[309,745],[901,906],[555,972],[324,249],[141,778],[799,934],[544,836],[833,27],[752,628],[149,207],[365,504],[942,263],[662,494],[448,446],[53,53],[575,858],[273,644],[54,760],[709,946],[124,128],[90,156],[244,664],[881,307],[177,545],[326,130],[799,181],[339,881],[848,132],[117,128],[196,558],[689,103],[197,78],[470,19],[396,393],[256,921],[148,611],[523,18],[142,517],[25,400],[724,424],[345,467],[774,343],[825,642],[218,64],[413,693],[52,122],[824,744],[403,395],[198,507],[950,46],[309,278],[58,203],[524,45],[763,903],[607,990],[856,214],[219,602],[202,23],[884,592],[846,827],[845,453],[488,415],[921,709],[160,244],[299,566],[472,537],[267,877],[708,248],[416,883],[435,161],[396,302],[825,826],[764,466],[699,933],[667,537],[989,860],[570,521],[200,174],[196,144],[572,889],[838,699],[320,900],[905,376],[468,468],[67,181],[933,991],[607,319],[264,862],[265,316],[670,283],[272,277],[117,446],[354,358],[468,283],[392,419],[685,771],[316,653],[382,53],[914,52],[361,100],[357,681],[897,621],[271,615],[677,181],[616,817],[5,882],[956,635],[551,221],[710,853],[435,50],[362,832],[623,946],[172,282],[865,455],[623,487],[657,818],[167,109],[76,826],[249,521],[177,45],[180,90],[112,233],[473,941],[394,939],[237,949],[366,674],[732,801],[342,752],[311,736],[229,208],[815,996],[241,478],[630,97],[550,657],[567,31],[327,843],[397,530],[669,867],[386,72],[750,681],[397,615],[620,168],[812,817],[334,668],[516,629],[492,880],[353,193],[87,797],[9,265],[87,218],[965,219],[66,491],[305,531],[397,410],[338,342],[292,11],[222,181],[850,112],[362,12],[425,767],[722,410],[696,699],[510,343],[269,543],[146,992],[148,981],[816,442],[115,240],[109,161],[720,12],[606,993],[613,618],[655,987],[563,406],[251,162],[287,386],[307,477],[967,263],[400,963],[5,139],[49,749],[665,987],[357,51],[446,357],[550,884],[597,361],[837,347],[381,47],[661,501],[6,741],[402,181],[710,914],[69,144],[653,885],[698,845],[491,292],[938,674],[151,297],[155,507],[247,539],[383,371],[840,935],[573,211],[71,23],[899,764],[561,294],[565,552],[69,670],[854,415],[943,483],[752,913],[499,518],[8,5],[69,536],[852,600],[996,43],[487,486],[911,885],[319,472],[207,308],[477,399],[610,519],[155,688],[699,797],[500,20],[269,879],[252,333],[628,309],[67,472],[6,55],[222,644],[782,780],[201,315],[430,18],[230,545],[863,500],[759,519],[262,774],[610,289],[772,675],[760,15],[931,353],[557,838],[924,285],[923,298],[327,661],[868,170],[680,825],[486,585],[228,449],[721,874],[634,682],[991,558],[437,968],[275,392],[897,565],[790,136],[185,381],[909,850],[811,482],[911,807],[987,300],[60,632],[390,485],[95,775],[36,905],[81,894],[411,955],[970,156],[197,761],[86,324],[772,295],[235,257],[877,956],[852,160],[725,606],[504,944],[434,745],[360,310],[685,497],[3,225],[460,470],[244,369],[626,349],[240,23],[54,270],[331,603],[139,850],[140,862],[763,259],[290,798],[401,574],[745,934],[862,207],[736,26],[611,486],[460,540],[100,617],[645,925],[662,145],[481,762],[42,561],[439,188],[475,539],[839,381],[810,452],[539,118],[933,841],[748,879],[61,575],[758,981],[478,928],[595,48],[745,319],[29,966],[95,186],[770,273],[287,479],[902,675],[43,216],[710,806],[94,257],[528,903],[485,724],[208,608],[790,713],[854,158],[931,184],[7,883],[568,423],[26,381],[755,395],[20,182],[341,319],[993,740],[484,398],[121,760],[53,694],[52,37],[796,467],[620,913],[32,770],[61,860],[671,524],[330,145],[346,52],[265,302],[67,633],[344,414],[269,965],[296,517],[778,549],[505,906],[373,256],[817,628],[706,955],[261,236],[787,365],[135,822],[423,345],[653,24],[136,182],[546,231],[396,553],[576,190],[765,285],[33,415],[793,399],[719,696],[788,34],[113,53],[134,257],[483,233],[256,312],[899,210],[338,419],[848,471],[643,124],[398,938],[676,900],[709,432],[868,961],[654,436],[894,119],[365,327],[980,563],[857,174],[398,52],[551,208],[106,159],[931,544],[862,198],[7,587],[964,482],[709,947],[6,133],[321,232],[275,769],[677,665],[935,258],[496,28],[791,561],[702,368],[103,444],[311,617],[769,699],[571,428],[665,330],[809,91],[736,27],[81,847],[580,588],[294,727],[162,775],[672,598],[974,511],[181,862],[531,354],[60,541],[905,261],[509,318],[828,373],[185,376],[288,495],[323,735],[906,895],[879,196],[696,287],[924,142],[15,826],[548,86],[209,587],[69,962],[585,813],[91,494],[241,105],[113,709],[673,184],[988,566],[734,102],[204,993],[476,325],[414,331],[328,530],[653,8],[993,660],[782,631],[191,798],[923,817],[759,410],[680,487],[750,842],[262,513],[777,525],[424,54],[480,886],[579,81],[524,900],[512,272],[801,38],[782,234],[667,781],[496,548],[176,251],[826,454],[844,774],[521,488],[786,432],[683,543],[253,827],[57,553],[895,361],[378,342],[568,179],[924,773],[835,605],[145,149],[79,394],[685,963],[25,21],[90,584],[656,810],[145,111],[300,496],[713,685],[397,187],[346,641],[217,461],[735,943],[965,434],[418,964],[360,709],[305,933],[545,137],[876,218],[575,632],[733,695],[580,395],[685,518],[116,466],[853,672],[83,195],[920,726],[988,191],[947,324],[491,470],[99,761],[990,679],[787,904],[468,730],[340,182],[266,422],[433,791],[85,335],[533,199],[612,829],[471,777],[430,695],[93,658],[851,685],[819,426],[709,660],[419,191],[824,765],[737,133],[758,480],[119,513],[711,933],[518,257],[267,767],[207,198],[515,606],[512,538],[688,361],[667,770],[751,824],[79,479],[455,293],[7,150],[517,167],[596,913],[222,160],[425,715],[428,377],[471,12],[41,232],[133,689],[835,436],[788,717],[928,659],[226,868],[813,467],[407,995],[776,299],[423,937],[21,77],[889,496],[803,111],[563,253],[29,729],[644,314],[730,871],[137,281],[611,271],[608,409],[244,813],[197,782],[106,519],[866,741],[339,40],[235,115],[783,773],[575,261],[836,687],[208,598],[883,113],[723,940],[998,556],[927,131],[929,72],[123,765],[963,457],[478,807],[127,65],[43,478],[387,364],[443,633],[534,434],[631,144],[78,162],[508,854],[810,941],[285,916],[239,531],[679,202],[710,997],[264,880],[658,756],[945,162],[32,541],[467,330],[523,24],[163,57],[112,340],[224,268],[245,546],[183,961],[480,826],[777,264],[437,962],[40,69],[447,151],[331,977],[581,471],[432,864],[265,44],[335,648],[171,121],[378,735],[318,410],[653,930],[398,756],[480,80],[149,633],[319,233],[485,555],[259,908],[347,640],[954,643],[42,811],[164,584],[162,117],[783,873],[141,155],[383,224],[419,667],[140,305],[109,302],[690,106],[867,747],[825,843],[582,293],[545,814],[64,980],[916,12],[29,464],[559,336],[202,492],[178,772],[24,575],[956,489],[961,547],[272,262],[221,656],[76,363],[331,455],[296,638],[71,826],[471,376],[977,511],[604,689],[850,762],[191,99],[420,517],[715,268],[710,248],[600,623],[653,941],[154,878],[599,344],[334,764],[637,178],[348,692],[71,437],[581,249],[784,965],[733,121],[275,63],[305,971],[104,934],[330,442],[83,166],[226,480],[526,720],[568,401],[775,329],[577,229],[177,761],[378,19],[924,360],[863,787],[799,483],[732,827],[551,880],[20,969],[655,526],[240,797],[887,723],[391,227],[741,534],[589,856],[47,815],[603,676],[221,528],[210,723],[968,985],[578,193],[943,908],[10,292],[791,44],[415,764],[822,804],[880,528],[933,332],[230,735],[361,827],[932,91],[489,902],[634,551],[136,467],[558,432],[861,581],[658,32],[848,151],[394,47],[29,941],[867,877],[37,303],[5,189],[379,377],[979,10],[876,72],[421,312],[303,175],[53,728],[792,678],[711,827],[562,243],[718,381],[615,554],[269,671],[355,132],[412,304],[125,50],[897,973],[620,489],[441,434],[686,361],[79,771],[589,111],[181,20],[126,558],[610,603],[288,514],[334,892],[641,53],[133,616],[47,941],[75,865],[655,317],[228,338],[753,306],[66,943],[518,946],[745,104],[66,636],[562,289],[477,24],[479,773],[6,722],[44,548],[701,886],[794,919],[526,631],[164,779],[259,980],[407,123],[82,394],[240,635],[595,380],[503,267],[777,219],[957,139],[288,358],[525,705],[541,156],[667,883],[720,938],[554,140],[109,272],[386,405],[423,899],[157,87],[663,875],[147,602],[425,106],[23,380],[774,44],[565,15],[443,332],[900,845],[746,648],[814,616],[215,933],[399,298],[661,263],[239,350],[603,19],[257,416],[746,589],[129,187],[673,972],[382,692],[186,823],[723,378],[979,707],[876,694],[332,909],[617,45],[920,210],[403,576],[330,115],[994,566],[518,504],[440,648],[106,388],[263,508],[452,467],[160,989],[361,942],[675,383],[739,925],[736,332],[661,11],[805,525],[32,597],[237,753],[958,894],[654,164],[547,16],[929,561],[773,385],[721,855],[896,881],[570,542],[383,777],[245,934],[528,951],[90,383],[283,736],[198,657],[810,671],[354,63],[21,864],[811,423],[891,336],[631,701],[76,364],[518,912],[294,681],[294,865],[736,210],[597,556],[932,887],[813,494],[46,995],[855,515],[377,795],[44,987],[341,297],[603,211],[605,229],[840,646],[178,605],[56,279],[390,909],[963,184],[651,746],[634,322],[136,294],[651,652],[133,278],[128,72],[695,909],[850,429],[365,469],[733,229],[422,881],[252,356],[9,580],[831,722],[467,794],[551,855],[437,545],[761,770],[815,237],[92,743],[981,392],[232,434],[818,556],[292,965],[949,661],[622,628],[973,70],[429,772],[596,703],[705,961],[82,173],[637,697],[11,60],[331,672],[373,388],[193,576],[973,422],[796,485],[794,762],[258,822],[403,457],[365,325],[963,252],[585,734],[147,622],[345,904],[324,504],[807,777],[307,287],[748,948],[729,941],[294,316],[387,254],[725,261],[41,922],[149,625],[829,669],[514,522],[193,952],[575,854],[760,696],[822,81],[866,319],[679,816],[201,438],[498,274],[39,164],[238,996],[929,151],[928,236],[966,477],[878,283],[617,502],[817,565],[125,386],[323,231],[562,682],[700,979],[888,418],[485,399],[934,91],[316,549],[711,717],[917,100],[266,594],[145,352],[203,399],[109,17],[40,961],[690,295],[49,642],[491,515],[406,266],[656,399],[438,283],[398,786],[553,72],[820,514],[72,583],[626,847],[712,2],[643,305],[899,779],[607,579],[575,914],[211,383],[800,280],[162,584],[381,869],[594,605],[889,380],[326,144],[489,751],[229,400],[939,702],[466,28],[365,879],[373,743],[952,766],[618,817],[801,569],[482,984],[457,354],[353,481],[170,886],[704,928],[318,479],[732,747],[766,33],[177,341],[27,997],[210,673],[625,982],[720,917],[896,428],[456,616],[182,242],[203,466],[486,181],[479,746],[375,77],[753,111],[752,588],[369,942],[272,590],[756,778],[726,748],[708,59],[777,768],[746,681],[853,218],[171,554],[891,432],[717,409],[922,390],[945,818],[311,857],[132,397],[418,794],[669,282],[61,939],[494,197],[890,804],[613,571],[309,752],[378,405],[384,878],[467,367],[254,836],[435,753],[670,507],[543,274],[940,685],[424,949],[146,889],[739,659],[778,191],[864,464],[608,408],[192,117],[91,761],[599,695],[240,69],[700,965],[633,850],[446,644],[455,951],[167,905],[268,335],[295,816],[355,46],[460,92],[818,361],[338,282],[548,105],[1000,502],[56,891],[6,479],[796,598],[278,210],[263,270],[154,7],[375,910],[906,804],[704,654],[232,210],[400,317],[634,41],[344,606],[158,568],[864,463],[705,184],[589,909],[712,733],[324,733],[46,211],[854,486],[567,927],[697,803],[415,499],[938,280],[578,387],[797,286],[503,817],[968,333],[559,39],[367,128],[565,204],[567,898],[484,132],[924,246],[120,777],[97,284],[647,647],[805,534],[529,169],[827,871],[609,143],[218,397],[821,524],[138,352],[701,774],[581,884],[192,873],[556,529],[254,445],[986,675],[875,715],[573,397],[628,754],[340,18],[247,418],[538,355],[654,40],[903,854],[493,635],[303,820],[110,479],[235,966],[20,910],[656,74],[486,315],[426,172],[779,795],[867,558],[571,923],[214,962],[183,211],[187,831],[211,286],[824,138],[843,347],[154,959],[432,779],[754,149],[840,80],[544,333],[451,495],[492,68],[790,72],[131,176],[289,575],[114,474],[741,955],[560,418],[60,970],[111,522],[204,53],[304,494],[643,329],[559,813],[716,26],[400,79],[646,49],[419,808],[242,299],[958,563],[347,377],[328,967],[17,155],[133,785],[727,200],[564,734],[252,302],[659,922],[311,586],[240,781],[667,258],[432,504],[117,464],[222,332],[998,96],[471,674],[486,338],[449,328],[97,380],[951,261],[877,639],[895,13],[701,739],[38,277],[129,574],[709,786],[578,499],[805,620],[728,222],[405,258],[384,102],[499,763],[144,152],[745,670],[467,513],[737,519],[93,25],[950,768],[389,786],[836,709],[213,31],[462,532],[136,802],[133,836],[748,596],[136,396],[131,289],[18,72],[173,141],[38,726],[23,30],[795,944],[236,498],[459,147],[343,203],[642,729],[263,539],[294,79],[122,687],[296,128],[657,956],[286,474],[298,75],[500,702],[773,266],[778,269],[981,5],[368,507],[326,989],[276,139],[107,715],[247,780],[34,317],[307,409],[859,960],[263,500],[623,14],[230,678],[131,125],[299,823],[296,810],[892,259],[1000,80],[413,195],[915,864],[557,626],[217,821],[968,404],[789,231],[463,304],[711,647],[908,472],[337,910],[557,311],[229,456],[56,991],[275,597],[979,398],[890,1000],[315,854],[445,993],[57,22],[473,630],[963,119],[860,273],[423,86],[360,309],[923,796],[811,604],[912,392],[842,551],[867,970],[907,52],[772,81],[621,770],[136,839],[888,356],[699,55],[883,793],[11,470],[925,868],[554,698],[60,463],[692,404],[507,307],[330,603],[823,926],[490,497],[299,474],[373,142],[217,87],[575,422],[915,797],[436,617],[799,89],[66,198],[351,649],[74,433],[657,827],[832,124],[684,301],[952,329],[171,339],[38,399],[585,641],[899,815],[670,315],[573,1000],[345,261],[552,529],[262,839],[946,415],[273,856],[661,263],[991,752],[75,700],[228,290],[599,801],[95,618],[213,18],[426,964],[964,968],[944,955],[834,109],[192,888],[856,231],[456,622],[923,824],[467,517],[372,916],[428,902],[100,15],[604,28],[868,464],[721,238],[538,168],[381,256],[362,432],[83,675],[885,879],[43,172],[929,455],[702,91],[403,506],[895,227],[558,161],[219,893],[227,400],[724,207],[341,410],[647,717],[510,404],[586,521],[591,32],[292,750],[479,948],[198,525],[569,622],[522,182],[947,323],[427,323],[214,570],[320,658],[612,749],[200,483],[58,179],[813,731],[638,297],[332,79],[543,936],[567,891],[98,119],[806,840],[836,150],[105,181],[662,963],[886,873],[542,99],[849,60],[633,359],[700,846],[114,670],[669,358],[914,628],[719,201],[281,45],[308,616],[660,509],[41,619],[956,512],[880,441],[834,941],[202,960],[852,377],[490,187],[999,973],[456,711],[90,193],[454,64],[405,451],[693,267],[928,856],[34,295],[847,574],[152,989],[985,348],[364,951],[437,280],[438,428],[210,447],[770,802],[608,956],[344,501],[999,519],[877,992],[828,659],[236,207],[331,235],[885,185],[505,366],[942,560],[821,811],[182,573],[794,446],[113,908],[627,929],[242,319],[31,134],[488,963],[362,180],[481,224],[502,418],[113,554],[254,430],[736,479],[98,207],[13,658],[839,853],[776,266],[682,413],[660,516],[381,605],[740,478],[848,743],[46,942],[380,686],[192,150],[821,297],[921,409],[24,717],[459,531],[314,91],[556,555],[873,790],[106,339],[687,988],[947,944],[569,846],[96,696],[287,525],[986,943],[12,791],[273,278],[559,482],[937,316],[129,294],[788,93],[432,211],[198,725],[965,586],[88,511],[773,58],[175,190],[26,338],[287,137],[468,947],[929,869],[559,93],[973,232],[88,742],[532,251],[942,633],[417,893],[725,756],[798,781],[939,910],[586,98],[718,902],[366,124],[313,994],[982,820],[66,230],[776,802],[985,842],[52,821],[64,909],[987,825],[869,33],[791,5],[849,919],[94,510],[816,770],[160,973],[451,892],[825,626],[507,671],[215,604],[457,105],[325,214],[905,541],[519,948],[672,563],[757,60],[987,886],[190,813],[18,647],[855,810],[775,134],[65,432],[855,527],[677,594],[58,492],[685,382],[876,68],[720,828],[847,897],[839,946],[105,443],[775,447],[263,985],[942,836],[734,775],[279,317],[834,138],[647,245],[355,556],[191,118],[298,116],[466,264],[364,133],[163,231],[7,252],[110,388],[543,722],[883,523],[409,628],[390,169],[649,998],[420,26],[718,879],[148,120],[836,923],[978,836],[349,131],[69,582],[503,628],[669,546],[10,750],[410,338],[643,975],[939,320],[703,404],[151,105],[942,903],[533,978],[692,678],[120,714],[914,929],[996,260],[439,926],[888,287],[119,923],[804,256],[268,701],[548,804],[244,72],[381,989],[977,214],[948,894],[888,748],[791,201],[655,677],[263,381],[801,640],[395,908],[714,130],[990,194],[229,90],[135,991],[24,400],[479,514],[225,959],[244,760],[267,644],[218,824],[743,945],[250,207],[607,142],[697,246],[586,603],[667,20],[644,753],[926,556],[879,285],[927,180],[435,639],[226,642],[764,918],[587,424],[567,429],[110,298],[587,314],[74,374],[890,912],[257,778],[741,859],[389,412],[178,75],[118,648],[180,663],[720,178],[794,633],[932,412],[295,300],[478,155],[381,755],[900,252],[891,274],[935,154],[591,193],[27,262],[340,321],[51,894],[963,504],[2,235],[848,13],[265,786],[661,407],[848,108],[44,347],[155,183],[621,969],[557,249],[263,83],[177,131],[928,557],[771,688],[526,302],[117,209],[584,35],[87,15],[998,684],[128,539],[352,450],[199,235],[120,224],[563,743],[853,961],[695,336],[450,870],[610,330],[178,421],[958,362],[25,797],[145,590],[495,439],[829,485],[947,38],[604,581],[411,652],[837,296],[633,323],[407,71],[421,164],[26,781],[661,477],[41,409],[367,756],[600,539],[587,394],[737,183],[424,552],[511,680],[725,284],[908,262],[260,63],[401,464],[744,332],[152,421],[37,989],[483,210],[45,369],[116,306],[830,331],[42,415],[347,632],[398,451],[411,388],[948,652],[448,8],[909,959],[765,949],[925,967],[458,331],[176,748],[112,330],[873,402],[693,663],[347,378],[21,48],[790,530],[460,920],[856,518],[750,551],[318,839],[790,469],[534,999],[833,179],[378,969],[403,280],[888,858],[533,564],[547,707],[92,672],[881,855],[353,449],[952,219],[120,832],[339,153],[852,450],[866,814],[925,471],[936,837],[850,203],[558,319],[127,615],[510,852],[235,966],[250,806],[925,609],[816,244],[682,64],[922,539],[905,670],[871,74],[226,983],[996,221],[71,135],[650,713],[699,510],[513,928],[417,593],[895,34],[109,262],[256,553],[337,960],[427,605],[146,692],[244,603],[310,997],[291,339],[555,660],[643,376],[111,6],[487,174],[512,42],[852,200],[575,728],[717,176],[617,565],[954,919],[77,434],[372,692],[225,413],[92,438],[321,568],[759,451],[837,735],[281,382],[239,503],[450,885],[35,498],[559,243],[607,405],[647,945],[241,708],[495,65],[423,504],[989,991],[600,613],[170,769],[892,695],[70,996],[455,597],[635,986],[47,642],[683,967],[454,517],[855,877],[571,673],[34,622],[50,316],[401,640],[681,368],[750,52],[87,643],[778,541],[478,448],[35,860],[930,466],[519,725],[815,560],[36,512],[488,678],[949,860],[883,144],[341,807],[263,865],[849,961],[745,109],[720,519],[829,904],[554,94],[869,378],[264,451],[736,115],[936,273],[759,199],[264,606],[375,428],[70,308],[823,782],[585,992],[188,665],[742,331],[40,485],[551,162],[312,681],[230,82],[107,141],[546,525],[435,694],[895,683],[410,479],[73,376],[638,858],[198,548],[176,928],[843,283],[785,903],[104,947],[517,816],[665,785],[479,485],[842,726],[25,116],[577,725],[217,259],[350,741],[347,573],[939,989],[731,389],[420,44],[69,222],[192,450],[40,726],[493,918],[787,83],[702,73],[387,171],[439,634],[527,128],[405,804],[222,850],[713,521],[879,854],[349,175],[481,488],[839,485],[350,430],[652,302],[982,220],[916,373],[529,609],[415,248],[243,74],[509,713],[429,406],[746,312],[199,846],[415,706],[30,843],[221,802],[943,328],[128,225],[392,925],[95,373],[654,361],[143,25],[885,228],[951,55],[308,806],[676,807],[688,899],[127,499],[437,532],[6,326],[829,639],[952,929],[612,6],[915,314],[714,433],[296,512],[707,857],[667,877],[79,547],[665,306],[453,174],[946,635],[664,3],[427,218],[664,460],[250,87],[675,946],[129,688],[750,294],[7,170],[252,922],[176,924],[467,411],[183,443],[3,996],[194,776],[335,548],[474,40],[733,832],[856,420],[587,235],[333,662],[827,167],[685,42],[521,629],[983,143],[986,379],[664,264],[640,753],[880,568],[106,84],[224,704],[557,485],[374,527],[434,122],[28,670],[92,21],[975,454],[942,879],[673,661],[452,564],[577,937],[982,173],[886,462],[942,900],[904,476],[208,235],[536,186],[524,693],[939,172],[89,373],[145,899],[137,409],[319,624],[363,633],[749,256],[443,710],[158,720],[67,393],[110,624],[995,542],[740,876],[130,137],[64,741],[25,538],[462,236],[731,682],[306,816],[274,709],[299,600],[727,929],[777,261],[83,245],[582,882],[277,104],[279,737],[191,5],[255,458],[157,705],[707,851],[49,484],[473,585],[694,945],[145,485],[289,230],[70,495],[318,491],[909,837],[65,312],[804,882],[11,849],[607,784],[145,594],[517,490],[487,564],[160,805],[864,840],[869,4],[686,392],[920,139],[146,891],[983,710],[268,568],[468,600],[842,310],[124,275],[899,765],[109,472],[957,436],[391,874],[742,389],[306,165],[607,115],[633,206],[849,881],[627,396],[19,223],[769,327],[752,691],[649,924],[80,975],[65,976],[783,271],[551,216],[856,639],[843,705],[17,349],[990,541],[936,488],[826,323],[995,357],[880,266],[350,822],[915,818],[667,299],[241,992],[130,741],[587,185],[832,276],[844,863],[326,972],[932,1000],[858,883],[332,17],[242,317],[179,530],[420,952],[932,538],[153,727],[384,704],[812,631],[293,916],[958,14],[7,601],[430,224],[472,983],[904,937],[593,555],[439,255],[358,614],[825,857],[838,200],[371,30],[1000,37],[929,462],[541,660],[301,163],[352,109],[63,766],[770,915],[470,129],[241,208],[654,588],[30,304],[113,573],[925,529],[840,453],[129,978],[964,77],[73,510],[637,734],[882,280],[450,512],[773,605],[668,953],[37,850],[949,400],[521,965],[330,533],[753,593],[701,714],[957,572],[512,403],[284,931],[868,304],[79,476],[264,188],[593,418],[86,897],[19,564],[253,172],[111,65],[442,979],[147,14],[873,458],[613,289],[628,510],[279,964],[926,350],[587,217],[605,884],[814,364],[424,866],[392,107],[994,877],[384,326],[821,590],[67,515],[373,684],[491,591],[786,403],[974,682],[982,184],[507,96],[856,150],[869,355],[328,335],[427,142],[291,870],[719,614],[954,503],[506,902],[933,182],[814,88],[889,754],[694,631],[361,163],[897,818],[386,981],[361,766],[1,918],[481,867],[351,754],[489,296],[556,464],[282,453],[928,414],[720,754],[391,648],[450,277],[65,365],[293,274],[808,725],[577,460],[969,859],[301,398],[344,3],[55,220],[532,269],[233,819],[604,884],[522,967],[188,957],[753,414],[678,576],[586,247],[456,756],[503,655],[469,674],[226,988],[650,989],[671,484],[89,767],[881,708],[177,834],[352,42],[57,928],[419,613],[85,232],[794,837],[496,436],[107,698],[786,221],[936,55],[746,838],[959,395],[658,164],[369,674],[103,574],[35,188],[375,538],[215,42],[717,304],[829,805],[629,876],[84,579],[604,975],[1,744],[300,18],[996,728],[639,838],[109,486],[572,79],[445,422],[506,895],[774,79],[291,499],[261,577],[12,614],[40,920],[512,673],[230,664],[725,721],[361,665],[836,817],[474,766],[427,823],[314,315],[662,936],[597,354],[556,626],[391,115],[543,395],[222,184],[722,960],[274,136],[793,765],[545,583],[189,298],[989,469],[138,684],[563,51],[362,385],[869,279],[860,158],[158,233],[815,445],[196,896],[4,327],[707,252],[119,247],[498,143],[86,342],[228,812],[560,930],[234,673],[960,707],[942,797],[253,870],[725,865],[226,243],[528,608],[62,562],[44,671],[190,695],[951,636],[767,85],[750,683],[263,956],[451,901],[400,113],[188,822],[210,779],[698,480],[350,312],[974,638],[48,83],[703,164],[568,101],[629,661],[990,398],[69,579],[378,808],[433,619],[477,38],[778,502],[562,130],[469,19],[978,524],[329,467],[15,508],[843,322],[474,440],[110,49],[994,204],[632,251],[863,709],[511,856],[667,497],[384,740],[164,442],[940,44],[621,92],[46,437],[7,990],[621,868],[334,676],[469,702],[917,677],[96,638],[939,125],[78,450],[72,580],[935,275],[942,955],[597,430],[219,972],[924,768],[74,367],[875,112],[354,13],[191,457],[35,892],[828,823],[698,403],[23,48],[577,305],[179,909],[522,209],[23,621],[135,396],[970,789],[366,939],[216,63],[835,623],[172,256],[24,930],[655,324],[54,848],[445,559],[428,676],[366,890],[37,55],[8,514],[869,12],[603,113],[62,751],[415,145],[248,814],[339,930],[453,552],[101,978],[431,553],[626,927],[552,341],[989,296],[118,410],[597,766],[931,833],[900,183],[416,233],[808,420],[810,927],[623,83],[448,451],[41,853],[661,406],[804,866],[794,569],[934,520],[170,470],[47,625],[246,867],[470,187],[620,536],[763,852],[714,162],[448,21],[900,629],[262,720],[823,689],[273,308],[235,813],[816,631],[944,392],[616,486],[3,895],[509,285],[474,129],[509,766],[134,344],[303,33],[197,66],[985,161],[742,702],[114,504],[640,650],[15,119],[106,526],[271,30],[916,368],[610,371],[619,620],[717,522],[279,785],[24,325],[802,753],[29,411],[321,920],[922,478],[62,334],[628,767],[128,711],[814,386],[493,396],[728,120],[766,346],[822,34],[196,703],[310,443],[249,447],[717,559],[261,266],[638,412],[80,923],[607,993],[883,9],[949,779],[908,754],[484,753],[153,151],[616,693],[885,878],[886,780],[740,434],[731,902],[31,641],[275,298],[77,926],[892,836],[376,157],[739,113],[40,52],[392,170],[795,387],[375,651],[804,107],[745,827],[415,581],[871,272],[602,789],[955,164],[629,780],[332,178],[301,290],[623,833],[770,55],[633,958],[521,319],[767,192],[819,569],[307,665],[37,684],[836,636],[673,638],[184,282],[25,390],[280,564],[89,580],[639,604],[405,294],[280,13],[583,362],[440,549],[96,526],[464,325],[95,399],[595,861],[853,285],[471,261],[60,153],[285,352],[8,179],[907,965],[803,537],[763,311],[682,723],[143,307],[563,663],[899,889],[389,684],[551,97],[192,308],[557,135],[305,429],[930,414],[820,84],[814,215],[246,423],[204,658],[487,292],[325,989],[13,789],[118,181],[731,987],[63,684],[819,162],[512,965],[509,990],[378,893],[562,482],[797,431],[503,502],[358,994],[860,880],[3,841],[654,456],[321,456],[814,705],[507,252],[659,988],[428,699],[891,390],[11,795],[693,545],[283,194],[299,953],[465,131],[113,38],[75,926],[603,407],[756,604],[933,360],[645,51],[283,547],[35,262],[162,577],[398,377],[144,777],[261,266],[53,24],[273,553],[142,307],[79,847],[818,975],[62,602],[811,755],[451,210],[305,1000],[167,802],[151,664],[339,130],[997,563],[443,287],[626,655],[779,95],[931,800],[990,752],[210,714],[317,311],[862,433],[845,365],[912,23],[527,688],[319,265],[616,252],[387,496],[70,10],[881,444],[294,530],[258,36],[509,713],[618,266],[278,2],[429,861],[270,524],[930,185],[216,507],[885,756],[460,928],[104,517],[319,106],[224,958],[296,274],[937,846],[95,416],[298,313],[773,711],[936,442],[832,187],[755,865],[960,278],[150,813],[406,848],[579,599],[696,376],[527,2],[597,376],[278,289],[149,555],[666,565],[366,171],[708,478],[356,520],[228,230],[668,458],[470,37],[125,401],[17,329],[557,532],[890,982],[5,579],[110,977],[694,797],[174,497],[877,640],[127,246],[231,324],[148,967],[645,90],[341,755],[6,634],[755,889],[692,840],[273,305],[108,92],[399,241],[170,274],[927,446],[148,375],[965,676],[689,983],[519,720],[732,816],[225,458],[117,202],[570,116],[891,47],[747,402],[202,243],[595,525],[809,802],[15,57],[586,470],[996,848],[203,1000],[806,320],[338,799],[13,332],[397,18],[902,169],[779,612],[366,260],[875,10],[815,743],[352,902],[773,436],[479,881],[374,521],[592,762],[742,436],[712,438],[360,129],[165,346],[83,716],[649,950],[694,392],[827,461],[826,34],[79,327],[915,716],[555,206],[616,423],[459,66],[996,102],[494,700],[788,683],[813,759],[696,264],[2,586],[634,794],[515,67],[583,323],[472,817],[520,763],[428,189],[156,771],[709,452],[136,616],[606,980],[401,339],[21,700],[72,991],[22,121],[585,179],[24,16],[301,709],[654,687],[693,394],[387,490],[819,721],[844,747],[229,295],[488,313],[822,483],[900,345],[554,332],[720,426],[555,903],[432,193],[791,198],[450,73],[233,246],[748,301],[177,101],[350,339],[744,689],[702,874],[312,527],[570,414],[537,646],[712,842],[221,997],[725,38],[122,700],[604,256],[706,877],[594,575],[879,928],[100,590],[532,260],[338,999],[162,803],[863,948],[437,575],[839,713],[526,57],[966,523],[583,997],[581,872],[682,957],[137,130],[504,966],[92,330],[708,392],[161,956],[405,154],[931,589],[632,765],[359,342],[226,920],[86,369],[305,461],[109,70],[983,474],[177,701],[789,159],[118,865],[742,488],[960,868],[654,825],[235,879],[545,997],[684,604],[661,448],[999,61],[226,999],[837,867],[928,393],[674,696],[857,573],[476,764],[112,339],[228,999],[934,979],[563,453],[19,860],[61,523],[804,568],[82,685],[221,27],[838,163],[8,548],[758,345],[798,985],[170,251],[384,814],[360,683],[525,411],[855,372],[557,894],[382,349],[776,29],[516,156],[48,678],[902,38],[313,300],[75,546],[362,861],[910,74],[235,451],[654,321],[703,986],[212,659],[64,678],[947,312],[743,862],[87,407],[603,826],[565,520],[963,604],[592,201],[962,240],[789,824],[202,404],[337,86],[867,174],[286,274],[670,548],[857,86],[627,214],[114,453],[666,66],[14,101],[472,816],[8,151],[27,934],[840,949],[122,735],[995,932],[525,283],[788,197],[142,875],[925,800],[780,904],[188,803],[304,38],[179,961],[591,690],[223,267],[76,850],[726,764],[117,293],[595,445],[929,995],[983,279],[863,90],[991,141],[893,551],[589,571],[618,336],[64,201],[929,533],[728,788],[283,514],[387,439],[751,645],[875,685],[357,121],[582,447],[447,515],[995,562],[793,75],[300,668],[873,950],[912,721],[316,937],[530,394],[926,850],[288,536],[893,320],[87,886],[220,717],[416,567],[652,405],[567,827],[273,793],[151,830],[550,622],[23,832],[326,813],[215,722],[872,302],[195,131],[54,17],[437,57],[696,396],[744,541],[690,136],[338,31],[82,193],[869,767],[176,138],[630,7],[729,650],[691,15],[327,300],[584,722],[700,886],[480,890],[208,306],[638,791],[372,392],[6,755],[172,331],[56,280],[82,665],[590,210],[401,972],[322,304],[98,602],[807,858],[80,3],[308,783],[720,74],[570,441],[707,635],[845,194],[951,745],[178,803],[4,684],[236,42],[917,404],[605,107],[219,984],[565,326],[158,792],[853,561],[941,457],[261,589],[25,67],[852,473],[839,730],[569,745],[141,611],[586,394],[513,745],[526,988],[28,245],[826,138],[386,107],[958,880],[607,606],[470,558],[983,16],[249,956],[162,587],[529,705],[554,195],[371,128],[347,126],[222,547],[172,496],[411,682],[956,253],[410,9],[947,711],[96,946],[143,861],[708,988],[606,66],[635,322],[601,469],[111,578],[159,531],[959,446],[986,446],[455,977],[27,637],[632,621],[339,794],[219,23],[455,479],[295,966],[587,143],[713,598],[670,989],[989,984],[510,212],[551,518],[600,58],[899,469],[907,218],[289,19],[168,899],[488,421],[993,562],[624,258],[941,544],[136,842],[341,484],[443,275],[583,600],[363,946],[315,838],[596,62],[519,4],[835,128],[890,567],[1,758],[193,573],[473,155],[279,578],[772,40],[732,18],[427,328],[954,640],[66,444],[288,865],[849,182],[967,779],[977,475],[516,329],[252,5],[662,187],[993,834],[749,983],[915,186],[937,671],[18,404],[309,719],[689,453],[888,645],[395,625],[903,183],[343,536],[374,77],[509,763],[973,559],[267,799],[350,18],[996,987],[862,422],[917,250],[496,846],[256,402],[207,587],[117,432],[371,48],[4,587],[122,435],[878,445],[784,869],[288,864],[10,645],[400,88],[74,304],[661,638],[388,144],[888,507],[879,675],[500,145],[554,437],[19,830],[947,711],[384,344],[107,251],[321,168],[435,889],[329,456],[130,117],[137,8],[581,241],[68,806],[584,452],[510,903],[741,664],[261,664],[338,57],[187,615],[928,154],[258,570],[999,625],[113,931],[82,600],[628,714],[937,500],[363,138],[136,548],[380,881],[585,183],[427,843],[530,251],[830,648],[244,479],[628,15],[814,177],[104,486],[873,488],[71,504],[473,672],[359,708],[547,452],[666,83],[252,276],[635,404],[123,244],[244,286],[83,327],[519,490],[174,803],[736,141],[331,197],[880,557],[109,991],[760,111],[66,955],[345,401],[849,192],[165,820],[734,270],[277,252],[268,530],[632,672],[566,334],[802,247],[498,764],[143,611],[438,755],[669,636],[824,22],[894,919],[907,725],[781,991],[369,864],[442,859],[466,638],[181,191],[62,376],[701,250],[896,188],[654,323],[205,83],[623,954],[745,955],[520,691],[277,783],[81,328],[628,113],[180,793],[189,176],[372,513],[227,697],[316,94],[173,297],[3,336],[469,85],[628,777],[5,157],[97,337],[358,334],[966,421],[53,414],[732,589],[494,339],[457,868],[210,345],[464,685],[498,216],[619,55],[730,944],[564,829],[418,736],[53,494],[471,815],[686,971],[964,347],[43,713],[696,120],[988,327],[892,724],[413,757],[472,789],[520,422],[528,581],[719,390],[685,848],[547,816],[127,140],[331,476],[898,78],[747,892],[802,807],[126,141],[731,513],[122,408],[702,311],[990,822],[726,881],[662,387],[631,590],[75,212],[568,938],[881,141],[746,166],[786,902],[730,827],[535,190],[82,443],[487,372],[516,663],[96,897],[701,949],[936,476],[738,100],[700,159],[752,734],[51,305],[567,935],[978,928],[1000,8],[467,454],[5,954],[969,119],[131,525],[222,154],[412,869],[805,506],[138,318],[512,808],[615,470],[742,919],[827,912],[986,259],[404,232],[848,208],[857,126],[235,371],[371,725],[554,551],[321,683],[264,257],[345,123],[917,697],[485,24],[374,15],[937,964],[807,611],[30,322],[355,986],[378,613],[734,202],[384,396],[692,605],[486,149],[857,496],[757,919],[297,189],[457,351],[872,384],[144,395],[810,945],[415,134],[934,200],[53,822],[560,177],[852,250],[478,885],[494,307],[75,866],[889,238],[542,574],[50,62],[198,713],[382,82],[494,701],[547,810],[721,413],[948,878],[813,422],[331,261],[177,797],[442,587],[902,347],[595,563],[757,581],[965,916],[785,897],[749,207],[521,924],[855,35],[777,728],[463,236],[253,970],[151,140],[988,315],[206,737],[700,864],[386,358],[87,113],[619,818],[247,893],[586,141],[644,557],[264,696],[865,264],[907,887],[793,665],[619,370],[143,293],[43,927],[858,84],[19,493],[546,178],[927,177],[811,119],[998,658],[817,752],[926,454],[730,328],[131,795],[881,810],[988,18],[137,527],[781,52],[882,809],[392,202],[994,671],[596,377],[488,993],[100,728],[443,656],[288,572],[342,583],[725,804],[906,705],[322,520],[596,115],[263,325],[215,740],[22,211],[91,100],[307,383],[159,59],[799,770],[683,808],[417,479],[902,206],[953,175],[113,894],[121,27],[829,869],[223,487],[443,368],[641,197],[624,663],[65,864],[220,103],[917,196],[647,433],[645,761],[553,436],[120,946],[603,847],[496,432],[141,127],[978,935],[971,847],[4,400],[255,56],[149,900],[810,101],[789,130],[74,99],[943,631],[803,435],[236,105],[431,453],[433,955],[469,419],[118,736],[28,612],[345,694],[655,449],[112,295],[805,750],[678,53],[280,801],[34,907],[192,229],[595,129],[875,371],[293,955],[381,915],[423,603],[822,558],[408,375],[509,819],[587,924],[164,412],[608,888],[631,151],[4,584],[68,554],[944,116],[732,957],[602,715],[516,762],[551,568],[535,163],[542,739],[817,933],[607,412],[731,875],[663,248],[44,751],[227,140],[621,625],[258,416],[763,554],[133,368],[987,833],[24,830],[389,279],[521,621],[798,831],[5,469],[817,698],[912,597],[595,914],[234,840],[570,280],[120,898],[29,905],[929,737],[34,621],[895,643],[459,310],[365,336],[59,59],[73,79],[998,626],[726,970],[901,107],[760,247],[392,958],[118,173],[603,784],[507,216],[899,977],[958,520],[153,624],[811,130],[197,405],[23,483],[228,789],[277,574],[995,874],[56,79],[16,598],[569,437],[981,678],[427,391],[52,969],[849,407],[238,913],[421,234],[817,770],[350,424],[815,564],[729,773],[959,95],[213,85],[624,245],[402,127],[292,436],[385,43],[996,849],[988,98],[873,33],[497,359],[202,174],[674,337],[907,829],[117,930],[412,821],[394,538],[591,343],[998,918],[860,327],[624,855],[385,227],[523,25],[210,70],[736,790],[396,709],[400,647],[44,431],[839,139],[250,505],[16,753],[723,707],[42,342],[99,196],[761,525],[260,364],[831,970],[927,231],[760,20],[12,451],[35,111],[779,757],[717,925],[39,610],[78,346],[206,806],[747,266],[989,804],[116,914],[89,792],[501,929],[722,262],[693,708],[702,66],[205,339],[562,844],[687,304],[820,640],[806,956],[337,976],[565,939],[868,514],[165,839],[148,478],[708,743],[878,679],[241,198],[645,931],[400,94],[505,625],[585,161],[6,183],[897,711],[561,679],[537,63],[646,110],[642,869],[680,712],[512,460],[435,361],[908,515],[157,915],[321,849],[846,350],[689,68],[305,922],[441,132],[692,764],[750,365],[242,112],[110,552],[749,773],[732,597],[993,261],[977,583],[380,79],[363,883],[183,531],[612,346],[822,534],[265,144],[742,110],[747,516],[562,450],[704,998],[390,739],[971,908],[98,814],[595,746],[563,133],[428,628],[67,103],[14,410],[627,503],[287,886],[735,271],[845,55],[411,846],[672,519],[235,938],[457,862],[819,947],[678,415],[970,85],[45,912],[294,718],[433,978],[413,546],[220,465],[102,484],[835,854],[388,486],[95,590],[582,899],[386,556],[868,673],[553,964],[204,541],[520,120],[974,756],[641,571],[527,141],[738,568],[971,594],[95,37],[647,692],[140,78],[416,407],[322,377],[103,278],[610,476],[497,183],[136,747],[959,308],[746,653],[255,237],[868,590],[865,849],[549,727],[882,856],[617,956],[567,500],[656,704],[772,478],[807,159],[465,947],[775,413],[23,228],[134,402],[890,24],[126,741],[335,562],[726,334],[249,171],[80,222],[276,200],[329,938],[578,231],[783,390],[943,511],[506,297],[922,930],[861,538],[840,607],[170,71],[335,223],[543,428],[349,980],[426,481],[196,204],[759,346],[770,637],[309,336],[586,971],[771,100],[33,319],[306,378],[845,616],[327,697],[47,119],[634,512],[771,845],[392,847],[948,40],[874,763],[670,604],[883,682],[275,654],[775,345],[818,750],[43,322],[468,648],[803,694],[548,593],[311,953],[748,842],[915,634],[568,914],[67,632],[183,119],[773,718],[433,595],[941,698],[712,982],[948,121],[422,168],[548,695],[492,79],[394,148],[825,778],[779,204],[736,274],[215,925],[232,263],[386,160],[914,473],[993,420],[999,596],[929,946],[221,62],[211,725],[679,366],[73,292],[734,135],[199,734],[722,2],[59,960],[732,284],[309,224],[800,327],[213,131],[713,219],[810,144],[572,89],[304,700],[107,377],[791,627],[813,176],[470,981],[939,710],[586,57],[742,867],[398,86],[834,589],[921,131],[736,622],[877,261],[841,239],[150,365],[942,25],[896,908],[585,952],[297,732],[76,721],[752,286],[566,724],[246,301],[231,107],[149,302],[918,430],[965,414],[548,256],[522,714],[15,474],[423,201],[674,418],[822,24],[439,699],[552,514],[185,517],[798,113],[713,431],[170,319],[378,809],[882,93],[399,786],[772,633],[360,453],[961,262],[179,911],[579,156],[866,919],[290,22],[940,765],[685,653],[789,574],[241,305],[931,267],[230,287],[390,140],[18,122],[189,407],[265,698],[374,212],[373,659],[184,137],[434,583],[366,389],[623,246],[606,274],[916,385],[897,217],[647,610],[785,209],[800,947],[481,967],[53,535],[937,412],[288,141],[702,475],[449,993],[821,443],[798,136],[255,575],[772,634],[423,687],[862,997],[913,121],[822,184],[595,373],[715,48],[329,214],[441,532],[411,160],[628,496],[119,251],[263,554],[127,413],[981,358],[722,667],[795,560],[148,892],[449,416],[726,34],[658,935],[776,132],[777,894],[518,736],[469,717],[361,395],[22,644],[585,334],[556,283],[113,551],[955,387],[573,978],[137,350],[526,347],[367,410],[432,530],[631,142],[457,815],[406,268],[680,129],[826,877],[692,346],[524,633],[154,611],[520,679],[209,717],[114,753],[201,209],[476,218],[133,696],[456,671],[894,183],[448,851],[589,157],[383,439],[402,444],[803,385],[185,107],[294,977],[67,345],[604,468],[406,949],[327,798],[393,637],[788,323],[539,582],[302,641],[902,449],[500,14],[310,938],[9,136],[177,800],[824,107],[574,124],[624,379],[175,784],[579,917],[314,696],[919,801],[124,174],[585,859],[180,104],[35,43],[255,596],[624,38],[206,688],[569,670],[376,345],[134,16],[656,612],[443,632],[607,514],[749,322],[172,509],[112,433],[318,609],[798,820],[890,886],[782,486],[502,588],[416,847],[129,800],[769,484],[690,388],[319,679],[492,522],[157,583],[510,553],[533,118],[497,573],[598,251],[190,418],[5,365],[767,730],[412,38],[494,269],[884,732],[281,429],[224,930],[277,269],[118,642],[177,589],[363,419],[780,827],[876,500],[304,998],[857,802],[311,581],[756,82],[639,589],[610,196],[944,576],[547,132],[619,283],[37,295],[311,691],[430,596],[153,646],[315,258],[596,744],[207,493],[179,735],[546,522],[882,30],[322,348],[279,804],[759,343],[84,957],[971,202],[92,999],[745,894],[171,746],[312,424],[85,278],[493,676],[890,262],[840,927],[619,765],[592,453],[44,199],[544,289],[957,234],[960,899],[425,703],[432,587],[259,263],[756,477],[423,422],[569,621],[863,459],[373,168],[663,533],[129,609],[77,571],[450,121],[561,451],[642,723],[895,560],[452,287],[105,414],[883,343],[360,868],[921,672],[366,740],[844,882],[666,928],[660,870],[806,643],[67,528],[580,188],[75,910],[489,848],[51,464],[656,463],[79,371],[509,50],[108,843],[142,437],[791,449],[620,544],[653,343],[317,738],[119,238],[30,713],[329,994],[871,136],[70,602],[497,532],[296,696],[462,255],[262,521],[57,39],[79,605],[493,324],[437,770],[121,542],[601,860],[707,592],[968,919],[602,367],[817,289],[305,950],[382,114],[312,723],[417,912],[416,672],[994,927],[381,768],[977,888],[314,390],[645,369],[421,15],[990,210],[300,627],[3,882],[217,377],[734,280],[675,653],[301,276],[251,254],[132,822],[875,6],[134,938],[454,557],[774,684],[618,902],[297,51],[702,380],[843,497],[229,998],[742,447],[613,339],[264,604],[165,391],[481,786],[86,591],[24,907],[136,270],[775,77],[255,337],[155,701],[379,563],[403,749],[646,950],[796,533],[558,674],[915,508],[793,353],[77,957],[795,142],[52,908],[879,837],[938,676],[324,722],[734,491],[908,125],[362,588],[620,323],[444,340],[152,590],[882,80],[470,145],[657,173],[603,728],[759,214],[756,934],[200,790],[301,724],[606,785],[574,254],[746,517],[539,889],[791,565],[553,831],[103,165],[154,254],[392,359],[114,600],[485,383],[63,909],[847,286],[443,215],[188,793],[824,899],[117,942],[315,923],[13,491],[577,361],[614,82],[959,163],[366,23],[804,436],[133,881],[747,527],[329,594],[200,217],[754,385],[651,539],[26,668],[523,25],[222,271],[425,78],[374,346],[438,591],[516,509],[441,223],[395,824],[539,858],[431,560],[362,95],[711,623],[94,274],[409,290],[421,274],[344,56],[303,969],[871,556],[527,821],[824,123],[140,80],[642,392],[391,587],[478,114],[505,479],[988,613],[645,920],[250,121],[459,446],[118,160],[480,538],[474,675],[352,323],[100,947],[313,825],[568,25],[508,306],[43,923],[808,556],[696,376],[684,843],[621,744],[216,771],[752,81],[329,163],[626,246],[922,99],[506,831],[869,841],[439,47],[990,166],[645,555],[863,742],[972,692],[389,617],[713,212],[537,359],[723,746],[110,994],[297,739],[983,441],[238,381],[141,541],[138,209],[895,170],[622,544],[114,81],[772,43],[505,366],[791,55],[825,488],[513,225],[219,518],[916,985],[487,592],[93,366],[919,144],[542,456],[945,749],[422,810],[31,390],[783,497],[39,635],[306,306],[254,882],[448,161],[579,632],[73,55],[541,602],[179,233],[595,734],[350,675],[181,279],[548,551],[628,952],[615,496],[889,652],[828,202],[351,335],[441,516],[789,483],[512,877],[356,368],[429,177],[805,631],[704,657],[644,679],[887,552],[716,357],[524,627],[721,907],[149,24],[920,486],[295,352],[283,654],[660,350],[614,970],[165,464],[533,611],[306,279],[415,908],[11,694],[980,358],[573,572],[934,437],[605,447],[487,675],[987,396],[771,597],[969,217],[850,493],[953,280],[71,374],[945,88],[225,345],[754,996],[972,662],[264,919],[956,539],[585,62],[154,906],[616,624],[133,215],[367,497],[787,295],[560,809],[331,177],[777,944],[597,316],[119,405],[591,195],[987,205],[605,706],[170,353],[369,607],[734,521],[234,375],[484,680],[375,350],[185,8],[884,274],[770,516],[401,517],[628,715],[802,197],[296,106],[565,986],[369,61],[415,61],[370,835],[317,365],[809,616],[457,474],[656,212],[596,351],[846,340],[875,776],[767,722],[661,866],[170,774],[869,282],[188,182],[32,902],[991,303],[956,952],[745,372],[637,422],[825,545],[44,100],[682,548],[535,427],[443,84],[382,790],[700,364],[143,13],[378,361],[797,485],[521,183],[344,751],[757,829],[773,839],[283,460],[607,992],[220,693],[593,819],[381,943],[752,529],[278,942],[248,418],[450,268],[95,878],[301,121],[985,566],[532,448],[325,470],[884,566],[414,215],[253,509],[499,738],[851,535],[165,824],[931,254],[524,634],[194,720],[635,509],[825,375],[641,927],[222,402],[525,164],[573,753],[926,931],[265,326],[748,889],[92,495],[339,39],[370,402],[549,723],[54,10],[905,588],[401,898],[795,174],[879,950],[855,885],[572,280],[289,853],[719,706],[562,719],[496,672],[720,875],[48,933],[467,377],[59,60],[211,24],[442,224],[440,588],[481,91],[603,190],[981,911],[317,289],[387,966],[402,156],[190,129],[127,541],[540,588],[238,790],[182,822],[538,2],[477,257],[290,190],[939,351],[176,719],[917,317],[87,431],[223,120],[346,449],[67,374],[156,626],[148,182],[503,330],[444,81],[516,850],[472,870],[122,757],[843,827],[450,486],[236,962],[836,370],[833,777],[394,371],[365,716],[334,379],[662,905],[590,874],[223,980],[677,142],[859,241],[266,886],[681,735],[678,588],[576,170],[275,149],[698,112],[235,53],[331,703],[50,351],[978,659],[681,637],[985,181],[833,556],[286,627],[553,726],[312,905],[182,767],[548,893],[373,17],[6,280],[627,258],[913,946],[319,406],[23,854],[506,984],[634,462],[956,788],[64,83],[109,913],[817,220],[908,662],[235,813],[870,113],[329,129],[655,296],[354,511],[231,147],[776,454],[642,781],[664,762],[419,357],[915,794],[900,190],[648,323],[508,978],[503,26],[582,187],[268,3],[872,890],[186,180],[836,149],[257,908],[551,897],[248,412],[628,329],[107,329],[420,425],[103,494],[884,240],[171,628],[305,227],[948,314],[899,18],[957,347],[361,753],[361,706],[613,935],[365,840],[69,269],[304,440],[464,421],[901,641],[519,583],[684,419],[585,664],[89,848],[114,96],[765,386],[81,443],[63,186],[801,546],[569,173],[678,1000],[647,339],[587,303],[750,262],[665,603],[756,786],[2,927],[230,874],[907,821],[935,768],[412,549],[767,453],[280,785],[854,730],[287,744],[858,719],[204,675],[732,453],[279,961],[763,513],[875,899],[948,7],[741,455],[90,367],[182,331],[8,380],[329,384],[249,931],[899,759],[436,40],[435,176],[142,277],[295,534],[920,874],[49,506],[770,975],[534,690],[316,665],[249,108],[10,7],[610,156],[988,885],[698,746],[688,549],[468,518],[506,177],[138,589],[288,649],[542,891],[129,675],[420,559],[495,519],[126,931],[49,210],[766,212],[792,425],[188,171],[449,604],[839,63],[947,654],[711,857],[735,774],[887,9],[571,404],[86,623],[895,988],[738,321],[510,359],[512,428],[943,745],[293,395],[96,221],[177,315],[494,389],[325,794],[322,235],[435,552],[93,864],[862,798],[314,624],[699,781],[256,712],[768,135],[795,693],[967,739],[67,549],[305,417],[428,238],[518,526],[876,840],[543,337],[333,714],[840,783],[153,932],[125,857],[565,478],[991,201],[442,28],[267,695],[130,295],[47,179],[951,77],[16,580],[340,140],[916,150],[658,167],[859,596],[570,70],[713,453],[87,575],[830,786],[396,272],[236,404],[523,574],[417,421],[685,606],[492,610],[495,504],[333,559],[907,917],[246,969],[813,276],[191,131],[752,68],[664,227],[649,749],[185,191],[132,912],[25,348],[342,932],[963,594],[685,547],[339,806],[990,669],[827,992],[802,607],[608,939],[947,347],[474,484],[780,199],[766,642],[753,162],[546,381],[582,349],[316,558],[541,450],[887,619],[882,30],[403,244],[660,550],[25,554],[440,544],[582,278],[143,625],[317,855],[724,639],[529,180],[343,780],[3,856],[282,94],[345,228],[187,168],[379,9],[864,73],[157,438],[749,500],[414,779],[403,820],[63,304],[316,61],[287,234],[396,102],[829,217],[492,608],[153,46],[552,447],[412,565],[238,591],[252,705],[905,527],[897,654],[23,136],[939,427],[493,611],[230,350],[479,690],[971,449],[594,521],[597,82],[383,493],[236,816],[48,178],[754,31],[559,662],[233,610],[549,161],[488,93],[658,702],[839,141],[222,292],[142,425],[337,455],[470,86],[340,651],[61,297],[624,162],[521,933],[751,541],[492,153],[830,602],[607,124],[614,276],[267,880],[411,782],[72,895],[445,526],[216,544],[251,908],[438,979],[30,726],[971,411],[65,243],[716,875],[51,604],[288,373],[805,997],[175,427],[534,633],[558,566],[621,101],[527,496],[280,830],[810,825],[383,341],[563,238],[995,161],[816,872],[872,940],[490,4],[641,23],[855,881],[385,778],[813,27],[449,685],[967,743],[742,969],[218,857],[430,955],[242,333],[759,989],[642,455],[819,827],[850,791],[778,544],[609,241],[889,614],[471,537],[271,43],[559,296],[915,260],[897,64],[831,109],[771,756],[828,55],[46,398],[85,59],[56,828],[414,455],[823,939],[528,337],[410,787],[597,284],[461,221],[322,426],[989,535],[181,871],[631,478],[613,253],[226,16],[514,786],[651,138],[949,762],[605,510],[521,472],[942,185],[682,797],[812,229],[234,974],[856,454],[800,153],[591,916],[160,887],[471,677],[889,151],[824,347],[157,27],[825,642],[218,63],[829,966],[346,649],[36,471],[919,927],[5,926],[121,568],[207,565],[352,256],[192,731],[158,294],[545,208],[443,754],[994,867],[880,438],[214,9],[98,626],[55,940],[757,504],[206,692],[91,228],[361,760],[890,998],[614,892],[639,880],[939,284],[961,147],[491,369],[810,263],[100,846],[86,218],[317,108],[946,656],[995,435],[604,307],[995,870],[139,313],[101,849],[841,785],[450,146],[619,192],[621,638],[632,329],[963,380],[593,143],[363,283],[442,776],[371,260],[633,929],[202,324],[631,551],[61,105],[782,271],[663,875],[432,559],[911,363],[82,751],[233,332],[898,154],[359,784],[200,609],[201,842],[240,620],[686,402],[592,230],[357,657],[957,819],[442,210],[844,746],[343,853],[968,217],[574,716],[212,301],[933,513],[361,342],[507,321],[418,50],[904,893],[54,644],[287,402],[520,162],[991,202],[646,304],[712,407],[673,35],[948,13],[76,62],[808,767],[607,978],[788,141],[426,437],[9,980],[110,105],[472,83],[7,997],[294,553],[187,704],[627,856],[290,106],[80,388],[79,111],[920,658],[323,869],[274,896],[736,981],[90,743],[198,114],[127,937],[529,552],[411,828],[636,466],[198,800],[647,935],[380,898],[642,315],[269,448],[469,18],[625,374],[14,872],[919,29],[478,771],[483,557],[800,230],[767,217],[483,132],[943,23],[584,249],[880,137],[388,729],[792,466],[182,999],[382,411],[747,163],[910,612],[82,985],[639,695],[676,577],[214,391],[218,715],[296,277],[483,313],[379,831],[447,147],[825,95],[846,991],[121,90],[589,247],[516,712],[980,191],[31,369],[799,883],[209,361],[371,986],[550,502],[797,130],[73,666],[655,845],[76,293],[743,238],[310,87],[513,98],[198,461],[789,5],[480,819],[290,954],[558,463],[661,779],[473,608],[691,427],[612,473],[775,236],[887,589],[691,8],[266,784],[63,950],[991,476],[768,624],[753,967],[317,873],[537,203],[837,511],[856,78],[308,946],[410,300],[446,641],[262,586],[620,131],[94,998],[519,240],[904,517],[811,826],[762,640],[925,284],[28,19],[805,685],[318,937],[690,607],[614,820],[32,33],[509,62],[892,45],[297,931],[516,881],[194,439],[802,976],[312,887],[269,208],[555,59],[566,297],[884,908],[933,672],[228,465],[737,312],[936,930],[217,390],[455,24],[475,825],[370,550],[585,792],[90,522],[710,192],[554,938],[852,225],[411,877],[282,753],[859,993],[455,513],[45,869],[205,702],[1000,308],[378,165],[833,150],[449,672],[843,605],[876,834],[981,46],[338,572],[357,528],[822,564],[530,940],[867,668],[93,895],[33,438],[26,806],[761,2],[27,99],[605,550],[419,848],[456,102],[832,978],[204,552],[376,503],[219,761],[10,522],[560,373],[95,771],[781,506],[709,176],[242,376],[998,560],[284,21],[341,274],[175,971],[827,372],[401,763],[945,607],[914,901],[347,929],[25,59],[565,693],[564,833],[72,35],[553,533],[64,433],[84,724],[336,710],[850,143],[749,740],[6,117],[857,510],[535,997],[356,128],[736,307],[341,395],[332,972],[809,185],[718,894],[203,953],[788,946],[509,388],[667,775],[876,956],[853,522],[464,684],[718,872],[357,550],[18,320],[583,343],[425,691],[117,339],[681,25],[940,495],[933,65],[787,970],[1,541],[122,842],[693,838],[58,507],[912,504],[795,653],[748,695],[904,24],[785,517],[772,420],[569,885],[813,563],[56,633],[140,944],[615,776],[282,500],[351,54],[211,668],[276,518],[195,789],[649,237],[450,495],[88,623],[545,818],[221,106],[61,940],[721,244],[406,423],[725,711],[710,179],[348,992],[660,590],[71,314],[234,572],[266,710],[567,811],[415,348],[624,792],[478,934],[574,794],[4,818],[292,219],[741,909],[170,618],[234,132],[787,448],[18,252],[340,847],[952,798],[824,81],[935,258],[399,993],[672,580],[955,915],[313,511],[868,670],[281,32],[955,219],[966,192],[657,597],[972,615],[104,110],[781,882],[356,328],[937,494],[282,219],[454,751],[507,233],[754,71],[550,225],[692,432],[93,840],[684,389],[483,815],[867,925],[984,111],[513,298],[839,837],[341,42],[466,834],[196,700],[685,790],[42,526],[179,82],[892,103],[697,803],[146,964],[347,339],[759,377],[714,942],[113,421],[527,229],[875,514],[11,958],[496,120],[999,211],[757,485],[44,342],[512,446],[22,158],[315,789],[752,396],[725,132],[343,276],[921,761],[299,622],[428,484],[757,42],[33,465],[476,926],[393,882],[63,411],[95,120],[642,629],[943,533],[172,86],[66,33],[435,410],[524,125],[468,472],[761,782],[153,190],[489,167],[237,798],[338,448],[601,363],[6,273],[485,158],[622,337],[376,32],[487,144],[712,273],[974,209],[699,227],[307,680],[268,490],[88,147],[697,381],[395,746],[287,943],[598,757],[995,50],[493,726],[755,154],[130,145],[559,464],[952,621],[950,700],[796,687],[149,532],[107,458],[319,935],[357,133],[926,540],[79,232],[817,590],[55,93],[669,536],[161,750],[430,98],[427,646],[452,184],[904,529],[670,156],[500,668],[401,521],[898,512],[6,280],[80,382],[224,652],[496,19],[22,317],[951,718],[129,557],[605,755],[746,285],[159,945],[985,627],[837,359],[791,190],[441,371],[43,484],[610,650],[344,975],[514,150],[457,330],[819,230],[394,390],[370,941],[140,175],[75,185],[339,17],[207,453],[276,169],[930,241],[293,251],[662,153],[289,695],[804,968],[238,602],[434,429],[330,304],[194,828],[886,838],[632,245],[493,653],[452,469],[92,847],[114,717],[48,887],[964,77],[264,887],[934,722],[568,227],[250,588],[219,74],[447,416],[76,326],[620,782],[188,291],[732,393],[936,923],[34,184],[379,423],[611,467],[845,376],[237,400],[500,49],[37,576],[944,447],[188,624],[802,802],[83,442],[626,595],[447,948],[88,759],[377,576],[630,515],[330,193],[983,386],[901,263],[20,926],[656,891],[476,163],[729,135],[724,732],[19,613],[297,643],[262,472],[397,6],[494,459],[133,442],[981,998],[844,751],[225,683],[867,155],[263,51],[856,430],[74,979],[284,218],[217,250],[333,895],[494,817],[205,861],[905,811],[801,55],[255,83],[756,290],[313,449],[492,353],[454,511],[280,171],[733,72],[420,517],[836,570],[201,668],[723,567],[717,741],[43,1000],[169,131],[631,8],[451,910],[444,267],[30,372],[386,965],[503,779],[665,119],[848,26],[797,196],[166,480],[376,227],[659,276],[727,758],[797,941],[915,476],[682,489],[108,587],[563,381],[392,110],[165,524],[278,839],[412,69],[952,343],[11,371],[115,504],[556,294],[903,66],[431,385],[595,250],[237,559],[779,615],[147,324],[334,335],[696,586],[527,62],[481,459],[711,765],[98,392],[586,999],[12,386],[323,518],[711,145],[82,78],[159,547],[701,603],[789,782],[488,411],[258,927],[575,268],[721,686],[471,803],[330,960],[762,672],[841,470],[345,206],[846,693],[261,806],[200,576],[611,935],[382,468],[27,686],[998,479],[91,372],[997,184],[793,464],[629,744],[44,146],[393,129],[187,403],[675,426],[306,229],[169,773],[701,140],[675,727],[652,314],[607,39],[924,475],[305,62],[263,564],[449,86],[701,178],[184,102],[894,920],[950,268],[29,947],[371,504],[981,178],[558,88],[537,941],[40,838],[238,145],[369,761],[92,295],[403,130],[201,648],[295,288],[274,864],[354,500],[25,342],[929,709],[377,927],[804,681],[844,425],[925,828],[819,347],[200,742],[974,7],[657,59],[604,199],[1000,154],[820,65],[146,597],[378,649],[284,129],[604,271],[604,55],[941,319],[784,494],[4,658],[282,826],[323,158],[637,585],[228,23],[391,337],[848,853],[2,428],[739,439],[23,820],[897,745],[14,34],[598,887],[567,610],[55,470],[181,610],[871,845],[295,963],[372,384],[767,378],[915,341],[792,731],[430,566],[107,806],[943,990],[427,241],[269,853],[682,806],[277,1000],[974,262],[585,678],[567,416],[788,66],[47,437],[835,570],[717,840],[406,778],[722,5],[553,221],[826,892],[382,609],[906,182],[773,556],[231,500],[339,269],[455,603],[710,996],[166,204],[46,899],[32,267],[898,181],[313,989],[955,365],[850,671],[74,869],[586,581],[693,111],[895,757],[846,353],[394,742],[263,954],[461,431],[743,267],[12,514],[636,898],[951,540],[240,870],[69,591],[157,90],[840,60],[79,429],[244,605],[841,279],[607,848],[597,384],[876,686],[970,354],[551,921],[15,86],[975,257],[372,105],[288,95],[693,241],[106,560],[662,548],[576,566],[230,831],[408,934],[163,436],[434,990],[562,458],[357,904],[876,17],[230,539],[88,635],[659,220],[597,339],[3,425],[178,265],[883,141],[44,949],[896,818],[854,52],[967,640],[564,100],[907,75],[149,89],[562,926],[799,864],[785,487],[747,625],[284,6],[825,338],[966,475],[623,65],[626,316],[183,527],[463,709],[53,301],[763,33],[29,943],[886,770],[467,207],[751,741],[795,987],[762,391],[224,865],[296,917],[89,865],[606,842],[282,478],[703,400],[309,465],[445,995],[162,142],[472,496],[841,917],[993,950],[534,5],[694,921],[649,695],[232,616],[208,585],[716,230],[238,300],[297,318],[348,382],[964,784],[553,387],[634,916],[384,571],[518,640],[99,682],[687,70],[549,165],[746,66],[359,259],[157,444],[33,978],[114,386],[544,418],[668,211],[393,291],[523,879],[220,698],[791,545],[190,713],[568,60],[621,466],[526,948],[290,687],[930,491],[862,553],[948,272],[129,692],[997,129],[550,537],[196,625],[936,109],[493,973],[604,93],[310,552],[250,416],[787,205],[2,892],[21,696],[714,582],[347,101],[321,787],[427,301],[505,48],[756,564],[247,37],[382,236],[394,168],[754,48],[350,899],[887,481],[938,477],[923,190],[525,185],[663,821],[789,869],[804,303],[87,315],[228,275],[852,110],[982,982],[740,107],[897,453],[929,450],[74,291],[891,801],[285,125],[987,791],[712,26],[534,442],[797,117],[524,339],[94,227],[219,740],[857,419],[196,140],[535,484],[632,158],[896,608],[543,58],[972,376],[676,188],[550,717],[18,515],[317,153],[256,497],[920,335],[460,299],[393,963],[339,745],[816,489],[339,770],[142,818],[319,524],[797,365],[575,599],[937,639],[914,655],[549,891],[329,13],[717,101],[221,860],[298,325],[950,475],[632,468],[361,839],[248,549],[904,700],[598,452],[484,24],[9,683],[38,6],[295,705],[977,743],[737,631],[35,188],[827,555],[670,37],[749,708],[276,617],[77,954],[365,211],[781,958],[465,475],[73,953],[195,289],[944,914],[590,244],[977,339],[790,629],[157,235],[899,792],[46,397],[748,570],[87,354],[573,949],[474,887],[196,444],[609,190],[605,814],[96,636],[99,369],[8,564],[634,422],[853,58],[681,55],[793,861],[724,114],[406,10],[101,628],[205,803],[345,193],[947,832],[664,882],[790,225],[788,38],[843,708],[734,646],[229,493],[409,384],[305,184],[532,340],[499,423],[318,135],[425,994],[86,257],[322,529],[243,125],[329,142],[833,673],[588,929],[455,575],[172,841],[6,797],[449,936],[470,44],[529,636],[138,594],[549,806],[43,982],[725,324],[45,402],[12,489],[440,334],[599,641],[855,833],[858,290],[398,590],[431,252],[585,610],[877,38],[60,831],[531,117],[134,488],[411,181],[869,730],[265,677],[669,439],[275,594],[527,240],[592,357],[902,583],[361,765],[497,47],[880,154],[110,941],[527,108],[750,835],[475,452],[687,903],[514,711],[77,595],[363,613],[252,105],[151,83],[570,599],[304,478],[668,344],[789,525],[608,260],[533,50],[614,97],[334,661],[763,611],[858,765],[795,175],[22,607],[396,263],[422,83],[724,768],[309,198],[690,374],[346,180],[456,467],[848,789],[130,34],[578,833],[835,384],[5,490],[354,884],[394,808],[536,46],[469,782],[838,97],[772,83],[841,733],[333,843],[729,11],[678,403],[769,495],[879,647],[718,950],[412,972],[920,130],[426,434],[922,321],[887,600],[763,622],[636,472],[687,387],[25,624],[748,531],[92,381],[103,42],[823,898],[100,633],[978,682],[345,332],[590,767],[685,251],[149,970],[836,672],[5,594],[244,528],[526,177],[639,205],[401,830],[92,406],[122,298],[161,176],[735,762],[140,773],[389,543],[626,8],[85,542],[30,34],[720,406],[350,182],[839,630],[921,848],[908,143],[605,460],[177,161],[401,946],[538,204],[968,640],[615,406],[606,85],[732,418],[313,560],[225,390],[968,218],[862,307],[963,78],[277,916],[435,532],[103,241],[245,575],[720,779],[355,939],[127,984],[620,536],[350,258],[96,997],[107,786],[503,354],[819,695],[840,571],[235,734],[243,92],[644,428],[356,412],[563,168],[397,207],[208,954],[863,142],[972,72],[437,369],[469,654],[694,556],[483,611],[249,427],[672,798],[387,280],[297,396],[429,761],[458,586],[629,305],[827,343],[509,770],[603,127],[865,934],[918,441],[764,700],[542,709],[397,910],[825,328],[990,617],[299,315],[325,345],[50,861],[419,981],[183,546],[106,199],[289,572],[684,639],[524,662],[711,926],[826,892],[79,861],[7,667],[125,149],[518,888],[897,504],[715,798],[46,81],[715,711],[35,52],[571,984],[908,98],[789,289],[312,383],[991,823],[264,426],[647,224],[82,915],[425,276],[765,190],[119,167],[605,777],[592,455],[18,222],[245,872],[820,810],[653,9],[752,112],[385,193],[807,539],[734,776],[123,419],[978,203],[617,371],[806,796],[294,947],[919,597],[623,667],[695,381],[600,159],[736,718],[403,888],[807,958],[552,711],[875,9],[136,801],[83,361],[766,95],[425,484],[636,872],[774,42],[372,984],[881,397],[88,750],[953,486],[947,679],[291,309],[912,728],[571,839],[328,900],[109,921],[917,227],[976,580],[85,910],[261,612],[424,293],[521,31],[54,721],[407,879],[312,900],[194,593],[776,223],[936,656],[447,898],[372,857],[907,326],[65,127],[608,562],[630,573],[329,101],[403,752],[206,323],[254,266],[165,640],[447,883],[590,868],[991,674],[596,92],[331,388],[225,54],[58,182],[686,292],[573,912],[695,246],[674,633],[479,316],[77,929],[257,787],[353,224],[948,151],[220,702],[853,486],[891,661],[791,341],[674,441],[911,174],[351,974],[468,964],[424,945],[23,885],[726,464],[451,124],[714,476],[563,942],[32,540],[982,235],[522,567],[886,787],[395,281],[78,378],[664,914],[411,409],[623,669],[1000,602],[525,266],[883,582],[752,749],[592,190],[456,22],[680,367],[112,969],[905,852],[667,938],[423,203],[998,388],[54,138],[645,170],[733,417],[698,243],[764,237],[80,85],[448,494],[181,973],[481,582],[823,994],[766,223],[671,71],[317,421],[197,201],[812,124],[925,586],[415,998],[890,454],[540,958],[622,269],[627,354],[196,788],[104,417],[500,586],[340,953],[748,840],[707,715],[899,635],[720,261],[486,313],[407,954],[919,721],[62,628],[492,654],[646,838],[840,822],[204,370],[700,472],[594,662],[25,417],[147,941],[264,283],[396,21],[43,455],[36,18],[157,330],[458,92],[896,264],[678,218],[73,620],[86,858],[490,299],[694,531],[681,450],[443,11],[167,33],[71,213],[797,660],[30,187],[399,893],[157,646],[513,628],[758,890],[841,801],[457,941],[799,456],[83,242],[779,472],[244,501],[321,387],[309,265],[327,173],[23,464],[42,523],[617,671],[837,229],[962,503],[42,3],[292,297],[300,495],[299,178],[276,116],[854,419],[867,912],[590,844],[473,252],[493,860],[673,870],[831,279],[88,293],[209,895],[339,972],[639,395],[13,193],[757,691],[667,444],[738,706],[562,310],[234,537],[283,357],[40,458],[984,198],[111,520],[895,698],[764,710],[561,917],[194,100],[587,53],[818,161],[263,14],[80,711],[280,552],[454,421],[386,718],[487,219],[80,727],[919,9],[344,148],[175,13],[666,253],[845,699],[355,183],[158,338],[800,524],[519,600],[396,398],[791,239],[375,392],[120,724],[118,303],[119,692],[216,481],[332,196],[568,964],[560,703],[185,157],[888,404],[529,933],[762,568],[141,81],[792,216],[439,792],[764,713],[654,901],[925,487],[429,905],[593,865],[567,389],[759,461],[545,563],[245,909],[453,662],[924,643],[225,675],[65,528],[53,62],[120,531],[234,860],[936,546],[861,658],[380,999],[504,977],[630,252],[198,894],[304,778],[96,537],[518,69],[527,15],[179,991],[857,363],[469,86],[277,66],[793,695],[149,191],[901,719],[880,731],[959,711],[680,384],[147,280],[148,731],[348,508],[867,150],[970,497],[198,793],[449,998],[112,671],[454,503],[578,470],[651,691],[800,295],[291,4],[763,136],[921,571],[488,649],[953,327],[469,412],[208,272],[487,215],[768,768],[489,916],[102,375],[626,772],[203,631],[50,595],[712,34],[586,782],[432,966],[287,727],[953,121],[105,193],[434,57],[738,229],[282,643],[171,600],[933,142],[30,706],[813,842],[366,327],[565,890],[74,816],[119,193],[961,515],[506,609],[55,481],[819,855],[491,109],[935,912],[156,204],[976,759],[999,659],[638,323],[146,165],[7,21],[977,722],[197,710],[157,157],[797,906],[173,700],[289,748],[252,861],[224,525],[411,809],[22,22],[267,964],[919,480],[846,110],[227,96],[130,137],[586,813],[911,574],[497,756],[140,65],[857,200],[397,45],[761,158],[797,718],[666,35],[506,444],[702,709],[544,344],[432,70],[990,26],[534,142],[220,134],[587,632],[902,685],[820,592],[756,44],[883,853],[375,244],[373,778],[472,168],[531,79],[667,929],[885,724],[43,158],[133,930],[678,760],[850,377],[212,793],[423,211],[138,509],[406,765],[416,410],[874,361],[995,213],[921,437],[628,76],[311,817],[40,781],[984,117],[161,911],[328,987],[592,799],[663,651],[858,724],[391,344],[154,250],[86,882],[715,704],[530,780],[522,627],[958,474],[937,396],[99,142],[754,466],[752,88],[404,582],[612,93],[495,879],[797,390],[545,617],[981,649],[856,955],[819,228],[579,655],[214,11],[631,860],[880,819],[186,845],[258,592],[170,875],[105,21],[53,854],[579,585],[875,628],[563,469],[142,704],[539,530],[181,596],[383,911],[993,987],[234,132],[801,965],[641,776],[307,88],[153,244],[105,419],[473,507],[105,36],[223,542],[717,882],[710,372],[218,684],[524,66],[490,581],[198,494],[314,658],[170,56],[921,297],[606,383],[281,727],[871,859],[563,66],[771,916],[715,373],[782,320],[173,977],[159,559],[943,225],[568,819],[98,190],[78,136],[183,87],[158,329],[392,883],[288,294],[96,999],[339,824],[947,527],[976,816],[447,511],[825,161],[388,493],[471,804],[271,583],[467,236],[963,470],[434,341],[883,934],[74,279],[568,993],[471,953],[155,955],[125,614],[656,562],[123,526],[613,491],[293,134],[155,713],[948,175],[171,179],[741,581],[480,569],[361,514],[861,768],[945,699],[101,256],[189,397],[661,462],[682,515],[656,898],[933,81],[314,576],[28,915],[628,871],[383,248],[787,913],[131,437],[760,461],[401,75],[719,877],[300,322],[457,437],[736,160],[401,409],[617,104],[746,889],[158,707],[214,737],[373,183],[192,728],[101,674],[483,678],[850,676],[161,590],[24,73],[824,183],[964,45],[881,180],[895,852],[889,574],[488,566],[266,29],[848,777],[969,429],[904,98],[717,659],[824,207],[277,380],[36,122],[740,680],[229,458],[489,408],[959,206],[274,910],[280,650],[351,493],[767,74],[507,301],[752,793],[729,957],[662,212],[625,800],[406,684],[375,549],[392,57],[922,542],[849,999],[895,439],[121,349],[180,398],[947,245],[920,953],[518,679],[521,348],[402,606],[569,242],[837,289],[402,28],[617,212],[12,40],[846,475],[648,562],[696,661],[830,310],[611,221],[543,138],[992,185],[497,903],[275,456],[791,787],[664,382],[498,127],[402,185],[35,890],[509,439],[539,5],[433,573],[625,534],[8,321],[341,63],[329,702],[897,847],[717,753],[382,27],[842,775],[823,863],[548,175],[705,650],[15,509],[683,871],[735,327],[354,416],[475,832],[508,123],[427,997],[765,247],[707,179],[985,812],[482,178],[304,832],[475,535],[334,323],[41,323],[296,4],[550,636],[2,544],[425,599],[848,862],[406,518],[853,24],[941,211],[110,102],[342,203],[775,204],[638,406],[642,423],[659,448],[14,299],[128,86],[905,449],[584,382],[13,397],[786,269],[437,612],[632,193],[398,545],[371,657],[477,131],[84,112],[160,807],[328,368],[657,957],[976,510],[187,158],[810,680],[365,335],[523,768],[166,373],[826,991],[749,941],[834,618],[451,384],[891,355],[936,427],[199,954],[414,852],[441,157],[489,531],[900,927],[66,380],[776,21],[999,285],[318,115],[829,997],[425,591],[440,64],[59,229],[757,498],[706,235],[814,758],[451,574],[959,582],[474,274],[832,371],[412,418],[826,318],[79,205],[206,834],[645,980],[246,579],[237,616],[7,874],[55,521],[402,702],[103,660],[361,789],[469,523],[605,239],[223,526],[415,289],[896,598],[32,421],[155,94],[370,620],[576,257],[266,214],[486,627],[554,162],[731,30],[796,81],[258,38],[236,844],[56,993],[371,282],[753,578],[971,282],[222,507],[131,126],[931,716],[296,238],[47,624],[767,43],[510,305],[898,955],[431,55],[863,749],[950,16],[863,705],[644,554],[422,216],[646,2],[327,844],[409,633],[47,1000],[197,160],[600,97],[371,679],[686,138],[810,229],[396,539],[338,304],[7,769],[631,20],[842,453],[958,889],[286,825],[626,548],[122,661],[428,541],[107,347],[171,440],[26,810],[514,37],[466,415],[324,886],[842,371],[602,891],[485,11],[108,845],[313,727],[744,592],[711,159],[93,39],[188,883],[764,395],[943,509],[191,466],[294,906],[647,447],[151,934],[133,296],[34,959],[658,754],[814,168],[364,286],[614,227],[195,34],[42,431],[659,311],[830,500],[740,579],[19,550],[849,422],[970,912],[824,501],[805,60],[676,112],[445,809],[333,840],[312,142],[362,158],[611,717],[871,434],[106,446],[197,182],[401,589],[139,717],[253,452],[859,431],[589,411],[687,923],[615,292],[924,80],[406,763],[760,888],[842,223],[895,953],[89,475],[781,133],[211,635],[930,458],[550,996],[262,129],[405,9],[717,978],[720,991],[344,994],[251,172],[4,464],[463,763],[794,881],[642,221],[761,728],[764,758],[79,504],[33,312],[266,198],[757,597],[863,662],[833,476],[726,966],[879,632],[845,269],[11,352],[532,299],[285,958],[210,517],[602,63],[523,688],[730,867],[991,935],[889,379],[961,636],[33,47],[276,979],[634,633],[282,822],[468,442],[291,926],[49,990],[205,123],[697,510],[384,808],[585,907],[593,549],[142,741],[947,3],[900,658],[929,249],[940,138],[584,994],[880,691],[944,333],[333,703],[369,978],[605,191],[243,190],[288,198],[783,519],[57,349],[603,584],[910,549],[523,650],[406,771],[944,847],[427,241],[166,354],[825,592],[281,227],[423,138],[104,277],[125,829],[807,814],[782,879],[736,833],[84,356],[176,140],[823,974],[445,190],[878,161],[375,967],[63,225],[652,89],[604,21],[851,316],[878,358],[994,315],[488,561],[608,780],[169,331],[931,362],[183,543],[361,340],[246,309],[529,56],[165,70],[747,735],[358,251],[804,761],[803,423],[582,162],[32,49],[49,978],[148,157],[182,503],[411,463],[304,703],[955,913],[462,38],[200,454],[369,771],[628,696],[462,785],[312,115],[350,299],[510,712],[569,129],[653,265],[367,554],[240,154],[244,121],[14,476],[235,262],[861,91],[327,812],[905,568],[532,796],[444,952],[623,965],[679,823],[674,127],[911,806],[669,855],[227,777],[575,64],[243,829],[925,985],[420,752],[786,313],[845,351],[938,61],[625,147],[401,52],[83,106],[306,852],[748,701],[564,863],[642,703],[780,851],[492,954],[714,464],[494,539],[125,972],[435,693],[521,611],[136,430],[201,330],[746,362],[117,157],[115,340],[353,541],[658,873],[182,136],[523,835],[698,874],[125,843],[68,485],[984,110],[379,787],[627,178],[93,59],[472,955],[831,560],[969,300],[608,387],[577,926],[163,608],[234,817],[101,227],[622,6],[267,845],[935,721],[686,852],[13,349],[941,635],[741,800],[595,959],[866,531],[165,863],[562,708],[66,22],[638,611],[412,592],[29,545],[46,23],[866,110],[556,679],[791,212],[437,760],[512,399],[146,317],[867,278],[991,848],[179,248],[911,581],[898,682],[803,999],[526,702],[872,858],[403,875],[288,552],[668,108],[258,39],[446,833],[771,64],[733,328],[924,637],[632,17],[815,958],[508,312],[197,719],[444,338],[541,755],[505,588],[347,408],[257,268],[836,281],[130,213],[176,676],[360,31],[135,633],[591,302],[348,327],[225,448],[620,783],[191,195],[866,803],[595,848],[653,566],[981,696],[270,324],[94,373],[555,781],[556,613],[272,403],[845,570],[180,978],[289,223],[405,64],[242,827],[559,643],[896,596],[158,769],[791,81],[777,372],[501,933],[271,432],[80,550],[926,486],[629,38],[886,884],[111,849],[248,275],[759,187],[378,969],[230,277],[115,627],[161,499],[728,514],[87,365],[372,493],[695,428],[900,115],[875,117],[235,278],[252,263],[564,823],[722,239],[419,927],[730,953],[286,28],[912,315],[950,907],[917,658],[173,493],[681,472],[891,540],[999,942],[863,268],[285,177],[691,763],[767,100],[915,890],[703,620],[66,535],[177,694],[685,75],[592,296],[550,219],[572,635],[141,889],[765,801],[13,605],[62,833],[965,840],[339,908],[754,791],[807,777],[569,36],[734,50],[26,85],[439,75],[681,451],[643,646],[45,89],[600,791],[943,33],[882,963],[959,482],[938,890],[454,327],[775,180],[602,167],[40,351],[444,176],[760,614],[430,830],[991,665],[960,684],[401,226],[102,363],[922,701],[55,319],[623,141],[672,805],[439,869],[52,228],[300,482],[251,453],[121,402],[487,930],[893,834],[306,702],[846,281],[690,364],[549,872],[630,514],[229,495],[882,753],[145,400],[213,107],[575,267],[141,654],[638,647],[634,491],[580,943],[71,983],[389,24],[270,12],[260,228],[16,533],[717,687],[14,797],[978,322],[109,456],[735,34],[676,136],[790,684],[113,785],[354,354],[88,867],[183,628],[372,329],[765,350],[754,467],[244,504],[634,985],[422,730],[19,120],[43,312],[246,159],[873,397],[89,145],[303,228],[44,204],[55,805],[203,553],[922,783],[664,74],[740,98],[42,556],[572,469],[137,55],[574,649],[58,804],[88,950],[743,721],[673,831],[438,267],[310,165],[220,554],[566,805],[311,14],[851,846],[495,53],[211,614],[384,641],[222,952],[576,996],[511,64],[93,50],[834,595],[42,413],[162,282],[588,262],[448,216],[74,51],[308,390],[354,223],[671,77],[507,491],[151,752],[772,106],[538,221],[585,797],[630,709],[106,861],[594,675],[192,893],[91,311],[883,928],[193,294],[100,84],[870,741],[114,848],[242,806],[744,169],[542,984],[465,495],[810,445],[203,982],[878,118],[619,135],[172,398],[462,290],[670,639],[806,645],[669,436],[25,193],[813,799],[142,347],[339,639],[411,479],[686,805],[683,190],[406,597],[118,278],[326,871],[437,194],[21,486],[188,746],[569,688],[521,38],[129,905],[56,441],[477,505],[547,343],[268,605],[723,459],[810,815],[411,84],[8,927],[574,213],[705,925],[541,100],[93,302],[114,830],[310,322],[120,457],[856,151],[622,671],[590,466],[153,821],[123,894],[988,887],[511,678],[228,755],[468,447],[785,53],[532,859],[520,567],[305,443],[110,806],[393,9],[55,987],[547,670],[113,529],[883,847],[610,17],[436,643],[407,422],[199,909],[750,283],[804,668],[98,718],[359,244],[891,145],[105,609],[790,411],[901,84],[206,981],[62,986],[442,261],[580,164],[555,3],[641,36],[426,395],[232,161],[346,640],[570,436],[473,677],[121,676],[235,662],[487,708],[863,116],[730,603],[217,751],[616,837],[745,328],[557,678],[22,923],[48,85],[99,514],[27,874],[690,807],[358,725],[173,457],[593,435],[364,372],[586,55],[550,825],[332,596],[559,420],[572,221],[641,157],[247,139],[949,554],[588,296],[306,134],[470,198],[948,662],[382,363],[778,811],[39,470],[228,529],[510,836],[534,672],[718,410],[426,157],[869,860],[289,632],[713,122],[971,970],[25,557],[725,293],[707,711],[315,859],[886,988],[938,708],[481,876],[515,139],[374,100],[742,650],[579,716],[967,752],[887,361],[842,419],[487,540],[837,563],[511,272],[254,553],[413,654],[772,194],[310,941],[877,656],[21,932],[430,9],[826,477],[807,955],[101,15],[57,106],[479,896],[597,363],[103,637],[821,835],[814,115],[694,713],[579,845],[293,656],[983,577],[687,24],[351,171],[263,85],[887,31],[797,956],[206,332],[788,442],[910,948],[488,470],[318,314],[455,656],[130,838],[110,239],[438,674],[29,500],[746,60],[441,408],[819,596],[304,666],[53,709],[234,617],[913,746],[422,84],[796,861],[911,671],[666,680],[435,614],[890,808],[559,468],[795,436],[57,240],[19,112],[832,269],[501,164],[576,152],[650,602],[418,35],[650,857],[665,823],[429,724],[373,990],[747,378],[373,421],[327,566],[133,663],[732,737],[87,607],[625,949],[496,417],[390,589],[340,763],[311,620],[166,581],[472,576],[278,49],[134,10],[544,686],[957,569],[982,354],[604,659],[641,834],[742,456],[275,847],[29,289],[277,170],[658,888],[15,970],[483,777],[714,251],[926,61],[751,108],[957,137],[345,889],[896,522],[288,53],[500,828],[934,137],[343,944],[321,632],[589,185],[438,651],[818,433],[316,916],[47,92],[97,997],[914,196],[793,946],[221,844],[544,97],[134,868],[282,646],[94,357],[546,709],[690,37],[201,111],[147,454],[112,608],[881,802],[85,171],[369,331],[516,975],[207,504],[627,765],[953,557],[69,467],[406,18],[952,425],[687,478],[936,53],[737,235],[15,931],[17,123],[304,708],[689,167],[822,317],[362,43],[266,60],[924,724],[615,937],[946,445],[221,702],[896,743],[166,393],[446,396],[458,321],[676,113],[7,504],[139,260],[519,10],[320,407],[981,718],[76,809],[345,56],[352,535],[560,886],[601,304],[794,839],[255,590],[58,878],[275,319],[814,937],[818,47],[1000,427],[813,184],[977,863],[336,154],[296,137],[162,92],[576,142],[6,318],[871,349],[352,699],[27,238],[242,922],[550,116],[961,904],[776,551],[299,631],[463,938],[561,481],[881,455],[546,816],[473,11],[236,706],[183,2],[528,158],[759,621],[716,872],[306,887],[757,721],[964,335],[880,519],[421,725],[694,47],[260,238],[752,986],[867,299],[624,651],[421,903],[21,40],[781,428],[112,931],[9,841],[820,43],[739,656],[821,686],[729,241],[629,763],[917,394],[8,489],[164,615],[27,248],[226,36],[290,750],[402,442],[379,822],[221,418],[38,826],[350,447],[968,407],[926,629],[527,220],[612,66],[715,342],[319,378],[75,86],[797,249],[768,547],[470,879],[295,177],[723,908],[86,120],[68,446],[131,116],[733,696],[298,515],[77,159],[397,680],[183,498],[977,34],[982,922],[453,594],[145,414],[172,537],[555,805],[438,293],[747,533],[262,386],[551,243],[261,910],[754,208],[53,656],[860,198],[47,13],[682,53],[932,474],[598,27],[549,533],[755,591],[521,19],[264,280],[816,922],[808,918],[287,500],[681,941],[305,152],[134,994],[42,893],[314,924],[59,938],[154,336],[840,706],[88,952],[295,351],[457,273],[263,589],[611,575],[844,875],[714,486],[688,515],[12,739],[521,76],[427,799],[548,902],[230,149],[180,245],[943,519],[639,545],[432,9],[451,957],[984,366],[620,67],[722,171],[799,448],[734,129],[43,922],[349,804],[249,262],[387,97],[863,263],[583,715],[376,893],[111,249],[375,371],[102,210],[520,967],[929,148],[167,797],[494,211],[761,735],[810,563],[303,367],[167,134],[44,859],[155,436],[48,839],[554,499],[998,377],[695,429],[868,826],[124,543],[54,612],[831,832],[990,733],[832,898],[475,452],[149,252],[799,647],[358,388],[117,800],[956,129],[976,329],[265,693],[405,839],[398,861],[425,408],[665,956],[712,126],[360,341],[958,35],[346,422],[57,200],[250,197],[782,850],[887,623],[250,379],[511,259],[10,520],[283,667],[566,217],[599,176],[822,747],[642,841],[84,866],[590,891],[954,937],[812,560],[102,513],[587,390],[513,722],[421,598],[185,2],[348,761],[362,734],[581,519],[713,640],[15,932],[974,260],[260,286],[547,509],[767,613],[898,577],[683,424],[585,340],[951,910],[456,545],[677,554],[93,636],[172,979],[980,354],[83,335],[871,905],[894,453],[186,655],[10,587],[916,506],[268,561],[713,794],[217,580],[864,688],[649,72],[998,786],[102,845],[878,647],[424,381],[917,91],[822,184],[728,808],[128,670],[844,491],[29,865],[838,536],[186,208],[864,503],[981,86],[965,335],[458,864],[880,649],[417,550],[348,249],[414,255],[876,314],[798,846],[101,413],[454,297],[244,807],[782,449],[373,682],[744,159],[969,261],[216,244],[293,975],[745,14],[783,498],[982,524],[46,271],[323,680],[831,113],[371,443],[127,718],[800,618],[977,73],[942,247],[50,630],[439,902],[244,590],[123,477],[260,5],[435,161],[304,591],[875,722],[587,246],[729,647],[280,513],[845,236],[654,456],[572,435],[87,982],[755,631],[180,579],[474,676],[695,468],[980,464],[788,221],[629,498],[300,63],[454,652],[213,598],[690,140],[267,171],[112,801],[832,8],[944,168],[980,584],[547,676],[47,939],[281,692],[217,132],[608,81],[866,829],[291,858],[572,453],[943,790],[124,47],[879,412],[632,871],[338,606],[451,117],[330,366],[670,989],[161,515],[757,614],[418,188],[349,915],[413,8],[107,178],[932,555],[933,91],[137,164],[637,414],[652,80],[640,296],[153,851],[859,149],[81,272],[145,472],[704,232],[652,77],[39,133],[948,34],[310,86],[229,659],[647,980],[849,435],[780,914],[340,574],[254,283],[547,629],[592,963],[553,551],[945,828],[138,197],[788,694],[827,470],[872,524],[820,375],[251,315],[143,739],[9,799],[10,331],[242,20],[118,759],[930,652],[608,875],[941,797],[994,779],[998,995],[351,457],[689,144],[381,599],[875,500],[309,133],[593,18],[357,364],[854,585],[475,50],[657,505],[648,695],[958,239],[571,148],[715,18],[533,102],[816,665],[597,766],[354,631],[50,790],[122,572],[10,159],[264,418],[623,186],[135,118],[449,347],[995,348],[769,366],[898,868],[915,715],[430,223],[882,826],[887,704],[233,580],[680,264],[16,382],[96,412],[143,333],[435,710],[156,84],[968,974],[64,828],[56,919],[488,526],[146,976],[806,862],[793,680],[295,513],[746,174],[440,54],[869,303],[886,862],[563,550],[718,24],[212,878],[186,636],[669,699],[820,656],[245,671],[96,546],[796,704],[483,760],[34,498],[560,213],[579,964],[651,622],[346,125],[325,227],[920,614],[252,966],[312,799],[839,468],[652,264],[632,366],[256,386],[744,998],[31,419],[583,990],[989,175],[742,313],[61,103],[823,489],[245,456],[267,831],[58,740],[809,555],[758,802],[99,489],[812,966],[724,499],[619,927],[731,51],[243,717],[568,569],[398,602],[57,685],[652,235],[982,168],[358,616],[519,499],[138,306],[684,109],[625,8],[188,959],[988,608],[358,101],[963,814],[387,643],[416,794],[417,423],[23,343],[30,550],[731,39],[458,790],[630,565],[667,999],[33,771],[516,648],[143,555],[792,28],[516,505],[452,445],[769,445],[386,801],[923,301],[407,566],[990,401],[651,255],[627,832],[684,500],[969,779],[785,950],[728,505],[915,673],[777,985],[828,468],[883,778],[183,292],[444,701],[408,682],[419,772],[253,459],[109,441],[258,99],[561,88],[3,548],[969,222],[147,412],[490,789],[36,801],[201,487],[103,6],[623,327],[271,383],[28,266],[678,366],[13,413],[104,312],[580,856],[787,646],[401,33],[412,735],[114,638],[821,50],[54,590],[870,832],[440,320],[144,516],[358,727],[986,853],[576,520],[897,769],[302,56],[11,458],[32,45],[396,812],[789,34],[396,362],[384,258],[279,550],[126,61],[623,252],[33,782],[955,131],[6,552],[770,998],[595,286],[638,143],[124,520],[620,635],[506,837],[811,979],[984,271],[520,362],[106,421],[52,88],[1000,396],[261,181],[954,302],[925,816],[135,149],[329,946],[623,152],[209,53],[467,476],[440,371],[160,962],[279,578],[320,551],[361,26],[382,951],[52,555],[38,562],[113,142],[461,355],[378,599],[489,136],[628,276],[485,348],[359,959],[543,726],[635,849],[599,721],[531,955],[239,937],[732,547],[615,16],[780,437],[700,86],[724,726],[160,794],[785,535],[115,654],[951,822],[644,24],[364,180],[196,469],[790,591],[571,918],[147,590],[728,204],[689,609],[313,856],[810,656],[24,896],[990,668],[332,418],[928,869],[197,764],[901,339],[865,922],[88,649],[477,131],[142,346],[350,486],[839,540],[229,545],[798,476],[732,458],[675,972],[694,681],[48,164],[332,846],[673,954],[862,896],[100,95],[877,105],[850,333],[550,971],[981,810],[854,173],[160,393],[38,268],[47,557],[807,264],[415,180],[265,696],[840,961],[655,692],[260,504],[643,513],[741,993],[409,282],[665,190],[614,66],[35,797],[541,213],[761,23],[861,242],[155,522],[343,556],[427,687],[49,574],[764,895],[348,232],[962,967],[554,901],[172,462],[275,900],[825,304],[554,867],[66,613],[771,495],[245,423],[245,540],[801,762],[958,673],[936,738],[666,934],[415,561],[119,472],[280,349],[943,205],[711,694],[176,428],[307,411],[119,943],[447,495],[907,872],[327,635],[994,301],[614,85],[907,345],[758,556],[543,64],[459,294],[594,469],[322,997],[836,166],[260,345],[117,321],[94,232],[302,7],[749,729],[938,255],[478,126],[871,890],[258,316],[749,718],[359,268],[661,539],[710,891],[570,597],[155,685],[622,737],[488,946],[502,415],[137,414],[289,282],[61,722],[940,198],[75,998],[815,947],[424,930],[628,744],[154,203],[619,247],[169,569],[476,319],[912,6],[746,683],[721,149],[788,227],[953,319],[354,188],[731,508],[817,81],[6,635],[619,202],[547,526],[793,234],[635,99],[525,14],[616,264],[840,453],[792,956],[583,664],[177,57],[974,79],[299,704],[102,968],[227,195],[220,557],[865,992],[710,624],[171,729],[861,768],[483,132],[537,174],[466,176],[825,203],[228,202],[351,787],[652,662],[211,90],[46,806],[729,941],[718,116],[220,482],[206,373],[827,136],[103,777],[359,126],[231,632],[322,450],[234,932],[76,438],[295,276],[764,253],[378,756],[806,838],[917,308],[875,807],[875,396],[633,852],[595,296],[45,720],[158,2],[641,367],[804,508],[133,421],[946,527],[461,344],[562,643],[161,748],[152,666],[973,281],[576,365],[461,186],[382,821],[944,215],[79,951],[761,225],[30,156],[889,463],[248,945],[654,772],[507,130],[809,500],[252,600],[651,73],[730,497],[398,435],[223,613],[615,571],[567,417],[54,985],[702,612],[115,285],[813,485],[847,414],[199,50],[880,179],[796,721],[353,255],[44,706],[112,676],[705,548],[54,928],[415,768],[35,507],[855,808],[17,62],[670,498],[675,187],[71,483],[379,194],[915,494],[247,856],[785,864],[166,391],[412,875],[902,540],[918,41],[611,108],[133,526],[879,933],[331,354],[850,727],[650,187],[797,556],[88,794],[357,13],[987,484],[932,12],[655,671],[372,119],[448,600],[29,615],[610,919],[773,353],[556,938],[182,452],[654,638],[680,459],[506,71],[988,743],[124,963],[835,210],[208,86],[265,127],[415,879],[42,598],[345,813],[440,929],[834,872],[597,239],[266,858],[196,232],[55,466],[115,470],[503,434],[172,104],[996,715],[880,929],[809,7],[667,230],[1000,726],[27,611],[592,524],[317,681],[254,158],[6,800],[956,912],[966,863],[281,111],[111,757],[369,635],[454,239],[854,467],[98,258],[962,765],[4,285],[695,424],[794,311],[64,190],[669,77],[253,272],[878,806],[974,31],[515,659],[415,283],[533,819],[36,493],[123,177],[72,844],[371,470],[102,194],[868,966],[367,293],[982,882],[811,27],[237,588],[553,241],[965,902],[976,51],[519,947],[916,177],[370,506],[18,209],[439,826],[604,881],[781,993],[317,910],[76,391],[770,205],[784,157],[474,185],[924,739],[926,119],[643,173],[186,415],[798,51],[414,35],[392,404],[781,34],[217,787],[956,697],[504,365],[234,225],[136,623],[254,107],[315,686],[99,616],[534,695],[816,10],[483,183],[406,277],[356,683],[521,735],[535,417],[336,502],[595,864],[66,294],[777,246],[71,676],[761,639],[593,807],[143,679],[383,978],[246,543],[225,928],[640,369],[341,973],[159,668],[742,423],[661,412],[970,796],[547,427],[893,76],[63,807],[840,326],[872,558],[973,72],[275,238],[588,27],[88,732],[229,934],[986,24],[189,786],[873,54],[799,563],[789,624],[467,867],[806,155],[417,587],[721,648],[308,111],[989,832],[736,987],[363,677],[477,635],[138,309],[907,677],[883,937],[485,401],[840,961],[259,709],[54,171],[40,929],[231,253],[975,55],[545,3],[738,253],[379,127],[283,314],[182,437],[754,143],[148,962],[451,709],[665,617],[631,181],[934,896],[686,777],[717,438],[970,64],[397,547],[357,91],[296,287],[308,527],[879,318],[385,436],[498,225],[392,23],[608,691],[716,181],[316,932],[364,370],[421,784],[617,445],[988,769],[118,418],[779,750],[33,410],[805,990],[402,996],[57,323],[263,364],[255,321],[266,839],[901,960],[224,532],[574,208],[70,934],[608,851],[517,219],[171,769],[967,899],[689,56],[844,359],[492,805],[712,96],[850,140],[795,505],[238,709],[728,649],[369,393],[289,179],[422,432],[126,759],[445,242],[420,672],[486,9],[26,191],[136,530],[366,207],[634,474],[307,498],[589,839],[394,592],[256,1000],[512,722],[807,678],[27,525],[58,379],[238,290],[671,75],[255,587],[672,720],[755,106],[840,322],[390,506],[330,45],[347,947],[607,196],[49,647],[382,710],[333,819],[986,639],[285,545],[211,398],[227,728],[53,926],[501,28],[284,701],[108,418],[766,967],[511,292],[772,666],[613,287],[282,422],[574,625],[404,916],[61,504],[975,858],[793,214],[204,866],[674,220],[781,528],[161,750],[375,348],[236,982],[238,616],[749,11],[411,417],[482,288],[783,496],[83,692],[708,498],[280,138],[442,711],[462,349],[723,57],[246,630],[861,559],[478,530],[657,175],[921,252],[817,841],[445,243],[201,705],[923,97],[43,377],[617,991],[734,642],[679,847],[347,636],[489,495],[232,935],[297,637],[143,637],[641,544],[423,964],[406,671],[88,390],[182,931],[647,627],[130,176],[112,535],[621,296],[986,533],[491,81],[214,338],[314,837],[37,67],[782,750],[952,393],[929,32],[554,779],[69,278],[573,237],[50,158],[939,380],[619,633],[863,212],[76,404],[59,944],[861,838],[114,864],[374,935],[914,249],[306,5],[242,912],[674,200],[487,775],[971,326],[523,546],[144,513],[779,211],[49,338],[794,322],[336,497],[367,261],[104,101],[137,446],[303,110],[402,549],[188,749],[387,763],[87,85],[784,405],[628,96],[17,298],[112,366],[315,530],[777,648],[287,533],[696,816],[723,866],[913,40],[107,38],[66,948],[584,28],[643,768],[259,537],[209,789],[912,673],[83,380],[726,895],[613,493],[434,701],[936,788],[355,73],[719,437],[372,131],[831,145],[945,283],[758,285],[758,406],[65,303],[919,686],[945,21],[258,253],[676,388],[207,918],[388,97],[273,663],[375,799],[455,262],[739,839],[608,206],[279,712],[44,263],[815,58],[293,142],[764,405],[379,909],[526,582],[930,776],[797,634],[794,807],[706,89],[973,419],[332,126],[59,686],[86,232],[1000,82],[223,277],[604,37],[578,436],[77,170],[976,790],[642,433],[631,525],[665,259],[580,746],[493,400],[414,946],[686,847],[879,605],[75,947],[647,703],[914,175],[602,515],[263,750],[752,740],[129,990],[643,959],[919,945],[893,433],[622,380],[969,836],[687,288],[695,564],[219,317],[297,723],[248,243],[725,693],[812,656],[578,771],[542,977],[861,130],[622,861],[318,773],[529,359],[308,793],[423,915],[605,104],[688,606],[179,393],[340,504],[939,297],[977,674],[949,77],[298,4],[632,127],[942,348],[534,898],[723,477],[127,773],[74,313],[339,678],[261,291],[708,443],[680,298],[390,869],[818,737],[247,335],[851,350],[130,597],[435,732],[792,148],[566,197],[353,189],[517,742],[545,250],[686,951],[326,975],[582,892],[690,835],[400,829],[73,185],[938,122],[361,423],[302,297],[224,384],[978,634],[742,500],[592,917],[798,479],[217,562],[773,772],[333,85],[482,179],[982,700],[963,315],[768,462],[460,937],[780,628],[343,626],[456,845],[569,724],[895,61],[686,202],[53,739],[323,444],[413,931],[945,992],[960,66],[230,994],[831,449],[807,130],[714,404],[287,775],[257,860],[196,846],[637,52],[179,763],[266,23],[560,915],[341,298],[958,948],[565,699],[202,423],[402,459],[971,359],[353,460],[387,895],[23,138],[108,116],[832,473],[544,886],[333,220],[996,166],[119,36],[78,59],[425,31],[526,144],[770,599],[157,486],[62,405],[740,317],[698,537],[219,339],[536,488],[970,799],[69,934],[466,82],[725,666],[837,499],[478,129],[910,592],[699,838],[603,130],[252,358],[167,257],[976,372],[238,870],[404,426],[429,358],[861,672],[374,14],[963,693],[66,744],[779,431],[958,166],[417,908],[916,714],[606,147],[301,792],[962,761],[589,319],[720,126],[284,690],[860,524],[575,9],[684,539],[359,583],[371,519],[656,351],[810,155],[168,274],[553,134],[626,127],[707,33],[675,46],[645,21],[599,724],[521,238],[633,98],[427,746],[978,999],[246,379],[693,1000],[759,379],[160,650],[842,133],[133,870],[766,696],[810,148],[242,165],[966,918],[313,541],[250,677],[594,903],[62,438],[186,643],[675,616],[917,136],[173,823],[88,999],[250,444],[329,914],[264,485],[382,56],[392,876],[336,860],[732,524],[4,234],[654,538],[590,87],[798,710],[671,692],[331,669],[23,517],[504,764],[887,577],[943,629],[354,44],[226,219],[754,447],[700,450],[13,124],[701,537],[128,979],[2,670],[74,765],[980,131],[601,109],[34,622],[288,258],[551,283],[846,343],[624,826],[442,986],[67,957],[158,494],[994,23],[366,474],[945,207],[491,415],[37,129],[961,522],[77,229],[745,790],[959,673],[838,728],[85,95],[192,409],[612,430],[480,965],[299,507],[425,658],[269,68],[1000,500],[923,81],[958,519],[220,285],[356,610],[527,654],[86,891],[740,590],[142,670],[528,549],[642,868],[725,509],[786,113],[475,94],[238,658],[429,936],[131,589],[690,617],[100,720],[974,788],[631,661],[794,48],[386,923],[679,272],[13,532],[28,286],[901,254],[90,804],[548,252],[521,859],[743,667],[433,468],[27,497],[436,233],[452,540],[252,838],[657,280],[635,861],[466,369],[56,408],[5,160],[219,871],[962,202],[997,317],[312,661],[597,163],[377,742],[392,414],[967,287],[795,611],[669,754],[421,333],[153,736],[509,13],[700,403],[965,143],[176,920],[922,674],[20,512],[154,721],[436,628],[86,69],[737,749],[680,652],[667,531],[733,22],[523,885],[48,299],[948,274],[511,836],[1,901],[40,81],[755,964],[527,980],[367,852],[417,300],[657,635],[657,173],[19,419],[715,539],[107,697],[384,135],[579,163],[599,400],[876,896],[727,775],[835,746],[807,65],[106,345],[627,820],[536,175],[174,423],[297,866],[851,811],[247,451],[905,274],[308,451],[432,559],[450,966],[643,570],[33,913],[277,978],[375,965],[130,461],[180,415],[170,815],[833,782],[699,525],[913,901],[729,778],[896,388],[158,655],[991,537],[446,485],[154,233],[852,227],[135,202],[91,434],[120,611],[353,358],[533,36],[333,240],[127,282],[258,151],[688,132],[73,888],[623,310],[744,674],[447,649],[542,121],[326,908],[318,522],[736,538],[486,753],[80,6],[289,5],[953,404],[481,516],[802,896],[927,108],[116,826],[287,932],[152,181],[324,634],[149,362],[413,998],[734,534],[772,368],[722,921],[553,455],[518,629],[785,482],[321,343],[76,288],[557,9],[32,462],[325,46],[870,189],[359,960],[333,289],[456,743],[997,592],[253,798],[783,908],[841,729],[40,350],[320,346],[81,818],[896,226],[777,235],[252,164],[753,723],[487,111],[922,626],[738,237],[191,664],[157,638],[410,157],[197,720],[260,978],[363,674],[775,860],[696,979],[509,546],[625,857],[222,431],[898,246],[744,735],[990,259],[836,738],[772,295],[470,797],[118,833],[88,980],[589,904],[315,732],[38,95],[833,165],[268,121],[242,880],[570,917],[864,357],[8,166],[988,554],[429,622],[230,219],[55,574],[166,455],[710,488],[439,651],[939,270],[712,175],[611,125],[589,822],[932,965],[996,271],[899,306],[199,931],[922,481],[467,464],[597,591],[603,342],[359,29],[958,864],[522,528],[481,420],[234,969],[543,300],[867,877],[934,567],[597,538],[757,6],[971,325],[325,244],[489,176],[860,585],[475,720],[926,128],[300,993],[701,194],[38,47],[492,909],[211,464],[385,299],[274,463],[1000,762],[331,51],[774,651],[806,504],[896,715],[28,713],[40,663],[789,433],[483,10],[479,233],[495,936],[528,486],[988,584],[901,863],[548,756],[155,214],[250,715],[882,628],[713,284],[963,611],[162,888],[375,262],[898,996],[312,200],[531,141],[611,989],[421,950],[950,205],[746,55],[852,83],[776,524],[138,487],[486,173],[186,302],[381,220],[459,75],[168,780],[476,74],[645,175],[596,705],[935,216],[997,669],[553,335],[90,229],[756,418],[676,235],[31,481],[533,145],[38,814],[254,629],[709,782],[58,228],[642,502],[526,368],[71,720],[584,110],[954,170],[482,260],[991,554],[560,312],[284,146],[754,473],[605,795],[144,199],[99,108],[770,535],[428,152],[455,305],[756,19],[746,946],[916,625],[764,703],[832,150],[399,848],[378,680],[840,475],[243,227],[540,757],[428,724],[887,226],[763,734],[783,473],[110,829],[813,499],[574,834],[440,419],[744,81],[943,283],[388,283],[421,501],[578,758],[170,342],[35,595],[889,607],[904,207],[773,846],[401,338],[632,514],[273,448],[622,127],[994,794],[901,318],[7,559],[973,475],[119,383],[548,425],[262,674],[892,318],[218,807],[671,863],[317,701],[750,386],[977,227],[761,338],[505,925],[990,502],[935,153],[823,613],[194,112],[838,912],[281,364],[517,191],[937,47],[247,25],[535,719],[877,450],[502,217],[418,23],[361,656],[957,305],[854,812],[306,737],[635,93],[565,666],[313,168],[167,585],[743,701],[275,23],[28,817],[901,688],[890,719],[241,501],[482,759],[312,458],[852,41],[486,345],[600,44],[634,419],[203,143],[740,231],[196,562],[347,997],[582,77],[153,291],[717,102],[887,495],[717,627],[969,836],[978,239],[316,863],[880,870],[679,964],[502,835],[292,374],[534,51],[436,532],[467,729],[697,64],[606,784],[443,228],[674,818],[726,438],[579,912],[37,445],[911,812],[87,4],[607,213],[919,667],[448,361],[460,637],[908,75],[151,268],[874,59],[157,319],[753,541],[578,160],[435,678],[218,721],[184,412],[24,711],[974,217],[40,104],[126,825],[272,132],[455,138],[317,603],[719,100],[409,722],[99,4],[792,970],[589,714],[655,309],[244,710],[61,85],[801,747],[344,186],[181,742],[558,412],[211,658],[322,119],[733,119],[829,847],[850,88],[638,852],[764,537],[372,615],[854,126],[164,649],[585,960],[863,132],[225,322],[406,387],[762,787],[903,244],[749,696],[955,36],[746,791],[691,925],[57,5],[650,387],[137,496],[150,892],[377,652],[38,400],[408,108],[921,31],[303,769],[665,773],[404,942],[655,968],[440,642],[937,72],[704,533],[852,142],[975,218],[112,432],[777,899],[267,677],[218,470],[120,500],[431,811],[691,765],[583,421],[826,616],[965,987],[180,732],[60,506],[265,955],[426,315],[875,481],[691,356],[653,742],[489,58],[387,550],[633,496],[527,440],[158,468],[600,808],[267,520],[842,658],[428,992],[9,31],[126,278],[159,945],[119,184],[882,183],[421,992],[654,363],[831,49],[499,710],[153,398],[210,51],[334,70],[959,311],[364,984],[246,688],[770,461],[489,514],[431,443],[599,953],[904,780],[996,926],[123,410],[242,163],[440,202],[41,47],[956,554],[463,676],[135,644],[649,424],[275,806],[511,285],[282,223],[432,106],[531,832],[571,97],[890,244],[562,153],[821,138],[272,408],[850,584],[913,840],[525,140],[189,198],[191,866],[315,784],[595,253],[69,450],[75,599],[382,988],[502,938],[432,580],[346,297],[727,677],[463,630],[947,50],[105,197],[259,33],[249,83],[726,340],[125,38],[347,474],[354,140],[345,534],[478,260],[570,50],[573,697],[467,347],[742,209],[516,651],[291,458],[536,557],[189,59],[179,511],[505,217],[803,25],[550,38],[288,50],[88,539],[95,534],[495,231],[983,776],[717,43],[802,383],[270,742],[182,239],[65,283],[452,652],[171,809],[536,269],[58,799],[489,894],[553,511],[265,594],[54,28],[726,518],[964,490],[591,985],[940,856],[338,839],[875,481],[347,474],[456,594],[576,526],[874,876],[722,864],[406,833],[647,348],[713,120],[437,529],[111,634],[560,225],[122,915],[910,795],[21,701],[508,338],[617,837],[349,354],[77,671],[1,869],[131,932],[101,276],[478,436],[864,58],[704,820],[435,494],[49,953],[488,725],[352,724],[543,176],[325,856],[987,402],[249,649],[921,176],[382,985],[142,410],[340,882],[89,123],[822,315],[158,772],[625,213],[178,985],[392,836],[511,393],[269,87],[121,626],[716,963],[307,473],[755,971],[4,490],[156,950],[35,576],[321,925],[701,695],[251,60],[356,984],[277,682],[183,159],[844,523],[127,538],[903,354],[998,601],[416,435],[812,776],[667,783],[831,456],[843,341],[95,154],[703,362],[905,962],[862,49],[206,587],[458,281],[213,624],[319,548],[820,617],[603,391],[744,359],[585,267],[66,175],[425,388],[981,647],[30,842],[59,766],[266,2],[215,490],[158,853],[201,722],[839,309],[729,158],[199,456],[571,577],[365,975],[407,157],[443,462],[774,14],[49,979],[220,430],[674,751],[786,39],[266,975],[412,271],[228,213],[22,177],[608,775],[105,448],[4,66],[469,583],[505,300],[186,205],[937,765],[433,979],[505,118],[454,181],[347,233],[24,423],[621,284],[41,645],[154,272],[561,53],[977,584],[263,646],[659,137],[605,439],[983,878],[821,37],[509,552],[869,212],[641,893],[689,399],[648,665],[821,667],[294,427],[428,342],[571,83],[475,347],[806,799],[450,128],[754,103],[565,915],[256,967],[26,521],[765,546],[598,678],[992,909],[222,86],[831,242],[598,81],[589,224],[460,886],[296,897],[456,845],[953,572],[602,683],[100,520],[234,579],[420,615],[39,812],[707,575],[844,374],[677,583],[580,395],[198,652],[268,875],[98,517],[181,642],[736,256],[794,909],[130,513],[657,274],[907,543],[34,192],[792,342],[235,134],[801,645],[902,6],[449,936],[221,559],[920,240],[109,923],[992,148],[768,276],[638,481],[880,929],[513,815],[857,574],[591,23],[258,917],[590,589],[851,217],[466,241],[230,928],[656,101],[905,141],[397,905],[415,452],[241,466],[900,844],[195,731],[272,11],[350,710],[583,341],[262,950],[34,799],[513,351],[199,478],[244,927],[46,671],[696,555],[955,585],[985,379],[580,47],[372,176],[760,354],[827,489],[473,759],[978,400],[69,235],[767,544],[263,629],[806,897],[390,682],[979,96],[949,196],[44,181],[478,832],[548,53],[885,107],[595,948],[334,643],[519,854],[55,336],[923,115],[799,444],[95,665],[985,282],[203,881],[710,991],[69,132],[798,128],[114,412],[836,815],[176,324],[654,487],[42,813],[438,658],[307,131],[131,813],[824,296],[803,837],[28,557],[194,864],[789,217],[104,538],[909,709],[312,183],[895,773],[74,919],[745,985],[965,451],[551,812],[483,754],[963,33],[26,660],[675,250],[884,409],[500,991],[111,516],[888,515],[355,334],[988,209],[900,67],[820,264],[437,143],[715,227],[387,215],[570,71],[777,813],[900,68],[960,311],[738,291],[337,596],[526,623],[242,165],[943,632],[833,227],[763,353],[507,524],[750,730],[686,652],[698,632],[269,759],[5,765],[53,824],[801,879],[165,209],[159,454],[722,3],[687,514],[396,178],[983,418],[489,599],[66,60],[980,826],[902,133],[989,552],[756,454],[895,903],[974,625],[806,198],[779,395],[321,241],[32,302],[21,770],[896,108],[656,951],[952,702],[418,427],[684,993],[701,672],[977,445],[923,30],[433,300],[717,938],[773,89],[842,354],[434,336],[469,881],[336,268],[711,25],[885,388],[283,615],[430,896],[896,484],[559,152],[680,15],[692,616],[279,903],[78,73],[347,913],[516,201],[283,633],[258,238],[547,511],[240,9],[634,578],[199,901],[270,70],[65,499],[482,700],[278,338],[949,954],[778,47],[726,425],[82,666],[777,481],[467,453],[99,200],[565,789],[33,786],[943,507],[52,413],[126,975],[841,133],[976,643],[166,957],[624,519],[713,175],[165,215],[418,379],[817,622],[989,463],[945,5],[258,306],[242,838],[724,220],[923,218],[441,303],[234,674],[458,462],[30,361],[442,236],[457,83],[379,864],[868,478],[912,103],[655,208],[827,775],[132,302],[592,48],[959,803],[293,934],[185,7],[337,304],[784,629],[749,998],[782,816],[83,503],[713,998],[58,845],[203,377],[552,358],[97,502],[628,811],[592,942],[305,960],[433,758],[751,645],[628,6],[291,277],[723,729],[434,156],[68,371],[56,165],[213,142],[545,359],[722,671],[760,947],[561,441],[487,161],[496,850],[656,750],[606,822],[820,826],[483,360],[786,223],[368,752],[660,147],[509,838],[363,957],[216,595],[590,23],[666,332],[518,464],[817,283],[511,726],[797,638],[943,148],[334,653],[964,400],[404,354],[963,680],[677,72],[627,577],[844,354],[399,880],[363,743],[272,730],[382,2],[898,272],[126,997],[745,473],[952,172],[570,46],[200,926],[397,214],[26,73],[560,548],[437,50],[592,685],[940,34],[660,219],[162,344],[756,774],[577,972],[203,391],[684,806],[753,429],[580,265],[337,83],[146,160],[624,858],[278,556],[353,135],[892,305],[329,772],[526,825],[822,894],[11,154],[845,212],[606,446],[306,947],[712,316],[561,767],[176,620],[210,447],[986,674],[56,402],[632,923],[936,945],[566,83],[447,625],[251,521],[786,374],[471,543],[609,795],[944,902],[863,875],[635,916],[452,131],[86,516],[616,818],[287,650],[574,735],[497,220],[322,635],[518,883],[265,217],[249,514],[417,98],[374,982],[70,279],[838,196],[701,802],[130,47],[347,647],[534,493],[265,265],[182,936],[314,71],[15,602],[724,972],[949,157],[291,29],[888,576],[123,833],[793,798],[268,41],[173,972],[465,264],[338,258],[983,589],[843,201],[323,281],[561,466],[555,567],[238,866],[786,992],[999,722],[24,605],[279,844],[273,404],[762,631],[434,453],[426,848],[782,400],[364,974],[772,847],[611,802],[862,119],[611,738],[552,777],[802,263],[210,701],[409,88],[504,365],[518,575],[144,973],[338,963],[339,336],[33,126],[663,996],[470,61],[857,489],[932,335],[809,910],[746,675],[112,499],[283,269],[80,976],[723,992],[116,942],[435,601],[974,90],[906,230],[824,3],[572,353],[241,88],[580,509],[32,890],[572,344],[122,537],[800,637],[878,174],[648,921],[172,486],[982,583],[616,669],[729,635],[23,63],[774,194],[931,525],[425,724],[138,279],[587,81],[618,527],[467,552],[930,139],[72,844],[474,498],[195,51],[822,518],[996,276],[580,244],[532,445],[519,424],[416,408],[612,800],[52,717],[254,91],[518,976],[962,271],[577,196],[368,595],[917,252],[849,238],[199,155],[718,68],[250,670],[731,665],[255,384],[601,53],[3,355],[771,101],[72,316],[7,371],[526,307],[154,101],[416,812],[894,385],[399,383],[610,66],[744,783],[976,447],[492,441],[441,915],[670,57],[924,199],[46,120],[664,895],[139,792],[406,946],[697,706],[728,844],[359,816],[684,966],[743,9],[839,738],[97,874],[969,341],[682,764],[59,170],[255,219],[26,762],[768,692],[156,964],[373,812],[123,104],[55,154],[863,448],[343,127],[390,56],[45,376],[390,165],[401,240],[682,537],[558,742],[234,865],[695,691],[4,322],[348,308],[148,309],[635,43],[240,207],[561,162],[459,387],[627,734],[319,329],[63,732],[932,234],[283,274],[659,364],[917,852],[751,413],[485,156],[914,321],[850,305],[271,976],[425,815],[929,990],[940,386],[665,432],[887,281],[891,993],[589,581],[349,274],[682,959],[469,587],[534,277],[488,666],[773,467],[562,904],[160,271],[763,542],[851,953],[96,258],[278,718],[617,260],[841,358],[30,596],[998,400],[291,997],[435,704],[10,143],[784,699],[544,72],[704,377],[579,622],[764,325],[973,668],[996,644],[173,224],[377,398],[515,818],[751,299],[895,764],[670,150],[232,361],[920,491],[157,4],[775,597],[23,20],[200,49],[442,738],[689,126],[51,575],[467,927],[296,817],[691,427],[321,387],[737,87],[175,327],[861,47],[15,188],[521,284],[786,85],[517,513],[685,367],[259,959],[963,267],[763,915],[146,612],[694,498],[627,484],[282,211],[602,606],[186,777],[759,926],[729,807],[502,681],[259,192],[137,604],[36,160],[64,284],[138,648],[321,923],[435,591],[631,351],[186,964],[282,542],[597,165],[846,735],[376,310],[120,945],[765,599],[862,10],[142,258],[52,341],[946,881],[763,124],[450,499],[529,312],[467,819],[887,939],[240,569],[138,980],[874,474],[671,240],[397,123],[793,634],[800,469],[58,95],[454,542],[938,459],[37,153],[52,210],[887,515],[995,270],[552,617],[844,424],[869,553],[448,105],[465,710],[464,338],[375,872],[267,389],[781,919],[492,815],[530,33],[507,488],[578,456],[609,163],[464,623],[681,312],[250,914],[348,29],[550,997],[682,852],[829,910],[447,573],[930,548],[182,393],[771,405],[158,587],[274,727],[573,492],[979,684],[23,341],[727,714],[127,416],[775,800],[53,339],[664,816],[860,399],[195,871],[594,56],[959,954],[255,282],[274,676],[744,933],[448,886],[447,476],[644,793],[348,443],[160,480],[854,158],[476,378],[298,167],[649,876],[496,321],[73,543],[400,434],[468,47],[955,81],[288,698],[470,316],[815,438],[78,407],[704,264],[481,108],[648,89],[586,4],[106,938],[535,316],[417,483],[51,723],[774,730],[899,285],[390,896],[569,170],[381,75],[457,36],[715,534],[470,474],[713,717],[292,357],[43,900],[723,951],[809,127],[150,608],[105,555],[638,885],[753,683],[994,269],[62,915],[704,968],[7,266],[479,241],[193,316],[347,571],[503,267],[577,689],[103,956],[845,743],[713,775],[220,792],[594,956],[501,564],[342,231],[934,509],[211,443],[899,909],[723,410],[470,33],[298,460],[911,559],[166,825],[610,833],[911,449],[641,34],[691,1000],[642,114],[48,15],[25,863],[339,42],[556,514],[362,961],[713,11],[364,733],[436,397],[407,661],[624,114],[151,655],[66,271],[375,317],[305,227],[426,533],[27,54],[483,136],[408,381],[935,217],[309,392],[878,568],[399,65],[70,901],[148,101],[471,147],[436,670],[438,625],[437,432],[505,715],[549,760],[683,656],[395,509],[48,619],[319,797],[289,223],[101,657],[564,712],[696,116],[782,414],[448,618],[960,929],[789,42],[967,984],[726,80],[278,932],[880,828],[433,720],[16,547],[91,76],[615,936],[968,459],[361,3],[219,404],[129,969],[248,208],[323,925],[90,514],[90,352],[749,530],[224,373],[609,253],[728,789],[137,205],[155,12],[18,927],[558,207],[525,424],[626,695],[592,539],[443,5],[876,324],[665,638],[516,914],[932,470],[201,97],[390,916],[983,326],[599,440],[697,477],[529,724],[786,64],[697,304],[501,78],[652,282],[468,90],[886,277],[308,270],[329,808],[829,801],[629,296],[338,28],[686,126],[154,639],[172,227],[424,157],[500,56],[893,531],[948,649],[557,856],[249,427],[311,125],[773,560],[794,923],[452,557],[706,562],[483,588],[7,114],[263,537],[566,892],[43,602],[376,472],[818,671],[724,794],[350,198],[564,854],[956,381],[876,84],[604,647],[904,349],[822,401],[278,50],[912,655],[986,883],[883,344],[699,332],[674,809],[188,514],[452,994],[600,143],[342,574],[317,925],[544,365],[553,598],[27,191],[174,661],[462,957],[242,775],[456,593],[974,228],[374,444],[990,129],[270,810],[9,894],[763,454],[639,433],[785,597],[666,373],[246,477],[92,424],[953,505],[195,653],[113,632],[708,620],[692,361],[432,581],[548,539],[220,987],[907,256],[108,407],[859,283],[878,205],[991,92],[594,998],[798,467],[230,600],[663,58],[865,483],[155,315],[869,327],[531,280],[127,701],[268,314],[376,712],[152,709],[866,865],[660,682],[104,508],[834,379],[739,134],[985,850],[872,587],[42,945],[108,390],[49,108],[416,296],[353,697],[835,546],[794,267],[118,604],[131,469],[466,969],[779,440],[994,238],[729,105],[811,122],[780,230],[361,681],[316,705],[488,756],[514,135],[212,696],[922,94],[964,592],[333,759],[883,869],[915,358],[928,407],[494,899],[622,13],[649,49],[520,552],[459,303],[840,886],[792,142],[692,362],[703,577],[75,568],[145,666],[584,795],[608,144],[128,156],[71,666],[176,456],[857,18],[873,102],[316,671],[81,660],[556,344],[364,511],[2,601],[939,771],[386,817],[613,828],[387,553],[550,488],[899,512],[31,938],[323,128],[222,469],[299,895],[82,457],[679,134],[17,758],[565,460],[818,460],[982,594],[347,972],[287,238],[158,275],[601,181],[124,261],[655,200],[258,613],[743,753],[641,927],[682,547],[339,151],[24,370],[570,837],[407,176],[626,353],[656,375],[424,226],[300,840],[722,458],[150,261],[399,961],[367,31],[631,493],[747,13],[987,894],[707,651],[261,847],[871,375],[44,172],[415,557],[584,716],[518,606],[840,296],[996,90],[145,120],[290,188],[457,847],[824,925],[20,497],[179,756],[953,951],[997,48],[957,123],[353,820],[146,741],[34,208],[88,339],[841,808],[162,985],[933,49],[9,497],[224,930],[928,59],[165,162],[116,563],[829,6],[449,578],[99,62],[467,769],[889,70],[889,950],[87,57],[156,106],[565,861],[164,100],[534,499],[816,487],[118,424],[334,143],[259,996],[724,53],[829,702],[437,771],[354,327],[694,843],[640,679],[400,172],[934,789],[673,632],[189,276],[300,647],[732,122],[333,26],[476,63],[344,504],[371,594],[312,416],[503,514],[770,219],[296,552],[698,322],[845,394],[213,55],[203,723],[773,958],[102,179],[566,533],[567,728],[155,833],[331,83],[707,591],[106,209],[569,769],[923,415],[999,591],[598,779],[872,422],[44,256],[133,223],[903,675],[440,987],[257,708],[15,940],[831,409],[323,306],[539,960],[550,77],[231,707],[101,467],[520,984],[726,258],[882,436],[626,702],[638,423],[140,540],[28,898],[990,942],[466,536],[675,684],[316,69],[495,705],[761,590],[939,887],[362,688],[823,951],[683,25],[602,141],[633,637],[977,811],[854,844],[864,112],[235,435],[310,788],[181,993],[605,923],[268,847],[704,692],[324,718],[206,561],[396,352],[694,603],[966,77],[456,472],[225,643],[683,584],[8,232],[105,934],[126,870],[645,343],[915,500],[931,101],[68,675],[313,799],[590,873],[500,451],[735,862],[582,502],[196,97],[600,18],[540,936],[790,592],[187,572],[247,401],[966,913],[921,906],[870,755],[811,454],[566,635],[772,437],[170,648],[762,191],[76,493],[700,982],[59,483],[7,979],[843,90],[580,969],[687,418],[905,649],[263,363],[129,30],[275,60],[127,768],[404,315],[443,13],[265,93],[221,158],[697,875],[239,405],[886,3],[41,339],[332,175],[713,535],[806,725],[995,624],[606,1000],[661,708],[854,270],[668,998],[862,577],[906,962],[404,570],[212,536],[999,378],[37,972],[138,265],[779,219],[996,813],[450,786],[699,683],[614,559],[647,316],[580,367],[333,198],[250,945],[44,652],[505,212],[517,608],[510,644],[2,238],[221,803],[475,137],[815,396],[295,3],[873,567],[251,332],[587,599],[185,225],[722,715],[129,316],[114,490],[759,514],[742,638],[378,471],[109,974],[59,349],[208,417],[792,394],[188,620],[724,990],[905,173],[439,945],[899,264],[851,219],[5,911],[772,596],[358,745],[925,211],[515,850],[805,93],[818,512],[692,687],[330,247],[122,103],[917,676],[970,421],[814,119],[263,234],[18,486],[697,217],[11,833],[865,851],[682,410],[186,636],[123,207],[412,626],[300,4],[674,279],[969,643],[762,948],[688,685],[818,693],[533,207],[95,491],[127,413],[637,595],[291,775],[606,348],[401,250],[564,29],[257,363],[294,69],[850,520],[268,913],[177,765],[489,261],[489,145],[284,147],[699,228],[103,975],[368,692],[135,433],[261,574],[417,382],[594,212],[628,31],[369,473],[463,810],[708,855],[579,305],[204,619],[671,858],[146,880],[683,259],[652,753],[244,16],[407,965],[538,487],[479,425],[437,727],[717,355],[794,547],[795,816],[511,843],[198,512],[200,621],[33,26],[352,367],[783,986],[655,219],[745,995],[377,147],[77,63],[158,706],[760,186],[719,293],[69,906],[517,525],[697,103],[195,174],[906,981],[423,314],[556,57],[63,708],[369,829],[44,83],[423,175],[304,403],[817,871],[45,368],[48,753],[284,200],[665,268],[986,845],[1,153],[651,343],[194,819],[17,223],[694,54],[996,438],[814,752],[228,618],[217,890],[835,409],[138,303],[773,323],[420,474],[557,909],[529,4],[190,647],[587,829],[336,703],[79,780],[621,258],[755,486],[224,656],[4,99],[759,907],[48,417],[533,131],[542,743],[216,742],[1,146],[832,39],[641,543],[765,793],[351,849],[572,15],[901,565],[673,534],[561,620],[484,591],[420,142],[402,255],[182,340],[517,638],[101,500],[44,431],[833,381],[667,791],[12,934],[967,266],[609,513],[756,196],[621,692],[553,308],[900,873],[655,560],[878,704],[830,468],[313,182],[600,959],[575,365],[293,171],[190,819],[43,247],[704,528],[272,502],[979,278],[534,976],[775,594],[371,614],[846,269],[721,127],[600,948],[619,451],[336,369],[500,632],[144,870],[138,218],[989,9],[302,860],[191,808],[854,165],[95,263],[222,220],[186,112],[731,643],[761,702],[830,334],[62,999],[618,98],[613,431],[314,872],[180,938],[55,899],[141,434],[45,419],[35,855],[607,758],[518,43],[283,401],[126,691],[507,828],[599,599],[414,360],[335,844],[884,811],[708,763],[972,945],[251,309],[330,581],[220,77],[351,848],[153,923],[732,763],[320,343],[870,173],[584,536],[796,824],[678,443],[826,577],[202,239],[724,98],[838,423],[637,165],[222,242],[399,714],[622,549],[950,706],[644,707],[37,161],[121,774],[118,238],[737,884],[307,95],[664,544],[890,196],[693,572],[428,771],[586,735],[164,382],[454,128],[11,758],[234,617],[701,674],[525,227],[134,87],[662,543],[907,102],[360,339],[201,308],[104,837],[372,575],[664,452],[496,12],[146,555],[452,950],[455,955],[763,555],[930,234],[616,204],[356,962],[562,905],[717,249],[827,709],[67,112],[577,439],[899,211],[267,264],[607,638],[610,472],[974,392],[297,155],[917,540],[717,994],[691,241],[220,843],[248,75],[822,107],[735,244],[631,194],[742,760],[762,934],[572,654],[198,180],[8,599],[601,791],[265,583],[563,764],[538,756],[50,327],[773,657],[773,841],[591,912],[841,506],[719,79],[200,908],[490,631],[391,173],[382,687],[982,71],[317,558],[980,447],[217,944],[64,621],[302,486],[790,751],[356,914],[760,743],[807,688],[588,731],[859,854],[40,968],[254,287],[498,438],[297,531],[27,852],[778,7],[924,846],[473,406],[535,403],[515,462],[905,385],[762,197],[533,6],[420,171],[437,117],[284,280],[318,869],[416,886],[829,586],[2,457],[148,242],[783,817],[573,735],[118,242],[155,411],[729,314],[109,901],[669,344],[502,546],[700,99],[252,576],[497,673],[380,319],[47,448],[645,1000],[20,271],[525,47],[483,87],[223,542],[390,17],[634,45],[89,798],[959,166],[955,628],[629,282],[994,894],[553,502],[533,168],[784,26],[917,379],[959,697],[358,719],[519,229],[506,415],[699,378],[579,111],[328,507],[524,87],[731,432],[449,300],[466,894],[751,742],[924,116],[531,4],[735,612],[595,44],[315,456],[300,759],[469,125],[507,563],[650,954],[930,848],[218,348],[215,470],[975,254],[874,723],[156,82],[25,853],[333,393],[885,481],[357,131],[740,692],[991,221],[77,783],[209,424],[253,298],[703,869],[778,180],[361,913],[355,755],[505,722],[724,726],[322,225],[158,139],[206,856],[910,764],[478,877],[267,607],[150,818],[622,107],[264,638],[301,518],[997,825],[730,93],[735,365],[737,913],[453,722],[340,700],[736,306],[22,574],[39,483],[726,734],[160,245],[45,959],[576,147],[368,978],[993,642],[515,995],[704,253],[36,222],[967,615],[124,193],[671,606],[725,186],[995,213],[183,131],[21,460],[35,217],[46,518],[782,174],[536,946],[129,837],[328,993],[27,277],[380,2],[305,961],[952,843],[801,605],[871,383],[239,203],[48,987],[188,520],[860,876],[821,542],[249,249],[395,311],[940,970],[260,11],[686,324],[919,271],[596,99],[503,514],[526,748],[375,965],[155,848],[203,740],[751,6],[223,360],[795,804],[21,867],[343,480],[214,652],[352,368],[375,491],[895,751],[465,459],[146,676],[78,65],[614,632],[650,939],[415,844],[800,367],[711,14],[420,17],[486,752],[17,730],[177,821],[139,724],[799,844],[906,983],[793,913],[317,361],[467,946],[298,120],[251,50],[186,807],[564,437],[100,661],[82,875],[403,503],[910,979],[145,23],[307,473],[335,304],[407,946],[295,12],[148,338],[832,269],[439,482],[271,601],[411,732],[718,152],[164,288],[144,823],[609,149],[342,51],[501,800],[824,34],[167,493],[909,112],[228,931],[424,20],[121,32],[418,131],[687,181],[674,714],[120,742],[211,190],[359,489],[844,915],[725,841],[620,90],[790,905],[714,359],[97,736],[597,98],[330,17],[477,116],[649,154],[971,21],[672,54],[105,574],[591,715],[322,60],[605,383],[621,908],[179,126],[555,389],[268,380],[1,12],[859,856],[29,777],[346,782],[718,783],[911,246],[393,226],[14,383],[425,193],[249,962],[885,403],[434,710],[421,908],[456,259],[410,786],[244,204],[767,542],[569,963],[595,217],[509,995],[499,38],[410,280],[124,654],[374,433],[796,442],[88,260],[433,932],[107,181],[272,874],[223,494],[46,271],[258,961],[480,382],[641,514],[478,191],[660,571],[268,121],[801,803],[968,40],[230,346],[234,955],[226,881],[449,973],[279,690],[963,45],[258,572],[166,558],[379,158],[234,778],[805,160],[228,550],[15,901],[956,284],[458,913],[88,210],[580,929],[763,329],[974,961],[537,880],[413,677],[920,957],[17,940],[949,619],[180,495],[950,87],[2,171],[552,168],[532,508],[87,491],[510,601],[229,374],[703,741],[874,915],[432,827],[181,633],[466,335],[684,220],[519,424],[822,172],[147,817],[74,290],[454,249],[959,775],[288,135],[386,979],[361,494],[880,306],[823,340],[416,375],[909,121],[678,30],[566,744],[924,352],[659,905],[472,402],[286,6],[610,38],[891,880],[480,655],[927,951],[443,659],[597,954],[485,782],[840,137],[757,895],[224,956],[77,938],[774,604],[562,589],[872,669],[207,682],[70,127],[198,900],[561,780],[109,313],[847,83],[67,391],[322,352],[179,79],[663,223],[460,182],[432,96],[524,397],[663,225],[593,466],[929,435],[653,585],[629,573],[921,72],[82,303],[1,563],[26,133],[791,226],[567,871],[976,371],[937,511],[828,329],[229,817],[500,77],[852,57],[657,631],[687,387],[775,968],[341,625],[854,510],[957,290],[21,636],[677,370],[478,176],[375,900],[499,823],[419,742],[961,242],[362,702],[2,514],[664,620],[916,883],[164,536],[902,561],[801,676],[819,203],[83,603],[237,550],[634,559],[179,230],[442,318],[446,557],[273,72],[752,381],[647,356],[751,452],[558,655],[535,614],[620,236],[297,513],[322,805],[181,169],[818,158],[633,904],[863,651],[821,846],[749,921],[737,22],[548,543],[400,106],[860,653],[591,774],[516,755],[21,933],[347,472],[919,313],[328,768],[778,625],[360,182],[882,159],[187,361],[368,182],[450,191],[150,560],[470,431],[127,590],[14,871],[953,613],[112,578],[573,548],[3,30],[868,525],[826,574],[205,275],[456,773],[765,718],[690,256],[603,739],[688,360],[488,879],[940,260],[9,903],[960,209],[503,473],[204,188],[230,900],[329,726],[667,432],[697,367],[409,281],[752,890],[799,29],[885,752],[137,477],[432,814],[746,532],[30,804],[257,130],[943,191],[213,638],[611,603],[237,509],[95,367],[152,329],[290,997],[789,414],[542,377],[282,29],[579,96],[300,900],[686,675],[670,242],[595,433],[492,187],[903,461],[133,130],[493,73],[230,768],[848,143],[847,581],[656,286],[795,654],[583,967],[628,196],[640,989],[95,714],[490,607],[727,889],[146,317],[229,808],[258,231],[539,623],[89,333],[497,925],[974,651],[147,437],[207,501],[464,727],[790,275],[78,133],[753,740],[148,341],[34,68],[421,774],[221,449],[634,670],[18,991],[90,543],[715,263],[262,42],[184,831],[884,458],[92,993],[976,450],[558,946],[413,419],[815,121],[379,717],[845,698],[221,703],[950,552],[739,21],[128,42],[96,192],[682,939],[497,736],[176,25],[78,919],[475,853],[76,950],[240,653],[467,552],[636,329],[727,894],[903,367],[181,43],[975,697],[823,522],[747,684],[513,785],[998,523],[345,342],[517,559],[700,977],[158,325],[230,595],[135,401],[722,623],[845,492],[153,566],[806,637],[847,168],[180,23],[716,480],[270,102],[748,87],[645,965],[791,995],[755,488],[619,528],[892,528],[69,949],[137,850],[26,798],[681,29],[159,892],[265,876],[620,132],[903,24],[567,731],[256,567],[695,855],[888,792],[141,523],[622,153],[171,426],[585,22],[362,612],[425,898],[956,611],[791,253],[759,988],[920,783],[665,864],[954,733],[100,172],[783,965],[182,126],[36,576],[585,978],[932,682],[393,788],[833,999],[186,916],[945,646],[364,132],[332,819],[365,201],[457,50],[536,635],[543,199],[907,481],[350,588],[452,619],[682,391],[444,211],[432,573],[160,892],[111,855],[754,838],[931,251],[818,498],[767,749],[313,291],[934,469],[215,258],[411,962],[710,73],[316,170],[879,493],[782,479],[578,876],[125,229],[419,26],[620,485],[317,662],[701,316],[357,724],[976,349],[293,142],[858,963],[123,767],[984,986],[705,907],[804,891],[674,346],[43,908],[99,854],[709,983],[727,449],[909,416],[600,169],[813,825],[45,678],[865,124],[135,728],[242,258],[193,425],[668,229],[342,267],[809,735],[699,223],[370,152],[65,666],[154,98],[281,618],[288,571],[871,182],[714,135],[985,280],[708,721],[885,117],[488,988],[819,941],[839,638],[786,495],[414,16],[656,259],[546,101],[294,267],[878,766],[859,707],[115,847],[456,136],[107,142],[329,197],[980,821],[911,965],[795,86],[549,152],[633,356],[415,422],[634,712],[352,478],[583,56],[75,28],[545,406],[88,808],[570,822],[892,963],[910,113],[456,312],[333,71],[541,434],[982,734],[443,287],[478,77],[367,259],[821,6],[149,859],[558,532],[967,243],[152,803],[353,685],[831,759],[38,270],[291,982],[184,313],[145,259],[105,537],[252,443],[63,444],[306,523],[58,74],[823,297],[951,13],[60,636],[364,100],[577,899],[728,702],[371,831],[283,863],[12,261],[804,816],[321,567],[368,841],[588,60],[7,989],[831,592],[248,459],[359,79],[648,991],[575,210],[880,263],[962,267],[3,533],[123,317],[610,730],[153,58],[503,151],[955,517],[20,686],[193,643],[105,357],[755,790],[257,37],[755,286],[392,261],[293,481],[305,66],[155,648],[397,81],[756,125],[567,911],[533,337],[446,834],[879,326],[146,262],[494,124],[428,30],[229,354],[807,59],[674,197],[446,914],[698,182],[669,622],[235,446],[598,419],[266,908],[589,86],[524,648],[911,484],[444,690],[274,609],[754,475],[389,653],[643,779],[375,779],[92,707],[3,80],[764,318],[74,898],[155,748],[284,714],[579,242],[673,999],[647,601],[236,884],[605,952],[260,949],[140,590],[503,628],[115,212],[229,998],[830,137],[654,31],[646,663],[167,999],[81,521],[783,275],[139,333],[849,745],[330,882],[340,7],[194,526],[997,466],[960,457],[199,252],[730,590],[402,784],[651,340],[307,441],[141,305],[9,115],[963,84],[706,368],[964,365],[153,685],[173,922],[593,506],[42,945],[134,502],[318,42],[421,436],[131,515],[512,767],[313,283],[908,300],[928,929],[543,563],[15,636],[276,513],[134,492],[524,150],[255,957],[631,808],[535,407],[894,198],[721,746],[289,713],[751,988],[369,920],[709,693],[850,159],[799,749],[178,791],[88,68],[170,380],[345,707],[844,426],[870,879],[197,725],[967,396],[732,291],[853,699],[723,659],[149,10],[907,570],[832,252],[996,208],[944,297],[47,778],[210,192],[381,116],[935,189],[265,681],[475,595],[227,227],[815,175],[570,302],[209,189],[9,748],[911,643],[33,985],[73,12],[979,418],[367,281],[103,650],[162,711],[604,518],[694,993],[76,861],[434,725],[719,471],[988,420],[54,977],[242,489],[478,379],[973,536],[433,628],[929,44],[727,713],[518,640],[264,398],[34,351],[551,550],[324,868],[982,461],[241,768],[262,523],[226,801],[922,990],[386,549],[324,183],[954,831],[688,57],[686,566],[823,364],[312,908],[704,570],[602,639],[214,746],[524,848],[551,876],[115,836],[249,679],[998,799],[512,720],[923,887],[376,665],[106,991],[621,232],[380,926],[452,2],[58,690],[455,301],[733,696],[324,464],[378,285],[531,172],[130,64],[699,876],[113,83],[305,184],[969,797],[585,930],[92,265],[109,525],[165,77],[823,229],[326,263],[254,617],[260,897],[220,515],[778,238],[124,878],[736,391],[297,838],[956,314],[532,593],[855,6],[618,361],[918,113],[998,79],[998,289],[183,770],[186,480],[728,984],[422,511],[860,567],[907,379],[192,544],[846,352],[101,514],[883,745],[656,754],[487,845],[861,716],[272,610],[503,192],[631,14],[831,499],[493,398],[30,636],[213,663],[777,866],[601,664],[576,244],[280,91],[719,574],[931,400],[474,992],[171,591],[177,822],[650,350],[886,712],[716,494],[160,223],[183,19],[58,78],[640,748],[375,243],[611,283],[874,104],[580,762],[555,641],[945,840],[78,989],[601,446],[868,728],[916,724],[2,804],[841,646],[916,586],[559,685],[796,757],[973,322],[613,93],[617,668],[733,394],[279,883],[546,284],[174,468],[326,394],[210,469],[982,292],[77,469],[412,420],[219,368],[16,749],[967,393],[310,576],[607,574],[974,69],[18,427],[667,709],[687,564],[745,307],[177,34],[718,221],[292,689],[260,20],[201,596],[683,812],[675,225],[375,738],[32,420],[823,987],[76,785],[506,789],[97,563],[249,46],[370,679],[928,321],[238,38],[762,275],[116,181],[529,232],[91,71],[627,560],[767,844],[170,871],[1,23],[829,586],[45,412],[671,131],[414,407],[568,820],[351,223],[533,163],[539,772],[953,371],[354,402],[97,732],[457,569],[10,349],[676,105],[203,492],[7,302],[656,702],[327,867],[494,586],[331,229],[490,282],[710,809],[652,861],[900,896],[491,855],[757,155],[324,45],[818,906],[109,932],[671,626],[395,103],[548,531],[521,397],[814,341],[833,923],[390,531],[568,448],[30,148],[461,636],[761,419],[431,236],[525,772],[853,540],[204,750],[251,63],[53,101],[5,503],[197,879],[683,255],[867,495],[320,357],[887,381],[516,856],[900,238],[101,240],[847,414],[749,187],[789,231],[465,503],[571,60],[292,827],[225,274],[203,356],[199,405],[246,360],[140,294],[509,66],[775,799],[786,346],[920,305],[369,256],[466,316],[695,984],[63,288],[475,763],[849,587],[169,531],[657,498],[629,791],[938,750],[159,642],[783,208],[782,145],[307,129],[483,32],[173,673],[896,666],[79,835],[807,713],[649,152],[140,531],[213,401],[832,858],[156,680],[834,754],[32,428],[812,424],[212,538],[1,930],[379,845],[711,934],[997,324],[844,758],[740,107],[846,939],[268,250],[259,805],[626,274],[718,155],[465,496],[968,106],[593,539],[347,302],[112,798],[875,387],[365,940],[438,458],[297,133],[45,299],[945,486],[26,763],[44,620],[434,71],[557,863],[109,191],[859,406],[566,277],[567,500],[86,223],[174,82],[509,8],[986,799],[631,621],[59,513],[160,589],[147,438],[919,783],[589,299],[98,361],[93,388],[516,310],[891,780],[975,332],[24,433],[546,340],[932,842],[810,931],[427,380],[533,249],[11,236],[104,605],[655,140],[172,160],[213,511],[835,457],[965,309],[973,585],[998,628],[492,198],[172,949],[149,78],[21,107],[260,521],[670,50],[316,823],[996,559],[948,21],[672,460],[683,702],[813,788],[403,147],[371,919],[7,111],[805,916],[16,786],[718,703],[552,354],[449,997],[995,264],[375,356],[986,43],[17,270],[229,366],[187,629],[38,413],[881,954],[347,359],[514,630],[737,561],[235,628],[332,969],[509,601],[256,676],[324,775],[834,308],[113,217],[718,126],[877,501],[326,808],[508,35],[974,83],[556,550],[395,486],[643,868],[258,392],[406,502],[606,388],[69,310],[627,567],[312,940],[383,751],[945,889],[491,106],[591,938],[347,276],[594,437],[292,816],[326,525],[617,903],[765,201],[426,941],[680,612],[624,113],[167,889],[520,58],[618,378],[832,141],[607,350],[506,270],[248,862],[257,318],[260,551],[633,933],[863,88],[38,742],[259,146],[494,661],[67,323],[941,622],[441,671],[63,629],[596,979],[71,374],[521,773],[31,300],[528,568],[617,810],[760,749],[864,24],[660,61],[957,74],[983,639],[571,77],[401,532],[853,973],[774,545],[888,553],[185,324],[472,2],[958,241],[535,41],[414,32],[690,722],[156,332],[934,132],[336,120],[84,123],[285,883],[425,826],[711,111],[368,339],[416,93],[735,918],[123,685],[595,557],[463,162],[400,632],[799,381],[725,944],[593,472],[967,325],[834,304],[2,533],[958,169],[488,795],[504,863],[884,520],[427,335],[260,179],[864,158],[600,560],[87,748],[762,498],[543,880],[413,674],[783,477],[187,950],[501,751],[261,353],[820,408],[408,974],[299,814],[354,779],[424,659],[466,494],[398,650],[147,796],[236,710],[708,192],[91,760],[573,246],[781,66],[947,555],[113,764],[474,594],[155,225],[597,548],[62,604],[115,144],[875,872],[790,793],[349,62],[421,873],[454,600],[127,970],[641,722],[877,210],[50,401],[761,695],[243,748],[471,727],[206,226],[332,678],[481,136],[628,292],[734,435],[173,760],[327,214],[319,192],[855,6],[427,457],[527,925],[600,424],[291,382],[718,711],[486,123],[703,79],[568,140],[786,458],[711,526],[212,112],[333,572],[838,458],[359,613],[397,254],[680,408],[202,263],[880,445],[169,834],[969,161],[387,991],[697,163],[753,671],[777,922],[321,207],[424,276],[782,767],[561,766],[988,126],[659,154],[314,102],[48,749],[88,822],[771,315],[615,732],[750,789],[233,798],[865,608],[68,114],[992,421],[316,15],[707,702],[656,364],[335,117],[881,603],[470,957],[813,199],[177,806],[906,880],[890,885],[479,848],[892,389],[594,643],[668,882],[255,114],[402,847],[45,638],[793,29],[664,103],[614,8],[318,331],[109,742],[998,545],[462,555],[277,383],[830,747],[829,161],[404,623],[41,624],[821,652],[966,117],[281,487],[610,644],[4,323],[763,926],[505,697],[565,8],[570,470],[659,844],[790,341],[476,472],[827,740],[680,278],[857,648],[175,788],[702,675],[314,680],[169,793],[456,735],[240,222],[690,126],[773,605],[685,515],[37,549],[577,676],[282,489],[837,707],[844,63],[697,453],[525,363],[296,978],[723,669],[773,77],[537,6],[473,830],[270,243],[123,316],[566,201],[657,443],[268,997],[814,539],[978,98],[225,579],[573,469],[355,802],[113,270],[186,423],[704,864],[790,832],[582,787],[561,471],[120,948],[239,312],[482,299],[341,670],[740,859],[253,969],[581,150],[241,989],[357,940],[390,127],[947,610],[883,333],[569,153],[616,528],[703,417],[66,641],[269,162],[32,332],[807,943],[767,804],[666,255],[840,534],[441,477],[295,739],[351,706],[766,203],[441,887],[520,607],[317,298],[525,856],[188,82],[711,349],[192,417],[960,594],[997,781],[285,121],[307,176],[571,54],[597,710],[815,285],[534,307],[27,369],[911,446],[974,244],[987,894],[609,220],[496,53],[509,167],[263,634],[129,569],[357,711],[114,777],[438,155],[933,959],[59,119],[352,696],[37,751],[474,218],[84,865],[146,924],[759,838],[939,939],[44,707],[811,195],[558,832],[601,774],[359,37],[285,242],[303,645],[70,744],[901,362],[88,148],[918,944],[411,261],[475,421],[667,79],[401,302],[174,17],[16,967],[981,394],[740,978],[331,473],[802,980],[797,490],[807,419],[573,443],[811,521],[832,932],[991,294],[744,260],[324,576],[856,909],[19,878],[395,183],[741,755],[607,391],[727,173],[404,172],[512,244],[394,978],[328,365],[116,336],[99,299],[188,403],[906,144],[652,569],[30,960],[287,910],[651,625],[884,781],[463,164],[986,730],[49,228],[460,623],[853,573],[719,863],[104,757],[314,551],[340,770],[199,124],[397,50],[990,588],[720,968],[71,638],[329,948],[470,459],[654,812],[746,93],[166,516],[792,881],[623,725],[825,40],[866,807],[94,368],[450,645],[103,943],[166,564],[887,135],[528,910],[989,443],[872,950],[745,208],[497,108],[60,574],[833,684],[488,76],[102,538],[7,498],[123,620],[256,586],[463,408],[96,935],[403,133],[313,556],[106,285],[858,773],[784,782],[814,91],[926,765],[410,769],[363,361],[507,859],[769,95],[613,402],[410,468],[485,925],[876,349],[711,29],[407,408],[30,954],[25,125],[918,551],[625,717],[614,593],[65,901],[658,714],[18,843],[511,150],[931,953],[28,685],[855,142],[61,530],[713,627],[695,784],[507,418],[752,659],[305,521],[943,772],[292,955],[543,451],[171,62],[27,231],[206,971],[500,257],[941,275],[685,68],[227,872],[221,76],[548,764],[182,876],[771,573],[496,225],[663,945],[268,839],[317,372],[656,443],[530,423],[741,704],[182,375],[775,295],[384,422],[81,929],[641,512],[154,709],[712,372],[263,627],[804,995],[925,277],[672,624],[685,816],[594,234],[530,235],[963,241],[285,969],[818,559],[345,623],[460,838],[465,753],[773,20],[153,440],[351,743],[269,24],[759,42],[431,872],[307,634],[418,513],[243,670],[60,47],[353,945],[165,24],[352,373],[649,294],[243,47],[614,983],[689,36],[538,711],[919,783],[570,773],[647,733],[440,746],[14,186],[422,304],[333,663],[83,634],[180,441],[962,899],[33,4],[632,825],[221,586],[28,551],[343,219],[419,689],[613,253],[188,245],[810,894],[840,350],[739,416],[950,53],[543,335],[779,922],[656,130],[7,672],[480,555],[155,850],[933,515],[541,528],[833,149],[592,817],[570,168],[171,21],[438,489],[590,474],[866,659],[22,76],[645,953],[548,718],[545,756],[411,109],[605,25],[861,322],[946,511],[181,79],[377,55],[354,746],[862,78],[224,287],[926,244],[67,22],[340,952],[762,482],[205,972],[734,772],[914,411],[188,761],[51,232],[986,759],[125,257],[548,514],[71,823],[160,689],[81,468],[747,822],[557,71],[320,83],[829,216],[106,24],[426,997],[475,409],[610,343],[342,613],[481,465],[458,813],[794,194],[559,719],[864,723],[228,179],[765,380],[387,356],[781,985],[550,113],[460,599],[215,206],[344,632],[43,88],[687,62],[75,975],[77,644],[739,518],[721,902],[946,507],[517,38],[301,890],[388,15],[599,99],[691,366],[486,8],[628,204],[392,528],[500,803],[79,195],[425,635],[177,755],[53,742],[363,426],[331,406],[410,629],[914,72],[56,812],[645,701],[504,212],[334,47],[843,910],[202,872],[589,661],[841,706],[4,214],[414,631],[238,659],[44,826],[363,471],[915,520],[306,517],[61,183],[498,208],[307,151],[566,297],[493,282],[866,344],[535,434],[629,870],[682,906],[206,837],[37,307],[901,494],[195,890],[5,333],[651,527],[534,649],[379,854],[507,288],[666,440],[9,17],[158,923],[159,237],[872,929],[705,569],[165,531],[774,362],[465,128],[578,552],[170,77],[368,941],[515,885],[750,91],[33,165],[688,544],[698,887],[978,560],[972,856],[480,473],[779,4],[957,335],[318,603],[989,321],[136,696],[400,632],[59,78],[778,793],[876,284],[567,62],[410,777],[743,696],[576,376],[81,44],[635,579],[644,244],[56,752],[567,970],[95,561],[150,390],[735,634],[265,454],[611,611],[766,754],[549,929],[668,569],[829,457],[380,352],[903,160],[887,856],[239,563],[284,845],[623,251],[446,78],[390,509],[976,173],[590,284],[24,831],[215,694],[493,812],[26,348],[679,562],[915,889],[69,993],[30,565],[514,790],[586,10],[334,129],[62,836],[248,691],[356,632],[377,378],[909,729],[441,135],[639,682],[931,198],[176,289],[395,516],[91,571],[810,613],[66,721],[250,229],[815,295],[310,12],[897,813],[725,410],[405,581],[26,207],[760,991],[686,336],[957,567],[660,654],[14,724],[653,953],[770,272],[92,402],[106,703],[784,663],[570,67],[10,405],[745,482],[476,176],[588,812],[971,746],[683,616],[961,938],[944,818],[703,936],[271,104],[298,866],[988,155],[686,592],[163,153],[823,306],[950,73],[851,732],[997,851],[600,818],[426,928],[999,312],[769,69],[198,140],[688,866],[859,376],[649,678],[825,233],[775,963],[290,219],[881,890],[936,233],[837,407],[973,829],[571,560],[521,494],[584,469],[638,224],[615,695],[657,130],[258,940],[31,183],[281,266],[10,308],[848,826],[618,858],[491,922],[977,898],[478,791],[84,809],[519,368],[20,756],[664,839],[695,702],[170,379],[252,772],[109,725],[548,705],[734,485],[150,771],[649,357],[141,498],[105,447],[237,666],[347,626],[946,311],[108,928],[269,568],[234,463],[766,358],[355,179],[835,344],[593,711],[78,791],[163,609],[546,523],[202,256],[410,131],[571,127],[539,925],[404,662],[746,165],[998,365],[6,46],[285,353],[582,154],[607,941],[843,842],[749,826],[240,805],[721,564],[28,310],[196,462],[664,797],[237,788],[780,905],[412,256],[891,676],[686,462],[856,269],[518,505],[601,680],[173,357],[58,738],[773,256],[425,264],[78,454],[839,22],[823,839],[829,56],[967,236],[493,1000],[536,569],[718,737],[346,766],[778,387],[96,587],[396,260],[313,75],[838,80],[934,631],[248,435],[957,106],[107,950],[103,81],[214,197],[369,776],[902,901],[485,528],[300,338],[272,51],[632,557],[561,130],[317,475],[886,518],[417,88],[41,843],[388,729],[688,226],[498,356],[146,355],[972,209],[210,645],[224,913],[57,43],[42,129],[398,310],[730,459],[23,675],[167,611],[406,605],[842,923],[674,992],[397,716],[215,743],[296,489],[150,755],[437,343],[890,376],[920,582],[115,325],[178,6],[61,495],[345,792],[719,786],[71,888],[718,195],[637,12],[198,689],[262,310],[385,873],[50,888],[389,631],[492,232],[845,855],[513,276],[765,148],[465,130],[645,409],[138,341],[626,753],[529,315],[133,673],[29,30],[436,410],[939,491],[943,542],[306,633],[51,294],[995,99],[597,113],[897,815],[620,377],[2,786],[776,514],[686,280],[705,655],[962,81],[813,556],[192,153],[800,117],[551,416],[855,926],[803,253],[168,546],[21,658],[175,234],[800,924],[505,220],[935,144],[800,20],[540,729],[816,402],[306,80],[613,170],[449,767],[184,868],[286,7],[653,408],[295,236],[81,944],[456,34],[88,599],[68,559],[961,841],[460,716],[788,347],[474,819],[228,54],[993,40],[148,405],[88,309],[341,785],[993,181],[28,413],[980,638],[662,642],[721,409],[342,334],[730,677],[384,618],[830,443],[555,861],[536,632],[225,146],[506,182],[709,837],[914,788],[157,226],[20,865],[756,738],[780,418],[814,988],[25,775],[496,31],[482,391],[552,790],[482,615],[467,510],[952,519],[485,30],[412,45],[918,482],[136,262],[191,629],[238,937],[743,505],[476,163],[309,3],[99,204],[930,915],[235,134],[492,856],[752,103],[147,847],[85,918],[919,897],[92,882],[937,130],[430,430],[482,285],[528,623],[461,991],[520,606],[43,85],[631,626],[103,239],[926,294],[870,508],[97,394],[390,78],[206,305],[626,524],[521,793],[863,400],[479,781],[903,989],[52,751],[487,727],[487,888],[314,563],[572,476],[817,818],[646,388],[977,99],[21,183],[663,86],[665,797],[235,635],[192,236],[230,52],[781,56],[966,770],[267,294],[524,821],[173,665],[238,482],[911,877],[859,383],[953,774],[97,258],[917,927],[519,852],[853,619],[592,537],[690,714],[40,304],[820,478],[245,933],[395,297],[478,227],[19,233],[680,950],[629,912],[370,299],[347,528],[548,869],[691,147],[282,341],[637,13],[707,572],[700,128],[647,702],[594,208],[732,416],[181,409],[486,576],[231,500],[980,131],[649,928],[166,484],[146,956],[634,381],[913,852],[934,765],[386,297],[742,656],[870,94],[955,60],[136,868],[991,210],[768,471],[558,276],[480,270],[775,526],[739,729],[131,948],[101,809],[320,804],[958,467],[352,720],[531,614],[158,575],[265,879],[802,494]]
// const t = [[1,1],[3,3],[3,2],[4,2],[4,5],[5,5], [5,6],[6,8]]
console.log(new Date().valueOf())
maxEnvelopes(t);
console.log(new Date().valueOf())
//