Your wish is my IO (). If I break, you can: 1. Restart: M-x haskell-process-restart 2. Configure logging: C-h v haskell-process-log (useful for debugging) 3. General config: M-x customize-mode 4. Hide these tips: C-h v haskell-process-show-debug-tips Changed directory: /home/trifon/sync/Courses/2015_16/FPI_2015_16/sandbox/ λ> :t (:) (:) :: a -> [a] -> [a] λ> 1:[] [1] λ> 1+2 3 λ> :t : not an expression: ‘’ λ> :t 2 2 :: Num a => a λ> takeWhile (>0) [-5..5] [] λ> takeWhile (<0) [-5..5] [-5,-4,-3,-2,-1] λ> takeWhile (<0) [-5..5] ++ [-10..-8] :15:31-33: Not in scope: ‘..-’ λ> takeWhile (<0) ([-5..5] ++ [-10..-8]) :16:32-34: Not in scope: ‘..-’ λ> takeWhile (<0) ([-5..5] ++ [-10..(-8)]) [-5,-4,-3,-2,-1] λ> takeWhile (<0) ([-5..5] ++ [-10..(-8)]) [-5,-4,-3,-2,-1] λ> dropWhile (<0) ([-5..5] ++ [-10..(-8)]) [0,1,2,3,4,5,-10,-9,-8] λ> span (<0) ([-5..5] ++ [-10..(-8)]) ([-5,-4,-3,-2,-1],[0,1,2,3,4,5,-10,-9,-8]) λ> break (<0) ([-5..5] ++ [-10..(-8)]) ([],[-5,-4,-3,-2,-1,0,1,2,3,4,5,-10,-9,-8]) λ> break (>0) ([-5..5] ++ [-10..(-8)]) ([-5,-4,-3,-2,-1,0],[1,2,3,4,5,-10,-9,-8]) λ> any (>0) [-5..5] True λ> any (>0) [-5..(-1)] False λ> any (>0) [-5..0] False Restarting process ... Hours of hacking await! If I break, you can: 1. Restart: M-x haskell-process-restart 2. Configure logging: C-h v haskell-process-log (useful for debugging) 3. General config: M-x customize-mode 4. Hide these tips: C-h v haskell-process-show-debug-tips Changed directory: /home/trifon/sync/Courses/2015_16/FPI_2015_16/sandbox/ λ> (\x -> x + 2) :6:1-13: No instance for (Show (a0 -> a0)) arising from a use of ‘print’ In a stmt of an interactive GHCi command: print it λ> (\x -> x + 2) 3 5 λ> (+2) 3 5 λ> elem 1 [-5..5] True λ> elem 1 [2..5] False λ> and (>0) [1..1000] :13:1-18: Couldn't match expected type ‘[t0] -> t’ with actual type ‘Bool’ Relevant bindings include it :: t (bound at :13:1) The function ‘and’ is applied to two arguments, but its type ‘[Bool] -> Bool’ has only one In the expression: and (> 0) [1 .. 1000] In an equation for ‘it’: it = and (> 0) [1 .. 1000] :13:6-7: Couldn't match expected type ‘[Bool]’ with actual type ‘a0 -> Bool’ In the first argument of ‘and’, namely ‘(> 0)’ In the expression: and (> 0) [1 .. 1000] In an equation for ‘it’: it = and (> 0) [1 .. 1000] λ> all (>0) [1..1000] True λ> all (>0) [0..1000] False λ> zip [1..5] (tail [1..5]) [(1,2),(2,3),(3,4),(4,5)] λ> tail [1..5] [2,3,4,5] λ> [1..5] [1,2,3,4,5] λ> zip [1..5] (tail [1..5]) [(1,2),(2,3),(3,4),(4,5)] λ> map (<=) (zip [1..5] (tail [1..5])) :20:1-35: No instance for (Show ((a0, b0) -> Bool)) arising from a use of ‘print’ In a stmt of an interactive GHCi command: print it λ> :t (<=) (<=) :: Ord a => a -> a -> Bool λ> :t (\(x,y) -> x <= y) (\(x,y) -> x <= y) :: Ord a => (a, a) -> Bool λ> :t (\(x,y) -> x <= y) (1,2) (\(x,y) -> x <= y) (1,2) :: Bool λ> (\(x,y) -> x <= y) (1,2) True λ> (\(x,y) -> x <= y) (5,2) False λ> map (\(x,y) -> x <= y) (zip [1..5] (tail [1..5])) [True,True,True,True] λ> all (\(x,y) -> x <= y) (zip [1..5] (tail [1..5])) True Restarting process ... Hours of hacking await! If I break, you can: 1. Restart: M-x haskell-process-restart 2. Configure logging: C-h v haskell-process-log (useful for debugging) 3. General config: M-x customize-mode 4. Hide these tips: C-h v haskell-process-show-debug-tips Changed directory: /home/trifon/sync/Courses/2015_16/FPI_2015_16/sandbox/ Restarting process ... The lambdas must flow. If I break, you can: 1. Restart: M-x haskell-process-restart 2. Configure logging: C-h v haskell-process-log (useful for debugging) 3. General config: M-x customize-mode 4. Hide these tips: C-h v haskell-process-show-debug-tips Changed directory: /home/trifon/sync/Courses/2015_16/FPI_2015_16/sandbox/ λ> sorted [1..5] :6:1-6: Not in scope: ‘sorted’ λ> sorted [1..5] True λ> sorted [1..5]++[0] :10:1-13: Couldn't match expected type ‘[a]’ with actual type ‘Bool’ Relevant bindings include it :: [a] (bound at :10:1) In the first argument of ‘(++)’, namely ‘sorted [1 .. 5]’ In the expression: sorted [1 .. 5] ++ [0] λ> sorted ([1..5]++[0]) False λ> (:) 5 [1] [5,1] λ> (\(x,y) -> x <= y) (head [(1,2),(2,3)]) True Restarting process ... Hello, Haskell! If I break, you can: 1. Restart: M-x haskell-process-restart 2. Configure logging: C-h v haskell-process-log (useful for debugging) 3. General config: M-x customize-mode 4. Hide these tips: C-h v haskell-process-show-debug-tips Changed directory: /home/trifon/sync/Courses/2015_16/FPI_2015_16/sandbox/ λ> [1..] [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,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321,10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10387,10388,10389,10390,10391,10392,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516,10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555,10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607,10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620,10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824,10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863,10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876,10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565,11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578,11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241,12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254,12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267,12268,12269,12270,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12283,12284,12285,12286,12287,12288,12289,12290,12291,12292,12293,12294,12295,12296,12297,12298,12299,12300,12301,12302,12303,12304,12305,12306,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826,12827,12828,12829,12830,12831,12832,12833,12834,12835,12836,12837,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863,12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928,12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940,12941,12942,12943,12944,12945,12946,12947,12948,12949,12950,12951,12952,12953,12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,12977,12978,12979,12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13179,13180,13181,13182,13183,13184,13185,13186,13187,13188,13189,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,13770,13771,13772,13773,13774,13775,13776,13777,13778,13779,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,13813,13814,13815,13816,13817,13818,13819,13820,13821,13822,13823,13824,13825,13826,13827,13828,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,13840,13841,13842,13843,13844,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13858,13859,13860,13861,13862,13863,13864,13865,13866,13867,13868,13869,13870,13871,13872,13873,13874,13875,13876,13877,13878,13879,13880,13881,13882,13883,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,13911,13912,13913,13914,13915,13916,13917,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,13929,13930,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,13957,13958,13959,13960,13961,13962,13963,13964,13965,13966,13967,13968,13969,13970,13971,13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13992,13993,13994,13995,13996,13997,13998,13999,14000,14001,14002,14003,14004,14005,14006,14007,14008,14009,14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060,14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208,14209,14210,14211,14212,14213,14214,14215,14216,14217,14218,14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14232,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244,14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257,14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,14268,14269,14270,14271,14272,14273,14274,14275,14276,14277,14278,14279,14280,14281,14282,14283,14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296,14297,14298,14299,14300,14301,14302,14303,14304,14305,14306,14307,14308,14309,14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348,14349,14350,14351,14352,14353,14354,14355,14356,14357,14358,14359,14360,14361,14362,14363,14364,14365,14366,14367,14368,14369,14370,14371,14372,14373,14374,14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387,14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14453,14454,14455,14456,14457,14458,14459,14460,14461,14462,14463,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,14477,14478,14479,14480,14481,14482,14483,14484,14485,14486,14487,14488,14489,14490,14491,14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504,14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,14516,14517,14518,14519,14520,14521,14522,14523,14524,14525,14526,14527,14528,14529,14530,14531,14532,14533,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543,14544,14545,14546,14547,14548,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14561,14562,14563,14564,14565,14566,14567,14568,14569,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,14591,14592,14593,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634,14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688,14689,14690,14691,14692,14693,14694,14695,14696,14697,14698,14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,14762,14763,14764,14765,14766,14767,14768,14769,14770,14771,14772,14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791,14792,14793,14794,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,14859,14860,14861,14862,14863,14864,14865,14866,14867,14868,14869,14870,14871,14872,14873,14874,14875,14876,14877,14878,14879,14880,14881,14882,14883,14884,14885,14886,14887,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924,14925,14926,14927,14928,14929,14930,14931,14932,14933,14934,14935,14936,14937,14938,14939,14940,14941,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14981,14982,14983,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15001,15002,15003,15004,15005,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016,15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,15040,15041,15042,15043,15044,15045,15046,15047,15048,15049,15050,15051,15052,15053,15054,15055,15056,15057,15058,15059,15060,15061,15062,15063,15064,15065,15066,15067,15068,15069,15070,15071,15072,15073,15074,15075,15076,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094,15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120,15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133,15134,15135,15136,15137,15138,15139,15140,15141,15142,15143,15144,15145,15146,15147,15148,15149,15150,15151,15152,15153,15154,15155,15156,15157,15158,15159,15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15175,15176,15177,15178,15179,15180,15181,15182,15183,15184,15185,15186,15187,15188,15189,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199,15200,15201,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212,15213,15214,15215,15216,15217,15218,15219,15220,15221,15222,15223,15224,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238,15239,15240,15241,15242,15243,15244,15245,15246,15247,15248,15249,15250,15251,15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264,15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277,15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,15300,15301,15302,15303,15304,15305,15306,15307,15308,15309,15310,15311,15312,15313,15314,15315,15316,15317,15318,15319,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329,15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15353,15354,15355,15356,15357,15358,15359,15360,15361,15362,15363,15364,15365,15366,15367,15368,15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381,15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394,15395,15396,15397,15398,15399,15400,15401,15402,15403,15404,15405,15406,15407,15408,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433,15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446,15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459,15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15470,15471,15472,15473,15474,15475,15476,15477,15478,15479,15480,15481,15482,15483,15484,15485,15486,15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499,15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512,15513,15514,15515,15516,15517,15518,15519,15520,15521,15522,15523,15524,15525,15526,15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551,15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564,15565,15566,15567,15568,15569,15570,15571,15572,15573,15574,15575,15576,15577,15578,15579,15580,15581,15582,15583,15584,15585,15586,15587,15588,15589,15590,15591,15592,15593,15594,15595,15596,15597,15598,15599,15600,15601,15602,15603,15604,15605,15606,15607,15608,15609,15610,15611,15612,15613,15614,15615,15616,15617,15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15633,15634,15635,15636,15637,15638,15639,15640,15641,15642,15643,15644,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656,15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,15669,15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682,15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695,15696,15697,15698,15699,15700,15701,15702,15703,15704,15705,15706,15707,15708,15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721,15722,15723,15724,15725,15726,15727,15728,15729,15730,15731,15732,15733,15734,15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747,15748,15749,15750,15751,15752,15753,15754,15755,15756,15757,15758,15759,15760,15761,15762,15763,15764,15765,15766,15767,15768,15769,15770,15771,15772,15773,15774,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794,15795,15796,15797,15798,15799,15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837,15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851,15852,15853,15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,15891,15892,15893,15894,15895,15896,15897,15898,15899,15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916,15917,15918,15919,15920,15921,15922,15923,15924,15925,15926,15927,15928,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,15942,15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957,15958,15959,15960,15961,15962,15963,15964,15965,15966,15967,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981,15982,15983,15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019,16020,16021,16022,16023,16024,16025,16026,16027,16028,16029,16030,16031,16032,16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045,16046,16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058,16059,16060,16061,16062,16063,16064,16065,16066,16067,16068,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084,16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,16095,16096,16097,16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123,16124,16125,16126,16127,16128,16129,16130,16131,16132,16133,16134,16135,16136,16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,16174,16175,16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188,16189,16190,16191,16192,16193,16194,16195,16196,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227,16228,16229,16230,16231,16232,16233,16234,16235,16236,16237,16238,16239,16240,16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253,16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,16266,16267,16268,16269,16270,16271,16272,16273,16274,16275,16276,16277,16278,16279,16280,16281,16282,16283,16284,16285,16286,16287,16288,16289,16290,16291,16292,16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305,16306,16307,16308,16309,16310,16311,16312,16313,16314,16315,16316,16317,16318,16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331,16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344,16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357,16358,16359,16360,16361,16362,16363,16364,16365,16366,16367,16368,16369,16370,16371,16372,16373,16374,16375,16376,16377,16378,16379,16380,16381,16382,16383,16384,16385,16386,16387,16388,16389,16390,16391,16392,16393,16394,16395,16396,16397,16398,16399,16400,16401,16402,16403,16404,16405,16406,16407,16408,16409,16410,16411,16412,16413,16414,16415,16416,16417,16418,16419,16420,16421,16422,16423,16424,16425,16426,16427,16428,16429,16430,16431,16432,16433,16434,16435,16436,16437,16438,16439,16440,16441,16442,16443,16444,16445,16446,16447,16448,16449,16450,16451,16452,16453,16454,16455,16456,16457,16458,16459,16460,16461,16462,16463,16464,16465,16466,16467,16468,16469,16470,16471,16472,16473,16474,16475,16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,16486,16487,16488,16489,16490,16491,16492,16493,16494,16495,16496,16497,16498,16499,16500,16501,16502,16503,16504,16505,16506,16507,16508,16509,16510,16511,16512,16513,16514,16515,16516,16517,16518,16519,16520,16521,16522,16523,16524,16525,16526,16527,16528,16529,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,16551,16552,16553,16554,16555,16556,16557,16558,16559,16560,16561,16562,16563,16564,16565,16566,16567,16568,16569,16570,16571,16572,16573,16574,16575,16576,16577,16578,16579,16580,16581,16582,16583,16584,16585,16586,16587,16588,16589,16590,16591,16592,16593,16594,16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605,16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616,16617,16618,16619,16620,16621,16622,16623,16624,16625,16626,16627,16628,16629,16630,16631,16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644,16645,16646,16647,16648,16649,16650,16651,16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670,16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683,16684,16685,16686,16687,16688,16689,16690,16691,16692,16693,16694,16695,16696,16697,16698,16699,16700,16701,16702,16703,16704,16705,16706,16707,16708,16709,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725,16726,16727,16728,16729,16730,16731,16732,16733,16734,16735,16736,16737,16738,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16765,16766,16767,16768,16769,16770,16771,16772,16773,16774,16775,16776,16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788,16789,16790,16791,16792,16793,16794,16795,16796,16797,16798,16799,16800,16801,16802,16803,16804,16805,16806,16807,16808,16809,16810,16811,16812,16813,16814,16815,16816,16817,16818,16819,16820,16821,16822,16823,16824,16825,16826,16827,16828,16829,16830,16831,16832,16833,16834,16835,16836,16837,16838,16839,16840,16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866,16867,16868,16869,16870,16871,16872,16873,16874,16875,16876,16877,16878,16879,16880,16881,16882,16883,16884,16885,16886,16887,16888,16889,16890,16891,16892,16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16908,16909,16910,16911,16912,16913,16914,16915,16916,16917,16918,16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16932,16933,16934,16935,16936,16937,16938,16939,16940,16941,16942,16943,16944,16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983,16984,16985,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16996,16997,16998,16999,17000,17001,17002,17003,17004,17005,17006,17007,17008,17009,17010,17011,17012,17013,17014,17015,17016,17017,17018,17019,17020,17021,17022,17023,17024,17025,17026,17027,17028,17029,17030,17031,17032,17033,17034,17035,17036,17037,17038,17039,17040,17041,17042,17043,17044,17045,17046,17047,17048,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074,17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087,17088,17089,17090,17091,17092,17093,17094,17095,17096,17097,17098,17099,17100,17101,17102,17103,17104,17105,17106,17107,17108,17109,17110,17111,17112,17113,17114,17115,17116,17117,17118,17119,17120,17121,17122,17123,17124,17125,17126,17127,17128,17129,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17154,17155,17156,17157,17158,17159,17160,17161,17162,17163,17164,17165,17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17176,17177,17178,17179,17180,17181,17182,17183,17184,17185,17186,17187,17188,17189,17190,17191,17192,17193,17194,17195,17196,17197,17198,17199,17200,17201,17202,17203,17204,17205,17206,17207,17208,17209,17210,17211,17212,17213,17214,17215,17216,17217,17218,17219,17220,17221,17222,17223,17224,17225,17226,17227,17228,17229,17230,17231,17232,17233,17234,17235,17236,17237,17238,17239,17240,17241,17242,17243,17244,17245,17246,17247,17248,17249,17250,17251,17252,17253,17254,17255,17256,17257,17258,17259,17260,17261,17262,17263,17264,17265,17266,17267,17268,17269,17270,17271,17272,17273,17274,17275,17276,17277,17278,17279,17280,17281,17282,17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295,17296,17297,17298,17299,17300,17301,17302,17303,17304,17305,17306,17307,17308,17309,17310,17311,17312,17313,17314,17315,17316,17317,17318,17319,17320,17321,17322,17323,17324,17325,17326,17327,17328,17329,17330,17331,17332,17333,17334,17335,17336,17337,17338,17339,17340,17341,17342,17343,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17356,17357,17358,17359,17360,17361,17362,17363,17364,17365,17366,17367,17368,17369,17370,17371,17372,17373,17374,17375,17376,17377,17378,17379,17380,17381,17382,17383,17384,17385,17386,17387,17388,17389,17390,17391,17392,17393,17394,17395,17396,17397,17398,17399,17400,17401,17402,17403,17404,17405,17406,17407,17408,17409,17410,17411,17412,17413,17414,17415,17416,17417,17418,17419,17420,17421,17422,17423,17424,17425,17426,17427,17428,17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441,17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454,17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480,17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493,17494,17495,17496,17497,17498,17499,17500,17501,17502,17503,17504,17505,17506,17507,17508,17509,17510,17511,17512,17513,17514,17515,17516,17517,17518,17519,17520,17521,17522,17523,17524,17525,17526,17527,17528,17529,17530,17531,17532,17533,17534,17535,17536,17537,17538,17539,17540,17541,17542,17543,17544,17545,17546,17547,17548,17549,17550,17551,17552,17553,17554,17555,17556,17557,17558,17559,17560,17561,17562,17563,17564,17565,17566,17567,17568,17569,17570,17571,17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583,17584,17585,17586,17587,17588,17589,17590,17591,17592,17593,17594,17595,17596,17597,17598,17599,17600,17601,1760Interrupted. λ> ['a'..] "abcdefghijklmnopqrstuvwxyz{|}~\DEL\128\129\130\131\132\133\134\135\136\137\138\139\140\141\142\143\144\145\146\147\148\149\150\151\152\153\154\155\156\157\158\159\160\161\162\163\164\165\166\167\168\169\170\171\172\173\174\175\176\177\178\179\180\181\182\183\184\185\186\187\188\189\190\191\192\193\194\195\196\197\198\199\200\201\202\203\204\205\206\207\208\209\210\211\212\213\214\215\216\217\218\219\220\221\222\223\224\225\226\227\228\229\230\231\232\233\234\235\236\237\238\239\240\241\242\243\244\245\246\247\248\249\250\251\252\253\254\255\256\257\258\259\260\261\262\263\264\265\266\267\268\269\270\271\272\273\274\275\276\277\278\279\280\281\282\283\284\285\286\287\288\289\290\291\292\293\294\295\296\297\298\299\300\301\302\303\304\305\306\307\308\309\310\311\312\313\314\315\316\317\318\319\320\321\322\323\324\325\326\327\328\329\330\331\332\333\334\335\336\337\338\339\340\341\342\343\344\345\346\347\348\349\350\351\352\353\354\355\356\357\358\359\360\361\362\363\364\365\366\367\368\369\370\371\372\373\374\375\376\377\378\379\380\381\382\383\384\385\386\387\388\389\390\391\392\393\394\395\396\397\398\399\400\401\402\403\404\405\406\407\408\409\410\411\412\413\414\415\416\417\418\419\420\421\422\423\424\425\426\427\428\429\430\431\432\433\434\435\436\437\438\439\440\441\442\443\444\445\446\447\448\449\450\451\452\453\454\455\456\457\458\459\460\461\462\463\464\465\466\467\468\469\470\471\472\473\474\475\476\477\478\479\480\481\482\483\484\485\486\487\488\489\490\491\492\493\494\495\496\497\498\499\500\501\502\503\504\505\506\507\508\509\510\511\512\513\514\515\516\517\518\519\520\521\522\523\524\525\526\527\528\529\530\531\532\533\534\535\536\537\538\539\540\541\542\543\544\545\546\547\548\549\550\551\552\553\554\555\556\557\558\559\560\561\562\563\564\565\566\567\568\569\570\571\572\573\574\575\576\577\578\579\580\581\582\583\584\585\586\587\588\589\590\591\592\593\594\595\596\597\598\599\600\601\602\603\604\605\606\607\608\609\610\611\612\613\614\615\616\617\618\619\620\621\622\623\624\625\626\627\628\629\630\631\632\633\634\635\636\637\638\639\640\641\642\643\644\645\646\647\648\649\650\651\652\653\654\655\656\657\658\659\660\661\662\663\664\665\666\667\668\669\670\671\672\673\674\675\676\677\678\679\680\681\682\683\684\685\686\687\688\689\690\691\692\693\694\695\696\697\698\699\700\701\702\703\704\705\706\707\708\709\710\711\712\713\714\715\716\717\718\719\720\721\722\723\724\725\726\727\728\729\730\731\732\733\734\735\736\737\738\739\740\741\742\743\744\745\746\747\748\749\750\751\752\753\754\755\756\757\758\759\760\761\762\763\764\765\766\767\768\769\770\771\772\773\774\775\776\777\778\779\780\781\782\783\784\785\786\787\788\789\790\791\792\793\794\795\796\797\798\799\800\801\802\803\804\805\806\807\808\809\810\811\812\813\814\815\816\817\818\819\820\821\822\823\824\825\826\827\828\829\830\831\832\833\834\835\836\837\838\839\840\841\842\843\844\845\846\847\848\849\850\851\852\853\854\855\856\857\858\859\860\861\862\863\864\865\866\867\868\869\870\871\872\873\874\875\876\877\878\879\880\881\882\883\884\885\886\887\888\889\890\891\892\893\894\895\896\897\898\899\900\901\902\903\904\905\906\907\908\909\910\911\912\913\914\915\916\917\918\919\920\921\922\923\924\925\926\927\928\929\930\931\932\933\934\935\936\937\938\939\940\941\942\943\944\945\946\947\948\949\950\951\952\953\954\955\956\957\958\959\960\961\962\963\964\965\966\967\968\969\970\971\972\973\974\975\976\977\978\979\980\981\982\983\984\985\986\987\988\989\990\991\992\993\994\995\996\997\998\999\1000\1001\1002\1003\1004\1005\1006\1007\1008\1009\1010\1011\1012\1013\1014\1015\1016\1017\1018\1019\1020\1021\1022\1023\1024\1025\1026\1027\1028\1029\1030\1031\1032\1033\1034\1035\1036\1037\1038\1039\1040\1041\1042\1043\1044\1045\1046\1047\1048\1049\1050\1051\1052\1053\1054\1055\1056\1057\1058\1059\1060\1061\1062\1063\1064\1065\1066\1067\1068\1069\1070\1071\1072\1073\1074\1075\1076\1077\1078\1079\1080\1081\1082\1083\1084\1085\1086\1087\1088\1089\1090\1091\1092\1093\1094\1095\1096\1097\1098\1099\1100\1101\1102\1103\1104\1105\1106\1107\1108\1109\1110\1111\1112\1113\1114\1115\1116\1117\1118\1119\1120\1121\1122\1123\1124\1125\1126\1127\1128\1129\1130\1131\1132\1133\1134\1135\1136\1137\1138\1139\1140\1141\1142\1143\1144\1145\1146\1147\1148\1149\1150\1151\1152\1153\1154\1155\1156\1157\1158\1159\1160\1161\1162\1163\1164\1165\1166\1167\1168\1169\1170\1171\1172\1173\1174\1175\1176\1177\1178\1179\1180\1181\1182\1183\1184\1185\1186\1187\1188\1189\1190\1191\1192\1193\1194\1195\1196\1197\1198\1199\1200\1201\1202\1203\1204\1205\1206\1207\1208\1209\1210\1211\1212\1213\1214\1215\1216\1217\1218\1219\1220\1221\1222\1223\1224\1225\1226\1227\1228\1229\1230\1231\1232\1233\1234\1235\1236\1237\1238\1239\1240\1241\1242\1243\1244\1245\1246\1247\1248\1249\1250\1251\1252\1253\1254\1255\1256\1257\1258\1259\1260\1261\1262\1263\1264\1265\1266\1267\1268\1269\1270\1271\1272\1273\1274\1275\1276\1277\1278\1279\1280\1281\1282\1283\1284\1285\1286\1287\1288\1289\1290\1291\1292\1293\1294\1295\1296\1297\1298\1299\1300\1301\1302\1303\1304\1305\1306\1307\1308\1309\1310\1311\1312\1313\1314\1315\1316\1317\1318\1319\1320\1321\1322\1323\1324\1325\1326\1327\1328\1329\1330\1331\1332\1333\1334\1335\1336\1337\1338\1339\1340\1341\1342\1343\1344\1345\1346\1347\1348\1349\1350\1351\1352\1353\1354\1355\1356\1357\1358\1359\1360\1361\1362\1363\1364\1365\1366\1367\1368\1369\1370\1371\1372\1373\1374\1375\1376\1377\1378\1379\1380\1381\1382\1383\1384\1385\1386\1387\1388\1389\1390\1391\1392\1393\1394\1395\1396\1397\1398\1399\1400\1401\1402\1403\1404\1405\1406\1407\1408\1409\1410\1411\1412\1413\1414\1415\1416\1417\1418\1419\1420\1421\1422\1423\1424\1425\1426\1427\1428\1429\1430\1431\1432\1433\1434\1435\1436\1437\1438\1439\1440\1441\1442\1443\1444\1445\1446\1447\1448\1449\1450\1451\1452\1453\1454\1455\1456\1457\1458\1459\1460\1461\1462\1463\1464\1465\1466\1467\1468\1469\1470\1471\1472\1473\1474\1475\1476\1477\1478\1479\1480\1481\1482\1483\1484\1485\1486\1487\1488\1489\1490\1491\1492\1493\1494\1495\1496\1497\1498\1499\1500\1501\1502\1503\1504\1505\1506\1507\1508\1509\1510\1511\1512\1513\1514\1515\1516\1517\1518\1519\1520\1521\1522\1523\1524\1525\1526\1527\1528\1529\1530\1531\1532\1533\1534\1535\1536\1537\1538\1539\1540\1541\1542\1543\1544\1545\1546\1547\1548\1549\1550\1551\1552\1553\1554\1555\1556\1557\1558\1559\1560\1561\1562\1563\1564\1565\1566\1567\1568\1569\1570\1571\1572\1573\1574\1575\1576\1577\1578\1579\1580\1581\1582\1583\1584\1585\1586\1587\1588\1589\1590\1591\1592\1593\1594\1595\1596\1597\1598\1599\1600\1601\1602\1603\1604\1605\1606\1607\1608\1609\1610\1611\1612\1613\1614\1615\1616\1617\1618\1619\1620\1621\1622\1623\1624\1625\1626\1627\1628\1629\1630\1631\1632\1633\1634\1635\1636\1637\1638\1639\1640\1641\1642\1643\1644\1645\1646\1647\1648\1649\1650\1651\1652\1653\1654\1655\1656\1657\1658\1659\1660\1661\1662\1663\1664\1665\1666\1667\1668\1669\1670\1671\1672\1673\1674\1675\1676\1677\1678\1679\1680\1681\1682\1683\1684\1685\1686\1687\1688\1689\1690\1691\1692\1693\1694\1695\1696\1697\1698\1699\1700\1701\1702\1703\1704\1705\1706\1707\1708\1709\1710\1711\1712\1713\1714\1715\1716\1717\1718\1719\1720\1721\1722\1723\1724\1725\1726\1727\1728\1729\1730\1731\1732\1733\1734\1735\1736\1737\1738\1739\1740\1741\1742\1743\1744\1745\1746\1747\1748\1749\1750\1751\1752\1753\1754\1755\1756\1757\1758\1759\1760\1761\1762\1763\1764\1765\1766\1767\1768\1769\1770\1771\1772\1773\1774\1775\1776\1777\1778\1779\1780\1781\1782\1783\1784\1785\1786\1787\1788\1789\1790\1791\1792\1793\1794\1795\1796\1797\1798\1799\1800\1801\1802\1803\1804\1805\1806\1807\1808\1809\1810\1811\1812\1813\1814\1815\1816\1817\1818\1819\1820\1821\1822\1823\1824\1825\1826\1827\1828\1829\1830\1831\1832\1833\1834\1835\1836\1837\1838\1839\1840\1841\1842\1843\1844\1845\1846\1847\1848\1849\1850\1851\1852\1853\1854\1855\1856\1857\1858\1859\1860\1861\1862\1863\1864\1865\1866\1867\1868\1869\1870\1871\1872\1873\1874\1875\1876\1877\1878\1879\1880\1881\1882\1883\1884\1885\1886\1887\1888\1889\1890\1891\1892\1893\1894\1895\1896\1897\1898\1899\1900\1901\1902\1903\1904\1905\1906\1907\1908\1909\1910\1911\1912\1913\1914\1915\1916\1917\1918\1919\1920\1921\1922\1923\1924\1925\1926\1927\1928\1929\1930\1931\1932\1933\1934\1935\1936\1937\1938\1939\1940\1941\1942\1943\1944\1945\1946\1947\1948\1949\1950\1951\1952\1953\1954\1955\1956\1957\1958\1959\1960\1961\1962\1963\1964\1965\1966\1967\1968\1969\1970\1971\1972\1973\1974\1975\1976\1977\1978\1979\1980\1981\1982\1983\1984\1985\1986\1987\1988\1989\1990\1991\1992\1993\1994\1995\1996\1997\1998\1999\2000\2001\2002\2003\2004\2005\2006\2007\2008\2009\2010\2011\2012\2013\2014\2015\2016\2017\2018\2019\2020\2021\2022\2023\2024\2025\2026\2027\2028\2029\2030\2031\2032\2033\2034\2035\2036\2037\2038\2039\2040\2041\2042\2043\2044\2045\2046\2047\2048\2049\2050\2051\2052\2053\2054\2055\2056\2057\2058\2059\2060\2061\2062\2063\2064\2065\2066\2067\2068\2069\2070\2071\2072\2073\2074\2075\2076\2077\2078\2079\2080\2081\2082\2083\2084\2085\2086\2087\2088\2089\2090\2091\2092\2093\2094\2095\2096\2097\2098\2099\2100\2101\2102\2103\2104\2105\2106\2107\2108\2109\2110\2111\2112\2113\2114\2115\2116\2117\2118\2119\2120\2121\2122\2123\2124\2125\2126\2127\2128\2129\2130\2131\2132\2133\2134\2135\2136\2137\2138\2139\2140\2141\2142\2143\2144\2145\2146\2147\2148\2149\2150\2151\2152\2153\2154\2155\2156\2157\2158\2159\2160\2161\2162\2163\2164\2165\2166\2167\2168\2169\2170\2171\2172\2173\2174\2175\2176\2177\2178\2179\2180\2181\2182\2183\2184\2185\2186\2187\2188\2189\2190\2191\2192\2193\2194\2195\2196\2197\2198\2199\2200\2201\2202\2203\2204\2205\2206\2207\2208\2209\2210\2211\2212\2213\2214\2215\2216\2217\2218\2219\2220\2221\2222\2223\2224\2225\2226\2227\2228\2229\2230\2231\2232\2233\2234\2235\2236\2237\2238\2239\2240\2241\2242\2243\2244\2245\2246\2247\2248\2249\2250\2251\2252\2253\2254\2255\2256\2257\2258\2259\2260\2261\2262\2263\2264\2265\2266\2267\2268\2269\2270\2271\2272\2273\2274\2275\2276\2277\2278\2279\2280\2281\2282\2283\2284\2285\2286\2287\2288\2289\2290\2291\2292\2293\2294\2295\2296\2297\2298\2299\2300\2301\2302\2303\2304\2305\2306\2307\2308\2309\2310\2311\2312\2313\2314\2315\2316\2317\2318\2319\2320\2321\2322\2323\2324\2325\2326\2327\2328\2329\2330\2331\2332\2333\2334\2335\2336\2337\2338\2339\2340\2341\2342\2343\2344\2345\2346\2347\2348\2349\2350\2351\2352\2353\2354\2355\2356\2357\2358\2359\2360\2361\2362\2363\2364\2365\2366\2367\2368\2369\2370\2371\2372\2373\2374\2375\2376\2377\2378\2379\2380\2381\2382\2383\2384\2385\2386\2387\2388\2389\2390\2391\2392\2393\2394\2395\2396\2397\2398\2399\2400\2401\2402\2403\2404\2405\2406\2407\2408\2409\2410\2411\2412\2413\2414\2415\2416\2417\2418\2419\2420\2421\2422\2423\2424\2425\2426\2427\2428\2429\2430\2431\2432\2433\2434\2435\2436\2437\2438\2439\2440\2441\2442\2443\2444\2445\2446\2447\2448\2449\2450\2451\2452\2453\2454\2455\2456\2457\2458\2459\2460\2461\2462\2463\2464\2465\2466\2467\2468\2469\2470\2471\2472\2473\2474\2475\2476\2477\2478\2479\2480\2481\2482\2483\2484\2485\2486\2487\2488\2489\2490\2491\2492\2493\2494\2495\2496\2497\2498\2499\2500\2501\2502\2503\2504\2505\2506\2507\2508\2509\2510\2511\2512\2513\2514\2515\2516\2517\2518\2519\2520\2521\2522\2523\2524\2525\2526\2527\2528\2529\2530\2531\2532\2533\2534\2535\2536\2537\2538\2539\2540\2541\2542\2543\2544\2545\2546\2547\2548\2549\2550\2551\2552\2553\2554\2555\2556\2557\2558\2559\2560\2561\2562\2563\2564\2565\2566\2567\2568\2569\2570\2571\2572\2573\2574\2575\2576\2577\2578\2579\2580\2581\2582\2583\2584\2585\2586\2587\2588\2589\2590\2591\2592\2593\2594\2595\2596\2597\2598\2599\2600\2601\2602\2603\2604\2605\2606\2607\2608\2609\2610\2611\2612\2613\2614\2615\2616\2617\2618\2619\2620\2621\2622\2623\2624\2625\2626\2627\2628\2629\2630\2631\2632\2633\2634\2635\2636\2637\2638\2639\2640\2641\2642\2643\2644\2645\2646\2647\2648\2649\2650\2651\2652\2653\2654\2655\2656\2657\2658\2659\2660\2661\2662\2663\2664\2665\2666\2667\2668\2669\2670\2671\2672\2673\2674\2675\2676\2677\2678\2679\2680\2681\2682\2683\2684\2685\2686\2687\2688\2689\2690\2691\2692\2693\2694\2695\2696\2697\2698\2699\2700\2701\2702\2703\2704\2705\2706\2707\2708\2709\2710\2711\2712\2713\2714\2715\2716\2717\2718\2719\2720\2721\2722\2723\2724\2725\2726\2727\2728\2729\2730\2731\2732\2733\2734\2735\2736\2737\2738\2739\2740\2741\2742\2743\2744\2745\2746\2747\2748\2749\2750\2751\2752\2753\2754\2755\2756\2757\2758\2759\2760\2761\2762\2763\2764\2765\2766\2767\2768\2769\2770\2771\2772\2773\2774\2775\2776\2777\2778\2779\2780\2781\2782\2783\2784\2785\2786\2787\2788\2789\2790\2791\2792\2793\2794\2795\2796\2797\2798\2799\2800\2801\2802\2803\2804\2805\2806\2807\2808\2809\2810\2811\2812\2813\2814\2815\2816\2817\2818\2819\2820\2821\2822\2823\2824\2825\2826\2827\2828\2829\2830\2831\2832\2833\2834\2835\2836\2837\2838\2839\2840\2841\2842\2843\2844\2845\2846\2847\2848\2849\2850\2851\2852\2853\2854\2855\2856\2857\2858\2859\2860\2861\2862\2863\2864\2865\2866\2867\2868\2869\2870\2871\2872\2873\2874\2875\2876\2877\2878\2879\2880\2881\2882\2883\2884\2885\2886\2887\2888\2889\2890\2891\2892\2893\2894\2895\2896\2897\2898\2899\2900\2901\2902\2903\2904\2905\2906\2907\2908\2909\2910\2911\2912\2913\2914\2915\2916\2917\2918\2919\2920\2921\2922\2923\2924\2925\2926\2927\2928\2929\2930\2931\2932\2933\2934\2935\2936\2937\2938\2939\2940\2941\2942\2943\2944\2945\2946\2947\2948\2949\2950\2951\2952\2953\2954\2955\2956\2957\2958\2959\2960\2961\2962\2963\2964\2965\2966\2967\2968\2969\2970\2971\2972\2973\2974\2975\2976\2977\2978\2979\2980\2981\2982\2983\2984\2985\2986\2987\2988\2989\2990\2991\2992\2993\2994\2995\2996\2997\2998\2999\3000\3001\3002\3003\3004\3005\3006\3007\3008\3009\3010\3011\3012\3013\3014\3015\3016\3017\3018\3019\3020\3021\3022\3023\3024\3025\3026\3027\3028\3029\3030\3031\3032\3033\3034\3035\3036\3037\3038\3039\3040\3041\3042\3043\3044\3045\3046\3047\3048\3049\3050\3051\3052\3053\3054\3055\3056\3057\3058\3059\3060\3061\3062\3063\3064\3065\3066\3067\3068\3069\3070\3071\3072\3073\3074\3075\3076\3077\3078\3079\3080\3081\3082\3083\3084\3085\3086\3087\3088\3089\3090\3091\3092\3093\3094\3095\3096\3097\3098\3099\3100\3101\3102\3103\3104\3105\3106\3107\3108\3109\3110\3111\3112\3113\3114\3115\3116\3117\3118\3119\3120\3121\3122\3123\3124\3125\3126\3127\3128\3129\3130\3131\3132\3133\3134\3135\3136\3137\3138\3139\3140\3141\3142\3143\3144\3145\3146\3147\3148\3149\3150\3151\3152\3153\3154\3155\3156\3157\3158\3159\3160\3161\3162\3163\3164\3165\3166\3167\3168\3169\3170\3171\3172\3173\3174\3175\3176\3177\3178\3179\3180\3181\3182\3183\3184\3185\3186\3187\3188\3189\3190\3191\3192\3193\3194\3195\3196\3197\3198\3199\3200\3201\3202\3203\3204\3205\3206\3207\3208\3209\3210\3211\3212\3213\3214\3215\3216\3217\3218\3219\3220\3221\3222\3223\3224\3225\3226\3227\3228\3229\3230\3231\3232\3233\3234\3235\3236\3237\3238\3239\3240\3241\3242\3243\3244\3245\3246\3247\3248\3249\3250\3251\3252\3253\3254\3255\3256\3257\3258\3259\3260\3261\3262\3263\3264\3265\3266\3267\3268\3269\3270\3271\3272\3273\3274\3275\3276\3277\3278\3279\3280\3281\3282\3283\3284\3285\3286\3287\3288\3289\3290\3291\3292\3293\3294\3295\3296\3297\3298\3299\3300\3301\3302\3303\3304\3305\3306\3307\3308\3309\3310\3311\3312\3313\3314\3315\3316\3317\3318\3319\3320\3321\3322\3323\3324\3325\3326\3327\3328\3329\3330\3331\3332\3333\3334\3335\3336\3337\3338\3339\3340\3341\3342\3343\3344\3345\3346\3347\3348\3349\3350\3351\3352\3353\3354\3355\3356\3357\3358\3359\3360\3361\3362\3363\3364\3365\3366\3367\3368\3369\3370\3371\3372\3373\3374\3375\3376\3377\3378\3379\3380\3381\3382\3383\3384\3385\3386\3387\3388\3389\3390\3391\3392\3393\3394\3395\3396\3397\3398\3399\3400\3401\3402\3403\3404\3405\3406\3407\3408\3409\3410\3411\3412\3413\3414\3415\3416\3417\3418\3419\3420\3421\3422\3423\3424\3425\3426\3427\3428\3429\3430\3431\3432\3433\3434\3435\3436\3437\3438\3439\3440\3441\3442\3443\3444\3445\3446\3447\3448\3449\3450\3451\3452\3453\3454\3455\3456\3457\3458\3459\3460\3461\3462\3463\3464\3465\3466\3467\3468\3469\3470\3471\3472\3473\3474\3475\3476\3477\3478\3479\3480\3481\3482\3483\3484\3485\3486\3487\3488\3489\3490\3491\3492\3493\3494\3495\3496\3497\3498\3499\3500\3501\3502\3503\3504\3505\3506\3507\3508\3509\3510\3511\3512\3513\3514\3515\3516\3517\3518\3519\3520\3521\3522\3523\3524\3525\3526\3527\3528\3529\3530\3531\3532\3533\3534\3535\3536\3537\3538\3539\3540\3541\3542\3543\3544\3545\3546\3547\3548\3549\3550\3551\3552\3553\3554\3555\3556\3557\3558\3559\3560\3561\3562\3563\3564\3565\3566\3567\3568\3569\3570\3571\3572\3573\3574\3575\3576\3577\3578\3579\3580\3581\3582\3583\3584\3585\3586\3587\3588\3589\3590\3591\3592\3593\3594\3595\3596\3597\3598\3599\3600\3601\3602\3603\3604\3605\3606\3607\3608\3609\3610\3611\3612\3613\3614\3615\3616\3617\3618\3619\3620\3621\3622\3623\3624\3625\3626\3627\3628\3629\3630\3631\3632\3633\3634\3635\3636\3637\3638\3639\3640\3641\3642\3643\3644\3645\3646\3647\3648\3649\3650\3651\3652\3653\3654\3655\3656\3657\3658\3659\3660\3661\3662\3663\3664\3665\3666\3667\3668\3669\3670\3671\3672\3673\3674\3675\3676\3677\3678\3679\3680\3681\3682\3683\3684\3685\3686\3687\3688\3689\3690\3691\3692\3693\3694\3695\3696\3697\3698\3699\3700\3701\3702\3703\3704\3705\3706\3707\3708\3709\3710\3711\3712\3713\3714\3715\3716\3717\3718\3719\3720\3721\3722\3723\3724\3725\3726\3727\3728\3729\3730\3731\3732\3733\3734\3735\3736\3737\3738\3739\3740\3741\3742\3743\3744\3745\3746\3747\3748\3749\3750\3751\3752\3753\3754\3755\3756\3757\3758\3759\3760\3761\3762\3763\3764\3765\3766\3767\3768\3769\3770\3771\3772\3773\3774\3775\3776\3777\3778\3779\3780\3781\3782\3783\3784\3785\3786\3787\3788\3789\3790\3791\3792\3793\3794\3795\3796\3797\3798\3799\3800\3801\3802\3803\3804\3805\3806\3807\3808\3809\3810\3811\3812\3813\3814\3815\3816\3817\3818\3819\3820\3821\3822\3823\3824\3825\3826\3827\3828\3829\3830\3831\3832\3833\3834\3835\3836\3837\3838\3839\3840\3841\3842\3843\3844\3845\3846\3847\3848\3849\3850\3851\3852\3853\3854\3855\3856\3857\3858\3859\3860\3861\3862\3863\3864\3865\3866\3867\3868\3869\3870\3871\3872\3873\3874\3875\3876\3877\3878\3879\3880\3881\3882\3883\3884\3885\3886\3887\3888\3889\3890\3891\3892\3893\3894\3895\3896\3897\3898\3899\3900\3901\3902\3903\3904\3905\3906\3907\3908\3909\3910\3911\3912\3913\3914\3915\3916\3917\3918\3919\3920\3921\3922\3923\3924\3925\3926\3927\3928\3929\3930\3931\3932\3933\3934\3935\3936\3937\3938\3939\3940\3941\3942\3943\3944\3945\3946\3947\3948\3949\3950\3951\3952\3953\3954\3955\3956\3957\3958\3959\3960\3961\3962\3963\3964\3965\3966\3967\3968\3969\3970\3971\3972\3973\3974\3975\3976\3977\3978\3979\3980\3981\3982\3983\3984\3985\3986\3987\3988\3989\3990\3991\3992\3993\3994\3995\3996\3997\3998\3999\4000\4001\4002\4003\4004\4005\4006\4007\4008\4009\4010\4011\4012\4013\4014\4015\4016\4017\4018\4019\4020\4021\4022\4023\4024\4025\4026\4027\4028\4029\4030\4031\4032\4033\4034\4035\4036\4037\4038\4039\4040\4041\4042\4043\4044\4045\4046\4047\4048\4049\4050\4051\4052\4053\4054\4055\4056\4057\4058\4059\4060\4061\4062\4063\4064\4065\4066\4067\4068\4069\4070\4071\4072\4073\4074\4075\4076\4077\4078\4079\4080\4081\4082\4083\4084\4085\4086\4087\4088\4089\4090\4091\4092\4093\4094\4095\4096\4097\4098\4099\4100\4101\4102\4103\4104\4105\4106\4107\4108\4109\4110\4111\4112\4113\4114\4115\4116\4117\4118\4119\4120\4121\4122\4123\4124\4125\4126\4127\4128\4129\4130\4131\4132\4133\4134\4135\4136\4137\4138\4139\4140\4141\4142\4143\4144\4145\4146\4147\4148\4149\4150\4151\4152\4153\4154\4155\4156\4157\4158\4159\4160\4161\4162\4163\4164\4165\4166\4167\4168\4169\4170\4171\4172\4173\4174\4175\4176\4177\4178\4179\4180\4181\4182\4183\4184\4185\4186\4187\4188\4189\4190\4191\4192\4193\4194\4195\4196\4197\4198\4199\4200\4201\4202\4203\4204\4205\4206\4207\4208\4209\4210\4211\4212\4213\4214\4215\4216\4217\4218\4219\4220\4221\4222\4223\4224\4225\4226\4227\4228\4229\4230\4231\4232\4233\4234\4235\4236\4237\4238\4239\4240\4241\4242\4243\4244\4245\4246\4247\4248\4249\4250\4251\4252\4253\4254\4255\4256\4257\4258\4259\4260\4261\4262\4263\4264\4265\4266\4267\4268\4269\4270\4271\4272\4273\4274\4275\4276\4277\4278\4279\4280\4281\4282\4283\4284\4285\4286\4287\4288\4289\4290\4291\4292\4293\4294\4295\4296\4297\4298\4299\4300\4301\4302\4303\4304\4305\4306\4307\4308\4309\4310\4311\4312\4313\4314\4315\4316\4317\4318\4319\4320\4321\4322\4323\4324\4325\4326\4327\4328\4329\4330\4331\4332\4333\4334\4335\4336\4337\4338\4339\4340\4341\4342\4343\4344\4345\4346\4347\4348\4349\4350\4351\4352\4353\4354\4355\4356\4357\4358\4359\4360\4361\4362\4363\4364\4365\4366\4367\4368\4369\4370\4371\4372\4373\4374\4375\4376\4377\4378\4379\4380\4381\4382\4383\4384\4385\4386\4387\4388\4389\4390\4391\4392\4393\4394\4395\4396\4397\4398\4399\4400\4401\4402\4403\4404\4405\4406\4407\4408\4409\4410\4411\4412\4413\4414\4415\4416\4417\4418\4419\4420\4421\4422\4423\4424\4425\4426\4427\4428\4429\4430\4431\4432\4433\4434\4435\4436\4437\4438\4439\4440\4441\4442\4443\4444\4445\4446\4447\4448\4449\4450\4451\4452\4453\4454\4455\4456\4457\4458\4459\4460\4461\4462\4463\4464\4465\4466\4467\4468\4469\4470\4471\4472\4473\4474\4475\4476\4477\4478\4479\4480\4481\4482\4483\4484\4485\4486\4487\4488\4489\4490\4491\4492\4493\4494\4495\4496\4497\4498\4499\4500\4501\4502\4503\4504\4505\4506\4507\4508\4509\4510\4511\4512\4513\4514\4515\4516\4517\4518\4519\4520\4521\4522\4523\4524\4525\4526\4527\4528\4529\4530\4531\4532\4533\4534\4535\4536\4537\4538\4539\4540\4541\4542\4543\4544\4545\4546\4547\4548\4549\4550\4551\4552\4553\4554\4555\4556\4557\4558\4559\4560\4561\4562\4563\4564\4565\4566\4567\4568\4569\4570\4571\4572\4573\4574\4575\4576\4577\4578\4579\4580\4581\4582\4583\4584\4585\4586\4587\4588\4589\4590\4591\4592\4593\4594\4595\4596\4597\4598\4599\4600\4601\4602\4603\4604\4605\4606\4607\4608\4609\4610\4611\4612\4613\4614\4615\4616\4617\4618\4619\4620\4621\4622\4623\4624\4625\4626\4627\4628\4629\4630\4631\4632\4633\4634\4635\4636\4637\4638\4639\4640\4641\4642\4643\4644\4645\4646\4647\4648\4649\4650\4651\4652\4653\4654\4655\4656\4657\4658\4659\4660\4661\4662\4663\4664\4665\4666\4667\4668\4669\4670\4671\4672\4673\4674\4675\4676\4677\4678\4679\4680\4681\4682\4683\4684\4685\4686\4687\4688\4689\4690\4691\4692\4693\4694\4695\4696\4697\4698\4699\4700\4701\4702\4703\4704\4705\4706\4707\4708\4709\4710\4711\4712\4713\4714\4715\4716\4717\4718\4719\4720\4721\4722\4723\4724\4725\4726\4727\4728\4729\4730\4731\4732\4733\4734\4735\4736\4737\4738\4739\4740\4741\4742\4743\4744\4745\4746\4747\4748\4749\4750\4751\4752\4753\4754\4755\4756\4757\4758\4759\4760\4761\4762\4763\4764\4765\4766\4767\4768\4769\4770\4771\4772\4773\4774\4775\4776\4777\4778\4779\4780\4781\4782\4783\4784\4785\4786\4787\4788\4789\4790\4791\4792\4793\4794\4795\4796\4797\4798\4799\4800\4801\4802\4803\4804\4805\4806\4807\4808\4809\4810\4811\4812\4813\4814\4815\4816\4817\4818\4819\4820\4821\4822\4823\4824\4825\4826\4827\4828\4829\4830\4831\4832\4833\4834\4835\4836\4837\4838\4839\4840\4841\4842\4843\4844\4845\4846\4847\4848\4849\4850\4851\4852\4853\4854\4855\4856\4857\4858\4859\4860\4861\4862\4863\4864\4865\4866\4867\4868\4869\4870\4871\4872\4873\4874\4875\4876\4877\4878\4879\4880\4881\4882\4883\4884\4885\4886\4887\4888\4889\4890\4891\4892\4893\4894\4895\4896\4897\4898\4899\4900\4901\4902\4903\4904\4905\4906\4907\4908\4909\4910\4911\4912\4913\4914\4915\4916\4917\4918\4919\4920\4921\4922\4923\4924\4925\4926\4927\4928\4929\4930\4931\4932\4933\4934\4935\4936\4937\4938\4939\4940\4941\4942\4943\4944\4945\4946\4947\4948\4949\4950\4951\4952\4953\4954\4955\4956\4957\4958\4959\4960\4961\4962\4963\4964\4965\4966\4967\4968\4969\4970\4971\4972\4973\4974\4975\4976\4977\4978\4979\4980\4981\4982\4983\4984\4985\4986\4987\4988\4989\4990\4991\4992\4993\4994\4995\4996\4997\4998\4999\5000\5001\5002\5003\5004\5005\5006\5007\5008\5009\5010\5011\5012\5013\5014\5015\5016\5017\5018\5019\5020\5021\5022\5023\5024\5025\5026\5027\5028\5029\5030\5031\5032\5033\5034\5035\5036\5037\5038\5039\5040\5041\5042\5043\5044\5045\5046\5047\5048\5049\5050\5051\5052\5053\5054\5055\5056\5057\5058\5059\5060\5061\5062\5063\5064\5065\5066\5067\5068\5069\5070\5071\5072\5073\5074\5075\5076\5077\5078\5079\5080\5081\5082\5083\5084\5085\5086\5087\5088\5089\5090\5091\5092\5093\5094\5095\5096\5097\5098\5099\5100\5101\5102\5103\5104\5105\5106\5107\5108\5109\5110\5111\5112\5113\5114\5115\5116\5117\5118\5119\5120\5121\5122\5123\5124\5125\5126\5127\5128\5129\5130\5131\5132\5133\5134\5135\5136\5137\5138\5139\5140\5141\5142\5143\5144\5145\5146\5147\5148\5149\5150\5151\5152\5153\5154\5155\5156\5157\5158\5159\5160\5161\5162\5163\5164\5165\5166\5167\5168\5169\5170\5171\5172\5173\5174\5175\5176\5177\5178\5179\5180\5181\5182\5183\5184\5185\5186\5187\5188\5189\5190\5191\5192\5193\5194\5195\5196\5197\5198\5199\5200\5201\5202\5203\5204\5205\5206\5207\5208\5209\5210\5211\5212\5213\5214\5215\5216\5217\5218\5219\5220\5221\5222\5223\5224\5225\5226\5227\5228\5229\5230\5231\5232\5233\5234\5235\5236\5237\5238\5239\5240\5241\5242\5243\5244\5245\5246\5247\5248\5249\5250\5251\5252\5253\5254\5255\5256\5257\5258\5259\5260\5261\5262\5263\5264\5265\5266\5267\5268\5269\5270\5271\5272\5273\5274\5275\5276\5277\5278\5279\5280\5281\5282\5283\5284\5285\5286\5287\5288\5289\5290\5291\5292\5293\5294\5295\5296\5297\5298\5299\5300\5301\5302\5303\5304\5305\5306\5307\5308\5309\5310\5311\5312\5313\5314\5315\5316\5317\5318\5319\5320\5321\5322\5323\5324\5325\5326\5327\5328\5329\5330\5331\5332\5333\5334\5335\5336\5337\5338\5339\5340\5341\5342\5343\5344\5345\5346\5347\5348\5349\5350\5351\5352\5353\5354\5355\5356\5357\5358\5359\5360\5361\5362\5363\5364\5365\5366\5367\5368\5369\5370\5371\5372\5373\5374\5375\5376\5377\5378\5379\5380\5381\5382\5383\5384\5385\5386\5387\5388\5389\5390\5391\5392\5393\5394\5395\5396\5397\5398\5399\5400\5401\5402\5403\5404\5405\5406\5407\5408\5409\5410\5411\5412\5413\5414\5415\5416\5417\5418\5419\5420\5421\5422\5423\5424\5425\5426\5427\5428\5429\5430\5431\5432\5433\5434\5435\5436\5437\5438\5439\5440\5441\5442\5443\5444\5445\5446\5447\5448\5449\5450\5451\5452\5453\5454\5455\5456\5457\5458\5459\5460\5461\5462\5463\5464\5465\5466\5467\5468\5469\5470\5471\5472\5473\5474\5475\5476\5477\5478\5479\5480\5481\5482\5483\5484\5485\5486\5487\5488\5489\5490\5491\5492\5493\5494\5495\5496\5497\5498\5499\5500\5501\5502\5503\5504\5505\5506\5507\5508\5509\5510\5511\5512\5513\5514\5515\5516\5517\5518\5519\5520\5521\5522\5523\5524\5525\5526\5527\5528\5529\5530\5531\5532\5533\5534\5535\5536\5537\5538\5539\5540\5541\5542\5543\5544\5545\5546\5547\5548\5549\5550\5551\5552\5553\5554\5555\5556\5557\5558\5559\5560\5561\5562\5563\5564\5565\5566\5567\5568\5569\5570\5571\5572\5573\5574\5575\5576\5577\5578\5579\5580\5581\5582\5583\5584\5585\5586\5587\5588\5589\5590\5591\5592\5593\5594\5595\5596\5597\5598\5599\5600\5601\5602\5603\5604\5605\5606\5607\5608\5609\5610\5611\5612\5613\5614\5615\5616\5617\5618\5619\5620\5621\5622\5623\5624\5625\5626\5627\5628\5629\5630\5631\5632\5633\5634\5635\5636\5637\5638\5639\5640\5641\5642\5643\5644\5645\5646\5647\5648\5649\5650\5651\5652\5653\5654\5655\5656\5657\5658\5659\5660\5661\5662\5663\5664\5665\5666\5667\5668\5669\5670\5671\5672\5673\5674\5675\5676\5677\5678\5679\5680\5681\5682\5683\5684\5685\5686\5687\5688\5689\5690\5691\5692\5693\5694\5695\5696\5697\5698\5699\5700\5701\5702\5703\5704\5705\5706\5707\5708\5709\5710\5711\5712\5713\5714\5715\5716\5717\5718\5719\5720\5721\5722\5723\5724\5725\5726\5727\5728\5729\5730\5731\5732\5733\5734\5735\5736\5737\5738\5739\5740\5741\5742\5743\5744\5745\5746\5747\5748\5749\5750\5751\5752\5753\5754\5755\5756\5757\5758\5759\5760\5761\5762\5763\5764\5765\5766\5767\5768\5769\5770\5771\5772\5773\5774\5775\5776\5777\5778\5779\5780\5781\5782\5783\5784\5785\5786\5787\5788\5789\5790\5791\5792\5793\5794\5795\5796\5797\5798\5799\5800\5801\5802\5803\5804\5805\5806\5807\5808\5809\5810\5811\5812\5813\5814\5815\5816\5817\5818\5819\5820\5821\5822\5823\5824\5825\5826\5827\5828\5829\5830\5831\5832\5833\5834\5835\5836\5837\5838\5839\5840\5841\5842\5843\5844\5845\5846\5847\5848\5849\5850\5851\5852\5853\5854\5855\5856\5857\5858\5859\5860\5861\5862\5863\5864\5865\5866\5867\5868\5869\5870\5871\5872\5873\5874\5875\5876\5877\5878\5879\5880\5881\5882\5883\5884\5885\5886\5887\5888\5889\5890\5891\5892\5893\5894\5895\5896\5897\5898\5899\5900\5901\5902\5903\5904\5905\5906\5907\5908\5909\5910\5911\5912\5913\5914\5915\5916\5917\5918\5919\5920\5921\5922\5923\5924\5925\5926\5927\5928\5929\5930\5931\5932\5933\5934\5935\5936\5937\5938\5939\5940\5941\5942\5943\5944\5945\5946\5947\5948\5949\5950\5951\5952\5953\5954\5955\5956\5957\5958\5959\5960\5961\5962\5963\5964\5965\5966\5967\5968\5969\5970\5971\5972\5973\5974\5975\5976\5977\5978\5979\5980\5981\5982\5983\5984\5985\5986\5987\5988\5989\5990\5991\5992\5993\5994\5995\5996\5997\5998\5999\6000\6001\6002\6003\6004\6005\6006\6007\6008\6009\6010\6011\6012\6013\6014\6015\6016\6017\6018\6019\6020\6021\6022\6023\6024\6025\6026\6027\6028\6029\6030\6031\6032\6033\6034\6035\6036\6037\6038\6039\6040\6041\6042\6043\6044\6045\6046\6047\6048\6049\6050\6051\6052\6053\6054\6055\6056\6057\6058\6059\6060\6061\6062\6063\6064\6065\6066\6067\6068\6069\6070\6071\6072\6073\6074\6075\6076\6077\6078\6079\6080\6081\6082\6083\6084\6085\6086\6087\6088\6089\6090\6091\6092\6093\6094\6095\6096\6097\6098\6099\6100\6101\6102\6103\6104\6105\6106\6107\6108\6109\6110\6111\6112\6113\6114\6115\6116\6117\6118\6119\6120\6121\6122\6123\6124\6125\6126\6127\6128\6129\6130\6131\6132\6133\6134\6135\6136\6137\6138\6139\6140\6141\6142\6143\6144\6145\6146\6147\6148\6149\6150\6151\6152\6153\6154\6155\6156\6157\6158\6159\6160\6161\6162\6163\6164\6165\6166\6167\6168\6169\6170\6171\6172\6173\6174\6175\6176\6177\6178\6179\6180\6181\6182\6183\6184\6185\6186\6187\6188\6189\6190\6191\6192\6193\6194\6195\6196\6197\6198\6199\6200\6201\6202\6203\6204\6205\6206\6207\6208\6209\6210\6211\6212\6213\6214\6215\6216\6217\6218\6219\6220\6221\6222\6223\6224\6225\6226\6227\6228\6229\6230\6231\6232\6233\6234\6235\6236\6237\6238\6239\6240\6241\6242\6243\6244\6245\6246\6247\6248\6249\6250\6251\6252\6253\6254\6255\6256\6257\6258\6259\6260\6261\6262\6263\6264\6265\6266\6267\6268\6269\6270\6271\6272\6273\6274\6275\6276\6277\6278\6279\6280\6281\6282\6283\6284\6285\6286\6287\6288\6289\6290\6291\6292\6293\6294\6295\6296\6297\6298\6299\6300\6301\6302\6303\6304\6305\6306\6307\6308\6309\6310\6311\6312\6313\6314\6315\6316\6317\6318\6319\6320\6321\6322\6323\6324\6325\6326\6327\6328\6329\6330\6331\6332\6333\6334\6335\6336\6337\6338\6339\6340\6341\6342\6343\6344\6345\6346\6347\6348\6349\6350\6351\6352\6353\6354\6355\6356\6357\6358\6359\6360\6361\6362\6363\6364\6365\6366\6367\6368\6369\6370\6371\6372\6373\6374\6375\6376\6377\6378\6379\6380\6381\6382\6383\6384\6385\6386\6387\6388\6389\6390\6391\6392\6393\6394\6395\6396\6397\6398\6399\6400\6401\6402\6403\6404\6405\6406\6407\6408\6409\6410\6411\6412\6413\6414\6415\6416\6417\6418\6419\6420\6421\6422\6423\6424\6425\6426\6427\6428\6429\6430\6431\6432\6433\6434\6435\6436\6437\6438\6439\6440\6441\6442\6443\6444\6445\6446\6447\6448\6449\6450\6451\6452\6453\6454\6455\6456\6457\6458\6459\6460\6461\6462\6463\6464\6465\6466\6467\6468\6469\6470\6471\6472\6473\6474\6475\6476\6477\6478\6479\6480\6481\6482\6483\6484\6485\6486\6487\6488\6489\6490\6491\6492\6493\6494\6495\6496\6497\6498\6499\6500\6501\6502\6503\6504\6505\6506\6507\6508\6509\6510\6511\6512\6513\6514\6515\6516\6517\6518\6519\6520\6521\6522\6523\6524\6525\6526\6527\6528\6529\6530\6531\6532\6533\6534\6535\6536\6537\6538\6539\6540\6541\6542\6543\6544\6545\6546\6547\6548\6549\6550\6551\6552\6553\6554\6555\6556\6557\6558\6559\6560\6561\6562\6563\6564\6565\6566\6567\6568\6569\6570\6571\6572\6573\6574\6575\6576\6577\6578\6579\6580\6581\6582\6583\6584\6585\6586\6587\6588\6589\6590\6591\6592\6593\6594\6595\6596\6597\6598\6599\6600\6601\6602\6603\6604\6605\6606\6607\6608\6609\6610\6611\6612\6613\6614\6615\6616\6617\6618\6619\6620\6621\6622\6623\6624\6625\6626\6627\6628\6629\6630\6631\6632\6633\6634\6635\6636\6637\6638\6639\6640\6641\6642\6643\6644\6645\6646\6647\6648\6649\6650\6651\6652\6653\6654\6655\6656\6657\6658\6659\6660\6661\6662\6663\6664\6665\6666\6667\6668\6669\6670\6671\6672\6673\6674\6675\6676\6677\6678\6679\6680\6681\6682\6683\6684\6685\6686\6687\6688\6689\6690\6691\6692\6693\6694\6695\6696\6697\6698\6699\6700\6701\6702\6703\6704\6705\6706\6707\6708\6709\6710\6711\6712\6713\6714\6715\6716\6717\6718\6719\6720\6721\6722\6723\6724\6725\6726\6727\6728\6729\6730\6731\6732\6733\6734\6735\6736\6737\6738\6739\6740\6741\6742\6743\6744\6745\6746\6747\6748\6749\6750\6751\6752\6753\6754\6755\6756\6757\6758\6759\6760\6761\6762\6763\6764\6765\6766\6767\6768\6769\6770\6771\6772\6773\6774\6775\6776\6777\6778\6779\6780\6781\6782\6783\6784\6785\6786\6787\6788\6789\6790\6791\6792\6793\6794\6795\6796\6797\6798\6799\6800\6801\6802\6803\6804\6805\6806\6807\6808\6809\6810\6811\6812\6813\6814\6815\6816\6817\6818\6819\6820\6821\6822\6823\6824\6825\6826\6827\6828\6829\6830\6831\6832\6833\6834\6835\6836\6837\6838\6839\6840\6841\6842\6843\6844\6845\6846\6847\6848\6849\6850\6851\6852\6853\6854\6855\6856\6857\6858\6859\6860\6861\6862\6863\6864\6865\6866\6867\6868\6869\6870\6871\6872\6873\6874\6875\6876\6877\6878\6879\6880\6881\6882\6883\6884\6885\6886\6887\6888\6889\6890\6891\6892\6893\6894\6895\6896\6897\6898\6899\6900\6901\6902\6903\6904\6905\6906\6907\6908\6909\6910\6911\6912\6913\6914\6915\6916\6917\6918\6919\6920\6921\6922\6923\6924\6925\6926\6927\6928\6929\6930\6931\6932\6933\6934\6935\6936\6937\6938\6939\6940\6941\6942\6943\6944\6945\6946\6947\6948\6949\6950\6951\6952\6953\6954\6955\6956\6957\6958\6959\6960\6961\6962\6963\6964\6965\6966\6967\6968\6969\6970\6971\6972\6973\6974\6975\6976\6977\6978\6979\6980\6981\6982\6983\6984\6985\6986\6987\6988\6989\6990\6991\6992\6993\6994\6995\6996\6997\6998\6999\7000\7001\7002\7003\7004\7005\7006\7007\7008\7009\7010\7011\7012\7013\7014\7015\7016\7017\7018\7019\7020\7021\7022\7023\7024\7025\7026\7027\7028\7029\7030\7031\7032\7033\7034\7035\7036\7037\7038\7039\7040\7041\7042\7043\7044\7045\7046\7047\7048\7049\7050\7051\7052\7053\7054\7055\7056\7057\7058\7059\7060\7061\7062\7063\7064\7065\7066\7067\7068\7069\7070\7071\7072\7073\7074\7075\7076\7077\7078\7079\7080\7081\7082\7083\7084\7085\7086\7087\7088\7089\7090\7091\7092\7093\7094\7095\7096\7097\7098\7099\7100\7101\7102\7103\7104\7105\7106\7107\7108\7109\7110\7111\7112\7113\7114\7115\7116\7117\7118\7119\7120\7121\7122\7123\7124\7125\7126\7127\7128\7129\7130\7131\7132\7133\7134\7135\7136\7137\7138\7139\7140\7141\7142\7143\7144\7145\7146\7147\7148\7149\7150\7151\7152\7153\7154\7155\7156\7157\7158\7159\7160\7161\7162\7163\7164\7165\7166\7167\7168\7169\7170\7171\7172\7173\7174\7175\7176\7177\7178\7179\7180\7181\7182\7183\7184\7185\7186\7187\7188\7189\7190\7191\7192\7193\7194\7195\7196\7197\7198\7199\7200\7201\7202\7203\7204\7205\7206\7207\7208\7209\7210\7211\7212\7213\7214\7215\7216\7217\7218\7219\7220\7221\7222\7223\7224\7225\7226\7227\7228\7229\7230\7231\7232\7233\7234\7235\7236\7237\7238\7239\7240\7241\7242\7243\7244\7245\7246\7247\7248\7249\7250\7251\7252\7253\7254\7255\7256\7257\7258\7259\7260\7261\7262\7263\7264\7265\7266\7267\7268\7269\7270\7271\7272\7273\7274\7275\7276\7277\7278\7279\7280\7281\7282\7283\7284\7285\7286\7287\7288\7289\7290\7291\7292\7293\7294\7295\7296\7297\7298\7299\7300\7301\7302\7303\7304\7305\7306\7307\7308\7309\7310\7311\7312\7313\7314\7315\7316\7317\7318\7319\7320\7321\7322\7323\7324\7325\7326\7327\7328\7329\7330\7331\7332\7333\7334\7335\7336\7337\7338\7339\7340\7341\7342\7343\7344\7345\7346\7347\7348\7349\7350\7351\7352\7353\7354\7355\7356\7357\7358\7359\7360\7361\7362\7363\7364\7365\7366\7367\7368\7369\7370\7371\7372\7373\7374\7375\7376\7377\7378\7379\7380\7381\7382\7383\7384\7385\7386\7387\7388\7389\7390\7391\7392\7393\7394\7395\7396\7397\7398\7399\7400\7401\7402\7403\7404\7405\7406\7407\7408\7409\7410\7411\7412\7413\7414\7415\7416\7417\7418\7419\7420\7421\7422\7423\7424\7425\7426\7427\7428\7429\7430\7431\7432\7433\7434\7435\7436\7437\7438\7439\7440\7441\7442\7443\7444\7445\7446\7447\7448\7449\7450\7451\7452\7453\7454\7455\7456\7457\7458\7459\7460\7461\7462\7463\7464\7465\7466\7467\7468\7469\7470\7471\7472\7473\7474\7475\7476\7477\7478\7479\7480\7481\7482\7483\7484\7485\7486\7487\7488\7489\7490\7491\7492\7493\7494\7495\7496\7497\7498\7499\7500\7501\7502\7503\7504\7505\7506\7507\7508\7509\7510\7511\7512\7513\7514\7515\7516\7517\7518\7519\7520\7521\7522\7523\7524\7525\7526\7527\7528\7529\7530\7531\7532\7533\7534\7535\7536\7537\7538\7539\7540\7541\7542\7543\7544\7545\7546\7547\7548\7549\7550\7551\7552\7553\7554\7555\7556\7557\7558\7559\7560\7561\7562\7563\7564\7565\7566\7567\7568\7569\7570\7571\7572\7573\7574\7575\7576\7577\7578\7579\7580\7581\7582\7583\7584\7585\7586\7587\7588\7589\7590\7591\7592\7593\7594\7595\7596\7597\7598\7599\7600\7601\7602\7603\7604\7605\7606\7607\7608\7609\7610\7611\7612\7613\7614\7615\7616\7617\7618\7619\7620\7621\7622\7623\7624\7625\7626\7627\7628\7629\7630\7631\7632\7633\7634\7635\7636\7637\7638\7639\7640\7641\7642\7643\7644\7645\7646\7647\7648\7649\7650\7651\7652\7653\7654\7655\7656\7657\7658\7659\7660\7661\7662\7663\7664\7665\7666\7667\7668\7669\7670\7671\7672\7673\7674\7675\7676\7677\7678\7679\7680\7681\7682\7683\7684\7685\7686\7687\7688\7689\7690\7691\7692\7693\7694\7695\7696\7697\7698\7699\7700\7701\7702\7703\7704\7705\7706\7707\7708\7709\7710\7711\7712\7713\7714\7715\7716\7717\7718\7719\7720\7721\7722\7723\7724\7725\7726\7727\7728\7729\7730\7731\7732\7733\7734\7735\7736\7737\7738\7739\7740\7741\7742\7743\7744\7745\7746\7747\7748\7749\7750\7751\7752\7753\7754\7755\7756\7757\7758\7759\7760\7761\7762\7763\7764\7765\7766\7767\7768\7769\7770\7771\7772\7773\7774\7775\7776\7777\7778\7779\7780\7781\7782\7783\7784\7785\7786\7787\7788\7789\7790\7791\7792\7793\7794\7795\7796\7797\7798\7799\7800\7801\7802\7803\7804\7805\7806\7807\7808\7809\7810\7811\7812\7813\7814\7815\7816\7817\7818\7819\7820\7821\7822\7823\7824\7825\7826\7827\7828\7829\7830\7831\7832\7833\7834\7835\7836\7837\7838\7839\7840\7841\7842\7843\7844\7845\7846\7847\7848\7849\7850\7851\7852\7853\7854\7855\7856\7857\7858\7859\7860\7861\7862\7863\7864\7865\7866\7867\7868\7869\7870\7871\7872\7873\7874\7875\7876\7877\7878\7879\7880\7881\7882\7883\7884\7885\7886\7887\7888\7889\7890\7891\7892\7893\7894\7895\7896\7897\7898\7899\7900\7901\7902\7903\7904\7905\7906\7907\7908\7909\7910\7911\7912\7913\7914\7915\7916\7917\7918\7919\7920\7921\7922\7923\7924\7925\7926\7927\7928\7929\7930\7931\7932\7933\7934\7935\7936\7937\7938\7939\7940\7941\7942\7943\7944\7945\7946\7947\7948\7949\7950\7951\7952\7953\7954\7955\7956\7957\7958\7959\7960\7961\7962\7963\7964\7965\7966\7967\7968\7969\7970\7971\7972\7973\7974\7975\7976\7977\7978\7979\7980\7981\7982\7983\7984\7985\7986\7987\7988\7989\7990\7991\7992\7993\7994\7995\7996\7997\7998\7999\8000\8001\8002\8003\8004\8005\8006\8007\8008\8009\8010\8011\8012\8013\8014\8015\8016\8017\8018\8019\8020\8021\8022\8023\8024\8025\8026\8027\8028\8029\8030\8031\8032\8033\8034\8035\8036\8037\8038\8039\8040\8041\8042\8043\8044\8045\8046\8047\8048\8049\8050\8051\8052\8053\8054\8055\8056\8057\8058\8059\8060\8061\8062\8063\8064\8065\8066\8067\8068\8069\8070\8071\8072\8073\8074\8075\8076\8077\8078\8079\8080\8081\8082\8083\8084\8085\8086\8087\8088\8089\8090\8091\8092\8093\8094\8095\8096\8097\8098\8099\8100\8101\8102\8103\8104\8105\8106\8107\8108\8109\8110\8111\8112\8113\8114\8115\8116\8117\8118\8119\8120\8121\8122\8123\8124\8125\8126\8127\8128\8129\8130\8131\8132\8133\8134\8135\8136\8137\8138\8139\8140\8141\8142\8143\8144\8145\8146\8147\8148\8149\8150\8151\8152\8153\8154\8155\8156\8157\8158\8159\8160\8161\8162\8163\8164\8165\8166\8167\8168\8169\8170\8171\8172\8173\8174\8175\8176\8177\8178\8179\8180\8181\8182\8183\8184\8185\8186\8187\8188\8189\8190\8191\8192\8193\8194\8195\8196\8197\8198\8199\8200\8201\8202\8203\8204\8205\8206\8207\8208\8209\8210\8211\8212\8213\8214\8215\8216\8217\8218\8219\8220\8221\8222\8223\8224\8225\8226\8227\8228\8229\8230\8231\8232\8233\8234\8235\8236\8237\8238\8239\8240\8241\8242\8243\8244\8245\8246\8247\8248\8249\8250\8251\8252\8253\8254\8255\8256\8257\8258\8259\8260\8261\8262\8263\8264\8265\8266\8267\8268\8269\8270\8271\8272\8273\8274\8275\8276\8277\8278\8279\8280\8281\8282\8283\8284\8285\8286\8287\8288\8289\8290\8291\8292\8293\8294\8295\8296\8297\8298\8299\8300\8301\8302\8303\8304\8305\8306\8307\8308\8309\8310\8311\8312\8313\8314\8315\8316\8317\8318\8319\8320\8321\8322\8323\8324\8325\8326\8327\8328\8329\8330\8331\8332\8333\8334\8335\8336\8337\8338\8339\8340\8341\8342\8343\8344\8345\8346\8347\8348\8349\8350\8351\8352\8353\8354\8355\8356\8357\8358\8359\8360\8361\8362\8363\8364\8365\8366\8367\8368\8369\8370\8371\8372\8373\8374\8375\8376\8377\8378\8379\8380\8381\8382\8383\8384\8385\8386\8387\8388\8389\8390\8391\8392\8393\8394\8395\8396\8397\8398\8399\8400\8401\8402\8403\8404\8405\8406\8407\8408\8409\8410\8411\8412\8413\8414\8415\8416\8417\8418\8419\8420\8421\8422\8423\8424\8425\8426\8427\8428\8429\8430\8431\8432\8433\8434\8435\8436\8437\8438\8439\8440\8441\8442\8443\8444\8445\8446\8447\8448\8449\8450\8451\8452\8453\8454\8455\8456\8457\8458\8459\8460\8461\8462\8463\8464\8465\8466\8467\8468\8469\8470\8471\8472\8473\8474\8475\8476\8477\8478\8479\8480\8481\8482\8483\8484\8485\8486\8487\8488\8489\8490\8491\8492\8493\8494\8495\8496\8497\8498\8499\8500\8501\8502\8503\8504\8505\8506\8507\8508\8509\8510\8511\8512\8513\8514\8515\8516\8517\8518\8519\8520\8521\8522\8523\8524\8525\8526\8527\8528\8529\8530\8531\8532\8533\8534\8535\8536\8537\8538\8539\8540\8541\8542\8543\8544\8545\8546\8547\8548\8549\8550\8551\8552\8553\8554\8555\8556\8557\8558\8559\8560\8561\8562\8563\8564\8565\8566\8567\8568\8569\8570\8571\8572\8573\8574\8575\8576\8577\8578\8579\8580\8581\8582\8583\8584\8585\8586\8587\8588\8589\8590\8591\8592\8593\8594\8595\8596\8597\8598\8599\8600\8601\8602\8603\8604\8605\8606\8607\8608\8609\8610\8611\8612\8613\8614\8615\8616\8617\8618\8619\8620\8621\8622\8623\8624\8625\8626\8627\8628\8629\8630\8631\8632\8633\8634\8635\8636\8637\8638\8639\8640\8641\8642\8643\8644\8645\8646\8647\8648\8649\8650\8651\8652\8653\8654\8655\8656\8657\8658\8659\8660\8661\8662\8663\8664\8665\8666\8667\8668\8669\8670\8671\8672\8673\8674\8675\8676\8677\8678\8679\8680\8681\8682\8683\8684\8685\8686\8687\8688\8689\8690\8691\8692\8693\8694\8695\8696\8697\8698\8699\8700\8701\8702\8703\8704\8705\8706\8707\8708\8709\8710\8711\8712\8713\8714\8715\8716\8717\8718\8719\8720\8721\8722\8723\8724\8725\8726\8727\8728\8729\8730\8731\8732\8733\8734\8735\8736\8737\8738\8739\8740\8741\8742\8743\8744\8745\8746\8747\8748\8749\8750\8751\8752\8753\8754\8755\8756\8757\8758\8759\8760\8761\8762\8763\8764\8765\8766\8767\8768\8769\8770\8771\8772\8773\8774\8775\8776\8777\8778\8779\8780\8781\8782\8783\8784\8785\8786\8787\8788\8789\8790\8791\8792\8793\8794\8795\8796\8797\8798\8799\8800\8801\8802\8803\8804\8805\8806\8807\8808\8809\8810\8811\8812\8813\8814\8815\8816\8817\8818\8819\8820\8821\8822\8823\8824\8825\8826\8827\8828\8829\8830\8831\8832\8833\8834\8835\8836\8837\8838\8839\8840\8841\8842\8843\8844\8845\8846\8847\8848\8849\8850\8851\8852\8853\8854\8855\8856\8857\8858\8859\8860\8861\8862\8863\8864\8865\8866\8867\8868\8869\8870\8871\8872\8873\8874\8875\8876\8877\8878\8879\8880\8881\8882\8883\8884\8885\8886\8887\8888\8889\8890\8891\8892\8893\8894\8895\8896\8897\8898\8899\8900\8901\8902\8903\8904\8905\8906\8907\8908\8909\8910\8911\8912\8913\8914\8915\8916\8917\8918\8919\8920\8921\8922\8923\8924\8925\8926\8927\8928\8929\8930\8931\8932\8933\8934\8935\8936\8937\8938\8939\8940\8941\8942\8943\8944\8945\8946\8947\8948\8949\8950\8951\8952\8953\8954\8955\8956\8957\8958\8959\8960\8961\8962\8963\8964\8965\8966\8967\8968\8969\8970\8971\8972\8973\8974\8975\8976\8977\8978\8979\8980\8981\8982\8983\8984\8985\8986\8987\8988\8989\8990\8991\8992\8993\8994\8995\8996\8997\8998\8999\9000\9001\9002\9003\9004\9005\9006\9007\9008\9009\9010\9011\9012\9013\9014\9015\9016\9017\9018\9019\9020\9021\9022\9023\9024\9025\9026\9027\9028\9029\9030\9031\9032\9033\9034\9035\9036\9037\9038\9039\9040\9041\9042\9043\9044\9045\9046\9047\9048\9049\9050\9051\9052\9053\9054\9055\9056\9057\9058\9059\9060\9061\9062\9063\9064\9065\9066\9067\9068\9069\9070\9071\9072\9073\9074\9075\9076\9077\9078\9079\9080\9081\9082\9083\9084\9085\9086\9087\9088\9089\9090\9091\9092\9093\9094\9095\9096\9097\9098\9099\9100\9101\9102\9103\9104\9105\9106\9107\9108\9109\9110\9111\9112\9113\9114\9115\9116\9117\9118\9119\9120\9121\9122\9123\9124\9125\9126\9127\9128\9129\9130\9131\9132\9133\9134\9135\9136\9137\9138\9139\9140\9141\9142\9143\9144\9145\9146\9147\9148\9149\9150\9151\9152\9153\9154\9155\9156\9157\9158\9159\9160\9161\9162\9163\9164\9165\9166\9167\9168\9169\9170\9171\9172\9173\9174\9175\9176\9177\9178\9179\9180\9181\9182\9183\9184\9185\9186\9187\9188\9189\9190\9191\9192\9193\9194\9195\9196\9197\9198\9199\9200\9201\9202\9203\9204\9205\9206\9207\9208\9209\9210\9211\9212\9213\9214\9215\9216\9217\9218\9219\9220\9221\9222\9223\9224\9225\9226\9227\9228\9229\9230\9231\9232\9233\9234\9235\9236\9237\9238\9239\9240\9241\9242\9243\9244\9245\9246\9247\9248\9249\9250\9251\9252\9253\9254\9255\9256\9257\9258\9259\9260\9261\9262\9263\9264\9265\9266\9267\9268\9269\9270\9271\9272\9273\9274\9275\9276\9277\9278\9279\9280\9281\9282\9283\9284\9285\9286\9287\9288\9289\9290\9291\9292\9293\9294\9295\9296\9297\9298\9299\9300\9301\9302\9303\9304\9305\9306\9307\9308\9309\9310\9311\9312\9313\9314\9315\9316\9317\9318\9319\9320\9321\9322\9323\9324\9325\9326\9327\9328\9329\9330\9331\9332\9333\9334\9335\9336\9337\9338\9339\9340\9341\9342\9343\9344\9345\9346\9347\9348\9349\9350\9351\9352\9353\9354\9355\9356\9357\9358\9359\9360\9361\9362\9363\9364\9365\9366\9367\9368\9369\9370\9371\9372\9373\9374\9375\9376\9377\9378\9379\9380\9381\9382\9383\9384\9385\9386\9387\9388\9389\9390\9391\9392\9393\9394\9395\9396\9397\9398\9399\9400\9401\9402\9403\9404\9405\9406\9407\9408\9409\9410\9411\9412\9413\9414\9415\9416\9417\9418\9419\9420\9421\9422\9423\9424\9425\9426\9427\9428\9429\9430\9431\9432\9433\9434\9435\9436\9437\9438\9439\9440\9441\9442\9443\9444\9445\9446\9447\9448\9449\9450\9451\9452\9453\9454\9455\9456\9457\9458\9459\9460\9461\9462\9463\9464\9465\9466\9467\9468\9469\9470\9471\9472\9473\9474\9475\9476\9477\9478\9479\9480\9481\9482\9483\9484\9485\9486\9487\9488\9489\9490\9491\9492\9493\9494\9495\9496\9497\9498\9499\9500\9501\9502\9503\9504\9505\9506\9507\9508\9509\9510\9511\9512\9513\9514\9515\9516\9517\9518\9519\9520\9521\9522\9523\9524\9525\9526\9527\9528\9529\9530\9531\9532\9533\9534\9535\9536\9537\9538\9539\9540\9541\9542\9543\9544\9545\9546\9547\9548\9549\9550\9551\9552\9553\9554\9555\9556\9557\9558\9559\9560\9561\9562\9563\9564\9565\9566\9567\9568\9569\9570\9571\9572\9573\9574\9575\9576\9577\9578\9579\9580\9581\9582\9583\9584\9585\9586\9587\9588\9589\9590\9591\9592\9593\9594\9595\9596\9597\9598\9599\9600\9601\9602\9603\9604\9605\9606\9607\9608\9609\9610\9611\9612\9613\9614\9615\9616\9617\9618\9619\9620\9621\9622\9623\9624\9625\9626\9627\9628\9629\9630\9631\9632\9633\9634\9635\9636\9637\9638\9639\9640\9641\9642\9643\9644\9645\9646\9647\9648\9649\9650\9651\9652\9653\9654\9655\9656\9657\9658\9659\9660\9661\9662\9663\9664\9665\9666\9667\9668\9669\9670\9671\9672\9673\9674\9675\9676\9677\9678\9679\9680\9681\9682\9683\9684\9685\9686\9687\9688\9689\9690\9691\9692\9693\9694\9695\9696\9697\9698\9699\9700\9701\9702\9703\9704\9705\9706\9707\9708\9709\9710\9711\9712\9713\9714\9715\9716\9717\9718\9719\9720\9721\9722\9723\9724\9725\9726\9727\9728\9729\9730\9731\9732\9733\9734\9735\9736\9737\9738\9739\9740\9741\9742\9743\9744\9745\9746\9747\9748\9749\9750\9751\9752\9753\9754\9755\9756\9757\9758\9759\9760\9761\9762\9763\9764\9765\9766\9767\9768\9769\9770\9771\9772\9773\9774\9775\9776\9777\9778\9779\9780\9781\9782\9783\9784\9785\9786\9787\9788\9789\9790\9791\9792\9793\9794\9795\9796\9797\9798\9799\9800\9801\9802\9803\9804\9805\9806\9807\9808\9809\9810\9811\9812\9813\9814\9815\9816\9817\9818\9819\9820\9821\9822\9823\9824\9825\9826\9827\9828\9829\9830\9831\9832\9833\9834\9835\9836\9837\9838\9839\9840\9841\9842\9843\9844\9845\9846\9847\9848\9849\9850\9851\9852\9853\9854\9855\9856\9857\9858\9859\9860\9861\9862\9863\9864\9865\9866\9867\9868\9869\9870\9871\9872\9873\9874\9875\9876\9877\9878\9879\9880\9881\9882\9883\9884\9885\9886\9887\9888\9889\9890\9891\9892\9893\9894\9895\9896\9897\9898\9899\9900\9901\9902\9903\9904\9905\9906\9907\9908\9909\9910\9911\9912\9913\9914\9915\9916\9917\9918\9919\9920\9921\9922\9923\9924\9925\9926\9927\9928\9929\9930\9931\9932\9933\9934\9935\9936\9937\9938\9939\9940\9941\9942\9943\9944\9945\9946\9947\9948\9949\9950\9951\9952\9953\9954\9955\9956\9957\9958\9959\9960\9961\9962\9963\9964\9965\9966\9967\9968\9969\9970\9971\9972\9973\9974\9975\9976\9977\9978\9979\9980\9981\9982\9983\9984\9985\9986\9987\9988\9989\9990\9991\9992\9993\9994\9995\9996\9997\9998\9999\10000\10001\10002\10003\10004\10005\10006\10007\10008\10009\10010\10011\10012\10013\10014\10015\10016\10017\10018\10019\10020\10021\10022\10023\10024\10025\10026\10027\10028\10029\10030\10031\10032\10033\10034\10035\10036\10037\10038\10039\10040\10041\10042\10043\10044\10045\10046\10047\10048\10049\10050\10051\10052\10053\10054\10055\10056\10057\10058\10059\10060\10061\10062\10063\10064\10065\10066\10067\10068\10069\10070\10071\10072\10073\10074\10075\10076\10077\10078\10079\10080\10081\10082\10083\10084\10085\10086\10087\10088\10089\10090\10091\10092\10093\10094\10095\10096\10097\10098\10099\10100\10101\10102\10103\10104\10105\10106\10107\10108\10109\10110\10111\10112\10113\10114\10115\10116\10117\10118\10119\10120\10121\10122\10123\10124\10125\10126\10127\10128\10129\10130\10131\10132\10133\10134\10135\10136\10137\10138\10139\10140\10141\10142\10143\10144\10145\10146\10147\10148\10149\10150\10151\10152\10153\10154\10155\10156\10157\10158\10159\10160\10161\10162\10163\10164\10165\10166\10167\10168\10169\10170\10171\10172\10173\10174\10175\10176\10177\10178\10179\10180\10181\10182\10183\10184\10185\10186\10187\10188\10189\10190\10191\10192\10193\10194\10195\10196\10197\10198\10199\10200\10201\10202\10203\10204\10205\10206\10207\10208\10209\10210\10211\10212\10213\10214\10215\10216\10217\10218\10219\10220\10221\10222\10223\10224\10225\10226\10227\10228\10229\10230\10231\10232\10233\10234\10235\10236\10237\10238\10239\10240\10241\10242\10243\10244\10245\10246\10247\10248\10249\10250\10251\10252\10253\10254\10255\10256\10257\10258\10259\10260\10261\10262\10263\10264\10265\10266\10267\10268\10269\10270\10271\10272\10273\10274\10275\10276\10277\10278\10279\10280\10281\10282\10283\10284\10285\10286\10287\10288\10289\10290\10291\10292\10293\10294\10295\10296\10297\10298\10299\10300\10301\10302\10303\10304\10305\10306\10307\10308\10309\10310\10311\10312\10313\10314\10315\10316\10317\10318\10319\10320\10321\10322\10323\10324\10325\10326\10327\10328\10329\10330\10331\10332\10333\10334\10335\10336\10337\10338\10339\10340\10341\10342\10343\10344\10345\10346\10347\10348\10349\10350\10351\10352\10353\10354\10355\10356\10357\10358\10359\10360\10361\10362\10363\10364\10365\10366\10367\10368\10369\10370\10371\10372\10373\10374\10375\10376\10377\10378\10379\10380\10381\10382\10383\10384\10385\10386\10387\10388\10389\10390\10391\10392\10393\10394\10395\10396\10397\10398\10399\10400\10401\10402\10403\10404\10405\10406\10407\10408\10409\10410\10411\10412\10413\10414\10415\10416\10417\10418\10419\10420\10421\10422\10423\10424\10425\10426\10427\10428\10429\10430\10431\10432\10433\10434\10435\10436\10437\10438\10439\10440\10441\10442\10443\10444\10445\10446\10447\10448\10449\10450\10451\10452\10453\10454\10455\10456\10457\10458\10459\10460\10461\10462\10463\10464\10465\10466\10467\10468\10469\10470\10471\10472\10473\10474\10475\10476\10477\10478\10479\10480\10481\10482\10483\10484\10485\10486\10487\10488\10489\10490\10491\10492\10493\10494\10495\10496\10497\10498\10499\10500\10501\10502\10503\10504\10505\10506\10507\10508\10509\10510\10511\10512\10513\10514\10515\10516\10517\10518\10519\10520\10521\10522\10523\10524\10525\10526\10527\10528\10529\10530\10531\10532\10533\10534\10535\10536\10537\10538\10539\10540\10541\10542\10543\10544\10545\10546\10547\10548\10549\10550\10551\10552\10553\10554\10555\10556\10557\10558\10559\10560\10561\10562\10563\10564\10565\10566\10567\10568\10569\10570\10571\10572\10573\10574\10575\10576\10577\10578\10579\10580\10581\10582\10583\10584\10585\10586\10587\10588\10589\10590\10591\10592\10593\10594\10595\10596\10597\10598\10599\10600\10601\10602\10603\10604\10605\10606\10607\10608\10609\10610\10611\10612\10613\10614\10615\10616\10617\10618\10619\10620\10621\10622\10623\10624\10625\10626\10627\10628\10629\10630\10631\10632\10633\10634\10635\10636\10637\10638\10639\10640\10641\10642\10643\10644\10645\10646\10647\10648\10649\10650\10651\10652\10653\10654\10655\10656\10657\10658\10659\10660\10661\10662\10663\10664\10665\10666\10667\10668\10669\10670\10671\10672\10673\10674\10675\10676\10677\10678\10679\10680\10681\10682\10683\10684\10685\10686\10687\10688\10689\10690\10691\10692\10693\10694\10695\10696\10697\10698\10699\10700\10701\10702\10703\10704\10705\10706\10707\10708\10709\10710\10711\10712\10713\10714\10715\10716\10717\10718\10719\10720\10721\10722\10723\10724\10725\10726\10727\10728\10729\10730\10731\10732\10733\10734\10735\10736\10737\10738\10739\10740\10741\10742\10743\10744\10745\10746\10747\10748\10749\10750\10751\10752\10753\10754\10755\10756\10757\10758\10759\10760\10761\10762\10763\10764\10765\10766\10767\10768\10769\10770\10771\10772\10773\10774\10775\10776\10777\10778\10779\10780\10781\10782\10783\10784\10785\10786\10787\10788\10789\10790\10791\10792\10793\10794\10795\10796\10797\10798\10799\10800\10801\10802\10803\10804\10805\10806\10807\10808\10809\10810\10811\10812\10813\10814\10815\10816\10817\10818\10819\10820\10821\10822\10823\10824\10825\10826\10827\10828\10829\10830\10831\10832\10833\10834\10835\10836\10837\10838\10839\10840\10841\10842\10843\10844\10845\10846\10847\10848\10849\10850\10851\10852\10853\10854\10855\10856\10857\10858\10859\10860\10861\10862\10863\10864\10865\10866\10867\10868\10869\10870\10871\10872\10873\10874\10875\10876\10877\10878\10879\10880\10881\10882\10883\10884\10885\10886\10887\10888\10889\10890\10891\10892\10893\10894\10895\10896\10897\10898\10899\10900\10901\10902\10903\10904\10905\10906\10907\10908\10909\10910\10911\10912\10913\10914\10915\10916\10917\10918\10919\10920\10921\10922\10923\10924\10925\10926\10927\10928\10929\10930\10931\10932\10933\10934\10935\10936\10937\10938\10939\10940\10941\10942\10943\10944\10945\10946\10947\10948\10949\10950\10951\10952\10953\10954\10955\10956\10957\10958\10959\10960\10961\10962\10963\10964\10965\10966\10967\10968\10969\10970\10971\10972\10973\10974\10975\10976\10977\10978\10979\10980\10981\10982\10983\10984\10985\10986\10987\10988\10989\10990\10991\10992\10993\10994\10995\10996\10997\10998\10999\11000\11001\11002\11003\11004\11005\11006\11007\11008\11009\11010\11011\11012\11013\11014\11015\11016\11017\11018\11019\11020\11021\11022\11023\11024\11025\11026\11027\11028\11029\11030\11031\11032\11033\11034\11035\11036\11037\11038\11039\11040\11041\11042\11043\11044\11045\11046\11047\11048\11049\11050\11051\11052\11053\11054\11055\11056\11057\11058\11059\11060\11061\11062\11063\11064\11065\11066\11067\11068\11069\11070\11071\11072\11073\11074\11075\11076\11077\11078\11079\11080\11081\11082\11083\11084\11085\11086\11087\11088\11089\11090\11091\11092\11093\11094\11095\11096\11097\11098\11099\11100\11101\11102\11103\11104\11105\11106\11107\11108\11109\11110\11111\11112\11113\11114\11115\11116\11117\11118\11119\11120\11121\11122\11123\11124\11125\11126\11127\11128\11129\11130\11131\11132\11133\11134\11135\11136\11137\11138\11139\11140\11141\11142\11143\11144\11145\11146\11147\11148\11149\11150\11151\11152\11153\11154\11155\11156\11157\11158\11159\11160\11161\11162\11163\11164\11165\11166\11167\11168\11169\11170\11171\11172\11173\11174\11175\11176\11177\11178\11179\11180\11181\11182\11183\11184\11185\11186\11187\11188\11189\11190\11191\11192\11193\11194\11195\11196\11197\11198\11199\11200\11201\11202\11203\11204\11205\11206\11207\11208\11209\11210\11211\11212\11213\11214\11215\11216\11217\11218\11219\11220\11221\11222\11223\11224\11225\11226\11227\11228\11229\11230\11231\11232\11233\11234\11235\11236\11237\11238\11239\11240\11241\11242\11243\11244\11245\11246\11247\11248\11249\11250\11251\11252\11253\11254\11255\11256\11257\11258\11259\11260\11261\11262\11263\11264\11265\11266\11267\11268\11269\11270\11271\11272\11273\11274\11275\11276\11277\11278\11279\11280\11281\11282\11283\11284\11285\11286\11287\11288\11289\11290\11291\11292\11293\11294\11295\11296\11297\11298\11299\11300\11301\11302\11303\11304\11305\11306\11307\11308\11309\11310\11311\11312\11313\11314\11315\11316\11317\11318\11319\11320\11321\11322\11323\11324\11325\11326\11327\11328\11329\11330\11331\11332\11333\11334\11335\11336\11337\11338\11339\11340\11341\11342\11343\11344\11345\11346\11347\11348\11349\11350\11351\11352\11353\11354\11355\11356\11357\11358\11359\11360\11361\11362\11363\11364\11365\11366\11367\11368\11369\11370\11371\11372\11373\11374\11375\11376\11377\11378\11379\11380\11381\11382\11383\11384\11385\11386\11387\11388\11389\11390\11391\11392\11393\11394\11395\11396\11397\11398\11399\11400\11401\11402\11403\11404\11405\11406\11407\11408\11409\11410\11411\11412\11413\11414\11415\11416\11417\11418\11419\11420\11421\11422\11423\11424\11425\11426\11427\11428\11429\11430\11431\11432\11433\11434\11435\11436\11437\11438\11439\11440\11441\11442\11443\11444\11445\11446\11447\11448\11449\11450\11451\11452\11453\11454\11455\11456\11457\11458\11459\11460\11461\11462\11463\11464\11465\11466\11467\11468\11469\11470\11471\11472\11473\11474\11475\11476\11477\11478\11479\11480\11481\11482\11483\11484\11485\11486\11487\11488\11489\11490\11491\11492\11493\11494\11495\11496\11497\11498\11499\11500\11501\11502\11503\11504\11505\11506\11507\11508\11509\11510\11511\11512\11513\11514\11515\11516\11517\11518\11519\11520\11521\11522\11523\11524\11525\11526\11527\11528\11529\11530\11531\11532\11533\11534\11535\11536\11537\11538\11539\11540\11541\11542\11543\11544\11545\11546\11547\11548\11549\11550\11551\11552\11553\11554\11555\11556\11557\11558\11559\11560\11561\11562\11563\11564\11565\11566\11567\11568\11569\11570\11571\11572\11573\11574\11575\11576\11577\11578\11579\11580\11581\11582\11583\11584\11585\11586\11587\11588\11589\11590\11591\11592\11593\11594\11595\11596\11597\11598\11599\11600\11601\11602\11603\11604\11605\11606\11607\11608\11609\11610\11611\11612\11613\11614\11615\11616\11617\11618\11619\11620\11621\11622\11623\11624\11625\11626\11627\11628\11629\11630\11631\11632\11633\11634\11635\11636\11637\11638\11639\11640\11641\11642\11643\11644\11645\11646\11647\11648\11649\11650\11651\11652\11653\11654\11655\11656\11657\11658\11659\11660\11661\11662\11663\11664\11665\11666\11667\11668\11669\11670\11671\11672\11673\11674\11675\11676\11677\11678\11679\11680\11681\11682\11683\11684\11685\11686\11687\11688\11689\11690\11691\11692\11693\11694\11695\11696\11697\11698\11699\11700\11701\11702\11703\11704\11705\11706\11707\11708\11709\11710\11711\11712\11713\11714\11715\11716\11717\11718\11719\11720\11721\11722\11723\11724\11725\11726\11727\11728\11729\11730\11731\11732\11733\11734\11735\11736\11737\11738\11739\11740\11741\11742\11743\11744\11745\11746\11747\11748\11749\11750\11751\11752\11753\11754\11755\11756\11757\11758\11759\11760\11761\11762\11763\11764\11765\11766\11767\11768\11769\11770\11771\11772\11773\11774\11775\11776\11777\11778\11779\11780\11781\11782\11783\11784\11785\11786\11787\11788\11789\11790\11791\11792\11793\11794\11795\11796\11797\11798\11799\11800\11801\11802\11803\11804\11805\11806\11807\11808\11809\11810\11811\11812\11813\11814\11815\11816\11817\11818\11819\11820\11821\11822\11823\11824\11825\11826\11827\11828\11829\11830\11831\11832\11833\11834\11835\11836\11837\11838\11839\11840\11841\11842\11843\11844\11845\11846\11847\11848\11849\11850\11851\11852\11853\11854\11855\11856\11857\11858\11859\11860\11861\11862\11863\11864\11865\11866\11867\11868\11869\11870\11871\11872\11873\11874\11875\11876\11877\11878\11879\11880\11881\11882\11883\11884\11885\11886\11887\11888\11889\11890\11891\11892\11893\11894\11895\11896\11897\11898\11899\11900\11901\11902\11903\11904\11905\11906\11907\11908\11909\11910\11911\11912\11913\11914\11915\11916\11917\11918\11919\11920\11921\11922\11923\11924\11925\11926\11927\11928\11929\11930\11931\11932\11933\11934\11935\11936\11937\11938\11939\11940\11941\11942\11943\11944\11945\11946\11947\11948\11949\11950\11951\11952\11953\11954\11955\11956\11957\11958\11959\11960\11961\11962\11963\11964\11965\11966\11967\11968\11969\11970\11971\11972\11973\11974\11975\11976\11977\11978\11979\11980\11981\11982\11983\11984\11985\11986\11987\11988\11989\11990\11991\11992\11993\11994\11995\11996\11997\11998\11999\12000\12001\12002\12003\12004\12005\12006\12007\12008\12009\12010\12011\12012\12013\12014\12015\12016\12017\12018\12019\12020\12021\12022\12023\12024\12025\12026\12027\12028\12029\12030\12031\12032\12033\12034\12035\12036\12037\12038\12039\12040\12041\12042\12043\12044\12045\12046\12047\12048\12049\12050\12051\12052\12053\12054\12055\12056\12057\12058\12059\12060\12061\12062\12063\12064\12065\12066\12067\12068\12069\12070\12071\12072\12073\12074\12075\12076\12077\12078\12079\12080\12081\12082\12083\12084\12085\12086\12087\12088\12089\12090\12091\12092\12093\12094\12095\12096\12097\12098\12099\12100\12101\12102\12103\12104\12105\12106\12107\12108\12109\12110\12111\12112\12113\12114\12115\12116\12117\12118\12119\12120\12121\12122\12123\12124\12125\12126\12127\12128\12129\12130\12131\12132\12133\12134\12135\12136\12137\12138\12139\12140\12141\12142\12143\12144\12145\12146\12147\12148\12149\12150\12151\12152\12153\12154\12155\12156\12157\12158\12159\12160\12161\12162\12163\12164\12165\12166\12167\12168\12169\12170\12171\12172\12173\12174\12175\12176\12177\12178\12179\12180\12181\12182\12183\12184\12185\12186\12187\12188\12189\12190\12191\12192\12193\12194\12195\12196\12197\12198\12199\12200\12201\12202\12203\12204\12205\12206\12207\12208\12209\12210\12211\12212\12213\12214\12215\12216\12217\12218\12219\12220\12221\12222\12223\12224\12225\12226\12227\12228\12229\12230\12231\12232\12233\12234\12235\12236\12237\12238\12239\12240\12241\12242\12243\12244\12245\12246\12247\12248\12249\12250\12251\12252\12253\12254\12255\12256\12257\12258\12259\12260\12261\12262\12263\12264\12265\12266\12267\12268\12269\12270\12271\12272\12273\12274\12275\12276\12277\12278\12279\12280\12281\12282\12283\12284\12285\12286\12287\12288\12289\12290\12291\12292\12293\12294\12295\12296\12297\12298\12299\12300\12301\12302\12303\12304\12305\12306\12307\12308\12309\12310\12311\12312\12313\12314\12315\12316\12317\12318\12319\12320\12321\12322\12323\12324\12325\12326\12327\12328\12329\12330\12331\12332\12333\12334\12335\12336\12337\12338\12339\12340\12341\12342\12343\12344\12345\12346\12347\12348\12349\12350\12351\12352\12353\12354\12355\12356\12357\12358\12359\12360\12361\12362\12363\12364\12365\12366\12367\12368\12369\12370\12371\12372\12373\12374\12375\12376\12377\12378\12379\12380\12381\12382\12383\12384\12385\12386\12387\12388\12389\12390\12391\12392\12393\12394\12395\12396\12397\12398\12399\12400\12401\12402\12403\12404\12405\12406\12407\12408\12409\12410\12411\12412\12413\12414\12415\12416\12417\12418\12419\12420\12421\12422\12423\12424\12425\12426\12427\12428\12429\12430\12431\12432\12433\12434\12435\12436\12437\12438\12439\12440\12441\12442\12443\12444\12445\12446\12447\12448\12449\12450\12451\12452\12453\12454\12455\12456\12457\12458\12459\12460\12461\12462\12463\12464\12465\12466\12467\12468\12469\12470\12471\12472\12473\12474\12475\12476\12477\12478\12479\12480\12481\12482\12483\12484\12485\12486\12487\12488\12489\12490\12491\12492\12493\12494\12495\12496\12497\12498\12499\12500\12501\12502\12503\12504\12505\12506\12507\12508\12509\12510\12511\12512\12513\12514\12515\12516\12517\12518\12519\12520\12521\12522\12523\12524\12525\12526\12527\12528\12529\12530\12531\12532\12533\12534\12535\12536\12537\12538\12539\12540\12541\12542\12543\12544\12545\12546\12547\12548\12549\12550\12551\12552\12553\12554\12555\12556\12557\12558\12559\12560\12561\12562\12563\12564\12565\12566\12567\12568\12569\12570\12571\12572\12573\12574\12575\12576\12577\12578\12579\12580\12581\12582\12583\12584\12585\12586\12587\12588\12589\12590\12591\12592\12593\12594\12595\12596\12597\12598\12599\12600\12601\12602\12603\12604\12605\12606\12607\12608\12609\12610\12611\12612\12613\12614\12615\12616\12617\12618\12619\12620\12621\12622\12623\12624\12625\12626\12627\12628\12629\12630\12631\12632\12633\12634\12635\12636\12637\12638\12639\12640\12641\12642\12643\12644\12645\12646\12647\12648\12649\12650\12651\12652\12653\12654\12655\12656\12657\12658\12659\12660\12661\12662\12663\12664\12665\12666\12667\12668\12669\12670\12671\12672\12673\12674\12675\12676\12677\12678\12679\12680\12681\12682\12683\12684\12685\12686\12687\12688\12689\12690\12691\12692\12693\12694\12695\12696\12697\12698\12699\12700\12701\12702\12703\12704\12705\12706\12707\12708\12709\12710\12711\12712\12713\12714\12715\12716\12717\12718\12719\12720\12721\12722\12723\12724\12725\12726\12727\12728\12729\12730\12731\12732\12733\12734\12735\12736\12737\12738\12739\12740\12741\12742\12743\12744\12745\12746\12747\12748\12749\12750\12751\12752\12753\12754\12755\12756\12757\12758\12759\12760\12761\12762\12763\12764\12765\12766\12767\12768\12769\12770\12771\12772\12773\12774\12775\12776\12777\12778\12779\12780\12781\12782\12783\12784\12785\12786\12787\12788\12789\12790\12791\12792\12793\12794\12795\12796\12797\12798\12799\12800\12801\12802\12803\12804\12805\12806\12807\12808\12809\12810\12811\12812\12813\12814\12815\12816\12817\12818\12819\12820\12821\12822\12823\12824\12825\12826\12827\12828\12829\12830\12831\12832\12833\12834\12835\12836\12837\12838\12839\12840\12841\12842\12843\12844\12845\12846\12847\12848\12849\12850\12851\12852\12853\12854\12855\12856\12857\12858\12859\12860\12861\12862\12863\12864\12865\12866\12867\12868\12869\12870\12871\12872\12873\12874\12875\12876\12877\12878\12879\12880\12881\12882\12883\12884\12885\12886\12887\12888\12889\12890\12891\12892\12893\12894\12895\12896\12897\12898\12899\12900\12901\12902\12903\12904\12905\12906\12907\12908\12909\12910\12911\12912\12913\12914\12915\12916\12917\12918\12919\12920\12921\12922\12923\12924\12925\12926\12927\12928\12929\12930\12931\12932\12933\12934\12935\12936\12937\12938\12939\12940\12941\12942\12943\12944\12945\12946\12947\12948\12949\12950\12951\12952\12953\12954\12955\12956\12957\12958\12959\12960\12961\12962\12963\12964\12965\12966\12967\12968\12969\12970\12971\12972\12973\12974\12975\12976\12977\12978\12979\12980\12981\12982\12983\12984\12985\12986\12987\12988\12989\12990\12991\12992\12993\12994\12995\12996\12997\12998\12999\13000\13001\13002\13003\13004\13005\13006\13007\13008\13009\13010\13011\13012\13013\13014\13015\13016\13017\13018\13019\13020\13021\13022\13023\13024\13025\13026\13027\13028\13029\13030\13031\13032\13033\13034\13035\13036\13037\13038\13039\13040\13041\13042\13043\13044\13045\13046\13047\13048\13049\13050\13051\13052\13053\13054\13055\13056\13057\13058\13059\13060\13061\13062\13063\13064\13065\13066\13067\13068\13069\13070\13071\13072\13073\13074\13075\13076\13077\13078\13079\13080\13081\13082\13083\13084\13085\13086\13087\13088\13089\13090\13091\13092\13093\13094\13095\13096\13097\13098\13099\13100\13101\13102\13103\13104\13105\13106\13107\13108\13109\13110\13111\13112\13113\13114\13115\13116\13117\13118\13119\13120\13121\13122\13123\13124\13125\13126\13127\13128\13129\13130\13131\13132\13133\13134\13135\13136\13137\13138\13139\13140\13141\13142\13143\13144\13145\13146\13147\13148\13149\13150\13151\13152\13153\13154\13155\13156\13157\13158\13159\13160\13161\13162\13163\13164\13165\13166\13167\13168\13169\13170\13171\13172\13173\13174\13175\13176\13177\13178\13179\13180\13181\13182\13183\13184\13185\13186\13187\13188\13189\13190\13191\13192\13193\13194\13195\13196\13197\13198\13199\13200\13201\13202\13203\13204\13205\13206\13207\13208\13209\13210\13211\13212\13213\13214\13215\13216\13217\13218\13219\13220\13221\13222\13223\13224\13225\13226\13227\13228\13229\13230\13231\13232\13233\13234\13235\13236\13237\13238\13239\13240\13241\13242\13243\13244\13245\13246\13247\13248\13249\13250\13251\13252\13253\13254\13255\13256\13257\13258\13259\13260\13261\13262\13263\13264\13265\13266\13267\13268\13269\13270\13271\13272\13273\13274\13275\13276\13277\13278\13279\13280\13281\13282\13283\13284\13285\13286\13287\13288\13289\13290\13291\13292\13293\13294\13295\13296\13297\13298\13299\13300\13301\13302\13303\13304\13305\13306\13307\13308\13309\13310\13311\13312\13313\13314\13315\13316\13317\13318\13319\13320\13321\13322\13323\13324\13325\13326\13327\13328\13329\13330\13331\13332\13333\13334\13335\13336\13337\13338\13339\13340\13341\13342\13343\13344\13345\13346\13347\13348\13349\13350\13351\13352\13353\13354\13355\13356\13357\13358\13359\13360\13361\13362\13363\13364\13365\13366\13367\13368\13369\13370\13371\13372\13373\13374\13375\13376\13377\13378\13379\13380\13381\13382\13383\13384\13385\13386\13387\13388\13389\13390\13391\13392\13393\13394\13395\13396\13397\13398\13399\13400\13401\13402\13403\13404\13405\13406\13407\13408\13409\13410\13411\13412\13413\13414\13415\13416\13417\13418\13419\13420\13421\13422\13423\13424\13425\13426\13427\13428\13429\13430\13431\13432\13433\13434\13435\13436\13437\13438\13439\13440\13441\13442\13443\13444\13445\13446\13447\13448\13449\13450\13451\13452\13453\13454\13455\13456\13457\13458\13459\13460\13461\13462\13463\13464\13465\13466\13467\13468\13469\13470\13471\13472\13473\13474\13475\13476\13477\13478\13479\13480\13481\13482\13483\13484\13485\13486\13487\13488\13489\13490\13491\13492\13493\13494\13495\13496\13497\13498\13499\13500\13501\13502\13503\13504\13505\13506\13507\13508\13509\13510\13511\13512\13513\13514\13515\13516\13517\13518\13519\13520\13521\13522\13523\13524\13525\13526\13527\13528\13529\13530\13531\13532\13533\13534\13535\13536\13537\13538\13539\13540\13541\13542\13543\13544\13545\13546\13547\13548\13549\13550\13551\13552\13553\13554\13555\13556\13557\13558\13559\13560\13561\13562\13563\13564\13565\13566\13567\13568\13569\13570\13571\13572\13573\13574\13575\13576\13577\13578\13579\13580\13581\13582\13583\13584\13585\13586\13587\13588\13589\13590\13591\13592\13593\13594\13595\13596\13597\13598\13599\13600\13601\13602\13603\13604\13605\13606\13607\13608\13609\13610\13611\13612\13613\13614\13615\13616\13617\13618\13619\13620\13621\13622\13623\13624\13625\13626\13627\13628\13629\13630\13631\13632\13633\13634\13635\13636\13637\13638\13639\13640\13641\13642\13643\13644\13645\13646\13647\13648\13649\13650\13651\13652\13653\13654\13655\13656\13657\13658\13659\13660\13661\13662\13663\13664\13665\13666\13667\13668\13669\13670\13671\13672\13673\13674\13675\13676\13677\13678\13679\13680\13681\13682\13683\13684\13685\13686\13687\13688\13689\13690\13691\13692\13693\13694\13695\13696\13697\13698\13699\13700\13701\13702\13703\13704\13705\13706\13707\13708\13709\13710\13711\13712\13713\13714\13715\13716\13717\13718\13719\13720\13721\13722\13723\13724\13725\13726\13727\13728\13729\13730\13731\13732\13733\13734\13735\13736\13737\13738\13739\13740\13741\13742\13743\13744\13745\13746\13747\13748\13749\13750\13751\13752\13753\13754\13755\13756\13757\13758\13759\13760\13761\13762\13763\13764\13765\13766\13767\13768\13769\13770\13771\13772\13773\13774\13775\13776\13777\13778\13779\13780\13781\13782\13783\13784\13785\13786\13787\13788\13789\13790\13791\13792\13793\13794\13795\13796\13797\13798\13799\13800\13801\13802\13803\13804\13805\13806\13807\13808\13809\13810\13811\13812\13813\13814\13815\13816\13817\13818\13819\13820\13821\13822\13823\13824\13825\13826\13827\13828\13829\13830\13831\13832\13833\13834\13835\13836\13837\13838\13839\13840\13841\13842\13843\13844\13845\13846\13847\13848\13849\13850\13851\13852\13853\13854\13855\13856\13857\13858\13859\13860\13861\13862\13863\13864\13865\13866\13867\13868\13869\13870\13871\13872\13873\13874\13875\13876\13877\13878\13879\13880\13881\13882\13883\13884\13885\13886\13887\13888\13889\13890\13891\13892\13893\13894\13895\13896\13897\13898\13899\13900\13901\13902\13903\13904\13905\13906\13907\13908\13909\13910\13911\13912\13913\13914\13915\13916\13917\13918\13919\13920\13921\13922\13923\13924\13925\13926\13927\13928\13929\13930\13931\13932\13933\13934\13935\13936\13937\13938\13939\13940\13941\13942\13943\13944\13945\13946\13947\13948\13949\13950\13951\13952\13953\13954\13955\13956\13957\13958\13959\13960\13961\13962\13963\13964\13965\13966\13967\13968\13969\13970\13971\13972\13973\13974\13975\13976\13977\13978\13979\13980\13981\13982\13983\13984\13985\13986\13987\13988\13989\13990\13991\13992\13993\13994\13995\13996\13997\13998\13999\14000\14001\14002\14003\14004\14005\14006\14007\14008\14009\14010\14011\14012\14013\14014\14015\14016\14017\14018\14019\14020\14021\14022\14023\14024\14025\14026\14027\14028\14029\14030\14031\14032\14033\14034\14035\14036\14037\14038\14039\14040\14041\14042\14043\14044\14045\14046\14047\14048\14049\14050\14051\14052\14053\14054\14055\14056\14057\14058\14059\14060\14061\14062\14063\14064\14065\14066\14067\14068\14069\14070\14071\14072\14073\14074\14075\14076\14077\14078\14079\14080\14081\14082\14083\14084\14085\14086\14087\14088\14089\14090\14091\14092\14093\14094\14095\14096\14097\14098\14099\14100\14101\14102\14103\14104\14105\14106\14107\14108\14109\14110\14111\14112\14113\14114\14115\14116\14117\14118\14119\14120\14121\14122\14123\14124\14125\14126\14127\14128\14129\14130\14131\14132\14133\14134\14135\14136\14137\14138\14139\14140\14141\14142\14143\14144\14145\14146\14147\14148\14149\14150\14151\14152\14153\14154\14155\14156\14157\14158\14159\14160\14161\14162\14163\14164\14165\14166\14167\14168\14169\14170\14171\14172\14173\14174\14175\14176\14177\14178\14179\14180\14181\14182\14183\14184\14185\14186\14187\14188\14189\14190\14191\14192\14193\14194\14195\14196\14197\14198\14199\14200\14201\14202\14203\14204\14205\14206\14207\14208\14209\14210\14211\14212\14213\14214\14215\14216\14217\14218\14219\14220\14221\14222\14223\14224\14225\14226\14227\14228\14229\14230\14231\14232\14233\14234\14235\14236\14237\14238\14239\14240\14241\14242\14243\14244\14245\14246\14247\14248\14249\14250\14251\14252\14253\14254\14255\14256\14257\14258\14259\14260\14261\14262\14263\14264\14265\14266\14267\14268\14269\14270\14271\14272\14273\14274\14275\14276\14277\14278\14279\14280\14281\14282\14283\14284\14285\14286\14287\14288\14289\14290\14291\14292\14293\14294\14295\14296\14297\14298\14299\14300\14301\14302\14303\14304\14305\14306\14307\14308\14309\14310\14311\14312\14313\14314\14315\14316\14317\14318\14319\14320\14321\14322\14323\14324\14325\14326\14327\14328\14329\14330\14331\14332\14333\14334\14335\14336\14337\14338\14339\14340\14341\14342\14343\14344\14345\14346\14347\14348\14349\14350\14351\14352\14353\14354\14355\14356\14357\14358\14359\14360\14361\14362\14363\14364\14365\14366\14367\14368\14369\14370\14371\14372\14373\14374\14375\14376\14377\14378\14379\14380\14381\14382\14383\14384\14385\14386\14387\14388\14389\14390\14391\14392\14393\14394\14395\14396\14397\14398\14399\14400\14401\14402\14403\14404\14405\14406\14407\14408\14409\14410\14411\14412\14413\14414\14415\14416\14417\14418\14419\14420\14421\14422\14423\14424\14425\14426\14427\14428\14429\14430\14431\14432\14433\14434\14435\14436\14437\14438\14439\14440\14441\14442\14443\14444\14445\14446\14447\14448\14449\14450\14451\14452\14453\14454\14455\14456\14457\14458\14459\14460\14461\14462\14463\14464\14465\14466\14467\14468\14469\14470\14471\14472\14473\14474\14475\14476\14477\14478\14479\14480\14481\14482\14483\14484\14485\14486\14487\14488\14489\14490\14491\14492\14493\14494\14495\14496\14497\14498\14499\14500\14501\14502\14503\14504\14505\14506\14507\14508\14509\14510\14511\14512\14513\14514\14515\14516\14517\14518\14519\14520\14521\14522\14523\14524\14525\14526\14527\14528\14529\14530\14531\14532\14533\14534\14535\14536\14537\14538\14539\14540\14541\14542\14543\14544\14545\14546\14547\14548\14549\14550\14551\14552\14553\14554\14555\14556\14557\14558\14559\14560\14561\14562\14563\14564\14565\14566\14567\14568\14569\14570\14571\14572\14573\14574\14575\14576\14577\14578\14579\14580\14581\14582\14583\14584\14585\14586\14587\14588\14589\14590\14591\14592\14593\14594\14595\14596\14597\14598\14599\14600\14601\14602\14603\14604\14605\14606\14607\14608\14609\14610\14611\14612\14613\14614\14615\14616\14617\14618\14619\14620\14621\14622\14623\14624\14625\14626\14627\14628\14629\14630\14631\14632\14633\14634\14635\14636\14637\14638\14639\14640\14641\14642\14643\14644\14645\14646\14647\14648\14649\14650\14651\14652\14653\14654\14655\14656\14657\14658\14659\14660\14661\14662\14663\14664\14665\14666\14667\14668\14669\14670\14671\14672\14673\14674\14675\14676\14677\14678\14679\14680\14681\14682\14683\14684\14685\14686\14687\14688\14689\14690\14691\14692\14693\14694\14695\14696\14697\14698\14699\14700\14701\14702\14703\14704\14705\14706\14707\14708\14709\14710\14711\14712\14713\14714\14715\14716\14717\14718\14719\14720\14721\14722\14723\14724\14725\14726\14727\14728\14729\14730\14731\14732\14733\14734\14735\14736\14737\14738\14739\14740\14741\14742\14743\14744\14745\14746\14747\14748\14749\14750\14751\14752\14753\14754\14755\14756\14757\14758\14759\14760\14761\14762\14763\14764\14765\14766\14767\14768\14769\14770\14771\14772\14773\14774\14775\14776\14777\14778\14779\14780\14781\14782\14783\14784\14785\14786\14787\14788\14789\14790\14791\14792\14793\14794\14795\14796\14797\14798\14799\14800\14801\14802\14803\14804\14805\14806\14807\14808\14809\14810\14811\14812\14813\14814\14815\14816\14817\14818\14819\14820\14821\14822\14823\14824\14825\14826\14827\14828\14829\14830\14831\14832\14833\14834\14835\14836\14837\14838\14839\14840\14841\14842\14843\14844\14845\14846\14847\14848\14849\14850\14851\14852\14853\14854\14855\14856\14857\14858\14859\14860\14861\14862\14863\14864\14865\14866\14867\14868\14869\14870\14871\14872\14873\14874\14875\14876\14877\14878\14879\14880\14881\14882\14883\14884\14885\14886\14887\14888\14889\14890\14891\14892\14893\14894\14895\14896\14897\14898\14899\14900\14901\14902\14903\14904\14905\14906\14907\14908\14909\14910\14911\14912\14913\14914\14915\14916\14917\14918\14919\14920\14921\14922\14923\14924\14925\14926\14927\14928\14929\14930\14931\14932\14933\14934\14935\14936\14937\14938\14939\14940\14941\14942\14943\14944\14945\14946\14947\14948\14949\14950\14951\14952\14953\14954\14955\14956\14957\14958\14959\14960\14961\14962\14963\14964\14965\14966\14967\14968\14969\14970\14971\14972\14973\14974\14975\14976\14977\14978\14979\14980\14981\14982\14983\14984\14985\14986\14987\14988\14989\14990\14991\14992\14993\14994\14995\14996\14997\14998\14999\15000\15001\15002\15003\15004\15005\15006\15007\15008\15009\15010\15011\15012\15013\15014\15015\15016\15017\15018\15019\15020\15021\15022\15023\15024\15025\15026\15027\15028\15029\15030\15031\15032\15033\15034\15035\15036\15037\15038\15039\15040\15041\15042\15043\15044\15045\15046\15047\15048\15049\15050\15051\15052\15053\15054\15055\15056\15057\15058\15059\15060\15061\15062\15063\15064\15065\15066\15067\15068\15069\15070\15071\15072\15073\15074\15075\15076\15077\15078\15079\15080\15081\15082\15083\15084\15085\15086\15087\15088\15089\15090\15091\15092\15093\15094\15095\15096\15097\15098\15099\15100\15101\15102\15103\15104\15105\15106\15107\15108\15109\15110\15111\15112\15113\15114\15115\15116\15117\15118\15119\15120\15121\15122\15123\15124\15125\15126\15127\15128\15129\15130\15131\15132\15133\15134\15135\15136\15137\15138\15139\15140\15141\15142\15143\15144\15145\15146\15147\15148\15149\15150\15151\15152\15153\15154\15155\15156\15157\15158\15159\15160\15161\15162\15163\15164\15165\15166\15167\15168\15169\15170\15171\15172\15173\15174\15175\15176\15177\15178\15179\15180\15181\15182\15183\15184\15185\15186\15187\15188\15189\15190\15191\15192\15193\15194\15195\15196\15197\15198\15199\15200\15201\15202\15203\15204\15205\15206\15207\15208\15209\15210\15211\15212\15213\15214\15215\15216\15217\15218\15219\15220\15221\15222\15223\15224\15225\15226\15227\15228\15229\15230\15231\15232\15233\15234\15235\15236\15237\15238\15239\15240\15241\15242\15243\15244\15245\15246\15247\15248\15249\15250\15251\15252\15253\15254\15255\15256\15257\15258\15259\15260\15261\15262\15263\15264\15265\15266\15267\15268\15269\15270\15271\15272\15273\15274\15275\15276\15277\15278\15279\15280\15281\15282\15283\15284\15285\15286\15287\15288\15289\15290\15291\15292\15293\15294\15295\15296\15297\15298\15299\15300\15301\15302\15303\15304\15305\15306\15307\15308\15309\15310\15311\15312\15313\15314\15315\15316\15317\15318\15319\15320\15321\15322\15323\15324\15325\15326\15327\15328\15329\15330\15331\15332\15333\15334\15335\15336\15337\15338\15339\15340\15341\15342\15343\15344\15345\15346\15347\15348\15349\15350\15351\15352\15353\15354\15355\15356\15357\15358\15359\15360\15361\15362\15363\15364\15365\15366\15367\15368\15369\15370\15371\15372\15373\15374\15375\15376\15377\15378\15379\15380\15381\15382\15383\15384\15385\15386\15387\15388\15389\15390\15391\15392\15393\15394\15395\15396\15397\15398\15399\15400\15401\15402\15403\15404\15405\15406\15407\15408\15409\15410\15411\15412\15413\15414\15415\15416\15417\15418\15419\15420\15421\15422\15423\15424\15425\15426\15427\15428\15429\15430\15431\15432\15433\15434\15435\15436\15437\15438\15439\15440\15441\15442\15443\15444\15445\15446\15447\15448\15449\15450\15451\15452\15453\15454\15455\15456\15457\15458\15459\15460\15461\15462\15463\15464\15465\15466\15467\15468\15469\15470\15471\15472\15473\15474\15475\15476\15477\15478\15479\15480\15481\15482\15483\15484\15485\15486\15487\15488\15489\15490\15491\15492\15493\15494\15495\15496\15497\15498\15499\15500\15501\15502\15503\15504\15505\15506\15507\15508\15509\15510\15511\15512\15513\15514\15515\15516\15517\15518\15519\15520\15521\15522\15523\15524\15525\15526\15527\15528\15529\15530\15531\15532\15533\15534\15535\15536\15537\15538\15539\15540\15541\15542\15543\15544\15545\15546\15547\15548\15549\15550\15551\15552\15553\15554\15555\15556\15557\15558\15559\15560\15561\15562\15563\15564\15565\15566\15567\15568\15569\15570\15571\15572\15573\15574\15575\15576\15577\15578\15579\15580\15581\15582\15583\15584\15585\15586\15587\15588\15589\15590\15591\15592\15593\15594\15595\15596\15597\15598\15599\15600\15601\15602\15603\15604\15605\15606\15607\15608\15609\15610\15611\15612\15613\15614\15615\15616\15617\15618\15619\15620\15621\15622\15623\15624\15625\15626\15627\15628\15629\15630\15631\15632\15633\15634\15635\15636\15637\15638\15639\15640\15641\15642\15643\15644\15645\15646\15647\15648\15649\15650\15651\15652\15653\15654\15655\15656\15657\15658\15659\15660\15661\15662\15663\15664\15665\15666\15667\15668\15669\15670\15671\15672\15673\15674\15675\15676\15677\15678\15679\15680\15681\15682\15683\15684\15685\15686\15687\15688\15689\15690\15691\15692\15693\15694\15695\15696\15697\15698\15699\15700\15701\15702\15703\15704\15705\15706\15707\15708\15709\15710\15711\15712\15713\15714\15715\15716\15717\15718\15719\15720\15721\15722\15723\15724\15725\15726\15727\15728\15729\15730\15731\15732\15733\15734\15735\15736\15737\15738\15739\15740\15741\15742\15743\15744\15745\15746\15747\15748\15749\15750\15751\15752\15753\15754\15755\15756\15757\15758\15759\15760\15761\15762\15763\15764\15765\15766\15767\15768\15769\15770\15771\15772\15773\15774\15775\15776\15777\15778\15779\15780\15781\15782\15783\15784\15785\15786\15787\15788\15789\15790\15791\15792\15793\15794\15795\15796\15797\15798\15799\15800\15801\15802\15803\15804\15805\15806\15807\15808\15809\15810\15811\15812\15813\15814\15815\15816\15817\15818\15819\15820\15821\15822\15823\15824\15825\15826\15827\15828\15829\15830\15831\15832\15833\15834\15835\15836\15837\15838\15839\15840\15841\15842\15843\15844\15845\15846\15847\15848\15849\15850\15851\15852\15853\15854\15855\15856\15857\15858\15859\15860\15861\15862\15863\15864\15865\15866\15867\15868\15869\15870\15871\15872\15873\15874\15875\15876\15877\15878\15879\15880\15881\15882\15883\15884\15885\15886\15887\15888\15889\15890\15891\15892\15893\15894\15895\15896\15897\15898\15899\15900\15901\15902\15903\15904\15905\15906\15907\15908\15909\15910\15911\15912\15913\15914\15915\15916\15917\15918\15919\15920\15921\15922\15923\15924\15925\15926\15927\15928\15929\15930\15931\15932\15933\15934\15935\15936\15937\15938\15939\15940\15941\15942\15943\15944\15945\15946\15947\15948\15949\15950\15951\15952\15953\15954\15955\15956\15957\15958\15959\15960\15961\15962\15963\15964\15965\15966\15967\15968\15969\15970\15971\15972\15973\15974\15975\15976\15977\15978\15979\15980\15981\15982\15983\15984\15985\15986\15987\15988\15989\15990\15991\15992\15993\15994\15995\15996\15997\15998\15999\16000\16001\16002\16003\16004\16005\16006\16007\16008\16009\16010\16011\16012\16013\16014\16015\16016\16017\16018\16019\16020\16021\16022\16023\16024\16025\16026\16027\16028\16029\16030\16031\16032\16033\16034\16035\16036\16037\16038\16039\16040\16041\16042\16043\16044\16045\16046\16047\16048\16049\16050\16051\16052\16053\16054\16055\16056\16057\16058\16059\16060\16061\16062\16063\16064\16065\16066\16067\16068\16069\16070\16071\16072\16073\16074\16075\16076\16077\16078\16079\16080\16081\16082\16083\16084\16085\16086\16087\16088\16089\16090\16091\16092\16093\16094\16095\16096\16097\16098\16099\16100\16101\16102\16103\16104\16105\16106\16107\16108\16109\16110\16111\16112\16113\16114\16115\16116\16117\16118\16119\16120\16121\16122\16123\16124\16125\16126\16127\16128\16129\16130\16131\16132\16133\16134\16135\16136\16137\16138\16139\16140\16141\16142\16143\16144\16145\16146\16147\16148\16149\16150\16151\16152\16153\16154\16155\16156\16157\16158\16159\16160\16161\16162\16163\16164\16165\16166\16167\16168\16169\16170\16171\16172\16173\16174\16175\16176\16177\16178\16179\16180\16181\16182\16183\16184\16185\16186\16187\16188\16189\16190\16191\16192\16193\16194\16195\16196\16197\16198\16199\16200\16201\16202\16203\16204\16205\16206\16207\16208\16209\16210\16211\16212\16213\16214\16215\16216\16217\16218\16219\16220\16221\16222\16223\16224\16225\16226\16227\16228\16229\16230\16231\16232\16233\16234\16235\16236\16237\16238\16239\16240\16241\16242\16243\16244\16245\16246\16247\16248\16249\16250\16251\16252\16253\16254\16255\16256\16257\16258\16259\16260\16261\16262\16263\16264\16265\16266\16267\16268\16269\16270\16271\16272\16273\16274\16275\16276\16277\16278\16279\16280\16281\16282\16283\16284\16285\16286\16287\16288\16289\16290\16291\16292\16293\16294\16295\16296\16297\16298\16299\16300\16301\16302\16303\16304\16305\16306\16307\16308\16309\16310\16311\16312\16313\16314\16315\16316\16317\16318\16319\16320\16321\16322\16323\16324\16325\16326\16327\16328\16329\16330\16331\16332\16333\16334\16335\16336\16337\16338\16339\16340\16341\16342\16343\16344\16345\16346\16347\16348\16349\16350\16351\16352\16353\16354\16355\16356\16357\16358\16359\16360\16361\16362\16363\16364\16365\16366\16367\16368\16369\16370\16371\16372\16373\16374\16375\16376\16377\16378\16379\16380\16381\16382\16383\16384\16385\16386\16387\16388\16389\16390\16391\16392\16393\16394\16395\16396\16397\16398\16399\16400\16401\16402\16403\16404\16405\16406\16407\16408\16409\16410\16411\16412\16413\16414\16415\16416\16417\16418\16419\16420\16421\16422\16423\16424\16425\16426\16427\16428\16429\16430\16431\16432\16433\16434\16435\16436\16437\16438\16439\16440\16441\16442\16443\16444\16445\16446\16447\16448\16449\16450\16451\16452\16453\16454\16455\16456\16457\16458\16459\16460\16461\16462\16463\16464\16465\16466\16467\16468\16469\16470\16471\16472\16473\16474\16475\16476\16477\16478\16479\16480\16481\16482\16483\16484\16485\16486\16487\16488\16489\16490\16491\16492\16493\16494\16495\16496\16497\16498\16499\16500\16501\16502\16503\16504\16505\16506\16507\16508\16509\16510\16511\16512\16513\16514\16515\16516\16517\16518\16519\16520\16521\16522\16523\16524\16525\16526\16527\16528\16529\16530\16531\16532\16533\16534\16535\16536\16537\16538\16539\16540\16541\16542\16543\16544\16545\16546\16547\16548\16549\16550\16551\16552\16553\16554\16555\16556\16557\16558\16559\16560\16561\16562\16563\16564\16565\16566\16567\16568\16569\16570\16571\16572\16573\16574\16575\16576\16577\16578\16579\16580\16581\16582\16583\16584\16585\16586\16587\16588\16589\16590\16591\16592\16593\16594\16595\16596\16597\16598\16599\16600\16601\16602\16603\16604\16605\16606\16607\16608\16609\16610\16611\16612\16613\16614\16615\16616\16617\16618\16619\16620\16621\16622\16623\16624\16625\16626\16627\16628\16629\16630\16631\16632\16633\16634\16635\16636\16637\16638\16639\16640\16641\16642\16643\16644\16645\16646\16647\16648\16649\16650\16651\16652\16653\16654\16655\16656\16657\16658\16659\16660\16661\16662\16663\16664\16665\16666\16667\16668\16669\16670\16671\16672\16673\16674\16675\16676\16677\16678\16679\16680\16681\16682\16683\16684\16685\16686\16687\16688\16689\16690\16691\16692\16693\16694\16695\16696\16697\16698\16699\16700\16701\16702\16703\16704\16705\16706\16707\16708\16709\16710\16711\16712\16713\16714\16715\16716\16717\16718\16719\16720\16721\16722\16723\16724\16725\16726\16727\16728\16729\16730\16731\16732\16733\16734\16735\16736\16737\16738\16739\16740\16741\16742\16743\16744\16745\16746\16747\16748\16749\16750\16751\16752\16753\16754\16755\16756\16757\16758\16759\16760\16761\16762\16763\16764\16765\16766\16767\16768\16769\16770\16771\16772\16773\16774\16775\16776\16777\16778\16779\16780\16781\16782\16783\16784\16785\16786\16787\16788\16789\16790\16791\16792\16793\16794\16795\16796\16797\16798\16799\16800\16801\16802\16803\16804\16805\16806\16807\16808\16809\16810\16811\16812\16813\16814\16815\16816\16817\16818\16819\16820\16821\16822\16823\16824\16825\16826\16827\16828\16829\16830\16831\16832\16833\16834\16835\16836\16837\16838\16839\16840\16841\16842\16843\16844\16845\16846\16847\16848\16849\16850\16851\16852\16853\16854\16855\16856\16857\16858\16859\16860\16861\16862\16863\16864\16865\16866\16867\16868\16869\16870\16871\16872\16873\16874\16875\16876\16877\16878\16879\16880\16881\16882\16883\16884\16885\16886\16887\16888\16889\16890\16891\16892\16893\16894\16895\16896\16897\16898\16899\16900\16901\16902\16903\16904\16905\16906\16907\16908\16909\16910\16911\16912\16913\16914\16915\16916\16917\16918\16919\16920\16921\16922\16923\16924\16925\16926\16927\16928\16929\16930\16931\16932\16933\16934\16935\16936\16937\16938\16939\16940\16941\16942\16943\16944\16945\16946\16947\16948\16949\16950\16951\16952\16953\16954\16955\16956\16957\16958\16959\16960\16961\16962\16963\16964\16965\16966\16967\16968\16969\16970\16971\16972\16973\16974\16975\16976\16977\16978\16979\16980\16981\16982\16983\16984\16985\16986\16987\16988\16989\16990\16991\16992\16993\16994\16995\16996\16997\16998\16999\17000\17001\17002\17003\17004\17005\17006\17007\17008\17009\17010\17011\17012\17013\17014\17015\17016\17017\17018\17019\17020\17021\17022\17023\17024\17025\17026\17027\17028\17029\17030\17031\17032\17033\17034\17035\17036\17037\17038\17039\17040\17041\17042\17043\17044\17045\17046\17047\17048\17049\17050\17051\17052\17053\17054\17055\17056\17057\17058\17059\17060\17061\17062\17063\17064\17065\17066\17067\17068\17069\17070\17071\17072\17073\17074\17075\17076\17077\17078\17079\17080\17081\17082\17083\17084\17085\17086\17087\17088\17089\17090\17091\17092\17093\17094\17095\17096\17097\17098\17099\17100\17101\17102\17103\17104\17105\17106\17107\17108\17109\17110\17111\17112\17113\17114\17115\17116\17117\17118\17119\17120\17121\17122\17123\17124\17125\17126\17127\17128\17129\17130\17131\17132\17133\17134\17135\17136\17137\17138\17139\17140\17141\17142\17143\17144\17145\17146\17147\17148\17149\17150\17151\17152\17153\17154\17155\17156\17157\17158\17159\17160\17161\17162\17163\17164\17165\17166\17167\17168\17169\17170\17171\17172\17173\17174\17175\17176\17177\17178\17179\17180\17181\17182\17183\17184\17185\17186\17187\17188\17189\17190\17191\17192\17193\17194\17195\17196\17197\17198\17199\17200\17201\17202\17203\17204\17205\17206\17207\17208\17209\17210\17211\17212\17213\17214\17215\17216\17217\17218\17219\17220\17221\17222\17223\17224\17225\17226\17227\17228\17229\17230\17231\17232\17233\17234\17235\17236\17237\17238\17239\17240\17241\17242\17243\17244\17245\17246\17247\17248\17249\17250\17251\17252\17253\17254\17255\17256\17257\17258\17259\17260\17261\17262\17263\17264\17265\17266\17267\17268\17269\17270\17271\17272\17273\17274\17275\17276\17277\17278\17279\17280\17281\17282\17283\17284\17285\17286\17287\17288\17289\17290\17291\17292\17293\17294\17295\17296\17297\17298\17299\17300\17301\17302\17303\17304\17305\17306\17307\17308\17309\17310\17311\17312\17313\17314\17315\17316\17317\17318\17319\17320\17321\17322\17323\17324\17325\17326\17327\17328\17329\17330\17331\17332\17333\17334\17335\17336\17337\17338\17339\17340\17341\17342\17343\17344\17345\17346\17347\17348\17349\17350\17351\17352\17353\17354\17355\17356\17357\17358\17359\17360\17361\17362\17363\17364\17365\17366\17367\17368\17369\17370\17371\17372\17373\17374\17375\17376\17377\17378\17379\17380\17381\17382\17383\17384\17385\17386\17387\17388\17389\17390\17391\17392\17393\17394\17395\17396\17397\17398\17399\17400\17401\17402\17403\17404\17405\17406\17407\17408\17409\17410\17411\17412\17413\17414\17415\17416\17417\17418\17419\17420\17421\17422\17423\17424\17425\17426\17427\17428\17429\17430\17431\17432\17433\17434\17435\17436\17437\17438\17439\17440\17441\17442\17443\17444\17445\17446\17447\17448\17449\17450\17451\17452\17453\17454\17455\17456\17457\17458\17459\17460\17461\17462\17463\17464\17465\17466\17467\17468\17469\17470\17471\17472\17473\17474\17475\17476\17477\17478\17479\17480\17481\17482\17483\17484\17485\17486\17487\17488\17489\17490\17491\17492\17493\17494\17495\17496\17497\17498\17499\17500\17501\17502\17503\17504\17505\17506\17507\17508\17509\17510\17511\17512\17513\17514\17515\17516\17517\17518\17519\17520\17521\17522\17523\17524\17525\17526\17527\17528\17529\17530\17531\17532\17533\17534\17535\17536\17537\17538\17539\17540\17541\17542\17543\17544\17545\17546\17547\17548\17549\17550\17551\17552\17553\17554\17555\17556\17557\17558\17559\17560\17561\17562\17563\17564\17565\17566\17567\17568\17569\17570\17571\17572\17573\17574\17575\17576\17577\17578\17579\17580\17581\17582\17583\17584\17585\17586\17587\17588\17589\17590\17591\17592\17593\17594\17595\17596\17597\17598\17599\17600\17601\17602\17603\17604\17605\17606\17607\17608\17609\17610\17611\17612\17613\17614\17615\17616\17617\17618\17619\17620\17621\17622\17623\17624\17625\17626\17627\17628\17629\17630\17631\17632\17633\17634\17635\17636\17637\17638\17639\17640\17641\17642\17643\17644\17645\17646\17647\17648\17649\17650\17651\17652\17653\17654\17655\17656\17657\17658\17659\17660\17661\17662\17663\17664\17665\17666\17667\17668\17669\17670\17671\17672\17673\17674\17675\17676\17677\17678\17679\17680\17681\17682\17683\17684\17685\17686\17687\17688\17689\17690\17691\17692\17693\17694\17695\17696\17697\17698\17699\17700\17701\17702\17703\17704\17705\17706\17707\17708\17709\17710\17711\17712\17713\17714\17715\17716\17717\17718\17719\17720\17721\17722\17723\17724\17725\17726\17727\17728\17729\17730\17731\17732\17733\17734\17735\17736\17737\17738\17739\17740\17741\17742\17743\17744\17745\17746\17747\17748\17749\17750\17751\17752\17753\17754\17755\17756\17757\17758\17759\17760\17761\17762\17763\17764\17765\17766\17767\17768\17769\17770\17771\17772\17773\17774\17775\17776\17777\17778\17779\17780\17781\17782\17783\17784\17785\17786\17787\17788\17789\17790\17791\17792\17793\17794\17795\17796\17797\17798\17799\17800\17801\17802\17803\17804\17805\17806\17807\17808\17809\17810\17811\17812\17813\17814\17815\17816\17817\17818\17819\17820\17821\17822\17823\17824\17825\17826\17827\17828\17829\17830\17831\17832\17833\17834\17835\17836\17837\17838\17839\17840\17841\17842\17843\17844\17845\17846\17847\17848\17849\17850\17851\17852\17853\17854\17855\17856\17857\17858\17859\17860\17861\17862\17863\17864\17865\17866\17867\17868\17869\17870\17871\17872\17873\17874\17875\17876\17877\17878\17879\17880\17881\17882\17883\17884\17885\17886\17887\17888\17889\17890\17891\17892\17893\17894\17895\17896\17897\17898\17899\17900\17901\17902\17903\17904\17905\17906\17907\17908\17909\17910\17911\17912\17913\17914\17915\17916\17917\17918\17919\17920\17921\17922\17923\17924\17925\17926\17927\17928\17929\17930\17931\17932\17933\17934\17935\17936\17937\17938\17939\17940\17941\17942\17943\17944\17945\17946\17947\17948\17949\17950\17951\17952\17953\17954\17955\17956\17957\17958\17959\17960\17961\17962\17963\17964\17965\17966\17967\17968\17969\17970\17971\17972\17973\17974\17975\17976\17977\17978\17979\17980\17981\17982\17983\17984\17985\17986\17987\17988\17989\17990\17991\17992\17993\17994\17995\17996\17997\17998\17999\18000\18001\18002\18003\18004\18005\18006\18007\18008\18009\18010\18011\18012\18013\18014\18015\18016\18017\18018\18019\18020\18021\18022\18023\18024\18025\18026\18027\18028\18029\18030\18031\18032\18033\18034\18035\18036\18037\18038\18039\18040\18041\18042\18043\18044\18045\18046\18047\18048\18049\18050\18051\18052\18053\18054\18055\18056\18057\18058\18059\18060\18061\18062\18063\18064\18065\18066\18067\18068\18069\18070\18071\18072\18073\18074\18075\18076\18077\18078\18079\18080\18081\18082\18083\18084\18085\18086\18087\18088\18089\18090\18091\18092\18093\18094\18095\18096\18097\18098\18099\18100\18101\18102\18103\18104\18105\18106\18107\18108\18109\18110\18111\18112\18113\18114\18115\18116\18117\18118\18119\18120\18121\18122\1812Interrupted. λ> take 26 ['a'..] "abcdefghijklmnopqrstuvwxyz" λ> take 50 ['a'..] "abcdefghijklmnopqrstuvwxyz{|}~\DEL\128\129\130\131\132\133\134\135\136\137\138\139\140\141\142\143\144\145\146" λ> take 127 ['\0'..] "\NUL\SOH\STX\ETX\EOT\ENQ\ACK\a\b\t\n\v\f\r\SO\SI\DLE\DC1\DC2\DC3\DC4\NAK\SYN\ETB\CAN\EM\SUB\ESC\FS\GS\RS\US !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" λ> replicate 5 3 [3,3,3,3,3] λ> replicate 5 'a' "aaaaa" Restarting process ... Hello, Haskell! If I break, you can: 1. Restart: M-x haskell-process-restart 2. Configure logging: C-h v haskell-process-log (useful for debugging) 3. General config: M-x customize-mode 4. Hide these tips: C-h v haskell-process-show-debug-tips Changed directory: /home/trifon/sync/Courses/2015_16/FPI_2015_16/sandbox/ λ> take 5 (iterate (+1) 0) [0,1,2,3,4] λ> take 5 (iterate (+5) 7) [7,12,17,22,27] λ> take 5 (iterate (*5) 7) [7,35,175,875,4375] λ> [ (x,y) | x <- [0..], y <- [0..] ] [(0,0),(0,1),(0,2),(0,3),(0,4),(0,5),(0,6),(0,7),(0,8),(0,9),(0,10),(0,11),(0,12),(0,13),(0,14),(0,15),(0,16),(0,17),(0,18),(0,19),(0,20),(0,21),(0,22),(0,23),(0,24),(0,25),(0,26),(0,27),(0,28),(0,29),(0,30),(0,31),(0,32),(0,33),(0,34),(0,35),(0,36),(0,37),(0,38),(0,39),(0,40),(0,41),(0,42),(0,43),(0,44),(0,45),(0,46),(0,47),(0,48),(0,49),(0,50),(0,51),(0,52),(0,53),(0,54),(0,55),(0,56),(0,57),(0,58),(0,59),(0,60),(0,61),(0,62),(0,63),(0,64),(0,65),(0,66),(0,67),(0,68),(0,69),(0,70),(0,71),(0,72),(0,73),(0,74),(0,75),(0,76),(0,77),(0,78),(0,79),(0,80),(0,81),(0,82),(0,83),(0,84),(0,85),(0,86),(0,87),(0,88),(0,89),(0,90),(0,91),(0,92),(0,93),(0,94),(0,95),(0,96),(0,97),(0,98),(0,99),(0,100),(0,101),(0,102),(0,103),(0,104),(0,105),(0,106),(0,107),(0,108),(0,109),(0,110),(0,111),(0,112),(0,113),(0,114),(0,115),(0,116),(0,117),(0,118),(0,119),(0,120),(0,121),(0,122),(0,123),(0,124),(0,125),(0,126),(0,127),(0,128),(0,129),(0,130),(0,131),(0,132),(0,133),(0,134),(0,135),(0,136),(0,137),(0,138),(0,139),(0,140),(0,141),(0,142),(0,143),(0,144),(0,145),(0,146),(0,147),(0,148),(0,149),(0,150),(0,151),(0,152),(0,153),(0,154),(0,155),(0,156),(0,157),(0,158),(0,159),(0,160),(0,161),(0,162),(0,163),(0,164),(0,165),(0,166),(0,167),(0,168),(0,169),(0,170),(0,171),(0,172),(0,173),(0,174),(0,175),(0,176),(0,177),(0,178),(0,179),(0,180),(0,181),(0,182),(0,183),(0,184),(0,185),(0,186),(0,187),(0,188),(0,189),(0,190),(0,191),(0,192),(0,193),(0,194),(0,195),(0,196),(0,197),(0,198),(0,199),(0,200),(0,201),(0,202),(0,203),(0,204),(0,205),(0,206),(0,207),(0,208),(0,209),(0,210),(0,211),(0,212),(0,213),(0,214),(0,215),(0,216),(0,217),(0,218),(0,219),(0,220),(0,221),(0,222),(0,223),(0,224),(0,225),(0,226),(0,227),(0,228),(0,229),(0,230),(0,231),(0,232),(0,233),(0,234),(0,235),(0,236),(0,237),(0,238),(0,239),(0,240),(0,241),(0,242),(0,243),(0,244),(0,245),(0,246),(0,247),(0,248),(0,249),(0,250),(0,251),(0,252),(0,253),(0,254),(0,255),(0,256),(0,257),(0,258),(0,259),(0,260),(0,261),(0,262),(0,263),(0,264),(0,265),(0,266),(0,267),(0,268),(0,269),(0,270),(0,271),(0,272),(0,273),(0,274),(0,275),(0,276),(0,277),(0,278),(0,279),(0,280),(0,281),(0,282),(0,283),(0,284),(0,285),(0,286),(0,287),(0,288),(0,289),(0,290),(0,291),(0,292),(0,293),(0,294),(0,295),(0,296),(0,297),(0,298),(0,299),(0,300),(0,301),(0,302),(0,303),(0,304),(0,305),(0,306),(0,307),(0,308),(0,309),(0,310),(0,311),(0,312),(0,313),(0,314),(0,315),(0,316),(0,317),(0,318),(0,319),(0,320),(0,321),(0,322),(0,323),(0,324),(0,325),(0,326),(0,327),(0,328),(0,329),(0,330),(0,331),(0,332),(0,333),(0,334),(0,335),(0,336),(0,337),(0,338),(0,339),(0,340),(0,341),(0,342),(0,343),(0,344),(0,345),(0,346),(0,347),(0,348),(0,349),(0,350),(0,351),(0,352),(0,353),(0,354),(0,355),(0,356),(0,357),(0,358),(0,359),(0,360),(0,361),(0,362),(0,363),(0,364),(0,365),(0,366),(0,367),(0,368),(0,369),(0,370),(0,371),(0,372),(0,373),(0,374),(0,375),(0,376),(0,377),(0,378),(0,379),(0,380),(0,381),(0,382),(0,383),(0,384),(0,385),(0,386),(0,387),(0,388),(0,389),(0,390),(0,391),(0,392),(0,393),(0,394),(0,395),(0,396),(0,397),(0,398),(0,399),(0,400),(0,401),(0,402),(0,403),(0,404),(0,405),(0,406),(0,407),(0,408),(0,409),(0,410),(0,411),(0,412),(0,413),(0,414),(0,415),(0,416),(0,417),(0,418),(0,419),(0,420),(0,421),(0,422),(0,423),(0,424),(0,425),(0,426),(0,427),(0,428),(0,429),(0,430),(0,431),(0,432),(0,433),(0,434),(0,435),(0,436),(0,437),(0,438),(0,439),(0,440),(0,441),(0,442),(0,443),(0,444),(0,445),(0,446),(0,447),(0,448),(0,449),(0,450),(0,451),(0,452),(0,453),(0,454),(0,455),(0,456),(0,457),(0,458),(0,459),(0,460),(0,461),(0,462),(0,463),(0,464),(0,465),(0,466),(0,467),(0,468),(0,469),(0,470),(0,471),(0,472),(0,473),(0,474),(0,475),(0,476),(0,477),(0,478),(0,479),(0,480),(0,481),(0,482),(0,483),(0,484),(0,485),(0,486),(0,487),(0,488),(0,489),(0,490),(0,491),(0,492),(0,493),(0,494),(0,495),(0,496),(0,497),(0,498),(0,499),(0,500),(0,501),(0,502),(0,503),(0,504),(0,505),(0,506),(0,507),(0,508),(0,509),(0,510),(0,511),(0,512),(0,513),(0,514),(0,515),(0,516),(0,517),(0,518),(0,519),(0,520),(0,521),(0,522),(0,523),(0,524),(0,525),(0,526),(0,527),(0,528),(0,529),(0,530),(0,531),(0,532),(0,533),(0,534),(0,535),(0,536),(0,537),(0,538),(0,539),(0,540),(0,541),(0,542),(0,543),(0,544),(0,545),(0,546),(0,547),(0,548),(0,549),(0,550),(0,551),(0,552),(0,553),(0,554),(0,555),(0,556),(0,557),(0,558),(0,559),(0,560),(0,561),(0,562),(0,563),(0,564),(0,565),(0,566),(0,567),(0,568),(0,569),(0,570),(0,571),(0,572),(0,573),(0,574),(0,575),(0,576),(0,577),(0,578),(0,579),(0,580),(0,581),(0,582),(0,583),(0,584),(0,585),(0,586),(0,587),(0,588),(0,589),(0,590),(0,591),(0,592),(0,593),(0,594),(0,595),(0,596),(0,597),(0,598),(0,599),(0,600),(0,601),(0,602),(0,603),(0,604),(0,605),(0,606),(0,607),(0,608),(0,609),(0,610),(0,611),(0,612),(0,613),(0,614),(0,615),(0,616),(0,617),(0,618),(0,619),(0,620),(0,621),(0,622),(0,623),(0,624),(0,625),(0,626),(0,627),(0,628),(0,629),(0,630),(0,631),(0,632),(0,633),(0,634),(0,635),(0,636),(0,637),(0,638),(0,639),(0,640),(0,641),(0,642),(0,643),(0,644),(0,645),(0,646),(0,647),(0,648),(0,649),(0,650),(0,651),(0,652),(0,653),(0,654),(0,655),(0,656),(0,657),(0,658),(0,659),(0,660),(0,661),(0,662),(0,663),(0,664),(0,665),(0,666),(0,667),(0,668),(0,669),(0,670),(0,671),(0,672),(0,673),(0,674),(0,675),(0,676),(0,677),(0,678),(0,679),(0,680),(0,681),(0,682),(0,683),(0,684),(0,685),(0,686),(0,687),(0,688),(0,689),(0,690),(0,691),(0,692),(0,693),(0,694),(0,695),(0,696),(0,697),(0,698),(0,699),(0,700),(0,701),(0,702),(0,703),(0,704),(0,705),(0,706),(0,707),(0,708),(0,709),(0,710),(0,711),(0,712),(0,713),(0,714),(0,715),(0,716),(0,717),(0,718),(0,719),(0,720),(0,721),(0,722),(0,723),(0,724),(0,725),(0,726),(0,727),(0,728),(0,729),(0,730),(0,731),(0,732),(0,733),(0,734),(0,735),(0,736),(0,737),(0,738),(0,739),(0,740),(0,741),(0,742),(0,743),(0,744),(0,745),(0,746),(0,747),(0,748),(0,749),(0,750),(0,751),(0,752),(0,753),(0,754),(0,755),(0,756),(0,757),(0,758),(0,759),(0,760),(0,761),(0,762),(0,763),(0,764),(0,765),(0,766),(0,767),(0,768),(0,769),(0,770),(0,771),(0,772),(0,773),(0,774),(0,775),(0,776),(0,777),(0,778),(0,779),(0,780),(0,781),(0,782),(0,783),(0,784),(0,785),(0,786),(0,787),(0,788),(0,789),(0,790),(0,791),(0,792),(0,793),(0,794),(0,795),(0,796),(0,797),(0,798),(0,799),(0,800),(0,801),(0,802),(0,803),(0,804),(0,805),(0,806),(0,807),(0,808),(0,809),(0,810),(0,811),(0,812),(0,813),(0,814),(0,815),(0,816),(0,817),(0,818),(0,819),(0,820),(0,821),(0,822),(0,823),(0,824),(0,825),(0,826),(0,827),(0,828),(0,829),(0,830),(0,831),(0,832),(0,833),(0,834),(0,835),(0,836),(0,837),(0,838),(0,839),(0,840),(0,841),(0,842),(0,843),(0,844),(0,845),(0,846),(0,847),(0,848),(0,849),(0,850),(0,851),(0,852),(0,853),(0,854),(0,855),(0,856),(0,857),(0,858),(0,859),(0,860),(0,861),(0,862),(0,863),(0,864),(0,865),(0,866),(0,867),(0,868),(0,869),(0,870),(0,871),(0,872),(0,873),(0,874),(0,875),(0,876),(0,877),(0,878),(0,879),(0,880),(0,881),(0,882),(0,883),(0,884),(0,885),(0,886),(0,887),(0,888),(0,889),(0,890),(0,891),(0,892),(0,893),(0,894),(0,895),(0,896),(0,897),(0,898),(0,899),(0,900),(0,901),(0,902),(0,903),(0,904),(0,905),(0,906),(0,907),(0,908),(0,909),(0,910),(0,911),(0,912),(0,913),(0,914),(0,915),(0,916),(0,917),(0,918),(0,919),(0,920),(0,921),(0,922),(0,923),(0,924),(0,925),(0,926),(0,927),(0,928),(0,929),(0,930),(0,931),(0,932),(0,933),(0,934),(0,935),(0,936),(0,937),(0,938),(0,939),(0,940),(0,941),(0,942),(0,943),(0,944),(0,945),(0,946),(0,947),(0,948),(0,949),(0,950),(0,951),(0,952),(0,953),(0,954),(0,955),(0,956),(0,957),(0,958),(0,959),(0,960),(0,961),(0,962),(0,963),(0,964),(0,965),(0,966),(0,967),(0,968),(0,969),(0,970),(0,971),(0,972),(0,973),(0,974),(0,975),(0,976),(0,977),(0,978),(0,979),(0,980),(0,981),(0,982),(0,983),(0,984),(0,985),(0,986),(0,987),(0,988),(0,989),(0,990),(0,991),(0,992),(0,993),(0,994),(0,995),(0,996),(0,997),(0,998),(0,999),(0,1000),(0,1001),(0,1002),(0,1003),(0,1004),(0,1005),(0,1006),(0,1007),(0,1008),(0,1009),(0,1010),(0,1011),(0,1012),(0,1013),(0,1014),(0,1015),(0,1016),(0,1017),(0,1018),(0,1019),(0,1020),(0,1021),(0,1022),(0,1023),(0,1024),(0,1025),(0,1026),(0,1027),(0,1028),(0,1029),(0,1030),(0,1031),(0,1032),(0,1033),(0,1034),(0,1035),(0,1036),(0,1037),(0,1038),(0,1039),(0,1040),(0,1041),(0,1042),(0,1043),(0,1044),(0,1045),(0,1046),(0,1047),(0,1048),(0,1049),(0,1050),(0,1051),(0,1052),(0,1053),(0,1054),(0,1055),(0,1056),(0,1057),(0,1058),(0,1059),(0,1060),(0,1061),(0,1062),(0,1063),(0,1064),(0,1065),(0,1066),(0,1067),(0,1068),(0,1069),(0,1070),(0,1071),(0,1072),(0,1073),(0,1074),(0,1075),(0,1076),(0,1077),(0,1078),(0,1079),(0,1080),(0,1081),(0,1082),(0,1083),(0,1084),(0,1085),(0,1086),(0,1087),(0,1088),(0,1089),(0,1090),(0,1091),(0,1092),(0,1093),(0,1094),(0,1095),(0,1096),(0,1097),(0,1098),(0,1099),(0,1100),(0,1101),(0,1102),(0,1103),(0,1104),(0,1105),(0,1106),(0,1107),(0,1108),(0,1109),(0,1110),(0,1111),(0,1112),(0,1113),(0,1114),(0,1115),(0,1116),(0,1117),(0,1118),(0,1119),(0,1120),(0,1121),(0,1122),(0,1123),(0,1124),(0,1125),(0,1126),(0,1127),(0,1128),(0,1129),(0,1130),(0,1131),(0,1132),(0,1133),(0,1134),(0,1135),(0,1136),(0,1137),(0,1138),(0,1139),(0,1140),(0,1141),(0,1142),(0,1143),(0,1144),(0,1145),(0,1146),(0,1147),(0,1148),(0,1149),(0,1150),(0,1151),(0,1152),(0,1153),(0,1154),(0,1155),(0,1156),(0,1157),(0,1158),(0,1159),(0,1160),(0,1161),(0,1162),(0,1163),(0,1164),(0,1165),(0,1166),(0,1167),(0,1168),(0,1169),(0,1170),(0,1171),(0,1172),(0,1173),(0,1174),(0,1175),(0,1176),(0,1177),(0,1178),(0,1179),(0,1180),(0,1181),(0,1182),(0,1183),(0,1184),(0,1185),(0,1186),(0,1187),(0,1188),(0,1189),(0,1190),(0,1191),(0,1192),(0,1193),(0,1194),(0,1195),(0,1196),(0,1197),(0,1198),(0,1199),(0,1200),(0,1201),(0,1202),(0,1203),(0,1204),(0,1205),(0,1206),(0,1207),(0,1208),(0,1209),(0,1210),(0,1211),(0,1212),(0,1213),(0,1214),(0,1215),(0,1216),(0,1217),(0,1218),(0,1219),(0,1220),(0,1221),(0,1222),(0,1223),(0,1224),(0,1225),(0,1226),(0,1227),(0,1228),(0,1229),(0,1230),(0,1231),(0,1232),(0,1233),(0,1234),(0,1235),(0,1236),(0,1237),(0,1238),(0,1239),(0,1240),(0,1241),(0,1242),(0,1243),(0,1244),(0,1245),(0,1246),(0,1247),(0,1248),(0,1249),(0,1250),(0,1251),(0,1252),(0,1253),(0,1254),(0,1255),(0,1256),(0,1257),(0,1258),(0,1259),(0,1260),(0,1261),(0,1262),(0,1263),(0,1264),(0,1265),(0,1266),(0,1267),(0,1268),(0,1269),(0,1270),(0,1271),(0,1272),(0,1273),(0,1274),(0,1275),(0,1276),(0,1277),(0,1278),(0,1279),(0,1280),(0,1281),(0,1282),(0,1283),(0,1284),(0,1285),(0,1286),(0,1287),(0,1288),(0,1289),(0,1290),(0,1291),(0,1292),(0,1293),(0,1294),(0,1295),(0,1296),(0,1297),(0,1298),(0,1299),(0,1300),(0,1301),(0,1302),(0,1303),(0,1304),(0,1305),(0,1306),(0,1307),(0,1308),(0,1309),(0,1310),(0,1311),(0,1312),(0,1313),(0,1314),(0,1315),(0,1316),(0,1317),(0,1318),(0,1319),(0,1320),(0,1321),(0,1322),(0,1323),(0,1324),(0,1325),(0,1326),(0,1327),(0,1328),(0,1329),(0,1330),(0,1331),(0,1332),(0,1333),(0,1334),(0,1335),(0,1336),(0,1337),(0,1338),(0,1339),(0,1340),(0,1341),(0,1342),(0,1343),(0,1344),(0,1345),(0,1346),(0,1347),(0,1348),(0,1349),(0,1350),(0,1351),(0,1352),(0,1353),(0,1354),(0,1355),(0,1356),(0,1357),(0,1358),(0,1359),(0,1360),(0,1361),(0,1362),(0,1363),(0,1364),(0,1365),(0,1366),(0,1367),(0,1368),(0,1369),(0,1370),(0,1371),(0,1372),(0,1373),(0,1374),(0,1375),(0,1376),(0,1377),(0,1378),(0,1379),(0,1380),(0,1381),(0,1382),(0,1383),(0,1384),(0,1385),(0,1386),(0,1387),(0,1388),(0,1389),(0,1390),(0,1391),(0,1392),(0,1393),(0,1394),(0,1395),(0,1396),(0,1397),(0,1398),(0,1399),(0,1400),(0,1401),(0,1402),(0,1403),(0,1404),(0,1405),(0,1406),(0,1407),(0,1408),(0,1409),(0,1410),(0,1411),(0,1412),(0,1413),(0,1414),(0,1415),(0,1416),(0,1417),(0,1418),(0,1419),(0,1420),(0,1421),(0,1422),(0,1423),(0,1424),(0,1425),(0,1426),(0,1427),(0,1428),(0,1429),(0,1430),(0,1431),(0,1432),(0,1433),(0,1434),(0,1435),(0,1436),(0,1437),(0,1438),(0,1439),(0,1440),(0,1441),(0,1442),(0,1443),(0,1444),(0,1445),(0,1446),(0,1447),(0,1448),(0,1449),(0,1450),(0,1451),(0,1452),(0,1453),(0,1454),(0,1455),(0,1456),(0,1457),(0,1458),(0,1459),(0,1460),(0,1461),(0,1462),(0,1463),(0,1464),(0,1465),(0,1466),(0,1467),(0,1468),(0,1469),(0,1470),(0,1471),(0,1472),(0,1473),(0,1474),(0,1475),(0,1476),(0,1477),(0,1478),(0,1479),(0,1480),(0,1481),(0,1482),(0,1483),(0,1484),(0,1485),(0,1486),(0,1487),(0,1488),(0,1489),(0,1490),(0,1491),(0,1492),(0,1493),(0,1494),(0,1495),(0,1496),(0,1497),(0,1498),(0,1499),(0,1500),(0,1501),(0,1502),(0,1503),(0,1504),(0,1505),(0,1506),(0,1507),(0,1508),(0,1509),(0,1510),(0,1511),(0,1512),(0,1513),(0,1514),(0,1515),(0,1516),(0,1517),(0,1518),(0,1519),(0,1520),(0,1521),(0,1522),(0,1523),(0,1524),(0,1525),(0,1526),(0,1527),(0,1528),(0,1529),(0,1530),(0,1531),(0,1532),(0,1533),(0,1534),(0,1535),(0,1536),(0,1537),(0,1538),(0,1539),(0,1540),(0,1541),(0,1542),(0,1543),(0,1544),(0,1545),(0,1546),(0,1547),(0,1548),(0,1549),(0,1550),(0,1551),(0,1552),(0,1553),(0,1554),(0,1555),(0,1556),(0,1557),(0,1558),(0,1559),(0,1560),(0,1561),(0,1562),(0,1563),(0,1564),(0,1565),(0,1566),(0,1567),(0,1568),(0,1569),(0,1570),(0,1571),(0,1572),(0,1573),(0,1574),(0,1575),(0,1576),(0,1577),(0,1578),(0,1579),(0,1580),(0,1581),(0,1582),(0,1583),(0,1584),(0,1585),(0,1586),(0,1587),(0,1588),(0,1589),(0,1590),(0,1591),(0,1592),(0,1593),(0,1594),(0,1595),(0,1596),(0,1597),(0,1598),(0,1599),(0,1600),(0,1601),(0,1602),(0,1603),(0,1604),(0,1605),(0,1606),(0,1607),(0,1608),(0,1609),(0,1610),(0,1611),(0,1612),(0,1613),(0,1614),(0,1615),(0,1616),(0,1617),(0,1618),(0,1619),(0,1620),(0,1621),(0,1622),(0,1623),(0,1624),(0,1625),(0,1626),(0,1627),(0,1628),(0,1629),(0,1630),(0,1631),(0,1632),(0,1633),(0,1634),(0,1635),(0,1636),(0,1637),(0,1638),(0,1639),(0,1640),(0,1641),(0,1642),(0,1643),(0,1644),(0,1645),(0,1646),(0,1647),(0,1648),(0,1649),(0,1650),(0,1651),(0,1652),(0,1653),(0,1654),(0,1655),(0,1656),(0,1657),(0,1658),(0,1659),(0,1660),(0,1661),(0,1662),(0,1663),(0,1664),(0,1665),(0,1666),(0,1667),(0,1668),(0,1669),(0,1670),(0,1671),(0,1672),(0,1673),(0,1674),(0,1675),(0,1676),(0,1677),(0,1678),(0,1679),(0,1680),(0,1681),(0,1682),(0,1683),(0,1684),(0,1685),(0,1686),(0,1687),(0,1688),(0,1689),(0,1690),(0,1691),(0,1692),(0,1693),(0,1694),(0,1695),(0,1696),(0,1697),(0,1698),(0,1699),(0,1700),(0,1701),(0,1702),(0,1703),(0,1704),(0,1705),(0,1706),(0,1707),(0,1708),(0,1709),(0,1710),(0,1711),(0,1712),(0,1713),(0,1714),(0,1715),(0,1716),(0,1717),(0,1718),(0,1719),(0,1720),(0,1721),(0,1722),(0,1723),(0,1724),(0,1725),(0,1726),(0,1727),(0,1728),(0,1729),(0,1730),(0,1731),(0,1732),(0,1733),(0,1734),(0,1735),(0,1736),(0,1737),(0,1738),(0,1739),(0,1740),(0,1741),(0,1742),(0,1743),(0,1744),(0,1745),(0,1746),(0,1747),(0,1748),(0,1749),(0,1750),(0,1751),(0,1752),(0,1753),(0,1754),(0,1755),(0,1756),(0,1757),(0,1758),(0,1759),(0,1760),(0,1761),(0,1762),(0,1763),(0,1764),(0,1765),(0,1766),(0,1767),(0,1768),(0,1769),(0,1770),(0,1771),(0,1772),(0,1773),(0,1774),(0,1775),(0,1776),(0,1777),(0,1778),(0,1779),(0,1780),(0,1781),(0,1782),(0,1783),(0,1784),(0,1785),(0,1786),(0,1787),(0,1788),(0,1789),(0,1790),(0,1791),(0,1792),(0,1793),(0,1794),(0,1795),(0,1796),(0,1797),(0,1798),(0,1799),(0,1800),(0,1801),(0,1802),(0,1803),(0,1804),(0,1805),(0,1806),(0,1807),(0,1808),(0,1809),(0,1810),(0,1811),(0,1812),(0,1813),(0,1814),(0,1815),(0,1816),(0,1817),(0,1818),(0,1819),(0,1820),(0,1821),(0,1822),(0,1823),(0,1824),(0,1825),(0,1826),(0,1827),(0,1828),(0,1829),(0,1830),(0,1831),(0,1832),(0,1833),(0,1834),(0,1835),(0,1836),(0,1837),(0,1838),(0,1839),(0,1840),(0,1841),(0,1842),(0,1843),(0,1844),(0,1845),(0,1846),(0,1847),(0,1848),(0,1849),(0,1850),(0,1851),(0,1852),(0,1853),(0,1854),(0,1855),(0,1856),(0,1857),(0,1858),(0,1859),(0,1860),(0,1861),(0,1862),(0,1863),(0,1864),(0,1865),(0,1866),(0,1867),(0,1868),(0,1869),(0,1870),(0,1871),(0,1872),(0,1873),(0,1874),(0,1875),(0,1876),(0,1877),(0,1878),(0,1879),(0,1880),(0,1881),(0,1882),(0,1883),(0,1884),(0,1885),(0,1886),(0,1887),(0,1888),(0,1889),(0,1890),(0,1891),(0,1892),(0,1893),(0,1894),(0,1895),(0,1896),(0,1897),(0,1898),(0,1899),(0,1900),(0,1901),(0,1902),(0,1903),(0,1904),(0,1905),(0,1906),(0,1907),(0,1908),(0,1909),(0,1910),(0,1911),(0,1912),(0,1913),(0,1914),(0,1915),(0,1916),(0,1917),(0,1918),(0,1919),(0,1920),(0,1921),(0,1922),(0,1923),(0,1924),(0,1925),(0,1926),(0,1927),(0,1928),(0,1929),(0,1930),(0,1931),(0,1932),(0,1933),(0,1934),(0,1935),(0,1936),(0,1937),(0,1938),(0,1939),(0,1940),(0,1941),(0,1942),(0,1943),(0,1944),(0,1945),(0,1946),(0,1947),(0,1948),(0,1949),(0,1950),(0,1951),(0,1952),(0,1953),(0,1954),(0,1955),(0,1956),(0,1957),(0,1958),(0,1959),(0,1960),(0,1961),(0,1962),(0,1963),(0,1964),(0,1965),(0,1966),(0,1967),(0,1968),(0,1969),(0,1970),(0,1971),(0,1972),(0,1973),(0,1974),(0,1975),(0,1976),(0,1977),(0,1978),(0,1979),(0,1980),(0,1981),(0,1982),(0,1983),(0,1984),(0,1985),(0,1986),(0,1987),(0,1988),(0,1989),(0,1990),(0,1991),(0,1992),(0,1993),(0,1994),(0,1995),(0,1996),(0,1997),(0,1998),(0,1999),(0,2000),(0,2001),(0,2002),(0,2003),(0,2004),(0,2005),(0,2006),(0,2007),(0,2008),(0,2009),(0,2010),(0,2011),(0,2012),(0,2013),(0,2014),(0,2015),(0,2016),(0,2017),(0,2018),(0,2019),(0,2020),(0,2021),(0,2022),(0,2023),(0,2024),(0,2025),(0,2026),(0,2027),(0,2028),(0,2029),(0,2030),(0,2031),(0,2032),(0,2033),(0,2034),(0,2035),(0,2036),(0,2037),(0,2038),(0,2039),(0,2040),(0,2041),(0,2042),(0,2043),(0,2044),(0,2045),(0,2046),(0,2047),(0,2048),(0,2049),(0,2050),(0,2051),(0,2052),(0,2053),(0,2054),(0,2055),(0,2056),(0,2057),(0,2058),(0,2059),(0,2060),(0,2061),(0,2062),(0,2063),(0,2064),(0,2065),(0,2066),(0,2067),(0,2068),(0,2069),(0,2070),(0,2071),(0,2072),(0,2073),(0,2074),(0,2075),(0,2076),(0,2077),(0,2078),(0,2079),(0,2080),(0,2081),(0,2082),(0,2083),(0,2084),(0,2085),(0,2086),(0,2087),(0,2088),(0,2089),(0,2090),(0,2091),(0,2092),(0,2093),(0,2094),(0,2095),(0,2096),(0,2097),(0,2098),(0,2099),(0,2100),(0,2101),(0,2102),(0,2103),(0,2104),(0,2105),(0,2106),(0,2107),(0,2108),(0,2109),(0,2110),(0,2111),(0,2112),(0,2113),(0,2114),(0,2115),(0,2116),(0,2117),(0,2118),(0,2119),(0,2120),(0,2121),(0,2122),(0,2123),(0,2124),(0,2125),(0,2126),(0,2127),(0,2128),(0,2129),(0,2130),(0,2131),(0,2132),(0,2133),(0,2134),(0,2135),(0,2136),(0,2137),(0,2138),(0,2139),(0,2140),(0,2141),(0,2142),(0,2143),(0,2144),(0,2145),(0,2146),(0,2147),(0,2148),(0,2149),(0,2150),(0,2151),(0,2152),(0,2153),(0,2154),(0,2155),(0,2156),(0,2157),(0,2158),(0,2159),(0,2160),(0,2161),(0,2162),(0,2163),(0,2164),(0,2165),(0,2166),(0,2167),(0,2168),(0,2169),(0,2170),(0,2171),(0,2172),(0,2173),(0,2174),(0,2175),(0,2176),(0,2177),(0,2178),(0,2179),(0,2180),(0,2181),(0,2182),(0,2183),(0,2184),(0,2185),(0,2186),(0,2187),(0,2188),(0,2189),(0,2190),(0,2191),(0,2192),(0,2193),(0,2194),(0,2195),(0,2196),(0,2197),(0,2198),(0,2199),(0,2200),(0,2201),(0,2202),(0,2203),(0,2204),(0,2205),(0,2206),(0,2207),(0,2208),(0,2209),(0,2210),(0,2211),(0,2212),(0,2213),(0,2214),(0,2215),(0,2216),(0,2217),(0,2218),(0,2219),(0,2220),(0,2221),(0,2222),(0,2223),(0,2224),(0,2225),(0,2226),(0,2227),(0,2228),(0,2229),(0,2230),(0,2231),(0,2232),(0,2233),(0,2234),(0,2235),(0,2236),(0,2237),(0,2238),(0,2239),(0,2240),(0,2241),(0,2242),(0,2243),(0,2244),(0,2245),(0,2246),(0,2247),(0,2248),(0,2249),(0,2250),(0,2251),(0,2252),(0,2253),(0,2254),(0,2255),(0,2256),(0,2257),(0,2258),(0,2259),(0,2260),(0,2261),(0,2262),(0,2263),(0,2264),(0,2265),(0,2266),(0,2267),(0,2268),(0,2269),(0,2270),(0,2271),(0,2272),(0,2273),(0,2274),(0,2275),(0,2276),(0,2277),(0,2278),(0,2279),(0,2280),(0,2281),(0,2282),(0,2283),(0,2284),(0,2285),(0,2286),(0,2287),(0,2288),(0,2289),(0,2290),(0,2291),(0,2292),(0,2293),(0,2294),(0,2295),(0,2296),(0,2297),(0,2298),(0,2299),(0,2300),(0,2301),(0,2302),(0,2303),(0,2304),(0,2305),(0,2306),(0,2307),(0,2308),(0,2309),(0,2310),(0,2311),(0,2312),(0,2313),(0,2314),(0,2315),(0,2316),(0,2317),(0,2318),(0,2319),(0,2320),(0,2321),(0,2322),(0,2323),(0,2324),(0,2325),(0,2326),(0,2327),(0,2328),(0,2329),(0,2330),(0,2331),(0,2332),(0,2333),(0,2334),(0,2335),(0,2336),(0,2337),(0,2338),(0,2339),(0,2340),(0,2341),(0,2342),(0,2343),(0,2344),(0,2345),(0,2346),(0,2347),(0,2348),(0,2349),(0,2350),(0,2351),(0,2352),(0,2353),(0,2354),(0,2355),(0,2356),(0,2357),(0,2358),(0,2359),(0,2360),(0,2361),(0,2362),(0,2363),(0,2364),(0,2365),(0,2366),(0,2367),(0,2368),(0,2369),(0,2370),(0,2371),(0,2372),(0,2373),(0,2374),(0,2375),(0,2376),(0,2377),(0,2378),(0,2379),(0,2380),(0,2381),(0,2382),(0,2383),(0,2384),(0,2385),(0,2386),(0,2387),(0,2388),(0,2389),(0,2390),(0,2391),(0,2392),(0,2393),(0,2394),(0,2395),(0,2396),(0,2397),(0,2398),(0,2399),(0,2400),(0,2401),(0,2402),(0,2403),(0,2404),(0,2405),(0,2406),(0,2407),(0,2408),(0,2409),(0,2410),(0,2411),(0,2412),(0,2413),(0,2414),(0,2415),(0,2416),(0,2417),(0,2418),(0,2419),(0,2420),(0,2421),(0,2422),(0,2423),(0,2424),(0,2425),(0,2426),(0,2427),(0,2428),(0,2429),(0,2430),(0,2431),(0,2432),(0,2433),(0,2434),(0,2435),(0,2436),(0,2437),(0,2438),(0,2439),(0,2440),(0,2441),(0,2442),(0,2443),(0,2444),(0,2445),(0,2446),(0,2447),(0,2448),(0,2449),(0,2450),(0,2451),(0,2452),(0,2453),(0,2454),(0,2455),(0,2456),(0,2457),(0,2458),(0,2459),(0,2460),(0,2461),(0,2462),(0,2463),(0,2464),(0,2465),(0,2466),(0,2467),(0,2468),(0,2469),(0,2470),(0,2471),(0,2472),(0,2473),(0,2474),(0,2475),(0,2476),(0,2477),(0,2478),(0,2479),(0,2480),(0,2481),(0,2482),(0,2483),(0,2484),(0,2485),(0,2486),(0,2487),(0,2488),(0,2489),(0,2490),(0,2491),(0,2492),(0,2493),(0,2494),(0,2495),(0,2496),(0,2497),(0,2498),(0,2499),(0,2500),(0,2501),(0,2502),(0,2503),(0,2504),(0,2505),(0,2506),(0,2507),(0,2508),(0,2509),(0,2510),(0,2511),(0,2512),(0,2513),(0,2514),(0,2515),(0,2516),(0,2517),(0,2518),(0,2519),(0,2520),(0,2521),(0,2522),(0,2523),(0,2524),(0,2525),(0,2526),(0,2527),(0,2528),(0,2529),(0,2530),(0,2531),(0,2532),(0,2533),(0,2534),(0,2535),(0,2536),(0,2537),(0,2538),(0,2539),(0,2540),(0,2541),(0,2542),(0,2543),(0,2544),(0,2545),(0,2546),(0,2547),(0,2548),(0,2549),(0,2550),(0,2551),(0,2552),(0,2553),(0,2554),(0,2555),(0,2556),(0,2557),(0,2558),(0,2559),(0,2560),(0,2561),(0,2562),(0,2563),(0,2564),(0,2565),(0,2566),(0,2567),(0,2568),(0,2569),(0,2570),(0,2571),(0,2572),(0,2573),(0,2574),(0,2575),(0,2576),(0,2577),(0,2578),(0,2579),(0,2580),(0,2581),(0,2582),(0,2583),(0,2584),(0,2585),(0,2586),(0,2587),(0,2588),(0,2589),(0,2590),(0,2591),(0,2592),(0,2593),(0,2594),(0,2595),(0,2596),(0,2597),(0,2598),(0,2599),(0,2600),(0,2601),(0,2602),(0,2603),(0,2604),(0,2605),(0,2606),(0,2607),(0,2608),(0,2609),(0,2610),(0,2611),(0,2612),(0,2613),(0,2614),(0,2615),(0,2616),(0,2617),(0,2618),(0,2619),(0,2620),(0,2621),(0,2622),(0,2623),(0,2624),(0,2625),(0,2626),(0,2627),(0,2628),(0,2629),(0,2630),(0,2631),(0,2632),(0,2633),(0,2634),(0,2635),(0,2636),(0,2637),(0,2638),(0,2639),(0,2640),(0,2641),(0,2642),(0,2643),(0,2644),(0,2645),(0,2646),(0,2647),(0,2648),(0,2649),(0,2650),(0,2651),(0,2652),(0,2653),(0,2654),(0,2655),(0,2656),(0,2657),(0,2658),(0,2659),(0,2660),(0,2661),(0,2662),(0,2663),(0,2664),(0,2665),(0,2666),(0,2667),(0,2668),(0,2669),(0,2670),(0,2671),(0,2672),(0,2673),(0,2674),(0,2675),(0,2676),(0,2677),(0,2678),(0,2679),(0,2680),(0,2681),(0,2682),(0,2683),(0,2684),(0,2685),(0,2686),(0,2687),(0,2688),(0,2689),(0,2690),(0,2691),(0,2692),(0,2693),(0,2694),(0,2695),(0,2696),(0,2697),(0,2698),(0,2699),(0,2700),(0,2701),(0,2702),(0,2703),(0,2704),(0,2705),(0,2706),(0,2707),(0,2708),(0,2709),(0,2710),(0,2711),(0,2712),(0,2713),(0,2714),(0,2715),(0,2716),(0,2717),(0,2718),(0,2719),(0,2720),(0,2721),(0,2722),(0,2723),(0,2724),(0,2725),(0,2726),(0,2727),(0,2728),(0,2729),(0,2730),(0,2731),(0,2732),(0,2733),(0,2734),(0,2735),(0,2736),(0,2737),(0,2738),(0,2739),(0,2740),(0,2741),(0,2742),(0,2743),(0,2744),(0,2745),(0,2746),(0,2747),(0,2748),(0,2749),(0,2750),(0,2751),(0,2752),(0,2753),(0,2754),(0,2755),(0,2756),(0,2757),(0,2758),(0,2759),(0,2760),(0,2761),(0,2762),(0,2763),(0,2764),(0,2765),(0,2766),(0,2767),(0,2768),(0,2769),(0,2770),(0,2771),(0,2772),(0,2773),(0,2774),(0,2775),(0,2776),(0,2777),(0,2778),(0,2779),(0,2780),(0,2781),(0,2782),(0,2783),(0,2784),(0,2785),(0,2786),(0,2787),(0,2788),(0,2789),(0,2790),(0,2791),(0,2792),(0,2793),(0,2794),(0,2795),(0,2796),(0,2797),(0,2798),(0,2799),(0,2800),(0,2801),(0,2802),(0,2803),(0,2804),(0,2805),(0,2806),(0,2807),(0,2808),(0,2809),(0,2810),(0,2811),(0,2812),(0,2813),(0,2814),(0,2815),(0,2816),(0,2817),(0,2818),(0,2819),(0,2820),(0,2821),(0,2822),(0,2823),(0,2824),(0,2825),(0,2826),(0,2827),(0,2828),(0,2829),(0,2830),(0,2831),(0,2832),(0,2833),(0,2834),(0,2835),(0,2836),(0,2837),(0,2838),(0,2839),(0,2840),(0,2841),(0,2842),(0,2843),(0,2844),(0,2845),(0,2846),(0,2847),(0,2848),(0,2849),(0,2850),(0,2851),(0,2852),(0,2853),(0,2854),(0,2855),(0,2856),(0,2857),(0,2858),(0,2859),(0,2860),(0,2861),(0,2862),(0,2863),(0,2864),(0,2865),(0,2866),(0,2867),(0,2868),(0,2869),(0,2870),(0,2871),(0,2872),(0,2873),(0,2874),(0,2875),(0,2876),(0,2877),(0,2878),(0,2879),(0,2880),(0,2881),(0,2882),(0,2883),(0,2884),(0,2885),(0,2886),(0,2887),(0,2888),(0,2889),(0,2890),(0,2891),(0,2892),(0,2893),(0,2894),(0,2895),(0,2896),(0,2897),(0,2898),(0,2899),(0,2900),(0,2901),(0,2902),(0,2903),(0,2904),(0,2905),(0,2906),(0,2907),(0,2908),(0,2909),(0,2910),(0,2911),(0,2912),(0,2913),(0,2914),(0,2915),(0,2916),(0,2917),(0,2918),(0,2919),(0,2920),(0,2921),(0,2922),(0,2923),(0,2924),(0,2925),(0,2926),(0,2927),(0,2928),(0,2929),(0,2930),(0,2931),(0,2932),(0,2933),(0,2934),(0,2935),(0,2936),(0,2937),(0,2938),(0,2939),(0,2940),(0,2941),(0,2942),(0,2943),(0,2944),(0,2945),(0,2946),(0,2947),(0,2948),(0,2949),(0,2950),(0,2951),(0,2952),(0,2953),(0,2954),(0,2955),(0,2956),(0,2957),(0,2958),(0,2959),(0,2960),(0,2961),(0,2962),(0,2963),(0,2964),(0,2965),(0,2966),(0,2967),(0,2968),(0,2969),(0,2970),(0,2971),(0,2972),(0,2973),(0,2974),(0,2975),(0,2976),(0,2977),(0,2978),(0,2979),(0,2980),(0,2981),(0,2982),(0,2983),(0,2984),(0,2985),(0,2986),(0,2987),(0,2988),(0,2989),(0,2990),(0,2991),(0,2992),(0,2993),(0,2994),(0,2995),(0,2996),(0,2997),(0,2998),(0,2999),(0,3000),(0,3001),(0,3002),(0,3003),(0,3004),(0,3005),(0,3006),(0,3007),(0,3008),(0,3009),(0,3010),(0,3011),(0,3012),(0,3013),(0,3014),(0,3015),(0,3016),(0,3017),(0,3018),(0,3019),(0,3020),(0,3021),(0,3022),(0,3023),(0,3024),(0,3025),(0,3026),(0,3027),(0,3028),(0,3029),(0,3030),(0,3031),(0,3032),(0,3033),(0,3034),(0,3035),(0,3036),(0,3037),(0,3038),(0,3039),(0,3040),(0,3041),(0,3042),(0,3043),(0,3044),(0,3045),(0,3046),(0,3047),(0,3048),(0,3049),(0,3050),(0,3051),(0,3052),(0,3053),(0,3054),(0,3055),(0,3056),(0,3057),(0,3058),(0,3059),(0,3060),(0,3061),(0,3062),(0,3063),(0,3064),(0,3065),(0,3066),(0,3067),(0,3068),(0,3069),(0,3070),(0,3071),(0,3072),(0,3073),(0,3074),(0,3075),(0,3076),(0,3077),(0,3078),(0,3079),(0,3080),(0,3081),(0,3082),(0,3083),(0,3084),(0,3085),(0,3086),(0,3087),(0,3088),(0,3089),(0,3090),(0,3091),(0,3092),(0,3093),(0,3094),(0,3095),(0,3096),(0,3097),(0,3098),(0,3099),(0,3100),(0,3101),(0,3102),(0,3103),(0,3104),(0,3105),(0,3106),(0,3107),(0,3108),(0,3109),(0,3110),(0,3111),(0,3112),(0,3113),(0,3114),(0,3115),(0,3116),(0,3117),(0,3118),(0,3119),(0,3120),(0,3121),(0,3122),(0,3123),(0,3124),(0,3125),(0,3126),(0,3127),(0,3128),(0,3129),(0,3130),(0,3131),(0,3132),(0,3133),(0,3134),(0,3135),(0,3136),(0,3137),(0,3138),(0,3139),(0,3140),(0,3141),(0,3142),(0,3143),(0,3144),(0,3145),(0,3146),(0,3147),(0,3148),(0,3149),(0,3150),(0,3151),(0,3152),(0,3153),(0,3154),(0,3155),(0,3156),(0,3157),(0,3158),(0,3159),(0,3160),(0,3161),(0,3162),(0,3163),(0,3164),(0,3165),(0,3166),(0,3167),(0,3168),(0,3169),(0,3170),(0,3171),(0,3172),(0,3173),(0,3174),(0,3175),(0,3176),(0,3177),(0,3178),(0,3179),(0,3180),(0,3181),(0,3182),(0,3183),(0,3184),(0,3185),(0,3186),(0,3187),(0,3188),(0,3189),(0,3190),(0,3191),(0,3192),(0,3193),(0,3194),(0,3195),(0,3196),(0,3197),(0,3198),(0,3199),(0,3200),(0,3201),(0,3202),(0,3203),(0,3204),(0,3205),(0,3206),(0,3207),(0,3208),(0,3209),(0,3210),(0,3211),(0,3212),(0,3213),(0,3214),(0,3215),(0,3216),(0,3217),(0,3218),(0,3219),(0,3220),(0,3221),(0,3222),(0,3223),(0,3224),(0,3225),(0,3226),(0,3227),(0,3228),(0,3229),(0,3230),(0,3231),(0,3232),(0,3233),(0,3234),(0,3235),(0,3236),(0,3237),(0,3238),(0,3239),(0,3240),(0,3241),(0,3242),(0,3243),(0,3244),(0,3245),(0,3246),(0,3247),(0,3248),(0,3249),(0,3250),(0,3251),(0,3252),(0,3253),(0,3254),(0,3255),(0,3256),(0,3257),(0,3258),(0,3259),(0,3260),(0,3261),(0,3262),(0,3263),(0,3264),(0,3265),(0,3266),(0,3267),(0,3268),(0,3269),(0,3270),(0,3271),(0,3272),(0,3273),(0,3274),(0,3275),(0,3276),(0,3277),(0,3278),(0,3279),(0,3280),(0,3281),(0,3282),(0,3283),(0,3284),(0,3285),(0,3286),(0,3287),(0,3288),(0,3289),(0,3290),(0,3291),(0,3292),(0,3293),(0,3294),(0,3295),(0,3296),(0,3297),(0,3298),(0,3299),(0,3300),(0,3301),(0,3302),(0,3303),(0,3304),(0,3305),(0,3306),(0,3307),(0,3308),(0,3309),(0,3310),(0,3311),(0,3312),(0,3313),(0,3314),(0,3315),(0,3316),(0,3317),(0,3318),(0,3319),(0,3320),(0,3321),(0,3322),(0,3323),(0,3324),(0,3325),(0,3326),(0,3327),(0,3328),(0,3329),(0,3330),(0,3331),(0,3332),(0,3333),(0,3334),(0,3335),(0,3336),(0,3337),(0,3338),(0,3339),(0,3340),(0,3341),(0,3342),(0,3343),(0,3344),(0,3345),(0,3346),(0,3347),(0,3348),(0,3349),(0,3350),(0,3351),(0,3352),(0,3353),(0,3354),(0,3355),(0,3356),(0,3357),(0,3358),(0,3359),(0,3360),(0,3361),(0,3362),(0,3363),(0,3364),(0,3365),(0,3366),(0,3367),(0,3368),(0,3369),(0,3370),(0,3371),(0,3372),(0,3373),(0,3374),(0,3375),(0,3376),(0,3377),(0,3378),(0,3379),(0,3380),(0,3381),(0,3382),(0,3383),(0,3384),(0,3385),(0,3386),(0,3387),(0,3388),(0,3389),(0,3390),(0,3391),(0,3392),(0,3393),(0,3394),(0,3395),(0,3396),(0,3397),(0,3398),(0,3399),(0,3400),(0,3401),(0,3402),(0,3403),(0,3404),(0,3405),(0,3406),(0,3407),(0,3408),(0,3409),(0,3410),(0,3411),(0,3412),(0,3413),(0,3414),(0,3415),(0,3416),(0,3417),(0,3418),(0,3419),(0,3420),(0,3421),(0,3422),(0,3423),(0,3424),(0,3425),(0,3426),(0,3427),(0,3428),(0,3429),(0,3430),(0,3431),(0,3432),(0,3433),(0,3434),(0,3435),(0,3436),(0,3437),(0,3438),(0,3439),(0,3440),(0,3441),(0,3442),(0,3443),(0,3444),(0,3445),(0,3446),(0,3447),(0,3448),(0,3449),(0,3450),(0,3451),(0,3452),(0,3453),(0,3454),(0,3455),(0,3456),(0,3457),(0,3458),(0,3459),(0,3460),(0,3461),(0,3462),(0,3463),(0,3464),(0,3465),(0,3466),(0,3467),(0,3468),(0,3469),(0,3470),(0,3471),(0,3472),(0,3473),(0,3474),(0,3475),(0,3476),(0,3477),(0,3478),(0,3479),(0,3480),(0,3481),(0,3482),(0,3483),(0,3484),(0,3485),(0,3486),(0,3487),(0,3488),(0,3489),(0,3490),(0,3491),(0,3492),(0,3493),(0,3494),(0,3495),(0,3496),(0,3497),(0,3498),(0,3499),(0,3500),(0,3501),(0,3502),(0,3503),(0,3504),(0,3505),(0,3506),(0,3507),(0,3508),(0,3509),(0,3510),(0,3511),(0,3512),(0,3513),(0,3514),(0,3515),(0,3516),(0,3517),(0,3518),(0,3519),(0,3520),(0,3521),(0,3522),(0,3523),(0,3524),(0,3525),(0,3526),(0,3527),(0,3528),(0,3529),(0,3530),(0,3531),(0,3532),(0,3533),(0,3534),(0,3535),(0,3536),(0,3537),(0,3538),(0,3539),(0,3540),(0,3541),(0,3542),(0,3543),(0,3544),(0,3545),(0,3546),(0,3547),(0,3548),(0,3549),(0,3550),(0,3551),(0,3552),(0,3553),(0,3554),(0,3555),(0,3556),(0,3557),(0,3558),(0,3559),(0,3560),(0,3561),(0,3562),(0,3563),(0,3564),(0,3565),(0,3566),(0,3567),(0,3568),(0,3569),(0,3570),(0,3571),(0,3572),(0,3573),(0,3574),(0,3575),(0,3576),(0,3577),(0,3578),(0,3579),(0,3580),(0,3581),(0,3582),(0,3583),(0,3584),(0,3585),(0,3586),(0,3587),(0,3588),(0,3589),(0,3590),(0,3591),(0,3592),(0,3593),(0,3594),(0,3595),(0,3596),(0,3597),(0,3598),(0,3599),(0,3600),(0,3601),(0,3602),(0,3603),(0,3604),(0,3605),(0,3606),(0,3607),(0,3608),(0,3609),(0,3610),(0,3611),(0,3612),(0,3613),(0,3614),(0,3615),(0,3616),(0,3617),(0,3618),(0,3619),(0,3620),(0,3621),(0,3622),(0,3623),(0,3624),(0,3625),(0,3626),(0,3627),(0,3628),(0,3629),(0,3630),(0,3631),(0,3632),(0,3633),(0,3634),(0,3635),(0,3636),(0,3637),(0,3638),(0,3639),(0,3640),(0,3641),(0,3642),(0,3643),(0,3644),(0,3645),(0,3646),(0,3647),(0,3648),(0,3649),(0,3650),(0,3651),(0,3652),(0,3653),(0,3654),(0,3655),(0,3656),(0,3657),(0,3658),(0,3659),(0,3660),(0,3661),(0,3662),(0,3663),(0,3664),(0,3665),(0,3666),(0,3667),(0,3668),(0,3669),(0,3670),(0,3671),(0,3672),(0,3673),(0,3674),(0,3675),(0,3676),(0,3677),(0,3678),(0,3679),(0,3680),(0,3681),(0,3682),(0,3683),(0,3684),(0,3685),(0,3686),(0,3687),(0,3688),(0,3689),(0,3690),(0,3691),(0,3692),(0,3693),(0,3694),(0,3695),(0,3696),(0,3697),(0,3698),(0,3699),(0,3700),(0,3701),(0,3702),(0,3703),(0,3704),(0,3705),(0,3706),(0,3707),(0,3708),(0,3709),(0,3710),(0,3711),(0,3712),(0,3713),(0,3714),(0,3715),(0,3716),(0,3717),(0,3718),(0,3719),(0,3720),(0,3721),(0,3722),(0,3723),(0,3724),(0,3725),(0,3726),(0,3727),(0,3728),(0,3729),(0,3730),(0,3731),(0,3732),(0,3733),(0,3734),(0,3735),(0,3736),(0,3737),(0,3738),(0,3739),(0,3740),(0,3741),(0,3742),(0,3743),(0,3744),(0,3745),(0,3746),(0,3747),(0,3748),(0,3749),(0,3750),(0,3751),(0,3752),(0,3753),(0,3754),(0,3755),(0,3756),(0,3757),(0,3758),(0,3759),(0,3760),(0,3761),(0,3762),(0,3763),(0,3764),(0,3765),(0,3766),(0,3767),(0,3768),(0,3769),(0,3770),(0,3771),(0,3772),(0,3773),(0,3774),(0,3775),(0,3776),(0,3777),(0,3778),(0,3779),(0,3780),(0,3781),(0,3782),(0,3783),(0,3784),(0,3785),(0,3786),(0,3787),(0,3788),(0,3789),(0,3790),(0,3791),(0,3792),(0,3793),(0,3794),(0,3795),(0,3796),(0,3797),(0,3798),(0,3799),(0,3800),(0,3801),(0,3802),(0,3803),(0,3804),(0,3805),(0,3806),(0,3807),(0,3808),(0,3809),(0,3810),(0,3811),(0,3812),(0,3813),(0,3814),(0,3815),(0,3816),(0,3817),(0,3818),(0,3819),(0,3820),(0,3821),(0,3822),(0,3823),(0,3824),(0,3825),(0,3826),(0,3827),(0,3828),(0,3829),(0,3830),(0,3831),(0,3832),(0,3833),(0,3834),(0,3835),(0,3836),(0,3837),(0,3838),(0,3839),(0,3840),(0,3841),(0,3842),(0,3843),(0,3844),(0,3845),(0,3846),(0,3847),(0,3848),(0,3849),(0,3850),(0,3851),(0,3852),(0,3853),(0,3854),(0,3855),(0,3856),(0,3857),(0,3858),(0,3859),(0,3860),(0,3861),(0,3862),(0,3863),(0,3864),(0,3865),(0,3866),(0,3867),(0,3868),(0,3869),(0,3870),(0,3871),(0,3872),(0,3873),(0,3874),(0,3875),(0,3876),(0,3877),(0,3878),(0,3879),(0,3880),(0,3881),(0,3882),(0,3883),(0,3884),(0,3885),(0,3886),(0,3887),(0,3888),(0,3889),(0,3890),(0,3891),(0,3892),(0,3893),(0,3894),(0,3895),(0,3896),(0,3897),(0,3898),(0,3899),(0,3900),(0,3901),(0,3902),(0,3903),(0,3904),(0,3905),(0,3906),(0,3907),(0,3908),(0,3909),(0,3910),(0,3911),(0,3912),(0,3913),(0,3914),(0,3915),(0,3916),(0,3917),(0,3918),(0,3919),(0,3920),(0,3921),(0,3922),(0,3923),(0,3924),(0,3925),(0,3926),(0,3927),(0,3928),(0,3929),(0,3930),(0,3931),(0,3932),(0,3933),(0,3934),(0,3935),(0,3936),(0,3937),(0,3938),(0,3939),(0,3940),(0,3941),(0,3942),(0,3943),(0,3944),(0,3945),(0,3946),(0,3947),(0,3948),(0,3949),(0,3950),(0,3951),(0,3952),(0,3953),(0,3954),(0,3955),(0,3956),(0,3957),(0,3958),(0,3959),(0,3960),(0,3961),(0,3962),(0,3963),(0,3964),(0,3965),(0,3966),(0,3967),(0,3968),(0,3969),(0,3970),(0,3971),(0,3972),(0,3973),(0,3974),(0,3975),(0,3976),(0,3977),(0,3978),(0,3979),(0,3980),(0,3981),(0,3982),(0,3983),(0,3984),(0,3985),(0,3986),(0,3987),(0,3988),(0,3989),(0,3990),(0,3991),(0,3992),(0,3993),(0,3994),(0,3995),(0,3996),(0,3997),(0,3998),(0,3999),(0,4000),(0,4001),(0,4002),(0,4003),(0,4004),(0,4005),(0,4006),(0,4007),(0,4008),(0,4009),(0,4010),(0,4011),(0,4012),(0,4013),(0,4014),(0,4015),(0,4016),(0,4017),(0,4018),(0,4019),(0,4020),(0,4021),(0,4022),(0,4023),(0,4024),(0,4025),(0,4026),(0,4027),(0,4028),(0,4029),(0,4030),(0,4031),(0,4032),(0,4033),(0,4034),(0,4035),(0,4036),(0,4037),(0,4038),(0,4039),(0,4040),(0,4041),(0,4042),(0,4043),(0,4044),(0,4045),(0,4046),(0,4047),(0,4048),(0,4049),(0,4050),(0,4051),(0,4052),(0,4053),(0,4054),(0,4055),(0,4056),(0,4057),(0,4058),(0,4059),(0,4060),(0,4061),(0,4062),(0,4063),(0,4064),(0,4065),(0,4066),(0,4067),(0,4068),(0,4069),(0,4070),(0,4071),(0,4072),(0,4073),(0,4074),(0,4075),(0,4076),(0,4077),(0,4078),(0,4079),(0,4080),(0,4081),(0,4082),(0,4083),(0,4084),(0,4085),(0,4086),(0,4087),(0,4088),(0,4089),(0,4090),(0,4091),(0,4092),(0,4093),(0,4094),(0,4095),(0,4096),(0,4097),(0,4098),(0,4099),(0,4100),(0,4101),(0,4102),(0,4103),(0,4104),(0,4105),(0,4106),(0,4107),(0,4108),(0,4109),(0,4110),(0,4111),(0,4112),(0,4113),(0,4114),(0,4115),(0,4116),(0,4117),(0,4118),(0,4119),(0,4120),(0,4121),(0,4122),(0,4123),(0,4124),(0,4125),(0,4126),(0,4127),(0,4128),(0,4129),(0,4130),(0,4131),(0,4132),(0,4133),(0,4134),(0,4135),(0,4136),(0,4137),(0,4138),(0,4139),(0,4140),(0,4141),(0,4142),(0,4143),(0,4144),(0,4145),(0,4146),(0,4147),(0,4148),(0,4149),(0,4150),(0,4151),(0,4152),(0,4153),(0,4154),(0,4155),(0,4156),(0,4157),(0,4158),(0,4159),(0,4160),(0,4161),(0,4162),(0,4163),(0,4164),(0,4165),(0,4166),(0,4167),(0,4168),(0,4169),(0,4170),(0,4171),(0,4172),(0,4173),(0,4174),(0,4175),(0,4176),(0,4177),(0,4178),(0,4179),(0,4180),(0,4181),(0,4182),(0,4183),(0,4184),(0,4185),(0,4186),(0,4187),(0,4188),(0,4189),(0,4190),(0,4191),(0,4192),(0,4193),(0,4194),(0,4195),(0,4196),(0,4197),(0,4198),(0,4199),(0,4200),(0,4201),(0,4202),(0,4203),(0,4204),(0,4205),(0,4206),(0,4207),(0,4208),(0,4209),(0,4210),(0,4211),(0,4212),(0,4213),(0,4214),(0,4215),(0,4216),(0,4217),(0,4218),(0,4219),(0,4220),(0,4221),(0,4222),(0,4223),(0,4224),(0,4225),(0,4226),(0,4227),(0,4228),(0,4229),(0,4230),(0,4231),(0,4232),(0,4233),(0,4234),(0,4235),(0,4236),(0,4237),(0,4238),(0,4239),(0,4240),(0,4241),(0,4242),(0,4243),(0,4244),(0,4245),(0,4246),(0,4247),(0,4248),(0,4249),(0,4250),(0,4251),(0,4252),(0,4253),(0,4254),(0,4255),(0,4256),(0,4257),(0,4258),(0,4259),(0,4260),(0,4261),(0,4262),(0,4263),(0,4264),(0,4265),(0,4266),(0,4267),(0,4268),(0,4269),(0,4270),(0,4271),(0,4272),(0,4273),(0,4274),(0,4275),(0,4276),(0,4277),(0,4278),(0,4279),(0,4280),(0,4281),(0,4282),(0,4283),(0,4284),(0,4285),(0,4286),(0,4287),(0,4288),(0,4289),(0,4290),(0,4291),(0,4292),(0,4293),(0,4294),(0,4295),(0,4296),(0,4297),(0,4298),(0,4299),(0,4300),(0,4301),(0,4302),(0,4303),(0,4304),(0,4305),(0,4306),(0,4307),(0,4308),(0,4309),(0,4310),(0,4311),(0,4312),(0,4313),(0,4314),(0,4315),(0,4316),(0,4317),(0,4318),(0,4319),(0,4320),(0,4321),(0,4322),(0,4323),(0,4324),(0,4325),(0,4326),(0,4327),(0,4328),(0,4329),(0,4330),(0,4331),(0,4332),(0,4333),(0,4334),(0,4335),(0,4336),(0,4337),(0,4338),(0,4339),(0,4340),(0,4341),(0,4342),(0,4343),(0,4344),(0,4345),(0,4346),(0,4347),(0,4348),(0,4349),(0,4350),(0,4351),(0,4352),(0,4353),(0,4354),(0,4355),(0,4356),(0,4357),(0,4358),(0,4359),(0,4360),(0,4361),(0,4362),(0,4363),(0,4364),(0,4365),(0,4366),(0,4367),(0,4368),(0,4369),(0,4370),(0,4371),(0,4372),(0,4373),(0,4374),(0,4375),(0,4376),(0,4377),(0,4378),(0,4379),(0,4380),(0,4381),(0,4382),(0,4383),(0,4384),(0,4385),(0,4386),(0,4387),(0,4388),(0,4389),(0,4390),(0,4391),(0,4392),(0,4393),(0,4394),(0,4395),(0,4396),(0,4397),(0,4398),(0,4399),(0,4400),(0,4401),(0,4402),(0,4403),(0,4404),(0,4405),(0,4406),(0,4407),(0,4408),(0,4409),(0,4410),(0,4411),(0,4412),(0,4413),(0,4414),(0,4415),(0,4416),(0,4417),(0,4418),(0,4419),(0,4420),(0,4421),(0,4422),(0,4423),(0,4424),(0,4425),(0,4426),(0,4427),(0,4428),(0,4429),(0,4430),(0,4431),(0,4432),(0,4433),(0,4434),(0,4435),(0,4436),(0,4437),(0,4438),(0,4439),(0,4440),(0,4441),(0,4442),(0,4443),(0,4444),(0,4445),(0,4446),(0,4447),(0,4448),(0,4449),(0,4450),(0,4451),(0,4452),(0,4453),(0,4454),(0,4455),(0,4456),(0,4457),(0,4458),(0,4459),(0,4460),(0,4461),(0,4462),(0,4463),(0,4464),(0,4465),(0,4466),(0,4467),(0,4468),(0,4469),(0,4470),(0,4471),(0,4472),(0,4473),(0,4474),(0,4475),(0,4476),(0,4477),(0,4478),(0,4479),(0,4480),(0,4481),(0,4482),(0,4483),(0,4484),(0,4485),(0,4486),(0,4487),(0,4488),(0,4489),(0,4490),(0,4491),(0,4492),(0,4493),(0,4494),(0,4495),(0,4496),(0,4497),(0,4498),(0,4499),(0,4500),(0,4501),(0,4502),(0,4503),(0,4504),(0,4505),(0,4506),(0,4507),(0,4508),(0,4509),(0,4510),(0,4511),(0,4512),(0,4513),(0,4514),(0,4515),(0,4516),(0,4517),(0,4518),(0,4519),(0,4520),(0,4521),(0,4522),(0,4523),(0,4524),(0,4525),(0,4526),(0,4527),(0,4528),(0,4529),(0,4530),(0,4531),(0,4532),(0,4533),(0,4534),(0,4535),(0,4536),(0,4537),(0,4538),(0,4539),(0,4540),(0,4541),(0,4542),(0,4543),(0,4544),(0,4545),(0,4546),(0,4547),(0,4548),(0,4549),(0,4550),(0,4551),(0,4552),(0,4553),(0,4554),(0,4555),(0,4556),(0,4557),(0,4558),(0,4559),(0,4560),(0,4561),(0,4562),(0,4563),(0,4564),(0,4565),(0,4566),(0,4567),(0,4568),(0,4569),(0,4570),(0,4571),(0,4572),(0,4573),(0,4574),(0,4575),(0,4576),(0,4577),(0,4578),(0,4579),(0,4580),(0,4581),(0,4582),(0,4583),(0,4584),(0,4585),(0,4586),(0,4587),(0,4588),(0,4589),(0,4590),(0,4591),(0,4592),(0,4593),(0,4594),(0,4595),(0,4596),(0,4597),(0,4598),(0,4599),(0,4600),(0,4601),(0,4602),(0,4603),(0,4604),(0,4605),(0,4606),(0,4607),(0,4608),(0,4609),(0,4610),(0,4611),(0,4612),(0,4613),(0,4614),(0,4615),(0,4616),(0,4617),(0,4618),(0,4619),(0,4620),(0,4621),(0,4622),(0,4623),(0,4624),(0,4625),(0,4626),(0,4627),(0,4628),(0,4629),(0,4630),(0,4631),(0,4632),(0,4633),(0,4634),(0,4635),(0,4636),(0,4637),(0,4638),(0,4639),(0,4640),(0,4641),(0,4642),(0,4643),(0,4644),(0,4645),(0,4646),(0,4647),(0,4648),(0,4649),(0,4650),(0,4651),(0,4652),(0,4653),(0,4654),(0,4655),(0,4656),(0,4657),(0,4658),(0,4659),(0,4660),(0,4661),(0,4662),(0,4663),(0,4664),(0,4665),(0,4666),(0,4667),(0,4668),(0,4669),(0,4670),(0,4671),(0,4672),(0,4673),(0,4674),(0,4675),(0,4676),(0,4677),(0,4678),(0,4679),(0,4680),(0,4681),(0,4682),(0,4683),(0,4684),(0,4685),(0,4686),(0,4687),(0,4688),(0,4689),(0,4690),(0,4691),(0,4692),(0,4693),(0,4694),(0,4695),(0,4696),(0,4697),(0,4698),(0,4699),(0,4700),(0,4701),(0,4702),(0,4703),(0,4704),(0,4705),(0,4706),(0,4707),(0,4708),(0,4709),(0,4710),(0,4711),(0,4712),(0,4713),(0,4714),(0,4715),(0,4716),(0,4717),(0,4718),(0,4719),(0,4720),(0,4721),(0,4722),(0,4723),(0,4724),(0,4725),(0,4726),(0,4727),(0,4728),(0,4729),(0,4730),(0,4731),(0,4732),(0,4733),(0,4734),(0,4735),(0,4736),(0,4737),(0,4738),(0,4739),(0,4740),(0,4741),(0,4742),(0,4743),(0,4744),(0,4745),(0,4746),(0,4747),(0,4748),(0,4749),(0,4750),(0,4751),(0,4752),(0,4753),(0,4754),(0,4755),(0,4756),(0,4757),(0,4758),(0,4759),(0,4760),(0,4761),(0,4762),(0,4763),(0,4764),(0,4765),(0,4766),(0,4767),(0,4768),(0,4769),(0,4770),(0,4771),(0,4772),(0,4773),(0,4774),(0,4775),(0,4776),(0,4777),(0,4778),(0,4779),(0,4780),(0,4781),(0,4782),(0,4783),(0,4784),(0,4785),(0,4786),(0,4787),(0,4788),(0,4789),(0,4790),(0,4791),(0,4792),(0,4793),(0,4794),(0,4795),(0,4796),(0,4797),(0,4798),(0,4799),(0,4800),(0,4801),(0,4802),(0,4803),(0,4804),(0,4805),(0,4806),(0,4807),(0,4808),(0,4809),(0,4810),(0,4811),(0,4812),(0,4813),(0,4814),(0,4815),(0,4816),(0,4817),(0,4818),(0,4819),(0,4820),(0,4821),(0,4822),(0,4823),(0,4824),(0,4825),(0,4826),(0,4827),(0,4828),(0,4829),(0,4830),(0,4831),(0,4832),(0,4833),(0,4834),(0,4835),(0,4836),(0,4837),(0,4838),(0,4839),(0,4840),(0,4841),(0,4842),(0,4843),(0,4844),(0,4845),(0,4846),(0,4847),(0,4848),(0,4849),(0,4850),(0,4851),(0,4852),(0,4853),(0,4854),(0,4855),(0,4856),(0,4857),(0,4858),(0,4859),(0,4860),(0,4861),(0,4862),(0,4863),(0,4864),(0,4865),(0,4866),(0,4867),(0,4868),(0,4869),(0,4870),(0,4871),(0,4872),(0,4873),(0,4874),(0,4875),(0,4876),(0,4877),(0,4878),(0,4879),(0,4880),(0,4881),(0,4882),(0,4883),(0,4884),(0,4885),(0,4886),(0,4887),(0,4888),(0,4889),(0,4890),(0,4891),(0,4892),(0,4893),(0,4894),(0,4895),(0,4896),(0,4897),(0,4898),(0,4899),(0,4900),(0,4901),(0,4902),(0,4903),(0,4904),(0,4905),(0,4906),(0,4907),(0,4908),(0,4909),(0,4910),(0,4911),(0,4912),(0,4913),(0,4914),(0,4915),(0,4916),(0,4917),(0,4918),(0,4919),(0,4920),(0,4921),(0,4922),(0,4923),(0,4924),(0,4925),(0,4926),(0,4927),(0,4928),(0,4929),(0,4930),(0,4931),(0,4932),(0,4933),(0,4934),(0,4935),(0,4936),(0,4937),(0,4938),(0,4939),(0,4940),(0,4941),(0,4942),(0,4943),(0,4944),(0,4945),(0,4946),(0,4947),(0,4948),(0,4949),(0,4950),(0,4951),(0,4952),(0,4953),(0,4954),(0,4955),(0,4956),(0,4957),(0,4958),(0,4959),(0,4960),(0,4961),(0,4962),(0,4963),(0,4964),(0,4965),(0,4966),(0,4967),(0,4968),(0,4969),(0,4970),(0,4971),(0,4972),(0,4973),(0,4974),(0,4975),(0,4976),(0,4977),(0,4978),(0,4979),(0,4980),(0,4981),(0,4982),(0,4983),(0,4984),(0,4985),(0,4986),(0,4987),(0,4988),(0,4989),(0,4990),(0,4991),(0,4992),(0,4993),(0,4994),(0,4995),(0,4996),(0,4997),(0,4998),(0,4999),(0,5000),(0,5001),(0,5002),(0,5003),(0,5004),(0,5005),(0,5006),(0,5007),(0,5008),(0,5009),(0,5010),(0,5011),(0,5012),(0,5013),(0,5014),(0,5015),(0,5016),(0,5017),(0,5018),(0,5019),(0,5020),(0,5021),(0,5022),(0,5023),(0,5024),(0,5025),(0,5026),(0,5027),(0,5028),(0,5029),(0,5030),(0,5031),(0,5032),(0,5033),(0,5034),(0,5035),(0,5036),(0,5037),(0,5038),(0,5039),(0,5040),(0,5041),(0,5042),(0,5043),(0,5044),(0,5045),(0,5046),(0,5047),(0,5048),(0,5049),(0,5050),(0,5051),(0,5052),(0,5053),(0,5054),(0,5055),(0,5056),(0,5057),(0,5058),(0,5059),(0,5060),(0,5061),(0,5062),(0,5063),(0,5064),(0,5065),(0,5066),(0,5067),(0,5068),(0,5069),(0,5070),(0,5071),(0,5072),(0,5073),(0,5074),(0,5075),(0,5076),(0,5077),(0,5078),(0,5079),(0,5080),(0,5081),(0,5082),(0,5083),(0,5084),(0,5085),(0,5086),(0,5087),(0,5088),(0,5089),(0,5090),(0,5091),(0,5092),(0,5093),(0,5094),(0,5095),(0,5096),(0,5097),(0,5098),(0,5099),(0,5100),(0,5101),(0,5102),(0,5103),(0,5104),(0,5105),(0,5106),(0,5107),(0,5108),(0,5109),(0,5110),(0,5111),(0,5112),(0,5113),(0,5114),(0,5115),(0,5116),(0,5117),(0,5118),(0,5119),(0,5120),(0,5121),(0,5122),(0,5123),(0,5124),(0,5125),(0,5126),(0,5127),(0,5128),(0,5129),(0,5130),(0,5131),(0,5132),(0,5133),(0,5134),(0,5135),(0,5136),(0,5137),(0,5138),(0,5139),(0,5140),(0,5141),(0,5142),(0,5143),(0,5144),(0,5145),(0,5146),(0,5147),(0,5148),(0,5149),(0,5150),(0,5151),(0,5152),(0,5153),(0,5154),(0,5155),(0,5156),(0,5157),(0,5158),(0,5159),(0,5160),(0,5161),(0,5162),(0,5163),(0,5164),(0,5165),(0,5166),(0,5167),(0,5168),(0,5169),(0,5170),(0,5171),(0,5172),(0,5173),(0,5174),(0,5175),(0,5176),(0,5177),(0,5178),(0,5179),(0,5180),(0,5181),(0,5182),(0,5183),(0,5184),(0,5185),(0,5186),(0,5187),(0,5188),(0,5189),(0,5190),(0,5191),(0,5192),(0,5193),(0,5194),(0,5195),(0,5196),(0,5197),(0,5198),(0,5199),(0,5200),(0,5201),(0,5202),(0,5203),(0,5204),(0,5205),(0,5206),(0,5207),(0,5208),(0,5209),(0,5210),(0,5211),(0,5212),(0,5213),(0,5214),(0,5215),(0,5216),(0,5217),(0,5218),(0,5219),(0,5220),(0,5221),(0,5222),(0,5223),(0,5224),(0,5225),(0,5226),(0,5227),(0,5228),(0,5229),(0,5230),(0,5231),(0,5232),(0,5233),(0,5234),(0,5235),(0,5236),(0,5237),(0,5238),(0,5239),(0,5240),(0,5241),(0,5242),(0,5243),(0,5244),(0,5245),(0,5246),(0,5247),(0,5248),(0,5249),(0,5250),(0,5251),(0,5252),(0,5253),(0,5254),(0,5255),(0,5256),(0,5257),(0,5258),(0,5259),(0,5260),(0,5261),(0,5262),(0,5263),(0,5264),(0,5265),(0,5266),(0,5267),(0,5268),(0,5269),(0,5270),(0,5271),(0,5272),(0,5273),(0,5274),(0,5275),(0,5276),(0,5277),(0,5278),(0,5279),(0,5280),(0,5281),(0,5282),(0,5283),(0,5284),(0,5285),(0,5286),(0,5287),(0,5288),(0,5289),(0,5290),(0,5291),(0,5292),(0,5293),(0,5294),(0,5295),(0,5296),(0,5297),(0,5298),(0,5299),(0,5300),(0,5301),(0,5302),(0,5303),(0,5304),(0,5305),(0,5306),(0,5307),(0,5308),(0,5309),(0,5310),(0,5311),(0,5312),(0,5313),(0,5314),(0,5315),(0,5316),(0,5317),(0,5318),(0,5319),(0,5320),(0,5321),(0,5322),(0,5323),(0,5324),(0,5325),(0,5326),(0,5327),(0,5328),(0,5329),(0,5330),(0,5331),(0,5332),(0,5333),(0,5334),(0,5335),(0,5336),(0,5337),(0,5338),(0,5339),(0,5340),(0,5341),(0,5342),(0,5343),(0,5344),(0,5345),(0,5346),(0,5347),(0,5348),(0,5349),(0,5350),(0,5351),(0,5352),(0,5353),(0,5354),(0,5355),(0,5356),(0,5357),(0,5358),(0,5359),(0,5360),(0,5361),(0,5362),(0,5363),(0,5364),(0,5365),(0,5366),(0,5367),(0,5368),(0,5369),(0,5370),(0,5371),(0,5372),(0,5373),(0,5374),(0,5375),(0,5376),(0,5377),(0,5378),(0,5379),(0,5380),(0,5381),(0,5382),(0,5383),(0,5384),(0,5385),(0,5386),(0,5387),(0,5388),(0,5389),(0,5390),(0,5391),(0,5392),(0,5393),(0,5394),(0,5395),(0,5396),(0,5397),(0,5398),(0,5399),(0,5400),(0,5401),(0,5402),(0,5403),(0,5404),(0,5405),(0,5406),(0,5407),(0,5408),(0,5409),(0,5410),(0,5411),(0,5412),(0,5413),(0,5414),(0,5415),(0,5416),(0,5417),(0,5418),(0,5419),(0,5420),(0,5421),(0,5422),(0,5423),(0,5424),(0,5425),(0,5426),(0,5427),(0,5428),(0,5429),(0,5430),(0,5431),(0,5432),(0,5433),(0,5434),(0,5435),(0,5436),(0,5437),(0,5438),(0,5439),(0,5440),(0,5441),(0,5442),(0,5443),(0,5444),(0,5445),(0,5446),(0,5447),(0,5448),(0,5449),(0,5450),(0,5451),(0,5452),(0,5453),(0,5454),(0,5455),(0,5456),(0,5457),(0,5458),(0,5459),(0,5460),(0,5461),(0,5462),(0,5463),(0,5464),(0,5465),(0,5466),(0,5467),(0,5468),(0,5469),(0,5470),(0,5471),(0,5472),(0,5473),(0,5474),(0,5475),(0,5476),(0,5477),(0,5478),(0,5479),(0,5480),(0,5481),(0,5482),(0,5483),(0,5484),(0,5485),(0,5486),(0,5487),(0,5488),(0,5489),(0,5490),(0,5491),(0,5492),(0,5493),(0,5494),(0,5495),(0,5496),(0,5497),(0,5498),(0,5499),(0,5500),(0,5501),(0,5502),(0,5503),(0,5504),(0,5505),(0,5506),(0,5507),(0,5508),(0,5509),(0,5510),(0,5511),(0,5512),(0,5513),(0,5514),(0,5515),(0,5516),(0,5517),(0,5518),(0,5519),(0,5520),(0,5521),(0,5522),(0,5523),(0,5524),(0,5525),(0,5526),(0,5527),(0,5528),(0,5529),(0,5530),(0,5531),(0,5532),(0,5533),(0,5534),(0,5535),(0,5536),(0,5537),(0,5538),(0,5539),(0,5540),(0,5541),(0,5542),(0,5543),(0,5544),(0,5545),(0,5546),(0,5547),(0,5548),(0,5549),(0,5550),(0,5551),(0,5552),(0,5553),(0,5554),(0,5555),(0,5556),(0,5557),(0,5558),(0,5559),(0,5560),(0,5561),(0,5562),(0,5563),(0,5564),(0,5565),(0,5566),(0,5567),(0,5568),(0,5569),(0,5570),(0,5571),(0,5572),(0,5573),(0,5574),(0,5575),(0,5576),(0,5577),(0,5578),(0,5579),(0,5580),(0,5581),(0,5582),(0,5583),(0,5584),(0,5585),(0,5586),(0,5587),(0,5588),(0,5589),(0,5590),(0,5591),(0,5592),(0,5593),(0,5594),(0,5595),(0,5596),(0,5597),(0,5598),(0,5599),(0,5600),(0,5601),(0,5602),(0,5603),(0,5604),(0,5605),(0,5606),(0,5607),(0,5608),(0,5609),(0,5610),(0,5611),(0,5612),(0,5613),(0,5614),(0,5615),(0,5616),(0,5617),(0,5618),(0,5619),(0,5620),(0,5621),(0,5622),(0,5623),(0,5624),(0,5625),(0,5626),(0,5627),(0,5628),(0,5629),(0,5630),(0,5631),(0,5632),(0,5633),(0,5634),(0,5635),(0,5636),(0,5637),(0,5638),(0,5639),(0,5640),(0,5641),(0,5642),(0,5643),(0,5644),(0,5645),(0,5646),(0,5647),(0,5648),(0,5649),(0,5650),(0,5651),(0,5652),(0,5653),(0,5654),(0,5655),(0,5656),(0,5657),(0,5658),(0,5659),(0,5660),(0,5661),(0,5662),(0,5663),(0,5664),(0,5665),(0,5666),(0,5667),(0,5668),(0,5669),(0,5670),(0,5671),(0,5672),(0,5673),(0,5674),(0,5675),(0,5676),(0,5677),(0,5678),(0,5679),(0,5680),(0,5681),(0,5682),(0,5683),(0,5684),(0,5685),(0,5686),(0,5687),(0,5688),(0,5689),(0,5690),(0,5691),(0,5692),(0,5693),(0,5694),(0,5695),(0,5696),(0,5697),(0,5698),(0,5699),(0,5700),(0,5701),(0,5702),(0,5703),(0,5704),(0,5705),(0,5706),(0,5707),(0,5708),(0,5709),(0,5710),(0,5711),(0,5712),(0,5713),(0,5714),(0,5715),(0,5716),(0,5717),(0,5718),(0,5719),(0,5720),(0,5721),(0,5722),(0,5723),(0,5724),(0,5725),(0,5726),(0,5727),(0,5728),(0,5729),(0,5730),(0,5731),(0,5732),(0,5733),(0,5734),(0,5735),(0,5736),(0,5737),(0,5738),(0,5739),(0,5740),(0,5741),(0,5742),(0,5743),(0,5744),(0,5745),(0,5746),(0,5747),(0,5748),(0,5749),(0,5750),(0,5751),(0,5752),(0,5753),(0,5754),(0,5755),(0,5756),(0,5757),(0,5758),(0,5759),(0,5760),(0,5761),(0,5762),(0,5763),(0,5764),(0,5765),(0,5766),(0,5767),(0,5768),(0,5769),(0,5770),(0,5771),(0,5772),(0,5773),(0,5774),(0,5775),(0,5776),(0,5777),(0,5778),(0,5779),(0,5780),(0,5781),(0,5782),(0,5783),(0,5784),(0,5785),(0,5786),(0,5787),(0,5788),(0,5789),(0,5790),(0,5791),(0,5792),(0,5793),(0,5794),(0,5795),(0,5796),(0,5797),(0,5798),(0,5799),(0,5800),(0,5801),(0,5802),(0,5803),(0,5804),(0,5805),(0,5806),(0,5807),(0,5808),(0,5809),(0,5810),(0,5811),(0,5812),(0,5813),(0,5814),(0,5815),(0,5816),(0,5817),(0,5818),(0,5819),(0,5820),(0,5821),(0,5822),(0,5823),(0,5824),(0,5825),(0,5826),(0,5827),(0,5828),(0,5829),(0,5830),(0,5831),(0,5832),(0,5833),(0,5834),(0,5835),(0,5836),(0,5837),(0,5838),(0,5839),(0,5840),(0,5841),(0,5842),(0,5843),(0,5844),(0,5845),(0,5846),(0,5847),(0,5848),(0,5849),(0,5850),(0,5851),(0,5852),(0,5853),(0,5854),(0,5855),(0,5856),(0,5857),(0,5858),(0,5859),(0,5860),(0,5861),(0,5862),(0,5863),(0,5864),(0,5865),(0,5866),(0,5867),(0,5868),(0,5869),(0,5870),(0,5871),(0,5872),(0,5873),(0,5874),(0,5875),(0,5876),(0,5877),(0,5878),(0,5879),(0,5880),(0,5881),(0,5882),(0,5883),(0,5884),(0,5885),(0,5886),(0,5887),(0,5888),(0,5889),(0,5890),(0,5891),(0,5892),(0,5893),(0,5894),(0,5895),(0,5896),(0,5897),(0,5898),(0,5899),(0,5900),(0,5901),(0,5902),(0,5903),(0,5904),(0,5905),(0,5906),(0,5907),(0,5908),(0,5909),(0,5910),(0,5911),(0,5912),(0,5913),(0,5914),(0,5915),(0,5916),(0,5917),(0,5918),(0,5919),(0,5920),(0,5921),(0,5922),(0,5923),(0,5924),(0,5925),(0,5926),(0,5927),(0,5928),(0,5929),(0,5930),(0,5931),(0,5932),(0,5933),(0,5934),(0,5935),(0,5936),(0,5937),(0,5938),(0,5939),(0,5940),(0,5941),(0,5942),(0,5943),(0,5944),(0,5945),(0,5946),(0,5947),(0,5948),(0,5949),(0,5950),(0,5951),(0,5952),(0,5953),(0,5954),(0,5955),(0,5956),(0,5957),(0,5958),(0,5959),(0,5960),(0,5961),(0,5962),(0,5963),(0,5964),(0,5965),(0,5966),(0,5967),(0,5968),(0,5969),(0,5970),(0,5971),(0,5972),(0,5973),(0,5974),(0,5975),(0,5976),(0,5977),(0,5978),(0,5979),(0,5980),(0,5981),(0,5982),(0,5983),(0,5984),(0,5985),(0,5986),(0,5987),(0,5988),(0,5989),(0,5990),(0,5991),(0,5992),(0,5993),(0,5994),(0,5995),(0,5996),(0,5997),(0,5998),(0,5999),(0,6000),(0,6001),(0,6002),(0,6003),(0,6004),(0,6005),(0,6006),(0,6007),(0,6008),(0,6009),(0,6010),(0,6011),(0,6012),(0,6013),(0,6014),(0,6015),(0,6016),(0,6017),(0,6018),(0,6019),(0,6020),(0,6021),(0,6022),(0,6023),(0,6024),(0,6025),(0,6026),(0,6027),(0,6028),(0,6029),(0,6030),(0,6031),(0,6032),(0,6033),(0,6034),(0,6035),(0,6036),(0,6037),(0,6038),(0,6039),(0,6040),(0,6041),(0,6042),(0,6043),(0,6044),(0,6045),(0,6046),(0,6047),(0,6048),(0,6049),(0,6050),(0,6051),(0,6052),(0,6053),(0,6054),(0,6055),(0,6056),(0,6057),(0,6058),(0,6059),(0,6060),(0,6061),(0,6062),(0,6063),(0,6064),(0,6065),(0,6066),(0,6067),(0,6068),(0,6069),(0,6070),(0,6071),(0,6072),(0,6073),(0,6074),(0,6075),(0,6076),(0,6077),(0,6078),(0,6079),(0,6080),(0,6081),(0,6082),(0,6083),(0,6084),(0,6085),(0,6086),(0,6087),(0,6088),(0,6089),(0,6090),(0,6091),(0,6092),(0,6093),(0,6094),(0,6095),(0,6096),(0,6097),(0,6098),(0,6099),(0,6100),(0,6101),(0,6102),(0,6103),(0,6104),(0,6105),(0,6106),(0,6107),(0,6108),(0,6109),(0,6110),(0,6111),(0,6112),(0,6113),(0,6114),(0,6115),(0,6116),(0,6117),(0,6118),(0,6119),(0,6120),(0,6121),(0,6122),(0,6123),(0,6124),(0,6125),(0,6126),(0,6127),(0,6128),(0,6129),(0,6130),(0,6131),(0,6132),(0,6133),(0,6134),(0,6135),(0,6136),(0,6137),(0,6138),(0,6139),(0,6140),(0,6141),(0,6142),(0,6143),(0,6144),(0,6145),(0,6146),(0,6147),(0,6148),(0,6149),(0,6150),(0,6151),(0,6152),(0,6153),(0,6154),(0,6155),(0,6156),(0,6157),(0,6158),(0,6159),(0,6160),(0,6161),(0,6162),(0,6163),(0,6164),(0,6165),(0,6166),(0,6167),(0,6168),(0,6169),(0,6170),(0,6171),(0,6172),(0,6173),(0,6174),(0,6175),(0,6176),(0,6177),(0,6178),(0,6179),(0,6180),(0,6181),(0,6182),(0,6183),(0,6184),(0,6185),(0,6186),(0,6187),(0,6188),(0,6189),(0,6190),(0,6191),(0,6192),(0,6193),(0,6194),(0,6195),(0,6196),(0,6197),(0,6198),(0,6199),(0,6200),(0,6201),(0,6202),(0,6203),(0,6204),(0,6205),(0,6206),(0,6207),(0,6208),(0,6209),(0,6210),(0,6211),(0,6212),(0,6213),(0,6214),(0,6215),(0,6216),(0,6217),(0,6218),(0,6219),(0,6220),(0,6221),(0,6222),(0,6223),(0,6224),(0,6225),(0,6226),(0,6227),(0,6228),(0,6229),(0,6230),(0,6231),(0,6232),(0,6233),(0,6234),(0,6235),(0,6236),(0,6237),(0,6238),(0,6239),(0,6240),(0,6241),(0,6242),(0,6243),(0,6244),(0,6245),(0,6246),(0,6247),(0,6248),(0,6249),(0,6250),(0,6251),(0,6252),(0,6253),(0,6254),(0,6255),(0,6256),(0,6257),(0,6258),(0,6259),(0,6260),(0,6261),(0,6262),(0,6263),(0,6264),(0,6265),(0,6266),(0,6267),(0,6268),(0,6269),(0,6270),(0,6271),(0,6272),(0,6273),(0,6274),(0,6275),(0,6276),(0,6277),(0,6278),(0,6279),(0,6280),(0,6281),(0,6282),(0,6283),(0,6284),(0,6285),(0,6286),(0,6287),(0,6288),(0,6289),(0,6290),(0,6291),(0,6292),(0,6293),(0,6294),(0,6295),(0,6296),(0,6297),(0,6298),(0,6299),(0,6300),(0,6301),(0,6302),(0,6303),(0,6304),(0,6305),(0,6306),(0,6307),(0,6308),(0,6309),(0,6310),(0,6311),(0,6312),(0,6313),(0,6314),(0,6315),(0,6316),(0,6317),(0,6318),(0,6319),(0,6320),(0,6321),(0,6322),(0,6323),(0,6324),(0,6325),(0,6326),(0,6327),(0,6328),(0,6329),(0,6330),(0,6331),(0,6332),(0,6333),(0,6334),(0,6335),(0,6336),(0,6337),(0,6338),(0,6339),(0,6340),(0,6341),(0,6342),(0,6343),(0,6344),(0,6345),(0,6346),(0,6347),(0,6348),(0,6349),(0,6350),(0,6351),(0,6352),(0,6353),(0,6354),(0,6355),(0,6356),(0,6357),(0,6358),(0,6359),(0,6360),(0,6361),(0,6362),(0,6363),(0,6364),(0,6365),(0,6366),(0,6367),(0,6368),(0,6369),(0,6370),(0,6371),(0,6372),(0,6373),(0,6374),(0,6375),(0,6376),(0,6377),(0,6378),(0,6379),(0,6380),(0,6381),(0,6382),(0,6383),(0,6384),(0,6385),(0,6386),(0,6387),(0,6388),(0,6389),(0,6390),(0,6391),(0,6392),(0,6393),(0,6394),(0,6395),(0,6396),(0,6397),(0,6398),(0,6399),(0,6400),(0,6401),(0,6402),(0,6403),(0,6404),(0,6405),(0,6406),(0,6407),(0,6408),(0,6409),(0,6410),(0,6411),(0,6412),(0,6413),(0,6414),(0,6415),(0,6416),(0,6417),(0,6418),(0,6419),(0,6420),(0,6421),(0,6422),(0,6423),(0,6424),(0,6425),(0,6426),(0,6427),(0,6428),(0,6429),(0,6430),(0,6431),(0,6432),(0,6433),(0,6434),(0,6435),(0,6436),(0,6437),(0,6438),(0,6439),(0,6440),(0,6441),(0,6442),(0,6443),(0,6444),(0,6445),(0,6446),(0,6447),(0,6448),(0,6449),(0,6450),(0,6451),(0,6452),(0,6453),(0,6454),(0,6455),(0,6456),(0,6457),(0,6458),(0,6459),(0,6460),(0,6461),(0,6462),(0,6463),(0,6464),(0,6465),(0,6466),(0,6467),(0,6468),(0,6469),(0,6470),(0,6471),(0,6472),(0,6473),(0,6474),(0,6475),(0,6476),(0,6477),(0,6478),(0,6479),(0,6480),(0,6481),(0,6482),(0,6483),(0,6484),(0,6485),(0,6486),(0,6487),(0,6488),(0,6489),(0,6490),(0,6491),(0,6492),(0,6493),(0,6494),(0,6495),(0,6496),(0,6497),(0,6498),(0,6499),(0,6500),(0,6501),(0,6502),(0,6503),(0,6504),(0,6505),(0,6506),(0,6507),(0,6508),(0,6509),(0,6510),(0,6511),(0,6512),(0,6513),(0,6514),(0,6515),(0,6516),(0,6517),(0,6518),(0,6519),(0,6520),(0,6521),(0,6522),(0,6523),(0,6524),(0,6525),(0,6526),(0,6527),(0,6528),(0,6529),(0,6530),(0,6531),(0,6532),(0,6533),(0,6534),(0,6535),(0,6536),(0,6537),(0,6538),(0,6539),(0,6540),(0,6541),(0,6542),(0,6543),(0,6544),(0,6545),(0,6546),(0,6547),(0,6548),(0,6549),(0,6550),(0,6551),(0,6552),(0,6553),(0,6554),(0,6555),(0,6556),(0,6557),(0,6558),(0,6559),(0,6560),(0,6561),(0,6562),(0,6563),(0,6564),(0,6565),(0,6566),(0,6567),(0,6568),(0,6569),(0,6570),(0,6571),(0,6572),(0,6573),(0,6574),(0,6575),(0,6576),(0,6577),(0,6578),(0,6579),(0,6580),(0,6581),(0,6582),(0,6583),(0,6584),(0,6585),(0,6586),(0,6587),(0,6588),(0,6589),(0,6590),(0,6591),(0,6592),(0,6593),(0,6594),(0,6595),(0,6596),(0,6597),(0,6598),(0,6599),(0,6600),(0,6601),(0,6602),(0,6603),(0,6604),(0,6605),(0,6606),(0,6607),(0,6608),(0,6609),(0,6610),(0,6611),(0,6612),(0,6613),(0,6614),(0,6615),(0,6616),(0,6617),(0,6618),(0,6619),(0,6620),(0,6621),(0,6622),(0,6623),(0,6624),(0,6625),(0,6626),(0,6627),(0,6628),(0,6629),(0,6630),(0,6631),(0,6632),(0,6633),(0,6634),(0,6635),(0,6636),(0,6637),(0,6638),(0,6639),(0,6640),(0,6641),(0,6642),(0,6643),(0,6644),(0,6645),(0,6646),(0,6647),(0,6648),(0,6649),(0,6650),(0,6651),(0,6652),(0,6653),(0,6654),(0,6655),(0,6656),(0,6657),(0,6658),(0,6659),(0,6660),(0,6661),(0,6662),(0,6663),(0,6664),(0,6665),(0,6666),(0,6667),(0,6668),(0,6669),(0,6670),(0,6671),(0,6672),(0,6673),(0,6674),(0,6675),(0,6676),(0,6677),(0,6678),(0,6679),(0,6680),(0,6681),(0,6682),(0,6683),(0,6684),(0,6685),(0,6686),(0,6687),(0,6688),(0,6689),(0,6690),(0,6691),(0,6692),(0,6693),(0,6694),(0,6695),(0,6696),(0,6697),(0,6698),(0,6699),(0,6700),(0,6701),(0,6702),(0,6703),(0,6704),(0,6705),(0,6706),(0,6707),(0,6708),(0,6709),(0,6710),(0,6711),(0,6712),(0,6713),(0,6714),(0,6715),(0,6716),(0,6717),(0,6718),(0,6719),(0,6720),(0,6721),(0,6722),(0,6723),(0,6724),(0,6725),(0,6726),(0,6727),(0,6728),(0,6729),(0,6730),(0,6731),(0,6732),(0,6733),(0,6734),(0,6735),(0,6736),(0,6737),(0,6738),(0,6739),(0,6740),(0,6741),(0,6742),(0,6743),(0,6744),(0,6745),(0,6746),(0,6747),(0,6748),(0,6749),(0,6750),(0,6751),(0,6752),(0,6753),(0,6754),(0,6755),(0,6756),(0,6757),(0,6758),(0,6759),(0,6760),(0,6761),(0,6762),(0,6763),(0,6764),(0,6765),(0,6766),(0,6767),(0,6768),(0,6769),(0,6770),(0,6771),(0,6772),(0,6773),(0,6774),(0,6775),(0,6776),(0,6777),(0,6778),(0,6779),(0,6780),(0,6781),(0,6782),(0,6783),(0,6784),(0,6785),(0,6786),(0,6787),(0,6788),(0,6789),(0,6790),(0,6791),(0,6792),(0,6793),(0,6794),(0,6795),(0,6796),(0,6797),(0,6798),(0,6799),(0,6800),(0,6801),(0,6802),(0,6803),(0,6804),(0,6805),(0,6806),(0,6807),(0,6808),(0,6809),(0,6810),(0,6811),(0,6812),(0,6813),(0,6814),(0,6815),(0,6816),(0,6817),(0,6818),(0,6819),(0,6820),(0,6821),(0,6822),(0,6823),(0,6824),(0,6825),(0,6826),(0,6827),(0,6828),(0,6829),(0,6830),(0,6831),(0,6832),(0,6833),(0,6834),(0,6835),(0,6836),(0,6837),(0,6838),(0,6839),(0,6840),(0,6841),(0,6842),(0,6843),(0,6844),(0,6845),(0,6846),(0,6847),(0,6848),(0,6849),(0,6850),(0,6851),(0,6852),(0,6853),(0,6854),(0,6855),(0,6856),(0,6857),(0,6858),(0,6859),(0,6860),(0,6861),(0,6862),(0,6863),(0,6864),(0,6865),(0,6866),(0,6867),(0,6868),(0,6869),(0,6870),(0,6871),(0,6872),(0,6873),(0,6874),(0,6875),(0,6876),(0,6877),(0,6878),(0,6879),(0,6880),(0,6881),(0,6882),(0,6883),(0,6884),(0,6885),(0,6886),(0,6887),(0,6888),(0,6889),(0,6890),(0,6891),(0,6892),(0,6893),(0,6894),(0,6895),(0,6896),(0,6897),(0,6898),(0,6899),(0,6900),(0,6901),(0,6902),(0,6903),(0,6904),(0,6905),(0,6906),(0,6907),(0,6908),(0,6909),(0,6910),(0,6911),(0,6912),(0,6913),(0,6914),(0,6915),(0,6916),(0,6917),(0,6918),(0,6919),(0,6920),(0,6921),(0,6922),(0,6923),(0,6924),(0,6925),(0,6926),(0,6927),(0,6928),(0,6929),(0,6930),(0,6931),(0,6932),(0,6933),(0,6934),(0,6935),(0,6936),(0,6937),(0,6938),(0,6939),(0,6940),(0,6941),(0,6942),(0,6943),(0,6944),(0,6945),(0,6946),(0,6947),(0,6948),(0,6949),(0,6950),(0,6951),(0,6952),(0,6953),(0,6954),(0,6955),(0,6956),(0,6957),(0,6958),(0,6959),(0,6960),(0,6961),(0,6962),(0,6963),(0,6964),(0,6965),(0,6966),(0,6967),(0,6968),(0,6969),(0,6970),(0,6971),(0,6972),(0,6973),(0,6974),(0,6975),(0,6976),(0,6977),(0,6978),(0,6979),(0,6980),(0,6981),(0,6982),(0,6983),(0,6984),(0,6985),(0,6986),(0,6987),(0,6988),(0,6989),(0,6990),(0,6991),(0,6992),(0,6993),(0,6994),(0,6995),(0,6996),(0,6997),(0,6998),(0,6999),(0,7000),(0,7001),(0,7002),(0,7003),(0,7004),(0,7005),(0,7006),(0,7007),(0,7008),(0,7009),(0,7010),(0,7011),(0,7012),(0,7013),(0,7014),(0,7015),(0,7016),(0,7017),(0,7018),(0,7019),(0,7020),(0,7021),(0,7022),(0,7023),(0,7024),(0,7025),(0,7026),(0,7027),(0,7028),(0,7029),(0,7030),(0,7031),(0,7032),(0,7033),(0,7034),(0,7035),(0,7036),(0,7037),(0,7038),(0,7039),(0,7040),(0,7041),(0,7042),(0,7043),(0,7044),(0,7045),(0,7046),(0,7047),(0,7048),(0,7049),(0,7050),(0,7051),(0,7052),(0,7053),(0,7054),(0,7055),(0,7056),(0,7057),(0,7058),(0,7059),(0,7060),(0,7061),(0,7062),(0,7063),(0,7064),(0,7065),(0,7066),(0,7067),(0,7068),(0,7069),(0,7070),(0,7071),(0,7072),(0,7073),(0,7074),(0,7075),(0,7076),(0,7077),(0,7078),(0,7079),(0,7080),(0,7081),(0,7082),(0,7083),(0,7084),(0,7085),(0,7086),(0,7087),(0,7088),(0,7089),(0,7090),(0,7091),(0,7092),(0,7093),(0,7094),(0,7095),(0,7096),(0,7097),(0,7098),(0,7099),(0,7100),(0,7101),(0,7102),(0,7103),(0,7104),(0,7105),(0,7106),(0,7107),(0,7108),(0,7109),(0,7110),(0,7111),(0,7112),(0,7113),(0,7114),(0,7115),(0,7116),(0,7117),(0,7118),(0,7119),(0,7120),(0,7121),(0,7122),(0,7123),(0,7124),(0,7125),(0,7126),(0,7127),(0,7128),(0,7129),(0,7130),(0,7131),(0,7132),(0,7133),(0,7134),(0,7135),(0,7136),(0,7137),(0,7138),(0,7139),(0,7140),(0,7141),(0,7142),(0,7143),(0,7144),(0,7145),(0,7146),(0,7147),(0,7148),(0,7149),(0,7150),(0,7151),(0,7152),(0,7153),(0,7154),(0,7155),(0,7156),(0,7157),(0,7158),(0,7159),(0,7160),(0,7161),(0,7162),(0,7163),(0,7164),(0,7165),(0,7166),(0,7167),(0,7168),(0,7169),(0,7170),(0,7171),(0,7172),(0,7173),(0,7174),(0,7175),(0,7176),(0,7177),(0,7178),(0,7179),(0,7180),(0,7181),(0,7182),(0,7183),(0,7184),(0,7185),(0,7186),(0,7187),(0,7188),(0,7189),(0,7190),(0,7191),(0,7192),(0,7193),(0,7194),(0,7195),(0,7196),(0,7197),(0,7198),(0,7199),(0,7200),(0,7201),(0,7202),(0,7203),(0,7204),(0,7205),(0,7206),(0,7207),(0,7208),(0,7209),(0,7210),(0,7211),(0,7212),(0,7213),(0,7214),(0,7215),(0,7216),(0,7217),(0,7218),(0,7219),(0,7220),(0,7221),(0,7222),(0,7223),(0,7224),(0,7225),(0,7226),(0,7227),(0,7228),(0,7229),(0,7230),(0,7231),(0,7232),(0,7233),(0,7234),(0,7235),(0,7236),(0,7237),(0,7238),(0,7239),(0,7240),(0,7241),(0,7242),(0,7243),(0,7244),(0,7245),(0,7246),(0,7247),(0,7248),(0,7249),(0,7250),(0,7251),(0,7252),(0,7253),(0,7254),(0,7255),(0,7256),(0,7257),(0,7258),(0,7259),(0,7260),(0,7261),(0,7262),(0,7263),(0,7264),(0,7265),(0,7266),(0,7267),(0,7268),(0,7269),(0,7270),(0,7271),(0,7272),(0,7273),(0,7274),(0,7275),(0,7276),(0,7277),(0,7278),(0,7279),(0,7280),(0,7281),(0,7282),(0,7283),(0,7284),(0,7285),(0,7286),(0,7287),(0,7288),(0,7289),(0,7290),(0,7291),(0,7292),(0,7293),(0,7294),(0,7295),(0,7296),(0,7297),(0,7298),(0,7299),(0,7300),(0,7301),(0,7302),(0,7303),(0,7304),(0,7305),(0,7306),(0,7307),(0,7308),(0,7309),(0,7310),(0,7311),(0,7312),(0,7313),(0,7314),(0,7315),(0,7316),(0,7317),(0,7318),(0,7319),(0,7320),(0,7321),(0,7322),(0,7323),(0,7324),(0,7325),(0,7326),(0,7327),(0,7328),(0,7329),(0,7330),(0,7331),(0,7332),(0,7333),(0,7334),(0,7335),(0,7336),(0,7337),(0,7338),(0,7339),(0,7340),(0,7341),(0,7342),(0,7343),(0,7344),(0,7345),(0,7346),(0,7347),(0,7348),(0,7349),(0,7350),(0,7351),(0,7352),(0,7353),(0,7354),(0,7355),(0,7356),(0,7357),(0,7358),(0,7359),(0,7360),(0,7361),(0,7362),(0,7363),(0,7364),(0,7365),(0,7366),(0,7367),(0,7368),(0,7369),(0,7370),(0,7371),(0,7372),(0,7373),(0,7374),(0,7375),(0,7376),(0,7377),(0,7378),(0,7379),(0,7380),(0,7381),(0,7382),(0,7383),(0,7384),(0,7385),(0,7386),(0,7387),(0,7388),(0,7389),(0,7390),(0,7391),(0,7392),(0,7393),(0,7394),(0,7395),(0,7396),(0,7397),(0,7398),(0,7399),(0,7400),(0,7401),(0,7402),(0,7403),(0,7404),(0,7405),(0,7406),(0,7407),(0,7408),(0,7409),(0,7410),(0,7411),(0,7412),(0,7413),(0,7414),(0,7415),(0,7416),(0,7417),(0,7418),(0,7419),(0,7420),(0,7421),(0,7422),(0,7423),(0,7424),(0,7425),(0,7426),(0,7427),(0,7428),(0,7429),(0,7430),(0,7431),(0,7432),(0,7433),(0,7434),(0,7435),(0,7436),(0,7437),(0,7438),(0,7439),(0,7440),(0,7441),(0,7442),(0,7443),(0,7444),(0,7445),(0,7446),(0,7447),(0,7448),(0,7449),(0,7450),(0,7451),(0,7452),(0,7453),(0,7454),(0,7455),(0,7456),(0,7457),(0,7458),(0,7459),(0,7460),(0,7461),(0,7462),(0,7463),(0,7464),(0,7465),(0,7466),(0,7467),(0,7468),(0,7469),(0,7470),(0,7471),(0,7472),(0,7473),(0,7474),(0,7475),(0,7476),(0,7477),(0,7478),(0,7479),(0,7480),(0,7481),(0,7482),(0,7483),(0,7484),(0,7485),(0,7486),(0,7487),(0,7488),(0,7489),(0,7490),(0,7491),(0,7492),(0,7493),(0,7494),(0,7495),(0,7496),(0,7497),(0,7498),(0,7499),(0,7500),(0,7501),(0,7502),(0,7503),(0,7504),(0,7505),(0,7506),(0,7507),(0,7508),(0,7509),(0,7510),(0,7511),(0,7512),(0,7513),(0,7514),(0,7515),(0,7516),(0,7517),(0,7518),(0,7519),(0,7520),(0,7521),(0,7522),(0,7523),(0,7524),(0,7525),(0,7526),(0,7527),(0,7528),(0,7529),(0,7530),(0,7531),(0,7532),(0,7533),(0,7534),(0,7535),(0,7536),(0,7537),(0,7538),(0,7539),(0,7540),(0,7541),(0,7542),(0,7543),(0,7544),(0,7545),(0,7546),(0,7547),(0,7548),(0,7549),(0,7550),(0,7551),(0,7552),(0,7553),(0,7554),(0,7555),(0,7556),(0,7557),(0,7558),(0,7559),(0,7560),(0,7561),(0,7562),(0,7563),(0,7564),(0,7565),(0,7566),(0,7567),(0,7568),(0,7569),(0,7570),(0,7571),(0,7572),(0,7573),(0,7574),(0,7575),(0,7576),(0,7577),(0,7578),(0,7579),(0,7580),(0,7581),(0,7582),(0,7583),(0,7584),(0,7585),(0,7586),(0,7587),(0,7588),(0,7589),(0,7590),(0,7591),(0,7592),(0,7593),(0,7594),(0,7595),(0,7596),(0,7597),(0,7598),(0,7599),(0,7600),(0,7601),(0,7602),(0,7603),(0,7604),(0,7605),(0,7606),(0,7607),(0,7608),(0,7609),(0,7610),(0,7611),(0,7612),(0,7613),(0,7614),(0,7615),(0,7616),(0,7617),(0,7618),(0,7619),(0,7620),(0,7621),(0,7622),(0,7623),(0,7624),(0,7625),(0,7626),(0,7627),(0,7628),(0,7629),(0,7630),(0,7631),(0,7632),(0,7633),(0,7634),(0,7635),(0,7636),(0,7637),(0,7638),(0,7639),(0,7640),(0,7641),(0,7642),(0,7643),(0,7644),(0,7645),(0,7646),(0,7647),(0,7648),(0,7649),(0,7650),(0,7651),(0,7652),(0,7653),(0,7654),(0,7655),(0,7656),(0,7657),(0,7658),(0,7659),(0,7660),(0,7661),(0,7662),(0,7663),(0,7664),(0,7665),(0,7666),(0,7667),(0,7668),(0,7669),(0,7670),(0,7671),(0,7672),(0,7673),(0,7674),(0,7675),(0,7676),(0,7677),(0,7678),(0,7679),(0,7680),(0,7681),(0,7682),(0,7683),(0,7684),(0,7685),(0,7686),(0,7687),(0,7688),(0,7689),(0,7690),(0,7691),(0,7692),(0,7693),(0,7694),(0,7695),(0,7696),(0,7697),(0,7698),(0,7699),(0,7700),(0,7701),(0,7702),(0,7703),(0,7704),(0,7705),(0,7706),(0,7707),(0,7708),(0,7709),(0,7710),(0,7711),(0,7712),(0,7713),(0,7714),(0,7715),(0,7716),(0,7717),(0,7718),(0,7719),(0,7720),(0,7721),(0,7722),(0,7723),(0,7724),(0,7725),(0,7726),(0,7727),(0,7728),(0,7729),(0,7730),(0,7731),(0,7732),(0,7733),(0,7734),(0,7735),(0,7736),(0,7737),(0,7738),(0,7739),(0,7740),(0,7741),(0,7742),(0,7743),(0,7744),(0,7745),(0,7746),(0,7747),(0,7748),(0,7749),(0,7750),(0,7751),(0,7752),(0,7753),(0,7754),(0,7755),(0,7756),(0,7757),(0,7758),(0,7759),(0,7760),(0,7761),(0,7762),(0,7763),(0,7764),(0,7765),(0,7766),(0,7767),(0,7768),(0,7769),(0,7770),(0,7771),(0,7772),(0,7773),(0,7774),(0,7775),(0,7776),(0,7777),(0,7778),(0,7779),(0,7780),(0,7781),(0,7782),(0,7783),(0,7784),(0,7785),(0,7786),(0,7787),(0,7788),(0,7789),(0,7790),(0,7791),(0,7792),(0,7793),(0,7794),(0,7795),(0,7796),(0,7797),(0,7798),(0,7799),(0,7800),(0,7801),(0,7802),(0,7803),(0,7804),(0,7805),(0,7806),(0,7807),(0,7808),(0,7809),(0,7810),(0,7811),(0,7812),(0,7813),(0,7814),(0,7815),(0,7816),(0,7817),(0,7818),(0,7819),(0,7820),(0,7821),(0,7822),(0,7823),(0,7824),(0,7825),(0,7826),(0,7827),(0,7828),(0,7829),(0,7830),(0,7831),(0,7832),(0,7833),(0,7834),(0,7835),(0,7836),(0,7837),(0,7838),(0,7839),(0,7840),(0,7841),(0,7842),(0,7843),(0,7844),(0,7845),(0,7846),(0,7847),(0,7848),(0,7849),(0,7850),(0,7851),(0,7852),(0,7853),(0,7854),(0,7855),(0,7856),(0,7857),(0,7858),(0,7859),(0,7860),(0,7861),(0,7862),(0,7863),(0,7864),(0,7865),(0,7866),(0,7867),(0,7868),(0,7869),(0,7870),(0,7871),(0,7872),(0,7873),(0,7874),(0,7875),(0,7876),(0,7877),(0,7878),(0,7879),(0,7880),(0,7881),(0,7882),(0,7883),(0,7884),(0,7885),(0,7886),(0,7887),(0,7888),(0,7889),(0,7890),(0,7891),(0,7892),(0,7893),(0,7894),(0,7895),(0,7896),(0,7897),(0,7898),(0,7899),(0,7900),(0,7901),(0,7902),(0,7903),(0,7904),(0,7905),(0,7906),(0,7907),(0,7908),(0,7909),(0,7910),(0,7911),(0,7912),(0,7913),(0,7914),(0,7915),(0,7916),(0,7917),(0,7918),(0,7919),(0,7920),(0,7921),(0,7922),(0,7923),(0,7924),(0,7925),(0,7926),(0,7927),(0,7928),(0,7929),(0,7930),(0,7931),(0,7932),(0,7933),(0,7934),(0,7935),(0,7936),(0,7937),(0,7938),(0,7939),(0,7940),(0,7941),(0,7942),(0,7943),(0,7944),(0,7945),(0,7946),(0,7947),(0,7948),(0,7949),(0,7950),(0,7951),(0,7952),(0,7953),(0,7954),(0,7955),(0,7956),(0,7957),(0,7958),(0,7959),(0,7960),(0,7961),(0,7962),(0,7963),(0,7964),(0,7965),(0,7966),(0,7967),(0,7968),(0,7969),(0,7970),(0,7971),(0,7972),(0,7973),(0,7974),(0,7975),(0,7976),(0,7977),(0,7978),(0,7979),(0,7980),(0,7981),(0,7982),(0,7983),(0,7984),(0,7985),(0,7986),(0,7987),(0,7988),(0,7989),(0,7990),(0,7991),(0,7992),(0,7993),(0,7994),(0,7995),(0,7996),(0,7997),(0,7998),(0,7999),(0,8000),(0,8001),(0,8002),(0,8003),(0,8004),(0,8005),(0,8006),(0,8007),(0,8008),(0,8009),(0,8010),(0,8011),(0,8012),(0,8013),(0,8014),(0,8015),(0,8016),(0,8017),(0,8018),(0,8019),(0,8020),(0,8021),(0,8022),(0,8023),(0,8024),(0,8025),(0,8026),(0,8027),(0,8028),(0,8029),(0,8030),(0,8031),(0,8032),(0,8033),(0,8034),(0,8035),(0,8036),(0,8037),(0,8038),(0,8039),(0,8040),(0,8041),(0,8042),(0,8043),(0,8044),(0,8045),(0,8046),(0,8047),(0,8048),(0,8049),(0,8050),(0,8051),(0,8052),(0,8053),(0,8054),(0,8055),(0,8056),(0,8057),(0,8058),(0,8059),(0,8060),(0,8061),(0,8062),(0,8063),(0,8064),(0,8065),(0,8066),(0,8067),(0,8068),(0,8069),(0,8070),(0,8071),(0,8072),(0,8073),(0,8074),(0,8075),(0,8076),(0,8077),(0,8078),(0,8079),(0,8080),(0,8081),(0,8082),(0,8083),(0,8084),(0,8085),(0,8086),(0,8087),(0,8088),(0,8089),(0,8090),(0,8091),(0,8092),(0,8093),(0,8094),(0,8095),(0,8096),(0,8097),(0,8098),(0,8099),(0,8100),(0,8101),(0,8102),(0,8103),(0,8104),(0,8105),(0,8106),(0,8107),(0,8108),(0,8109),(0,8110),(0,8111),(0,8112),(0,8113),(0,8114),(0,8115),(0,8116),(0,8117),(0,8118),(0,8119),(0,8120),(0,8121),(0,8122),(0,8123),(0,8124),(0,8125),(0,8126),(0,8127),(0,8128),(0,8129),(0,8130),(0,8131),(0,8132),(0,8133),(0,8134),(0,8135),(0,8136),(0,8137),(0,8138),(0,8139),(0,8140),(0,8141),(0,8142),(0,8143),(0,8144),(0,8145),(0,8146),(0,8147),(0,8148),(0,8149),(0,8150),(0,8151),(0,8152),(0,8153),(0,8154),(0,8155),(0,8156),(0,8157),(0,8158),(0,8159),(0,8160),(0,8161),(0,8162),(0,8163),(0,8164),(0,8165),(0,8166),(0,8167),(0,8168),(0,8169),(0,8170),(0,8171),(0,8172),(0,8173),(0,8174),(0,8175),(0,8176),(0,8177),(0,8178),(0,8179),(0,8180),(0,8181),(0,8182),(0,8183),(0,8184),(0,8185),(0,8186),(0,8187),(0,8188),(0,8189),(0,8190),(0,8191),(0,8192),(0,8193),(0,8194),(0,8195),(0,8196),(0,8197),(0,8198),(0,8199),(0,8200),(0,8201),(0,8202),(0,8203),(0,8204),(0,8205),(0,8206),(0,8207),(0,8208),(0,8209),(0,8210),(0,8211),(0,8212),(0,8213),(0,8214),(0,8215),(0,8216),(0,8217),(0,8218),(0,8219),(0,8220),(0,8221),(0,8222),(0,8223),(0,8224),(0,8225),(0,8226),(0,8227),(0,8228),(0,8229),(0,8230),(0,8231),(0,8232),(0,8233),(0,8234),(0,8235),(0,8236),(0,8237),(0,8238),(0,8239),(0,8240),(0,8241),(0,8242),(0,8243),(0,8244),(0,8245),(0,8246),(0,8247),(0,8248),(0,8249),(0,8250),(0,8251),(0,8252),(0,8253),(0,8254),(0,8255),(0,8256),(0,8257),(0,8258),(0,8259),(0,8260),(0,8261),(0,8262),(0,8263),(0,8264),(0,8265),(0,8266),(0,8267),(0,8268),(0,8269),(0,8270),(0,8271),(0,8272),(0,8273),(0,8274),(0,8275),(0,8276),(0,8277),(0,8278),(0,8279),(0,8280),(0,8281),(0,8282),(0,8283),(0,8284),(0,8285),(0,8286),(0,8287),(0,8288),(0,8289),(0,8290),(0,8291),(0,8292),(0,8293),(0,8294),(0,8295),(0,8296),(0,8297),(0,8298),(0,8299),(0,8300),(0,8301),(0,8302),(0,8303),(0,8304),(0,8305),(0,8306),(0,8307),(0,8308),(0,8309),(0,8310),(0,8311),(0,8312),(0,8313),(0,8314),(0,8315),(0,8316),(0,8317),(0,8318),(0,8319),(0,8320),(0,8321),(0,8322),(0,8323),(0,8324),(0,8325),(0,8326),(0,8327),(0,8328),(0,8329),(0,8330),(0,8331),(0,8332),(0,8333),(0,8334),(0,8335),(0,8336),(0,8337),(0,8338),(0,8339),(0,8340),(0,8341),(0,8342),(0,8343),(0,8344),(0,8345),(0,8346),(0,8347),(0,8348),(0,8349),(0,8350),(0,8351),(0,8352),(0,8353),(0,8354),(0,8355),(0,8356),(0,8357),(0,8358),(0,8359),(0,8360),(0,8361),(0,8362),(0,8363),(0,8364),(0,8365),(0,8366),(0,8367),(0,8368),(0,8369),(0,8370),(0,8371),(0,8372),(0,8373),(0,8374),(0,8375),(0,8376),(0,8377),(0,8378),(0,8379),(0,8380),(0,8381),(0,8382),(0,8383),(0,8384),(0,8385),(0,8386),(0,8387),(0,8388),(0,8389),(0,8390),(0,8391),(0,8392),(0,8393),(0,8394),(0,8395),(0,8396),(0,8397),(0,8398),(0,8399),(0,8400),(0,8401),(0,8402),(0,8403),(0,8404),(0,8405),(0,8406),(0,8407),(0,8408),(0,8409),(0,8410),(0,8411),(0,8412),(0,8413),(0,8414),(0,8415),(0,8416),(0,8417),(0,8418),(0,8419),(0,8420),(0,8421),(0,8422),(0,8423),(0,8424),(0,8425),(0,8426),(0,8427),(0,8428),(0,8429),(0,8430),(0,8431),(0,8432),(0,8433),(0,8434),(0,8435),(0,8436),(0,8437),(0,8438),(0,8439),(0,8440),(0,8441),(0,8442),(0,8443),(0,8444),(0,8445),(0,8446),(0,8447),(0,8448),(0,8449),(0,8450),(0,8451),(0,8452),(0,8453),(0,8454),(0,8455),(0,8456),(0,8457),(0,8458),(0,8459),(0,8460),(0,8461),(0,8462),(0,8463),(0,8464),(0,8465),(0,8466),(0,8467),(0,8468),(0,8469),(0,8470),(0,8471),(0,8472),(0,8473),(0,8474),(0,8475),(0,8476),(0,8477),(0,8478),(0,8479),(0,8480),(0,8481),(0,8482),(0,8483),(0,8484),(0,8485),(0,8486),(0,8487),(0,8488),(0,8489),(0,8490),(0,8491),(0,8492),(0,8493),(0,8494),(0,8495),(0,8496),(0,8497),(0,8498),(0,8499),(0,8500),(0,8501),(0,8502),(0,8503),(0,8504),(0,8505),(0,8506),(0,8507),(0,8508),(0,8509),(0,8510),(0,8511),(0,8512),(0,8513),(0,8514),(0,8515),(0,8516),(0,8517),(0,8518),(0,8519),(0,8520),(0,8521),(0,8522),(0,8523),(0,8524),(0,8525),(0,8526),(0,8527),(0,8528),(0,8529),(0,8530),(0,8531),(0,8532),(0,8533),(0,8534),(0,8535),(0,8536),(0,8537),(0,8538),(0,8539),(0,8540),(0,8541),(0,8542),(0,8543),(0,8544),(0,8545),(0,8546),(0,8547),(0,8548),(0,8549),(0,8550),(0,8551),(0,8552),(0,8553),(0,8554),(0,8555),(0,8556),(0,8557),(0,8558),(0,8559),(0,8560),(0,8561),(0,8562),(0,8563),(0,8564),(0,8565),(0,8566),(0,8567),(0,8568),(0,8569),(0,8570),(0,8571),(0,8572),(0,8573),(0,8574),(0,8575),(0,8576),(0,8577),(0,8578),(0,8579),(0,8580),(0,8581),(0,8582),(0,8583),(0,8584),(0,8585),(0,8586),(0,8587),(0,8588),(0,8589),(0,8590),(0,8591),(0,8592),(0,8593),(0,8594),(0,8595),(0,8596),(0,8597),(0,8598),(0,8599),(0,8600),(0,8601),(0,8602),(0,8603),(0,8604),(0,8605),(0,8606),(0,8607),(0,8608),(0,8609),(0,8610),(0,8611),(0,8612),(0,8613),(0,8614),(0,8615),(0,8616),(0,8617),(0,8618),(0,8619),(0,8620),(0,8621),(0,8622),(0,8623),(0,8624),(0,8625),(0,8626),(0,8627),(0,8628),(0,8629),(0,8630),(0,8631),(0,8632),(0,8633),(0,8634),(0,8635),(0,8636),(0,8637),(0,8638),(0,8639),(0,8640),(0,8641),(0,8642),(0,8643),(0,8644),(0,8645),(0,8646),(0,8647),(0,8648),(0,8649),(0,8650),(0,8651),(0,8652),(0,8653),(0,8654),(0,8655),(0,8656),(0,8657),(0,8658),(0,8659),(0,8660),(0,8661),(0,8662),(0,8663),(0,8664),(0,8665),(0,8666),(0,8667),(0,8668),(0,8669),(0,8670),(0,8671),(0,8672),(0,8673),(0,8674),(0,8675),(0,8676),(0,8677),(0,8678),(0,8679),(0,8680),(0,8681),(0,8682),(0,8683),(0,8684),(0,8685),(0,8686),(0,8687),(0,8688),(0,8689),(0,8690),(0,8691),(0,8692),(0,8693),(0,8694),(0,8695),(0,8696),(0,8697),(0,8698),(0,8699),(0,8700),(0,8701),(0,8702),(0,8703),(0,8704),(0,8705),(0,8706),(0,8707),(0,8708),(0,8709),(0,8710),(0,8711),(0,8712),(0,8713),(0,8714),(0,8715),(0,8716),(0,8717),(0,8718),(0,8719),(0,8720),(0,8721),(0,8722),(0,8723),(0,8724),(0,8725),(0,8726),(0,8727),(0,8728),(0,8729),(0,8730),(0,8731),(0,8732),(0,8733),(0,8734),(0,8735),(0,8736),(0,8737),(0,8738),(0,8739),(0,8740),(0,8741),(0,8742),(0,8743),(0,8744),(0,8745),(0,8746),(0,8747),(0,8748),(0,8749),(0,8750),(0,8751),(0,8752),(0,8753),(0,8754),(0,8755),(0,8756),(0,8757),(0,8758),(0,8759),(0,8760),(0,8761),(0,8762),(0,8763),(0,8764),(0,8765),(0,8766),(0,8767),(0,8768),(0,8769),(0,8770),(0,8771),(0,8772),(0,8773),(0,8774),(0,8775),(0,8776),(0,8777),(0,8778),(0,8779),(0,8780),(0,8781),(0,8782),(0,8783),(0,8784),(0,8785),(0,8786),(0,8787),(0,8788),(0,8789),(0,8790),(0,8791),(0,8792),(0,8793),(0,8794),(0,8795),(0,8796),(0,8797),(0,8798),(0,8799),(0,8800),(0,8801),(0,8802),(0,8803),(0,8804),(0,8805),(0,8806),(0,8807),(0,8808),(0,8809),(0,8810),(0,8811),(0,8812),(0,8813),(0,8814),(0,8815),(0,8816),(0,8817),(0,8818),(0,8819),(0,8820),(0,8821),(0,8822),(0,8823),(0,8824),(0,8825),(0,8826),(0,8827),(0,8828),(0,8829),(0,8830),(0,8831),(0,8832),(0,8833),(0,8834),(0,8835),(0,8836),(0,8837),(0,8838),(0,8839),(0,8840),(0,8841),(0,8842),(0,8843),(0,8844),(0,8845),(0,8846),(0,8847),(0,8848),(0,8849),(0,8850),(0,8851),(0,8852),(0,8853),(0,8854),(0,8855),(0,8856),(0,8857),(0,8858),(0,8859),(0,8860),(0,8861),(0,8862),(0,8863),(0,8864),(0,8865),(0,8866),(0,8867),(0,8868),(0,8869),(0,8870),(0,8871),(0,8872),(0,8873),(0,8874),(0,8875),(0,8876),(0,8877),(0,8878),(0,8879),(0,8880),(0,8881),(0,8882),(0,8883),(0,8884),(0,8885),(0,8886),(0,8887),(0,8888),(0,8889),(0,8890),(0,8891),(0,8892),(0,8893),(0,8894),(0,8895),(0,8896),(0,8897),(0,8898),(0,8899),(0,8900),(0,8901),(0,8902),(0,8903),(0,8904),(0,8905),(0,8906),(0,8907),(0,8908),(0,8909),(0,8910),(0,8911),(0,8912),(0,8913),(0,8914),(0,8915),(0,8916),(0,8917),(0,8918),(0,8919),(0,8920),(0,8921),(0,8922),(0,8923),(0,8924),(0,8925),(0,8926),(0,8927),(0,8928),(0,8929),(0,8930),(0,8931),(0,8932),(0,8933),(0,8934),(0,8935),(0,8936),(0,8937),(0,8938),(0,8939),(0,8940),(0,8941),(0,8942),(0,8943),(0,8944),(0,8945),(0,8946),(0,8947),(0,8948),(0,8949),(0,8950),(0,8951),(0,8952),(0,8953),(0,8954),(0,8955),(0,8956),(0,8957),(0,8958),(0,8959),(0,8960),(0,8961),(0,8962),(0,8963),(0,8964),(0,8965),(0,8966),(0,8967),(0,8968),(0,8969),(0,8970),(0,8971),(0,8972),(0,8973),(0,8974),(0,8975),(0,8976),(0,8977),(0,8978),(0,8979),(0,8980),(0,8981),(0,8982),(0,8983),(0,8984),(0,8985),(0,8986),(0,8987),(0,8988),(0,8989),(0,8990),(0,8991),(0,8992),(0,8993),(0,8994),(0,8995),(0,8996),(0,8997),(0,8998),(0,8999),(0,9000),(0,9001),(0,9002),(0,9003),(0,9004),(0,9005),(0,9006),(0,9007),(0,9008),(0,9009),(0,9010),(0,9011),(0,9012),(0,9013),(0,9014),(0,9015),(0,9016),(0,9017),(0,9018),(0,9019),(0,9020),(0,9021),(0,9022),(0,9023),(0,9024),(0,9025),(0,9026),(0,9027),(0,9028),(0,9029),(0,9030),(0,9031),(0,9032),(0,9033),(0,9034),(0,9035),(0,9036),(0,9037),(0,9038),(0,9039),(0,9040),(0,9041),(0,9042),(0,9043),(0,9044),(0,9045),(0,9046),(0,9047),(0,9048),(0,9049),(0,9050),(0,9051),(0,9052),(0,9053),(0,9054),(0,9055),(0,9056),(0,9057),(0,9058),(0,9059),(0,9060),(0,9061),(0,9062),(0,9063),(0,9064),(0,9065),(0,9066),(0,9067),(0,9068),(0,9069),(0,9070),(0,9071),(0,9072),(0,9073),(0,9074),(0,9075),(0,9076),(0,9077),(0,9078),(0,9079),(0,9080),(0,9081),(0,9082),(0,9083),(0,9084),(0,9085),(0,9086),(0,9087),(0,9088),(0,9089),(0,9090),(0,9091),(0,9092),(0,9093),(0,9094),(0,9095),(0,9096),(0,9097),(0,9098),(0,9099),(0,9100),(0,9101),(0,9102),(0,9103),(0,9104),(0,9105),(0,9106),(0,9107),(0,9108),(0,9109),(0,9110),(0,9111),(0,9112),(0,9113),(0,9114),(0,9115),(0,9116),(0,9117),(0,9118),(0,9119),(0,9120),(0,9121),(0,9122),(0,9123),(0,9124),(0,9125),(0,9126),(0,9127),(0,9128),(0,9129),(0,9130),(0,9131),(0,9132),(0,9133),(0,9134),(0,9135),(0,9136),(0,9137),(0,9138),(0,9139),(0,9140),(0,9141),(0,9142),(0,9143),(0,9144),(0,9145),(0,9146),(0,9147),(0,9148),(0,9149),(0,9150),(0,9151),(0,9152),(0,9153),(0,9154),(0,9155),(0,9156),(0,9157),(0,9158),(0,9159),(0,9160),(0,9161),(0,9162),(0,9163),(0,9164),(0,9165),(0,9166),(0,9167),(0,9168),(0,9169),(0,9170),(0,9171),(0,9172),(0,9173),(0,9174),(0,9175),(0,9176),(0,9177),(0,9178),(0,9179),(0,9180),(0,9181),(0,9182),(0,9183),(0,9184),(0,9185),(0,9186),(0,9187),(0,9188),(0,9189),(0,9190),(0,9191),(0,9192),(0,9193),(0,9194),(0,9195),(0,9196),(0,9197),(0,9198),(0,9199),(0,9200),(0,9201),(0,9202),(0,9203),(0,9204),(0,9205),(0,9206),(0,9207),(0,9208),(0,9209),(0,9210),(0,9211),(0,9212),(0,9213),(0,9214),(0,9215),(0,9216),(0,9217),(0,9218),(0,9219),(0,9220),(0,9221),(0,9222),(0,9223),(0,9224),(0,9225),(0,9226),(0,9227),(0,9228),(0,9229),(0,9230),(0,9231),(0,9232),(0,9233),(0,9234),(0,9235),(0,9236),(0,9237),(0,9238),(0,9239),(0,9240),(0,9241),(0,9242),(0,9243),(0,9244),(0,9245),(0,9246),(0,9247),(0,9248),(0,9249),(0,9250),(0,9251),(0,9252),(0,9253),(0,9254),(0,9255),(0,9256),(0,9257),(0,9258),(0,9259),(0,9260),(0,9261),(0,9262),(0,9263),(0,9264),(0,9265),(0,9266),(0,9267),(0,9268),(0,9269),(0,9270),(0,9271),(0,9272),(0,9273),(0,9274),(0,9275),(0,9276),(0,9277),(0,9278),(0,9279),(0,9280),(0,9281),(0,9282),(0,9283),(0,9284),(0,9285),(0,9286),(0,9287),(0,9288),(0,9289),(0,9290),(0,9291),(0,9292),(0,9293),(0,9294),(0,9295),(0,9296),(0,9297),(0,9298),(0,9299),(0,9300),(0,9301),(0,9302),(0,9303),(0,9304),(0,9305),(0,9306),(0,9307),(0,9308),(0,9309),(0,9310),(0,9311),(0,9312),(0,9313),(0,9314),(0,9315),(0,9316),(0,9317),(0,9318),(0,9319),(0,9320),(0,9321),(0,9322),(0,9323),(0,9324),(0,9325),(0,9326),(0,9327),(0,9328),(0,9329),(0,9330),(0,9331),(0,9332),(0,9333),(0,9334),(0,9335),(0,9336),(0,9337),(0,9338),(0,9339),(0,9340),(0,9341),(0,9342),(0,9343),(0,9344),(0,9345),(0,9346),(0,9347),(0,9348),(0,9349),(0,9350),(0,9351),(0,9352),(0,9353),(0,9354),(0,9355),(0,9356),(0,9357),(0,9358),(0,9359),(0,9360),(0,9361),(0,9362),(0,9363),(0,9364),(0,9365),(0,9366),(0,9367),(0,9368),(0,9369),(0,9370),(0,9371),(0,9372),(0,9373),(0,9374),(0,9375),(0,9376),(0,9377),(0,9378),(0,9379),(0,9380),(0,9381),(0,9382),(0,9383),(0,9384),(0,9385),(0,9386),(0,9387),(0,9388),(0,9389),(0,9390),(0,9391),(0,9392),(0,9393),(0,9394),(0,9395),(0,9396),(0,9397),(0,9398),(0,9399),(0,9400),(0,9401),(0,9402),(0,9403),(0,9404),(0,9405),(0,9406),(0,9407),(0,9408),(0,9409),(0,9410),(0,9411),(0,9412),(0,9413),(0,9414),(0,9415),(0,9416),(0,9417),(0,9418),(0,9419),(0,9420),(0,9421),(0,9422),(0,9423),(0,9424),(0,9425),(0,9426),(0,9427),(0,9428),(0,9429),(0,9430),(0,9431),(0,9432),(0,9433),(0,9434),(0,9435),(0,9436),(0,9437),(0,9438),(0,9439),(0,9440),(0,9441),(0,9442),(0,9443),(0,9444),(0,9445),(0,9446),(0,9447),(0,9448),(0,9449),(0,9450),(0,9451),(0,9452),(0,9453),(0,9454),(0,9455),(0,9456),(0,9457),(0,9458),(0,9459),(0,9460),(0,9461),(0,9462),(0,9463),(0,9464),(0,9465),(0,9466),(0,9467),(0,9468),(0,9469),(0,9470),(0,9471),(0,9472),(0,9473),(0,9474),(0,9475),(0,9476),(0,9477),(0,9478),(0,9479),(0,9480),(0,9481),(0,9482),(0,9483),(0,9484),(0,9485),(0,9486),(0,9487),(0,9488),(0,9489),(0,9490),(0,9491),(0,9492),(0,9493),(0,9494),(0,9495),(0,9496),(0,9497),(0,9498),(0,9499),(0,9500),(0,9501),(0,9502),(0,9503),(0,9504),(0,9505),(0,9506),(0,9507),(0,9508),(0,9509),(0,9510),(0,9511),(0,9512),(0,9513),(0,9514),(0,9515),(0,9516),(0,9517),(0,9518),(0,9519),(0,9520),(0,9521),(0,9522),(0,9523),(0,9524),(0,9525),(0,9526),(0,9527),(0,9528),(0,9529),(0,9530),(0,9531),(0,9532),(0,9533),(0,9534),(0,9535),(0,9536),(0,9537),(0,9538),(0,9539),(0,9540),(0,9541),(0,9542),(0,9543),(0,9544),(0,9545),(0,9546),(0,9547),(0,9548),(0,9549),(0,9550),(0,9551),(0,9552),(0,9553),(0,9554),(0,9555),(0,9556),(0,9557),(0,9558),(0,9559),(0,9560),(0,9561),(0,9562),(0,9563),(0,9564),(0,9565),(0,9566),(0,9567),(0,9568),(0,9569),(0,9570),(0,9571),(0,9572),(0,9573),(0,9574),(0,9575),(0,9576),(0,9577),(0,9578),(0,9579),(0,9580),(0,9581),(0,9582),(0,9583),(0,9584),(0,9585),(0,9586),(0,9587),(0,9588),(0,9589),(0,9590),(0,9591),(0,9592),(0,9593),(0,9594),(0,9595),(0,9596),(0,9597),(0,9598),(0,9599),(0,9600),(0,9601),(0,9602),(0,9603),(0,9604),(0,9605),(0,9606),(0,9607),(0,9608),(0,9609),(0,9610),(0,9611),(0,9612),(0,9613),(0,9614),(0,9615),(0,9616),(0,9617),(0,9618),(0,9619),(0,9620),(0,9621),(0,9622),(0,9623),(0,9624),(0,9625),(0,9626),(0,9627),(0,9628),(0,9629),(0,9630),(0,9631),(0,9632),(0,9633),(0,9634),(0,9635),(0,9636),(0,9637),(0,9638),(0,9639),(0,9640),(0,9641),(0,9642),(0,9643),(0,9644),(0,9645),(0,9646),(0,9647),(0,9648),(0,9649),(0,9650),(0,9651),(0,9652),(0,9653),(0,9654),(0,9655),(0,9656),(0,9657),(0,9658),(0,9659),(0,9660),(0,9661),(0,9662),(0,9663),(0,9664),(0,9665),(0,9666),(0,9667),(0,9668),(0,9669),(0,9670),(0,9671),(0,9672),(0,9673),(0,9674),(0,9675),(0,9676),(0,9677),(0,9678),(0,9679),(0,9680),(0,9681),(0,9682),(0,9683),(0,9684),(0,9685),(0,9686),(0,9687),(0,9688),(0,9689),(0,9690),(0,9691),(0,9692),(0,9693),(0,9694),(0,9695),(0,9696),(0,9697),(0,9698),(0,9699),(0,9700),(0,9701),(0,9702),(0,9703),(0,9704),(0,9705),(0,9706),(0,9707),(0,9708),(0,9709),(0,9710),(0,9711),(0,9712),(0,9713),(0,9714),(0,9715),(0,9716),(0,9717),(0,9718),(0,9719),(0,9720),(0,9721),(0,9722),(0,9723),(0,9724),(0,9725),(0,9726),(0,9727),(0,9728),(0,9729),(0,9730),(0,9731),(0,9732),(0,9733),(0,9734),(0,9735),(0,9736),(0,9737),(0,9738),(0,9739),(0,9740),(0,9741),(0,9742),(0,9743),(0,9744),(0,9745),(0,9746),(0,9747),(0,9748),(0,9749),(0,9750),(0,9751),(0,9752),(0,9753),(0,9754),(0,9755),(0,9756),(0,9757),(0,9758),(0Interrupted. λ> [ (x,y) | x <- [0..], y <- [0..x-1] ] [(1,0),(2,0),(2,1),(3,0),(3,1),(3,2),(4,0),(4,1),(4,2),(4,3),(5,0),(5,1),(5,2),(5,3),(5,4),(6,0),(6,1),(6,2),(6,3),(6,4),(6,5),(7,0),(7,1),(7,2),(7,3),(7,4),(7,5),(7,6),(8,0),(8,1),(8,2),(8,3),(8,4),(8,5),(8,6),(8,7),(9,0),(9,1),(9,2),(9,3),(9,4),(9,5),(9,6),(9,7),(9,8),(10,0),(10,1),(10,2),(10,3),(10,4),(10,5),(10,6),(10,7),(10,8),(10,9),(11,0),(11,1),(11,2),(11,3),(11,4),(11,5),(11,6),(11,7),(11,8),(11,9),(11,10),(12,0),(12,1),(12,2),(12,3),(12,4),(12,5),(12,6),(12,7),(12,8),(12,9),(12,10),(12,11),(13,0),(13,1),(13,2),(13,3),(13,4),(13,5),(13,6),(13,7),(13,8),(13,9),(13,10),(13,11),(13,12),(14,0),(14,1),(14,2),(14,3),(14,4),(14,5),(14,6),(14,7),(14,8),(14,9),(14,10),(14,11),(14,12),(14,13),(15,0),(15,1),(15,2),(15,3),(15,4),(15,5),(15,6),(15,7),(15,8),(15,9),(15,10),(15,11),(15,12),(15,13),(15,14),(16,0),(16,1),(16,2),(16,3),(16,4),(16,5),(16,6),(16,7),(16,8),(16,9),(16,10),(16,11),(16,12),(16,13),(16,14),(16,15),(17,0),(17,1),(17,2),(17,3),(17,4),(17,5),(17,6),(17,7),(17,8),(17,9),(17,10),(17,11),(17,12),(17,13),(17,14),(17,15),(17,16),(18,0),(18,1),(18,2),(18,3),(18,4),(18,5),(18,6),(18,7),(18,8),(18,9),(18,10),(18,11),(18,12),(18,13),(18,14),(18,15),(18,16),(18,17),(19,0),(19,1),(19,2),(19,3),(19,4),(19,5),(19,6),(19,7),(19,8),(19,9),(19,10),(19,11),(19,12),(19,13),(19,14),(19,15),(19,16),(19,17),(19,18),(20,0),(20,1),(20,2),(20,3),(20,4),(20,5),(20,6),(20,7),(20,8),(20,9),(20,10),(20,11),(20,12),(20,13),(20,14),(20,15),(20,16),(20,17),(20,18),(20,19),(21,0),(21,1),(21,2),(21,3),(21,4),(21,5),(21,6),(21,7),(21,8),(21,9),(21,10),(21,11),(21,12),(21,13),(21,14),(21,15),(21,16),(21,17),(21,18),(21,19),(21,20),(22,0),(22,1),(22,2),(22,3),(22,4),(22,5),(22,6),(22,7),(22,8),(22,9),(22,10),(22,11),(22,12),(22,13),(22,14),(22,15),(22,16),(22,17),(22,18),(22,19),(22,20),(22,21),(23,0),(23,1),(23,2),(23,3),(23,4),(23,5),(23,6),(23,7),(23,8),(23,9),(23,10),(23,11),(23,12),(23,13),(23,14),(23,15),(23,16),(23,17),(23,18),(23,19),(23,20),(23,21),(23,22),(24,0),(24,1),(24,2),(24,3),(24,4),(24,5),(24,6),(24,7),(24,8),(24,9),(24,10),(24,11),(24,12),(24,13),(24,14),(24,15),(24,16),(24,17),(24,18),(24,19),(24,20),(24,21),(24,22),(24,23),(25,0),(25,1),(25,2),(25,3),(25,4),(25,5),(25,6),(25,7),(25,8),(25,9),(25,10),(25,11),(25,12),(25,13),(25,14),(25,15),(25,16),(25,17),(25,18),(25,19),(25,20),(25,21),(25,22),(25,23),(25,24),(26,0),(26,1),(26,2),(26,3),(26,4),(26,5),(26,6),(26,7),(26,8),(26,9),(26,10),(26,11),(26,12),(26,13),(26,14),(26,15),(26,16),(26,17),(26,18),(26,19),(26,20),(26,21),(26,22),(26,23),(26,24),(26,25),(27,0),(27,1),(27,2),(27,3),(27,4),(27,5),(27,6),(27,7),(27,8),(27,9),(27,10),(27,11),(27,12),(27,13),(27,14),(27,15),(27,16),(27,17),(27,18),(27,19),(27,20),(27,21),(27,22),(27,23),(27,24),(27,25),(27,26),(28,0),(28,1),(28,2),(28,3),(28,4),(28,5),(28,6),(28,7),(28,8),(28,9),(28,10),(28,11),(28,12),(28,13),(28,14),(28,15),(28,16),(28,17),(28,18),(28,19),(28,20),(28,21),(28,22),(28,23),(28,24),(28,25),(28,26),(28,27),(29,0),(29,1),(29,2),(29,3),(29,4),(29,5),(29,6),(29,7),(29,8),(29,9),(29,10),(29,11),(29,12),(29,13),(29,14),(29,15),(29,16),(29,17),(29,18),(29,19),(29,20),(29,21),(29,22),(29,23),(29,24),(29,25),(29,26),(29,27),(29,28),(30,0),(30,1),(30,2),(30,3),(30,4),(30,5),(30,6),(30,7),(30,8),(30,9),(30,10),(30,11),(30,12),(30,13),(30,14),(30,15),(30,16),(30,17),(30,18),(30,19),(30,20),(30,21),(30,22),(30,23),(30,24),(30,25),(30,26),(30,27),(30,28),(30,29),(31,0),(31,1),(31,2),(31,3),(31,4),(31,5),(31,6),(31,7),(31,8),(31,9),(31,10),(31,11),(31,12),(31,13),(31,14),(31,15),(31,16),(31,17),(31,18),(31,19),(31,20),(31,21),(31,22),(31,23),(31,24),(31,25),(31,26),(31,27),(31,28),(31,29),(31,30),(32,0),(32,1),(32,2),(32,3),(32,4),(32,5),(32,6),(32,7),(32,8),(32,9),(32,10),(32,11),(32,12),(32,13),(32,14),(32,15),(32,16),(32,17),(32,18),(32,19),(32,20),(32,21),(32,22),(32,23),(32,24),(32,25),(32,26),(32,27),(32,28),(32,29),(32,30),(32,31),(33,0),(33,1),(33,2),(33,3),(33,4),(33,5),(33,6),(33,7),(33,8),(33,9),(33,10),(33,11),(33,12),(33,13),(33,14),(33,15),(33,16),(33,17),(33,18),(33,19),(33,20),(33,21),(33,22),(33,23),(33,24),(33,25),(33,26),(33,27),(33,28),(33,29),(33,30),(33,31),(33,32),(34,0),(34,1),(34,2),(34,3),(34,4),(34,5),(34,6),(34,7),(34,8),(34,9),(34,10),(34,11),(34,12),(34,13),(34,14),(34,15),(34,16),(34,17),(34,18),(34,19),(34,20),(34,21),(34,22),(34,23),(34,24),(34,25),(34,26),(34,27),(34,28),(34,29),(34,30),(34,31),(34,32),(34,33),(35,0),(35,1),(35,2),(35,3),(35,4),(35,5),(35,6),(35,7),(35,8),(35,9),(35,10),(35,11),(35,12),(35,13),(35,14),(35,15),(35,16),(35,17),(35,18),(35,19),(35,20),(35,21),(35,22),(35,23),(35,24),(35,25),(35,26),(35,27),(35,28),(35,29),(35,30),(35,31),(35,32),(35,33),(35,34),(36,0),(36,1),(36,2),(36,3),(36,4),(36,5),(36,6),(36,7),(36,8),(36,9),(36,10),(36,11),(36,12),(36,13),(36,14),(36,15),(36,16),(36,17),(36,18),(36,19),(36,20),(36,21),(36,22),(36,23),(36,24),(36,25),(36,26),(36,27),(36,28),(36,29),(36,30),(36,31),(36,32),(36,33),(36,34),(36,35),(37,0),(37,1),(37,2),(37,3),(37,4),(37,5),(37,6),(37,7),(37,8),(37,9),(37,10),(37,11),(37,12),(37,13),(37,14),(37,15),(37,16),(37,17),(37,18),(37,19),(37,20),(37,21),(37,22),(37,23),(37,24),(37,25),(37,26),(37,27),(37,28),(37,29),(37,30),(37,31),(37,32),(37,33),(37,34),(37,35),(37,36),(38,0),(38,1),(38,2),(38,3),(38,4),(38,5),(38,6),(38,7),(38,8),(38,9),(38,10),(38,11),(38,12),(38,13),(38,14),(38,15),(38,16),(38,17),(38,18),(38,19),(38,20),(38,21),(38,22),(38,23),(38,24),(38,25),(38,26),(38,27),(38,28),(38,29),(38,30),(38,31),(38,32),(38,33),(38,34),(38,35),(38,36),(38,37),(39,0),(39,1),(39,2),(39,3),(39,4),(39,5),(39,6),(39,7),(39,8),(39,9),(39,10),(39,11),(39,12),(39,13),(39,14),(39,15),(39,16),(39,17),(39,18),(39,19),(39,20),(39,21),(39,22),(39,23),(39,24),(39,25),(39,26),(39,27),(39,28),(39,29),(39,30),(39,31),(39,32),(39,33),(39,34),(39,35),(39,36),(39,37),(39,38),(40,0),(40,1),(40,2),(40,3),(40,4),(40,5),(40,6),(40,7),(40,8),(40,9),(40,10),(40,11),(40,12),(40,13),(40,14),(40,15),(40,16),(40,17),(40,18),(40,19),(40,20),(40,21),(40,22),(40,23),(40,24),(40,25),(40,26),(40,27),(40,28),(40,29),(40,30),(40,31),(40,32),(40,33),(40,34),(40,35),(40,36),(40,37),(40,38),(40,39),(41,0),(41,1),(41,2),(41,3),(41,4),(41,5),(41,6),(41,7),(41,8),(41,9),(41,10),(41,11),(41,12),(41,13),(41,14),(41,15),(41,16),(41,17),(41,18),(41,19),(41,20),(41,21),(41,22),(41,23),(41,24),(41,25),(41,26),(41,27),(41,28),(41,29),(41,30),(41,31),(41,32),(41,33),(41,34),(41,35),(41,36),(41,37),(41,38),(41,39),(41,40),(42,0),(42,1),(42,2),(42,3),(42,4),(42,5),(42,6),(42,7),(42,8),(42,9),(42,10),(42,11),(42,12),(42,13),(42,14),(42,15),(42,16),(42,17),(42,18),(42,19),(42,20),(42,21),(42,22),(42,23),(42,24),(42,25),(42,26),(42,27),(42,28),(42,29),(42,30),(42,31),(42,32),(42,33),(42,34),(42,35),(42,36),(42,37),(42,38),(42,39),(42,40),(42,41),(43,0),(43,1),(43,2),(43,3),(43,4),(43,5),(43,6),(43,7),(43,8),(43,9),(43,10),(43,11),(43,12),(43,13),(43,14),(43,15),(43,16),(43,17),(43,18),(43,19),(43,20),(43,21),(43,22),(43,23),(43,24),(43,25),(43,26),(43,27),(43,28),(43,29),(43,30),(43,31),(43,32),(43,33),(43,34),(43,35),(43,36),(43,37),(43,38),(43,39),(43,40),(43,41),(43,42),(44,0),(44,1),(44,2),(44,3),(44,4),(44,5),(44,6),(44,7),(44,8),(44,9),(44,10),(44,11),(44,12),(44,13),(44,14),(44,15),(44,16),(44,17),(44,18),(44,19),(44,20),(44,21),(44,22),(44,23),(44,24),(44,25),(44,26),(44,27),(44,28),(44,29),(44,30),(44,31),(44,32),(44,33),(44,34),(44,35),(44,36),(44,37),(44,38),(44,39),(44,40),(44,41),(44,42),(44,43),(45,0),(45,1),(45,2),(45,3),(45,4),(45,5),(45,6),(45,7),(45,8),(45,9),(45,10),(45,11),(45,12),(45,13),(45,14),(45,15),(45,16),(45,17),(45,18),(45,19),(45,20),(45,21),(45,22),(45,23),(45,24),(45,25),(45,26),(45,27),(45,28),(45,29),(45,30),(45,31),(45,32),(45,33),(45,34),(45,35),(45,36),(45,37),(45,38),(45,39),(45,40),(45,41),(45,42),(45,43),(45,44),(46,0),(46,1),(46,2),(46,3),(46,4),(46,5),(46,6),(46,7),(46,8),(46,9),(46,10),(46,11),(46,12),(46,13),(46,14),(46,15),(46,16),(46,17),(46,18),(46,19),(46,20),(46,21),(46,22),(46,23),(46,24),(46,25),(46,26),(46,27),(46,28),(46,29),(46,30),(46,31),(46,32),(46,33),(46,34),(46,35),(46,36),(46,37),(46,38),(46,39),(46,40),(46,41),(46,42),(46,43),(46,44),(46,45),(47,0),(47,1),(47,2),(47,3),(47,4),(47,5),(47,6),(47,7),(47,8),(47,9),(47,10),(47,11),(47,12),(47,13),(47,14),(47,15),(47,16),(47,17),(47,18),(47,19),(47,20),(47,21),(47,22),(47,23),(47,24),(47,25),(47,26),(47,27),(47,28),(47,29),(47,30),(47,31),(47,32),(47,33),(47,34),(47,35),(47,36),(47,37),(47,38),(47,39),(47,40),(47,41),(47,42),(47,43),(47,44),(47,45),(47,46),(48,0),(48,1),(48,2),(48,3),(48,4),(48,5),(48,6),(48,7),(48,8),(48,9),(48,10),(48,11),(48,12),(48,13),(48,14),(48,15),(48,16),(48,17),(48,18),(48,19),(48,20),(48,21),(48,22),(48,23),(48,24),(48,25),(48,26),(48,27),(48,28),(48,29),(48,30),(48,31),(48,32),(48,33),(48,34),(48,35),(48,36),(48,37),(48,38),(48,39),(48,40),(48,41),(48,42),(48,43),(48,44),(48,45),(48,46),(48,47),(49,0),(49,1),(49,2),(49,3),(49,4),(49,5),(49,6),(49,7),(49,8),(49,9),(49,10),(49,11),(49,12),(49,13),(49,14),(49,15),(49,16),(49,17),(49,18),(49,19),(49,20),(49,21),(49,22),(49,23),(49,24),(49,25),(49,26),(49,27),(49,28),(49,29),(49,30),(49,31),(49,32),(49,33),(49,34),(49,35),(49,36),(49,37),(49,38),(49,39),(49,40),(49,41),(49,42),(49,43),(49,44),(49,45),(49,46),(49,47),(49,48),(50,0),(50,1),(50,2),(50,3),(50,4),(50,5),(50,6),(50,7),(50,8),(50,9),(50,10),(50,11),(50,12),(50,13),(50,14),(50,15),(50,16),(50,17),(50,18),(50,19),(50,20),(50,21),(50,22),(50,23),(50,24),(50,25),(50,26),(50,27),(50,28),(50,29),(50,30),(50,31),(50,32),(50,33),(50,34),(50,35),(50,36),(50,37),(50,38),(50,39),(50,40),(50,41),(50,42),(50,43),(50,44),(50,45),(50,46),(50,47),(50,48),(50,49),(51,0),(51,1),(51,2),(51,3),(51,4),(51,5),(51,6),(51,7),(51,8),(51,9),(51,10),(51,11),(51,12),(51,13),(51,14),(51,15),(51,16),(51,17),(51,18),(51,19),(51,20),(51,21),(51,22),(51,23),(51,24),(51,25),(51,26),(51,27),(51,28),(51,29),(51,30),(51,31),(51,32),(51,33),(51,34),(51,35),(51,36),(51,37),(51,38),(51,39),(51,40),(51,41),(51,42),(51,43),(51,44),(51,45),(51,46),(51,47),(51,48),(51,49),(51,50),(52,0),(52,1),(52,2),(52,3),(52,4),(52,5),(52,6),(52,7),(52,8),(52,9),(52,10),(52,11),(52,12),(52,13),(52,14),(52,15),(52,16),(52,17),(52,18),(52,19),(52,20),(52,21),(52,22),(52,23),(52,24),(52,25),(52,26),(52,27),(52,28),(52,29),(52,30),(52,31),(52,32),(52,33),(52,34),(52,35),(52,36),(52,37),(52,38),(52,39),(52,40),(52,41),(52,42),(52,43),(52,44),(52,45),(52,46),(52,47),(52,48),(52,49),(52,50),(52,51),(53,0),(53,1),(53,2),(53,3),(53,4),(53,5),(53,6),(53,7),(53,8),(53,9),(53,10),(53,11),(53,12),(53,13),(53,14),(53,15),(53,16),(53,17),(53,18),(53,19),(53,20),(53,21),(53,22),(53,23),(53,24),(53,25),(53,26),(53,27),(53,28),(53,29),(53,30),(53,31),(53,32),(53,33),(53,34),(53,35),(53,36),(53,37),(53,38),(53,39),(53,40),(53,41),(53,42),(53,43),(53,44),(53,45),(53,46),(53,47),(53,48),(53,49),(53,50),(53,51),(53,52),(54,0),(54,1),(54,2),(54,3),(54,4),(54,5),(54,6),(54,7),(54,8),(54,9),(54,10),(54,11),(54,12),(54,13),(54,14),(54,15),(54,16),(54,17),(54,18),(54,19),(54,20),(54,21),(54,22),(54,23),(54,24),(54,25),(54,26),(54,27),(54,28),(54,29),(54,30),(54,31),(54,32),(54,33),(54,34),(54,35),(54,36),(54,37),(54,38),(54,39),(54,40),(54,41),(54,42),(54,43),(54,44),(54,45),(54,46),(54,47),(54,48),(54,49),(54,50),(54,51),(54,52),(54,53),(55,0),(55,1),(55,2),(55,3),(55,4),(55,5),(55,6),(55,7),(55,8),(55,9),(55,10),(55,11),(55,12),(55,13),(55,14),(55,15),(55,16),(55,17),(55,18),(55,19),(55,20),(55,21),(55,22),(55,23),(55,24),(55,25),(55,26),(55,27),(55,28),(55,29),(55,30),(55,31),(55,32),(55,33),(55,34),(55,35),(55,36),(55,37),(55,38),(55,39),(55,40),(55,41),(55,42),(55,43),(55,44),(55,45),(55,46),(55,47),(55,48),(55,49),(55,50),(55,51),(55,52),(55,53),(55,54),(56,0),(56,1),(56,2),(56,3),(56,4),(56,5),(56,6),(56,7),(56,8),(56,9),(56,10),(56,11),(56,12),(56,13),(56,14),(56,15),(56,16),(56,17),(56,18),(56,19),(56,20),(56,21),(56,22),(56,23),(56,24),(56,25),(56,26),(56,27),(56,28),(56,29),(56,30),(56,31),(56,32),(56,33),(56,34),(56,35),(56,36),(56,37),(56,38),(56,39),(56,40),(56,41),(56,42),(56,43),(56,44),(56,45),(56,46),(56,47),(56,48),(56,49),(56,50),(56,51),(56,52),(56,53),(56,54),(56,55),(57,0),(57,1),(57,2),(57,3),(57,4),(57,5),(57,6),(57,7),(57,8),(57,9),(57,10),(57,11),(57,12),(57,13),(57,14),(57,15),(57,16),(57,17),(57,18),(57,19),(57,20),(57,21),(57,22),(57,23),(57,24),(57,25),(57,26),(57,27),(57,28),(57,29),(57,30),(57,31),(57,32),(57,33),(57,34),(57,35),(57,36),(57,37),(57,38),(57,39),(57,40),(57,41),(57,42),(57,43),(57,44),(57,45),(57,46),(57,47),(57,48),(57,49),(57,50),(57,51),(57,52),(57,53),(57,54),(57,55),(57,56),(58,0),(58,1),(58,2),(58,3),(58,4),(58,5),(58,6),(58,7),(58,8),(58,9),(58,10),(58,11),(58,12),(58,13),(58,14),(58,15),(58,16),(58,17),(58,18),(58,19),(58,20),(58,21),(58,22),(58,23),(58,24),(58,25),(58,26),(58,27),(58,28),(58,29),(58,30),(58,31),(58,32),(58,33),(58,34),(58,35),(58,36),(58,37),(58,38),(58,39),(58,40),(58,41),(58,42),(58,43),(58,44),(58,45),(58,46),(58,47),(58,48),(58,49),(58,50),(58,51),(58,52),(58,53),(58,54),(58,55),(58,56),(58,57),(59,0),(59,1),(59,2),(59,3),(59,4),(59,5),(59,6),(59,7),(59,8),(59,9),(59,10),(59,11),(59,12),(59,13),(59,14),(59,15),(59,16),(59,17),(59,18),(59,19),(59,20),(59,21),(59,22),(59,23),(59,24),(59,25),(59,26),(59,27),(59,28),(59,29),(59,30),(59,31),(59,32),(59,33),(59,34),(59,35),(59,36),(59,37),(59,38),(59,39),(59,40),(59,41),(59,42),(59,43),(59,44),(59,45),(59,46),(59,47),(59,48),(59,49),(59,50),(59,51),(59,52),(59,53),(59,54),(59,55),(59,56),(59,57),(59,58),(60,0),(60,1),(60,2),(60,3),(60,4),(60,5),(60,6),(60,7),(60,8),(60,9),(60,10),(60,11),(60,12),(60,13),(60,14),(60,15),(60,16),(60,17),(60,18),(60,19),(60,20),(60,21),(60,22),(60,23),(60,24),(60,25),(60,26),(60,27),(60,28),(60,29),(60,30),(60,31),(60,32),(60,33),(60,34),(60,35),(60,36),(60,37),(60,38),(60,39),(60,40),(60,41),(60,42),(60,43),(60,44),(60,45),(60,46),(60,47),(60,48),(60,49),(60,50),(60,51),(60,52),(60,53),(60,54),(60,55),(60,56),(60,57),(60,58),(60,59),(61,0),(61,1),(61,2),(61,3),(61,4),(61,5),(61,6),(61,7),(61,8),(61,9),(61,10),(61,11),(61,12),(61,13),(61,14),(61,15),(61,16),(61,17),(61,18),(61,19),(61,20),(61,21),(61,22),(61,23),(61,24),(61,25),(61,26),(61,27),(61,28),(61,29),(61,30),(61,31),(61,32),(61,33),(61,34),(61,35),(61,36),(61,37),(61,38),(61,39),(61,40),(61,41),(61,42),(61,43),(61,44),(61,45),(61,46),(61,47),(61,48),(61,49),(61,50),(61,51),(61,52),(61,53),(61,54),(61,55),(61,56),(61,57),(61,58),(61,59),(61,60),(62,0),(62,1),(62,2),(62,3),(62,4),(62,5),(62,6),(62,7),(62,8),(62,9),(62,10),(62,11),(62,12),(62,13),(62,14),(62,15),(62,16),(62,17),(62,18),(62,19),(62,20),(62,21),(62,22),(62,23),(62,24),(62,25),(62,26),(62,27),(62,28),(62,29),(62,30),(62,31),(62,32),(62,33),(62,34),(62,35),(62,36),(62,37),(62,38),(62,39),(62,40),(62,41),(62,42),(62,43),(62,44),(62,45),(62,46),(62,47),(62,48),(62,49),(62,50),(62,51),(62,52),(62,53),(62,54),(62,55),(62,56),(62,57),(62,58),(62,59),(62,60),(62,61),(63,0),(63,1),(63,2),(63,3),(63,4),(63,5),(63,6),(63,7),(63,8),(63,9),(63,10),(63,11),(63,12),(63,13),(63,14),(63,15),(63,16),(63,17),(63,18),(63,19),(63,20),(63,21),(63,22),(63,23),(63,24),(63,25),(63,26),(63,27),(63,28),(63,29),(63,30),(63,31),(63,32),(63,33),(63,34),(63,35),(63,36),(63,37),(63,38),(63,39),(63,40),(63,41),(63,42),(63,43),(63,44),(63,45),(63,46),(63,47),(63,48),(63,49),(63,50),(63,51),(63,52),(63,53),(63,54),(63,55),(63,56),(63,57),(63,58),(63,59),(63,60),(63,61),(63,62),(64,0),(64,1),(64,2),(64,3),(64,4),(64,5),(64,6),(64,7),(64,8),(64,9),(64,10),(64,11),(64,12),(64,13),(64,14),(64,15),(64,16),(64,17),(64,18),(64,19),(64,20),(64,21),(64,22),(64,23),(64,24),(64,25),(64,26),(64,27),(64,28),(64,29),(64,30),(64,31),(64,32),(64,33),(64,34),(64,35),(64,36),(64,37),(64,38),(64,39),(64,40),(64,41),(64,42),(64,43),(64,44),(64,45),(64,46),(64,47),(64,48),(64,49),(64,50),(64,51),(64,52),(64,53),(64,54),(64,55),(64,56),(64,57),(64,58),(64,59),(64,60),(64,61),(64,62),(64,63),(65,0),(65,1),(65,2),(65,3),(65,4),(65,5),(65,6),(65,7),(65,8),(65,9),(65,10),(65,11),(65,12),(65,13),(65,14),(65,15),(65,16),(65,17),(65,18),(65,19),(65,20),(65,21),(65,22),(65,23),(65,24),(65,25),(65,26),(65,27),(65,28),(65,29),(65,30),(65,31),(65,32),(65,33),(65,34),(65,35),(65,36),(65,37),(65,38),(65,39),(65,40),(65,41),(65,42),(65,43),(65,44),(65,45),(65,46),(65,47),(65,48),(65,49),(65,50),(65,51),(65,52),(65,53),(65,54),(65,55),(65,56),(65,57),(65,58),(65,59),(65,60),(65,61),(65,62),(65,63),(65,64),(66,0),(66,1),(66,2),(66,3),(66,4),(66,5),(66,6),(66,7),(66,8),(66,9),(66,10),(66,11),(66,12),(66,13),(66,14),(66,15),(66,16),(66,17),(66,18),(66,19),(66,20),(66,21),(66,22),(66,23),(66,24),(66,25),(66,26),(66,27),(66,28),(66,29),(66,30),(66,31),(66,32),(66,33),(66,34),(66,35),(66,36),(66,37),(66,38),(66,39),(66,40),(66,41),(66,42),(66,43),(66,44),(66,45),(66,46),(66,47),(66,48),(66,49),(66,50),(66,51),(66,52),(66,53),(66,54),(66,55),(66,56),(66,57),(66,58),(66,59),(66,60),(66,61),(66,62),(66,63),(66,64),(66,65),(67,0),(67,1),(67,2),(67,3),(67,4),(67,5),(67,6),(67,7),(67,8),(67,9),(67,10),(67,11),(67,12),(67,13),(67,14),(67,15),(67,16),(67,17),(67,18),(67,19),(67,20),(67,21),(67,22),(67,23),(67,24),(67,25),(67,26),(67,27),(67,28),(67,29),(67,30),(67,31),(67,32),(67,33),(67,34),(67,35),(67,36),(67,37),(67,38),(67,39),(67,40),(67,41),(67,42),(67,43),(67,44),(67,45),(67,46),(67,47),(67,48),(67,49),(67,50),(67,51),(67,52),(67,53),(67,54),(67,55),(67,56),(67,57),(67,58),(67,59),(67,60),(67,61),(67,62),(67,63),(67,64),(67,65),(67,66),(68,0),(68,1),(68,2),(68,3),(68,4),(68,5),(68,6),(68,7),(68,8),(68,9),(68,10),(68,11),(68,12),(68,13),(68,14),(68,15),(68,16),(68,17),(68,18),(68,19),(68,20),(68,21),(68,22),(68,23),(68,24),(68,25),(68,26),(68,27),(68,28),(68,29),(68,30),(68,31),(68,32),(68,33),(68,34),(68,35),(68,36),(68,37),(68,38),(68,39),(68,40),(68,41),(68,42),(68,43),(68,44),(68,45),(68,46),(68,47),(68,48),(68,49),(68,50),(68,51),(68,52),(68,53),(68,54),(68,55),(68,56),(68,57),(68,58),(68,59),(68,60),(68,61),(68,62),(68,63),(68,64),(68,65),(68,66),(68,67),(69,0),(69,1),(69,2),(69,3),(69,4),(69,5),(69,6),(69,7),(69,8),(69,9),(69,10),(69,11),(69,12),(69,13),(69,14),(69,15),(69,16),(69,17),(69,18),(69,19),(69,20),(69,21),(69,22),(69,23),(69,24),(69,25),(69,26),(69,27),(69,28),(69,29),(69,30),(69,31),(69,32),(69,33),(69,34),(69,35),(69,36),(69,37),(69,38),(69,39),(69,40),(69,41),(69,42),(69,43),(69,44),(69,45),(69,46),(69,47),(69,48),(69,49),(69,50),(69,51),(69,52),(69,53),(69,54),(69,55),(69,56),(69,57),(69,58),(69,59),(69,60),(69,61),(69,62),(69,63),(69,64),(69,65),(69,66),(69,67),(69,68),(70,0),(70,1),(70,2),(70,3),(70,4),(70,5),(70,6),(70,7),(70,8),(70,9),(70,10),(70,11),(70,12),(70,13),(70,14),(70,15),(70,16),(70,17),(70,18),(70,19),(70,20),(70,21),(70,22),(70,23),(70,24),(70,25),(70,26),(70,27),(70,28),(70,29),(70,30),(70,31),(70,32),(70,33),(70,34),(70,35),(70,36),(70,37),(70,38),(70,39),(70,40),(70,41),(70,42),(70,43),(70,44),(70,45),(70,46),(70,47),(70,48),(70,49),(70,50),(70,51),(70,52),(70,53),(70,54),(70,55),(70,56),(70,57),(70,58),(70,59),(70,60),(70,61),(70,62),(70,63),(70,64),(70,65),(70,66),(70,67),(70,68),(70,69),(71,0),(71,1),(71,2),(71,3),(71,4),(71,5),(71,6),(71,7),(71,8),(71,9),(71,10),(71,11),(71,12),(71,13),(71,14),(71,15),(71,16),(71,17),(71,18),(71,19),(71,20),(71,21),(71,22),(71,23),(71,24),(71,25),(71,26),(71,27),(71,28),(71,29),(71,30),(71,31),(71,32),(71,33),(71,34),(71,35),(71,36),(71,37),(71,38),(71,39),(71,40),(71,41),(71,42),(71,43),(71,44),(71,45),(71,46),(71,47),(71,48),(71,49),(71,50),(71,51),(71,52),(71,53),(71,54),(71,55),(71,56),(71,57),(71,58),(71,59),(71,60),(71,61),(71,62),(71,63),(71,64),(71,65),(71,66),(71,67),(71,68),(71,69),(71,70),(72,0),(72,1),(72,2),(72,3),(72,4),(72,5),(72,6),(72,7),(72,8),(72,9),(72,10),(72,11),(72,12),(72,13),(72,14),(72,15),(72,16),(72,17),(72,18),(72,19),(72,20),(72,21),(72,22),(72,23),(72,24),(72,25),(72,26),(72,27),(72,28),(72,29),(72,30),(72,31),(72,32),(72,33),(72,34),(72,35),(72,36),(72,37),(72,38),(72,39),(72,40),(72,41),(72,42),(72,43),(72,44),(72,45),(72,46),(72,47),(72,48),(72,49),(72,50),(72,51),(72,52),(72,53),(72,54),(72,55),(72,56),(72,57),(72,58),(72,59),(72,60),(72,61),(72,62),(72,63),(72,64),(72,65),(72,66),(72,67),(72,68),(72,69),(72,70),(72,71),(73,0),(73,1),(73,2),(73,3),(73,4),(73,5),(73,6),(73,7),(73,8),(73,9),(73,10),(73,11),(73,12),(73,13),(73,14),(73,15),(73,16),(73,17),(73,18),(73,19),(73,20),(73,21),(73,22),(73,23),(73,24),(73,25),(73,26),(73,27),(73,28),(73,29),(73,30),(73,31),(73,32),(73,33),(73,34),(73,35),(73,36),(73,37),(73,38),(73,39),(73,40),(73,41),(73,42),(73,43),(73,44),(73,45),(73,46),(73,47),(73,48),(73,49),(73,50),(73,51),(73,52),(73,53),(73,54),(73,55),(73,56),(73,57),(73,58),(73,59),(73,60),(73,61),(73,62),(73,63),(73,64),(73,65),(73,66),(73,67),(73,68),(73,69),(73,70),(73,71),(73,72),(74,0),(74,1),(74,2),(74,3),(74,4),(74,5),(74,6),(74,7),(74,8),(74,9),(74,10),(74,11),(74,12),(74,13),(74,14),(74,15),(74,16),(74,17),(74,18),(74,19),(74,20),(74,21),(74,22),(74,23),(74,24),(74,25),(74,26),(74,27),(74,28),(74,29),(74,30),(74,31),(74,32),(74,33),(74,34),(74,35),(74,36),(74,37),(74,38),(74,39),(74,40),(74,41),(74,42),(74,43),(74,44),(74,45),(74,46),(74,47),(74,48),(74,49),(74,50),(74,51),(74,52),(74,53),(74,54),(74,55),(74,56),(74,57),(74,58),(74,59),(74,60),(74,61),(74,62),(74,63),(74,64),(74,65),(74,66),(74,67),(74,68),(74,69),(74,70),(74,71),(74,72),(74,73),(75,0),(75,1),(75,2),(75,3),(75,4),(75,5),(75,6),(75,7),(75,8),(75,9),(75,10),(75,11),(75,12),(75,13),(75,14),(75,15),(75,16),(75,17),(75,18),(75,19),(75,20),(75,21),(75,22),(75,23),(75,24),(75,25),(75,26),(75,27),(75,28),(75,29),(75,30),(75,31),(75,32),(75,33),(75,34),(75,35),(75,36),(75,37),(75,38),(75,39),(75,40),(75,41),(75,42),(75,43),(75,44),(75,45),(75,46),(75,47),(75,48),(75,49),(75,50),(75,51),(75,52),(75,53),(75,54),(75,55),(75,56),(75,57),(75,58),(75,59),(75,60),(75,61),(75,62),(75,63),(75,64),(75,65),(75,66),(75,67),(75,68),(75,69),(75,70),(75,71),(75,72),(75,73),(75,74),(76,0),(76,1),(76,2),(76,3),(76,4),(76,5),(76,6),(76,7),(76,8),(76,9),(76,10),(76,11),(76,12),(76,13),(76,14),(76,15),(76,16),(76,17),(76,18),(76,19),(76,20),(76,21),(76,22),(76,23),(76,24),(76,25),(76,26),(76,27),(76,28),(76,29),(76,30),(76,31),(76,32),(76,33),(76,34),(76,35),(76,36),(76,37),(76,38),(76,39),(76,40),(76,41),(76,42),(76,43),(76,44),(76,45),(76,46),(76,47),(76,48),(76,49),(76,50),(76,51),(76,52),(76,53),(76,54),(76,55),(76,56),(76,57),(76,58),(76,59),(76,60),(76,61),(76,62),(76,63),(76,64),(76,65),(76,66),(76,67),(76,68),(76,69),(76,70),(76,71),(76,72),(76,73),(76,74),(76,75),(77,0),(77,1),(77,2),(77,3),(77,4),(77,5),(77,6),(77,7),(77,8),(77,9),(77,10),(77,11),(77,12),(77,13),(77,14),(77,15),(77,16),(77,17),(77,18),(77,19),(77,20),(77,21),(77,22),(77,23),(77,24),(77,25),(77,26),(77,27),(77,28),(77,29),(77,30),(77,31),(77,32),(77,33),(77,34),(77,35),(77,36),(77,37),(77,38),(77,39),(77,40),(77,41),(77,42),(77,43),(77,44),(77,45),(77,46),(77,47),(77,48),(77,49),(77,50),(77,51),(77,52),(77,53),(77,54),(77,55),(77,56),(77,57),(77,58),(77,59),(77,60),(77,61),(77,62),(77,63),(77,64),(77,65),(77,66),(77,67),(77,68),(77,69),(77,70),(77,71),(77,72),(77,73),(77,74),(77,75),(77,76),(78,0),(78,1),(78,2),(78,3),(78,4),(78,5),(78,6),(78,7),(78,8),(78,9),(78,10),(78,11),(78,12),(78,13),(78,14),(78,15),(78,16),(78,17),(78,18),(78,19),(78,20),(78,21),(78,22),(78,23),(78,24),(78,25),(78,26),(78,27),(78,28),(78,29),(78,30),(78,31),(78,32),(78,33),(78,34),(78,35),(78,36),(78,37),(78,38),(78,39),(78,40),(78,41),(78,42),(78,43),(78,44),(78,45),(78,46),(78,47),(78,48),(78,49),(78,50),(78,51),(78,52),(78,53),(78,54),(78,55),(78,56),(78,57),(78,58),(78,59),(78,60),(78,61),(78,62),(78,63),(78,64),(78,65),(78,66),(78,67),(78,68),(78,69),(78,70),(78,71),(78,72),(78,73),(78,74),(78,75),(78,76),(78,77),(79,0),(79,1),(79,2),(79,3),(79,4),(79,5),(79,6),(79,7),(79,8),(79,9),(79,10),(79,11),(79,12),(79,13),(79,14),(79,15),(79,16),(79,17),(79,18),(79,19),(79,20),(79,21),(79,22),(79,23),(79,24),(79,25),(79,26),(79,27),(79,28),(79,29),(79,30),(79,31),(79,32),(79,33),(79,34),(79,35),(79,36),(79,37),(79,38),(79,39),(79,40),(79,41),(79,42),(79,43),(79,44),(79,45),(79,46),(79,47),(79,48),(79,49),(79,50),(79,51),(79,52),(79,53),(79,54),(79,55),(79,56),(79,57),(79,58),(79,59),(79,60),(79,61),(79,62),(79,63),(79,64),(79,65),(79,66),(79,67),(79,68),(79,69),(79,70),(79,71),(79,72),(79,73),(79,74),(79,75),(79,76),(79,77),(79,78),(80,0),(80,1),(80,2),(80,3),(80,4),(80,5),(80,6),(80,7),(80,8),(80,9),(80,10),(80,11),(80,12),(80,13),(80,14),(80,15),(80,16),(80,17),(80,18),(80,19),(80,20),(80,21),(80,22),(80,23),(80,24),(80,25),(80,26),(80,27),(80,28),(80,29),(80,30),(80,31),(80,32),(80,33),(80,34),(80,35),(80,36),(80,37),(80,38),(80,39),(80,40),(80,41),(80,42),(80,43),(80,44),(80,45),(80,46),(80,47),(80,48),(80,49),(80,50),(80,51),(80,52),(80,53),(80,54),(80,55),(80,56),(80,57),(80,58),(80,59),(80,60),(80,61),(80,62),(80,63),(80,64),(80,65),(80,66),(80,67),(80,68),(80,69),(80,70),(80,71),(80,72),(80,73),(80,74),(80,75),(80,76),(80,77),(80,78),(80,79),(81,0),(81,1),(81,2),(81,3),(81,4),(81,5),(81,6),(81,7),(81,8),(81,9),(81,10),(81,11),(81,12),(81,13),(81,14),(81,15),(81,16),(81,17),(81,18),(81,19),(81,20),(81,21),(81,22),(81,23),(81,24),(81,25),(81,26),(81,27),(81,28),(81,29),(81,30),(81,31),(81,32),(81,33),(81,34),(81,35),(81,36),(81,37),(81,38),(81,39),(81,40),(81,41),(81,42),(81,43),(81,44),(81,45),(81,46),(81,47),(81,48),(81,49),(81,50),(81,51),(81,52),(81,53),(81,54),(81,55),(81,56),(81,57),(81,58),(81,59),(81,60),(81,61),(81,62),(81,63),(81,64),(81,65),(81,66),(81,67),(81,68),(81,69),(81,70),(81,71),(81,72),(81,73),(81,74),(81,75),(81,76),(81,77),(81,78),(81,79),(81,80),(82,0),(82,1),(82,2),(82,3),(82,4),(82,5),(82,6),(82,7),(82,8),(82,9),(82,10),(82,11),(82,12),(82,13),(82,14),(82,15),(82,16),(82,17),(82,18),(82,19),(82,20),(82,21),(82,22),(82,23),(82,24),(82,25),(82,26),(82,27),(82,28),(82,29),(82,30),(82,31),(82,32),(82,33),(82,34),(82,35),(82,36),(82,37),(82,38),(82,39),(82,40),(82,41),(82,42),(82,43),(82,44),(82,45),(82,46),(82,47),(82,48),(82,49),(82,50),(82,51),(82,52),(82,53),(82,54),(82,55),(82,56),(82,57),(82,58),(82,59),(82,60),(82,61),(82,62),(82,63),(82,64),(82,65),(82,66),(82,67),(82,68),(82,69),(82,70),(82,71),(82,72),(82,73),(82,74),(82,75),(82,76),(82,77),(82,78),(82,79),(82,80),(82,81),(83,0),(83,1),(83,2),(83,3),(83,4),(83,5),(83,6),(83,7),(83,8),(83,9),(83,10),(83,11),(83,12),(83,13),(83,14),(83,15),(83,16),(83,17),(83,18),(83,19),(83,20),(83,21),(83,22),(83,23),(83,24),(83,25),(83,26),(83,27),(83,28),(83,29),(83,30),(83,31),(83,32),(83,33),(83,34),(83,35),(83,36),(83,37),(83,38),(83,39),(83,40),(83,41),(83,42),(83,43),(83,44),(83,45),(83,46),(83,47),(83,48),(83,49),(83,50),(83,51),(83,52),(83,53),(83,54),(83,55),(83,56),(83,57),(83,58),(83,59),(83,60),(83,61),(83,62),(83,63),(83,64),(83,65),(83,66),(83,67),(83,68),(83,69),(83,70),(83,71),(83,72),(83,73),(83,74),(83,75),(83,76),(83,77),(83,78),(83,79),(83,80),(83,81),(83,82),(84,0),(84,1),(84,2),(84,3),(84,4),(84,5),(84,6),(84,7),(84,8),(84,9),(84,10),(84,11),(84,12),(84,13),(84,14),(84,15),(84,16),(84,17),(84,18),(84,19),(84,20),(84,21),(84,22),(84,23),(84,24),(84,25),(84,26),(84,27),(84,28),(84,29),(84,30),(84,31),(84,32),(84,33),(84,34),(84,35),(84,36),(84,37),(84,38),(84,39),(84,40),(84,41),(84,42),(84,43),(84,44),(84,45),(84,46),(84,47),(84,48),(84,49),(84,50),(84,51),(84,52),(84,53),(84,54),(84,55),(84,56),(84,57),(84,58),(84,59),(84,60),(84,61),(84,62),(84,63),(84,64),(84,65),(84,66),(84,67),(84,68),(84,69),(84,70),(84,71),(84,72),(84,73),(84,74),(84,75),(84,76),(84,77),(84,78),(84,79),(84,80),(84,81),(84,82),(84,83),(85,0),(85,1),(85,2),(85,3),(85,4),(85,5),(85,6),(85,7),(85,8),(85,9),(85,10),(85,11),(85,12),(85,13),(85,14),(85,15),(85,16),(85,17),(85,18),(85,19),(85,20),(85,21),(85,22),(85,23),(85,24),(85,25),(85,26),(85,27),(85,28),(85,29),(85,30),(85,31),(85,32),(85,33),(85,34),(85,35),(85,36),(85,37),(85,38),(85,39),(85,40),(85,41),(85,42),(85,43),(85,44),(85,45),(85,46),(85,47),(85,48),(85,49),(85,50),(85,51),(85,52),(85,53),(85,54),(85,55),(85,56),(85,57),(85,58),(85,59),(85,60),(85,61),(85,62),(85,63),(85,64),(85,65),(85,66),(85,67),(85,68),(85,69),(85,70),(85,71),(85,72),(85,73),(85,74),(85,75),(85,76),(85,77),(85,78),(85,79),(85,80),(85,81),(85,82),(85,83),(85,84),(86,0),(86,1),(86,2),(86,3),(86,4),(86,5),(86,6),(86,7),(86,8),(86,9),(86,10),(86,11),(86,12),(86,13),(86,14),(86,15),(86,16),(86,17),(86,18),(86,19),(86,20),(86,21),(86,22),(86,23),(86,24),(86,25),(86,26),(86,27),(86,28),(86,29),(86,30),(86,31),(86,32),(86,33),(86,34),(86,35),(86,36),(86,37),(86,38),(86,39),(86,40),(86,41),(86,42),(86,43),(86,44),(86,45),(86,46),(86,47),(86,48),(86,49),(86,50),(86,51),(86,52),(86,53),(86,54),(86,55),(86,56),(86,57),(86,58),(86,59),(86,60),(86,61),(86,62),(86,63),(86,64),(86,65),(86,66),(86,67),(86,68),(86,69),(86,70),(86,71),(86,72),(86,73),(86,74),(86,75),(86,76),(86,77),(86,78),(86,79),(86,80),(86,81),(86,82),(86,83),(86,84),(86,85),(87,0),(87,1),(87,2),(87,3),(87,4),(87,5),(87,6),(87,7),(87,8),(87,9),(87,10),(87,11),(87,12),(87,13),(87,14),(87,15),(87,16),(87,17),(87,18),(87,19),(87,20),(87,21),(87,22),(87,23),(87,24),(87,25),(87,26),(87,27),(87,28),(87,29),(87,30),(87,31),(87,32),(87,33),(87,34),(87,35),(87,36),(87,37),(87,38),(87,39),(87,40),(87,41),(87,42),(87,43),(87,44),(87,45),(87,46),(87,47),(87,48),(87,49),(87,50),(87,51),(87,52),(87,53),(87,54),(87,55),(87,56),(87,57),(87,58),(87,59),(87,60),(87,61),(87,62),(87,63),(87,64),(87,65),(87,66),(87,67),(87,68),(87,69),(87,70),(87,71),(87,72),(87,73),(87,74),(87,75),(87,76),(87,77),(87,78),(87,79),(87,80),(87,81),(87,82),(87,83),(87,84),(87,85),(87,86),(88,0),(88,1),(88,2),(88,3),(88,4),(88,5),(88,6),(88,7),(88,8),(88,9),(88,10),(88,11),(88,12),(88,13),(88,14),(88,15),(88,16),(88,17),(88,18),(88,19),(88,20),(88,21),(88,22),(88,23),(88,24),(88,25),(88,26),(88,27),(88,28),(88,29),(88,30),(88,31),(88,32),(88,33),(88,34),(88,35),(88,36),(88,37),(88,38),(88,39),(88,40),(88,41),(88,42),(88,43),(88,44),(88,45),(88,46),(88,47),(88,48),(88,49),(88,50),(88,51),(88,52),(88,53),(88,54),(88,55),(88,56),(88,57),(88,58),(88,59),(88,60),(88,61),(88,62),(88,63),(88,64),(88,65),(88,66),(88,67),(88,68),(88,69),(88,70),(88,71),(88,72),(88,73),(88,74),(88,75),(88,76),(88,77),(88,78),(88,79),(88,80),(88,81),(88,82),(88,83),(88,84),(88,85),(88,86),(88,87),(89,0),(89,1),(89,2),(89,3),(89,4),(89,5),(89,6),(89,7),(89,8),(89,9),(89,10),(89,11),(89,12),(89,13),(89,14),(89,15),(89,16),(89,17),(89,18),(89,19),(89,20),(89,21),(89,22),(89,23),(89,24),(89,25),(89,26),(89,27),(89,28),(89,29),(89,30),(89,31),(89,32),(89,33),(89,34),(89,35),(89,36),(89,37),(89,38),(89,39),(89,40),(89,41),(89,42),(89,43),(89,44),(89,45),(89,46),(89,47),(89,48),(89,49),(89,50),(89,51),(89,52),(89,53),(89,54),(89,55),(89,56),(89,57),(89,58),(89,59),(89,60),(89,61),(89,62),(89,63),(89,64),(89,65),(89,66),(89,67),(89,68),(89,69),(89,70),(89,71),(89,72),(89,73),(89,74),(89,75),(89,76),(89,77),(89,78),(89,79),(89,80),(89,81),(89,82),(89,83),(89,84),(89,85),(89,86),(89,87),(89,88),(90,0),(90,1),(90,2),(90,3),(90,4),(90,5),(90,6),(90,7),(90,8),(90,9),(90,10),(90,11),(90,12),(90,13),(90,14),(90,15),(90,16),(90,17),(90,18),(90,19),(90,20),(90,21),(90,22),(90,23),(90,24),(90,25),(90,26),(90,27),(90,28),(90,29),(90,30),(90,31),(90,32),(90,33),(90,34),(90,35),(90,36),(90,37),(90,38),(90,39),(90,40),(90,41),(90,42),(90,43),(90,44),(90,45),(90,46),(90,47),(90,48),(90,49),(90,50),(90,51),(90,52),(90,53),(90,54),(90,55),(90,56),(90,57),(90,58),(90,59),(90,60),(90,61),(90,62),(90,63),(90,64),(90,65),(90,66),(90,67),(90,68),(90,69),(90,70),(90,71),(90,72),(90,73),(90,74),(90,75),(90,76),(90,77),(90,78),(90,79),(90,80),(90,81),(90,82),(90,83),(90,84),(90,85),(90,86),(90,87),(90,88),(90,89),(91,0),(91,1),(91,2),(91,3),(91,4),(91,5),(91,6),(91,7),(91,8),(91,9),(91,10),(91,11),(91,12),(91,13),(91,14),(91,15),(91,16),(91,17),(91,18),(91,19),(91,20),(91,21),(91,22),(91,23),(91,24),(91,25),(91,26),(91,27),(91,28),(91,29),(91,30),(91,31),(91,32),(91,33),(91,34),(91,35),(91,36),(91,37),(91,38),(91,39),(91,40),(91,41),(91,42),(91,43),(91,44),(91,45),(91,46),(91,47),(91,48),(91,49),(91,50),(91,51),(91,52),(91,53),(91,54),(91,55),(91,56),(91,57),(91,58),(91,59),(91,60),(91,61),(91,62),(91,63),(91,64),(91,65),(91,66),(91,67),(91,68),(91,69),(91,70),(91,71),(91,72),(91,73),(91,74),(91,75),(91,76),(91,77),(91,78),(91,79),(91,80),(91,81),(91,82),(91,83),(91,84),(91,85),(91,86),(91,87),(91,88),(91,89),(91,90),(92,0),(92,1),(92,2),(92,3),(92,4),(92,5),(92,6),(92,7),(92,8),(92,9),(92,10),(92,11),(92,12),(92,13),(92,14),(92,15),(92,16),(92,17),(92,18),(92,19),(92,20),(92,21),(92,22),(92,23),(92,24),(92,25),(92,26),(92,27),(92,28),(92,29),(92,30),(92,31),(92,32),(92,33),(92,34),(92,35),(92,36),(92,37),(92,38),(92,39),(92,40),(92,41),(92,42),(92,43),(92,44),(92,45),(92,46),(92,47),(92,48),(92,49),(92,50),(92,51),(92,52),(92,53),(92,54),(92,55),(92,56),(92,57),(92,58),(92,59),(92,60),(92,61),(92,62),(92,63),(92,64),(92,65),(92,66),(92,67),(92,68),(92,69),(92,70),(92,71),(92,72),(92,73),(92,74),(92,75),(92,76),(92,77),(92,78),(92,79),(92,80),(92,81),(92,82),(92,83),(92,84),(92,85),(92,86),(92,87),(92,88),(92,89),(92,90),(92,91),(93,0),(93,1),(93,2),(93,3),(93,4),(93,5),(93,6),(93,7),(93,8),(93,9),(93,10),(93,11),(93,12),(93,13),(93,14),(93,15),(93,16),(93,17),(93,18),(93,19),(93,20),(93,21),(93,22),(93,23),(93,24),(93,25),(93,26),(93,27),(93,28),(93,29),(93,30),(93,31),(93,32),(93,33),(93,34),(93,35),(93,36),(93,37),(93,38),(93,39),(93,40),(93,41),(93,42),(93,43),(93,44),(93,45),(93,46),(93,47),(93,48),(93,49),(93,50),(93,51),(93,52),(93,53),(93,54),(93,55),(93,56),(93,57),(93,58),(93,59),(93,60),(93,61),(93,62),(93,63),(93,64),(93,65),(93,66),(93,67),(93,68),(93,69),(93,70),(93,71),(93,72),(93,73),(93,74),(93,75),(93,76),(93,77),(93,78),(93,79),(93,80),(93,81),(93,82),(93,83),(93,84),(93,85),(93,86),(93,87),(93,88),(93,89),(93,90),(93,91),(93,92),(94,0),(94,1),(94,2),(94,3),(94,4),(94,5),(94,6),(94,7),(94,8),(94,9),(94,10),(94,11),(94,12),(94,13),(94,14),(94,15),(94,16),(94,17),(94,18),(94,19),(94,20),(94,21),(94,22),(94,23),(94,24),(94,25),(94,26),(94,27),(94,28),(94,29),(94,30),(94,31),(94,32),(94,33),(94,34),(94,35),(94,36),(94,37),(94,38),(94,39),(94,40),(94,41),(94,42),(94,43),(94,44),(94,45),(94,46),(94,47),(94,48),(94,49),(94,50),(94,51),(94,52),(94,53),(94,54),(94,55),(94,56),(94,57),(94,58),(94,59),(94,60),(94,61),(94,62),(94,63),(94,64),(94,65),(94,66),(94,67),(94,68),(94,69),(94,70),(94,71),(94,72),(94,73),(94,74),(94,75),(94,76),(94,77),(94,78),(94,79),(94,80),(94,81),(94,82),(94,83),(94,84),(94,85),(94,86),(94,87),(94,88),(94,89),(94,90),(94,91),(94,92),(94,93),(95,0),(95,1),(95,2),(95,3),(95,4),(95,5),(95,6),(95,7),(95,8),(95,9),(95,10),(95,11),(95,12),(95,13),(95,14),(95,15),(95,16),(95,17),(95,18),(95,19),(95,20),(95,21),(95,22),(95,23),(95,24),(95,25),(95,26),(95,27),(95,28),(95,29),(95,30),(95,31),(95,32),(95,33),(95,34),(95,35),(95,36),(95,37),(95,38),(95,39),(95,40),(95,41),(95,42),(95,43),(95,44),(95,45),(95,46),(95,47),(95,48),(95,49),(95,50),(95,51),(95,52),(95,53),(95,54),(95,55),(95,56),(95,57),(95,58),(95,59),(95,60),(95,61),(95,62),(95,63),(95,64),(95,65),(95,66),(95,67),(95,68),(95,69),(95,70),(95,71),(95,72),(95,73),(95,74),(95,75),(95,76),(95,77),(95,78),(95,79),(95,80),(95,81),(95,82),(95,83),(95,84),(95,85),(95,86),(95,87),(95,88),(95,89),(95,90),(95,91),(95,92),(95,93),(95,94),(96,0),(96,1),(96,2),(96,3),(96,4),(96,5),(96,6),(96,7),(96,8),(96,9),(96,10),(96,11),(96,12),(96,13),(96,14),(96,15),(96,16),(96,17),(96,18),(96,19),(96,20),(96,21),(96,22),(96,23),(96,24),(96,25),(96,26),(96,27),(96,28),(96,29),(96,30),(96,31),(96,32),(96,33),(96,34),(96,35),(96,36),(96,37),(96,38),(96,39),(96,40),(96,41),(96,42),(96,43),(96,44),(96,45),(96,46),(96,47),(96,48),(96,49),(96,50),(96,51),(96,52),(96,53),(96,54),(96,55),(96,56),(96,57),(96,58),(96,59),(96,60),(96,61),(96,62),(96,63),(96,64),(96,65),(96,66),(96,67),(96,68),(96,69),(96,70),(96,71),(96,72),(96,73),(96,74),(96,75),(96,76),(96,77),(96,78),(96,79),(96,80),(96,81),(96,82),(96,83),(96,84),(96,85),(96,86),(96,87),(96,88),(96,89),(96,90),(96,91),(96,92),(96,93),(96,94),(96,95),(97,0),(97,1),(97,2),(97,3),(97,4),(97,5),(97,6),(97,7),(97,8),(97,9),(97,10),(97,11),(97,12),(97,13),(97,14),(97,15),(97,16),(97,17),(97,18),(97,19),(97,20),(97,21),(97,22),(97,23),(97,24),(97,25),(97,26),(97,27),(97,28),(97,29),(97,30),(97,31),(97,32),(97,33),(97,34),(97,35),(97,36),(97,37),(97,38),(97,39),(97,40),(97,41),(97,42),(97,43),(97,44),(97,45),(97,46),(97,47),(97,48),(97,49),(97,50),(97,51),(97,52),(97,53),(97,54),(97,55),(97,56),(97,57),(97,58),(97,59),(97,60),(97,61),(97,62),(97,63),(97,64),(97,65),(97,66),(97,67),(97,68),(97,69),(97,70),(97,71),(97,72),(97,73),(97,74),(97,75),(97,76),(97,77),(97,78),(97,79),(97,80),(97,81),(97,82),(97,83),(97,84),(97,85),(97,86),(97,87),(97,88),(97,89),(97,90),(97,91),(97,92),(97,93),(97,94),(97,95),(97,96),(98,0),(98,1),(98,2),(98,3),(98,4),(98,5),(98,6),(98,7),(98,8),(98,9),(98,10),(98,11),(98,12),(98,13),(98,14),(98,15),(98,16),(98,17),(98,18),(98,19),(98,20),(98,21),(98,22),(98,23),(98,24),(98,25),(98,26),(98,27),(98,28),(98,29),(98,30),(98,31),(98,32),(98,33),(98,34),(98,35),(98,36),(98,37),(98,38),(98,39),(98,40),(98,41),(98,42),(98,43),(98,44),(98,45),(98,46),(98,47),(98,48),(98,49),(98,50),(98,51),(98,52),(98,53),(98,54),(98,55),(98,56),(98,57),(98,58),(98,59),(98,60),(98,61),(98,62),(98,63),(98,64),(98,65),(98,66),(98,67),(98,68),(98,69),(98,70),(98,71),(98,72),(98,73),(98,74),(98,75),(98,76),(98,77),(98,78),(98,79),(98,80),(98,81),(98,82),(98,83),(98,84),(98,85),(98,86),(98,87),(98,88),(98,89),(98,90),(98,91),(98,92),(98,93),(98,94),(98,95),(98,96),(98,97),(99,0),(99,1),(99,2),(99,3),(99,4),(99,5),(99,6),(99,7),(99,8),(99,9),(99,10),(99,11),(99,12),(99,13),(99,14),(99,15),(99,16),(99,17),(99,18),(99,19),(99,20),(99,21),(99,22),(99,23),(99,24),(99,25),(99,26),(99,27),(99,28),(99,29),(99,30),(99,31),(99,32),(99,33),(99,34),(99,35),(99,36),(99,37),(99,38),(99,39),(99,40),(99,41),(99,42),(99,43),(99,44),(99,45),(99,46),(99,47),(99,48),(99,49),(99,50),(99,51),(99,52),(99,53),(99,54),(99,55),(99,56),(99,57),(99,58),(99,59),(99,60),(99,61),(99,62),(99,63),(99,64),(99,65),(99,66),(99,67),(99,68),(99,69),(99,70),(99,71),(99,72),(99,73),(99,74),(99,75),(99,76),(99,77),(99,78),(99,79),(99,80),(99,81),(99,82),(99,83),(99,84),(99,85),(99,86),(99,87),(99,88),(99,89),(99,90),(99,91),(99,92),(99,93),(99,94),(99,95),(99,96),(99,97),(99,98),(100,0),(100,1),(100,2),(100,3),(100,4),(100,5),(100,6),(100,7),(100,8),(100,9),(100,10),(100,11),(100,12),(100,13),(100,14),(100,15),(100,16),(100,17),(100,18),(100,19),(100,20),(100,21),(100,22),(100,23),(100,24),(100,25),(100,26),(100,27),(100,28),(100,29),(100,30),(100,31),(100,32),(100,33),(100,34),(100,35),(100,36),(100,37),(100,38),(100,39),(100,40),(100,41),(100,42),(100,43),(100,44),(100,45),(100,46),(100,47),(100,48),(100,49),(100,50),(100,51),(100,52),(100,53),(100,54),(100,55),(100,56),(100,57),(100,58),(100,59),(100,60),(100,61),(100,62),(100,63),(100,64),(100,65),(100,66),(100,67),(100,68),(100,69),(100,70),(100,71),(100,72),(100,73),(100,74),(100,75),(100,76),(100,77),(100,78),(100,79),(100,80),(100,81),(100,82),(100,83),(100,84),(100,85),(100,86),(100,87),(100,88),(100,89),(100,90),(100,91),(100,92),(100,93),(100,94),(100,95),(100,96),(100,97),(100,98),(100,99),(101,0),(101,1),(101,2),(101,3),(101,4),(101,5),(101,6),(101,7),(101,8),(101,9),(101,10),(101,11),(101,12),(101,13),(101,14),(101,15),(101,16),(101,17),(101,18),(101,19),(101,20),(101,21),(101,22),(101,23),(101,24),(101,25),(101,26),(101,27),(101,28),(101,29),(101,30),(101,31),(101,32),(101,33),(101,34),(101,35),(101,36),(101,37),(101,38),(101,39),(101,40),(101,41),(101,42),(101,43),(101,44),(101,45),(101,46),(101,47),(101,48),(101,49),(101,50),(101,51),(101,52),(101,53),(101,54),(101,55),(101,56),(101,57),(101,58),(101,59),(101,60),(101,61),(101,62),(101,63),(101,64),(101,65),(101,66),(101,67),(101,68),(101,69),(101,70),(101,71),(101,72),(101,73),(101,74),(101,75),(101,76),(101,77),(101,78),(101,79),(101,80),(101,81),(101,82),(101,83),(101,84),(101,85),(101,86),(101,87),(101,88),(101,89),(101,90),(101,91),(101,92),(101,93),(101,94),(101,95),(101,96),(101,97),(101,98),(101,99),(101,100),(102,0),(102,1),(102,2),(102,3),(102,4),(102,5),(102,6),(102,7),(102,8),(102,9),(102,10),(102,11),(102,12),(102,13),(102,14),(102,15),(102,16),(102,17),(102,18),(102,19),(102,20),(102,21),(102,22),(102,23),(102,24),(102,25),(102,26),(102,27),(102,28),(102,29),(102,30),(102,31),(102,32),(102,33),(102,34),(102,35),(102,36),(102,37),(102,38),(102,39),(102,40),(102,41),(102,42),(102,43),(102,44),(102,45),(102,46),(102,47),(102,48),(102,49),(102,50),(102,51),(102,52),(102,53),(102,54),(102,55),(102,56),(102,57),(102,58),(102,59),(102,60),(102,61),(102,62),(102,63),(102,64),(102,65),(102,66),(102,67),(102,68),(102,69),(102,70),(102,71),(102,72),(102,73),(102,74),(102,75),(102,76),(102,77),(102,78),(102,79),(102,80),(102,81),(102,82),(102,83),(102,84),(102,85),(102,86),(102,87),(102,88),(102,89),(102,90),(102,91),(102,92),(102,93),(102,94),(102,95),(102,96),(102,97),(102,98),(102,99),(102,100),(102,101),(103,0),(103,1),(103,2),(103,3),(103,4),(103,5),(103,6),(103,7),(103,8),(103,9),(103,10),(103,11),(103,12),(103,13),(103,14),(103,15),(103,16),(103,17),(103,18),(103,19),(103,20),(103,21),(103,22),(103,23),(103,24),(103,25),(103,26),(103,27),(103,28),(103,29),(103,30),(103,31),(103,32),(103,33),(103,34),(103,35),(103,36),(103,37),(103,38),(103,39),(103,40),(103,41),(103,42),(103,43),(103,44),(103,45),(103,46),(103,47),(103,48),(103,49),(103,50),(103,51),(103,52),(103,53),(103,54),(103,55),(103,56),(103,57),(103,58),(103,59),(103,60),(103,61),(103,62),(103,63),(103,64),(103,65),(103,66),(103,67),(103,68),(103,69),(103,70),(103,71),(103,72),(103,73),(103,74),(103,75),(103,76),(103,77),(103,78),(103,79),(103,80),(103,81),(103,82),(103,83),(103,84),(103,85),(103,86),(103,87),(103,88),(103,89),(103,90),(103,91),(103,92),(103,93),(103,94),(103,95),(103,96),(103,97),(103,98),(103,99),(103,100),(103,101),(103,102),(104,0),(104,1),(104,2),(104,3),(104,4),(104,5),(104,6),(104,7),(104,8),(104,9),(104,10),(104,11),(104,12),(104,13),(104,14),(104,15),(104,16),(104,17),(104,18),(104,19),(104,20),(104,21),(104,22),(104,23),(104,24),(104,25),(104,26),(104,27),(104,28),(104,29),(104,30),(104,31),(104,32),(104,33),(104,34),(104,35),(104,36),(104,37),(104,38),(104,39),(104,40),(104,41),(104,42),(104,43),(104,44),(104,45),(104,46),(104,47),(104,48),(104,49),(104,50),(104,51),(104,52),(104,53),(104,54),(104,55),(104,56),(104,57),(104,58),(104,59),(104,60),(104,61),(104,62),(104,63),(104,64),(104,65),(104,66),(104,67),(104,68),(104,69),(104,70),(104,71),(104,72),(104,73),(104,74),(104,75),(104,76),(104,77),(104,78),(104,79),(104,80),(104,81),(104,82),(104,83),(104,84),(104,85),(104,86),(104,87),(104,88),(104,89),(104,90),(104,91),(104,92),(104,93),(104,94),(104,95),(104,96),(104,97),(104,98),(104,99),(104,100),(104,101),(104,102),(104,103),(105,0),(105,1),(105,2),(105,3),(105,4),(105,5),(105,6),(105,7),(105,8),(105,9),(105,10),(105,11),(105,12),(105,13),(105,14),(105,15),(105,16),(105,17),(105,18),(105,19),(105,20),(105,21),(105,22),(105,23),(105,24),(105,25),(105,26),(105,27),(105,28),(105,29),(105,30),(105,31),(105,32),(105,33),(105,34),(105,35),(105,36),(105,37),(105,38),(105,39),(105,40),(105,41),(105,42),(105,43),(105,44),(105,45),(105,46),(105,47),(105,48),(105,49),(105,50),(105,51),(105,52),(105,53),(105,54),(105,55),(105,56),(105,57),(105,58),(105,59),(105,60),(105,61),(105,62),(105,63),(105,64),(105,65),(105,66),(105,67),(105,68),(105,69),(105,70),(105,71),(105,72),(105,73),(105,74),(105,75),(105,76),(105,77),(105,78),(105,79),(105,80),(105,81),(105,82),(105,83),(105,84),(105,85),(105,86),(105,87),(105,88),(105,89),(105,90),(105,91),(105,92),(105,93),(105,94),(105,95),(105,96),(105,97),(105,98),(105,99),(105,100),(105,101),(105,102),(105,103),(105,104),(106,0),(106,1),(106,2),(106,3),(106,4),(106,5),(106,6),(106,7),(106,8),(106,9),(106,10),(106,11),(106,12),(106,13),(106,14),(106,15),(106,16),(106,17),(106,18),(106,19),(106,20),(106,21),(106,22),(106,23),(106,24),(106,25),(106,26),(106,27),(106,28),(106,29),(106,30),(106,31),(106,32),(106,33),(106,34),(106,35),(106,36),(106,37),(106,38),(106,39),(106,40),(106,41),(106,42),(106,43),(106,44),(106,45),(106,46),(106,47),(106,48),(106,49),(106,50),(106,51),(106,52),(106,53),(106,54),(106,55),(106,56),(106,57),(106,58),(106,59),(106,60),(106,61),(106,62),(106,63),(106,64),(106,65),(106,66),(106,67),(106,68),(106,69),(106,70),(106,71),(106,72),(106,73),(106,74),(106,75),(106,76),(106,77),(106,78),(106,79),(106,80),(106,81),(106,82),(106,83),(106,84),(106,85),(106,86),(106,87),(106,88),(106,89),(106,90),(106,91),(106,92),(106,93),(106,94),(106,95),(106,96),(106,97),(106,98),(106,99),(106,100),(106,101),(106,102),(106,103),(106,104),(106,105),(107,0),(107,1),(107,2),(107,3),(107,4),(107,5),(107,6),(107,7),(107,8),(107,9),(107,10),(107,11),(107,12),(107,13),(107,14),(107,15),(107,16),(107,17),(107,18),(107,19),(107,20),(107,21),(107,22),(107,23),(107,24),(107,25),(107,26),(107,27),(107,28),(107,29),(107,30),(107,31),(107,32),(107,33),(107,34),(107,35),(107,36),(107,37),(107,38),(107,39),(107,40),(107,41),(107,42),(107,43),(107,44),(107,45),(107,46),(107,47),(107,48),(107,49),(107,50),(107,51),(107,52),(107,53),(107,54),(107,55),(107,56),(107,57),(107,58),(107,59),(107,60),(107,61),(107,62),(107,63),(107,64),(107,65),(107,66),(107,67),(107,68),(107,69),(107,70),(107,71),(107,72),(107,73),(107,74),(107,75),(107,76),(107,77),(107,78),(107,79),(107,80),(107,81),(107,82),(107,83),(107,84),(107,85),(107,86),(107,87),(107,88),(107,89),(107,90),(107,91),(107,92),(107,93),(107,94),(107,95),(107,96),(107,97),(107,98),(107,99),(107,100),(107,101),(107,102),(107,103),(107,104),(107,105),(107,106),(108,0),(108,1),(108,2),(108,3),(108,4),(108,5),(108,6),(108,7),(108,8),(108,9),(108,10),(108,11),(108,12),(108,13),(108,14),(108,15),(108,16),(108,17),(108,18),(108,19),(108,20),(108,21),(108,22),(108,23),(108,24),(108,25),(108,26),(108,27),(108,28),(108,29),(108,30),(108,31),(108,32),(108,33),(108,34),(108,35),(108,36),(108,37),(108,38),(108,39),(108,40),(108,41),(108,42),(108,43),(108,44),(108,45),(108,46),(108,47),(108,48),(108,49),(108,50),(108,51),(108,52),(108,53),(108,54),(108,55),(108,56),(108,57),(108,58),(108,59),(108,60),(108,61),(108,62),(108,63),(108,64),(108,65),(108,66),(108,67),(108,68),(108,69),(108,70),(108,71),(108,72),(108,73),(108,74),(108,75),(108,76),(108,77),(108,78),(108,79),(108,80),(108,81),(108,82),(108,83),(108,84),(108,85),(108,86),(108,87),(108,88),(108,89),(108,90),(108,91),(108,92),(108,93),(108,94),(108,95),(108,96),(108,97),(108,98),(108,99),(108,100),(108,101),(108,102),(108,103),(108,104),(108,105),(108,106),(108,107),(109,0),(109,1),(109,2),(109,3),(109,4),(109,5),(109,6),(109,7),(109,8),(109,9),(109,10),(109,11),(109,12),(109,13),(109,14),(109,15),(109,16),(109,17),(109,18),(109,19),(109,20),(109,21),(109,22),(109,23),(109,24),(109,25),(109,26),(109,27),(109,28),(109,29),(109,30),(109,31),(109,32),(109,33),(109,34),(109,35),(109,36),(109,37),(109,38),(109,39),(109,40),(109,41),(109,42),(109,43),(109,44),(109,45),(109,46),(109,47),(109,48),(109,49),(109,50),(109,51),(109,52),(109,53),(109,54),(109,55),(109,56),(109,57),(109,58),(109,59),(109,60),(109,61),(109,62),(109,63),(109,64),(109,65),(109,66),(109,67),(109,68),(109,69),(109,70),(109,71),(109,72),(109,73),(109,74),(109,75),(109,76),(109,77),(109,78),(109,79),(109,80),(109,81),(109,82),(109,83),(109,84),(109,85),(109,86),(109,87),(109,88),(109,89),(109,90),(109,91),(109,92),(109,93),(109,94),(109,95),(109,96),(109,97),(109,98),(109,99),(109,100),(109,101),(109,102),(109,103),(109,104),(109,105),(109,106),(109,107),(109,108),(110,0),(110,1),(110,2),(110,3),(110,4),(110,5),(110,6),(110,7),(110,8),(110,9),(110,10),(110,11),(110,12),(110,13),(110,14),(110,15),(110,16),(110,17),(110,18),(110,19),(110,20),(110,21),(110,22),(110,23),(110,24),(110,25),(110,26),(110,27),(110,28),(110,29),(110,30),(110,31),(110,32),(110,33),(110,34),(110,35),(110,36),(110,37),(110,38),(110,39),(110,40),(110,41),(110,42),(110,43),(110,44),(110,45),(110,46),(110,47),(110,48),(110,49),(110,50),(110,51),(110,52),(110,53),(110,54),(110,55),(110,56),(110,57),(110,58),(110,59),(110,60),(110,61),(110,62),(110,63),(110,64),(110,65),(110,66),(110,67),(110,68),(110,69),(110,70),(110,71),(110,72),(110,73),(110,74),(110,75),(110,76),(110,77),(110,78),(110,79),(110,80),(110,81),(110,82),(110,83),(110,84),(110,85),(110,86),(110,87),(110,88),(110,89),(110,90),(110,91),(110,92),(110,93),(110,94),(110,95),(110,96),(110,97),(110,98),(110,99),(110,100),(110,101),(110,102),(110,103),(110,104),(110,105),(110,106),(110,107),(110,108),(110,109),(111,0),(111,1),(111,2),(111,3),(111,4),(111,5),(111,6),(111,7),(111,8),(111,9),(111,10),(111,11),(111,12),(111,13),(111,14),(111,15),(111,16),(111,17),(111,18),(111,19),(111,20),(111,21),(111,22),(111,23),(111,24),(111,25),(111,26),(111,27),(111,28),(111,29),(111,30),(111,31),(111,32),(111,33),(111,34),(111,35),(111,36),(111,37),(111,38),(111,39),(111,40),(111,41),(111,42),(111,43),(111,44),(111,45),(111,46),(111,47),(111,48),(111,49),(111,50),(111,51),(111,52),(111,53),(111,54),(111,55),(111,56),(111,57),(111,58),(111,59),(111,60),(111,61),(111,62),(111,63),(111,64),(111,65),(111,66),(111,67),(111,68),(111,69),(111,70),(111,71),(111,72),(111,73),(111,74),(111,75),(111,76),(111,77),(111,78),(111,79),(111,80),(111,81),(111,82),(111,83),(111,84),(111,85),(111,86),(111,87),(111,88),(111,89),(111,90),(111,91),(111,92),(111,93),(111,94),(111,95),(111,96),(111,97),(111,98),(111,99),(111,100),(111,101),(111,102),(111,103),(111,104),(111,105),(111,106),(111,107),(111,108),(111,109),(111,110),(112,0),(112,1),(112,2),(112,3),(112,4),(112,5),(112,6),(112,7),(112,8),(112,9),(112,10),(112,11),(112,12),(112,13),(112,14),(112,15),(112,16),(112,17),(112,18),(112,19),(112,20),(112,21),(112,22),(112,23),(112,24),(112,25),(112,26),(112,27),(112,28),(112,29),(112,30),(112,31),(112,32),(112,33),(112,34),(112,35),(112,36),(112,37),(112,38),(112,39),(112,40),(112,41),(112,42),(112,43),(112,44),(112,45),(112,46),(112,47),(112,48),(112,49),(112,50),(112,51),(112,52),(112,53),(112,54),(112,55),(112,56),(112,57),(112,58),(112,59),(112,60),(112,61),(112,62),(112,63),(112,64),(112,65),(112,66),(112,67),(112,68),(112,69),(112,70),(112,71),(112,72),(112,73),(112,74),(112,75),(112,76),(112,77),(112,78),(112,79),(112,80),(112,81),(112,82),(112,83),(112,84),(112,85),(112,86),(112,87),(112,88),(112,89),(112,90),(112,91),(112,92),(112,93),(112,94),(112,95),(112,96),(112,97),(112,98),(112,99),(112,100),(112,101),(112,102),(112,103),(112,104),(112,105),(112,106),(112,107),(112,108),(112,109),(112,110),(112,111),(113,0),(113,1),(113,2),(113,3),(113,4),(113,5),(113,6),(113,7),(113,8),(113,9),(113,10),(113,11),(113,12),(113,13),(113,14),(113,15),(113,16),(113,17),(113,18),(113,19),(113,20),(113,21),(113,22),(113,23),(113,24),(113,25),(113,26),(113,27),(113,28),(113,29),(113,30),(113,31),(113,32),(113,33),(113,34),(113,35),(113,36),(113,37),(113,38),(113,39),(113,40),(113,41),(113,42),(113,43),(113,44),(113,45),(113,46),(113,47),(113,48),(113,49),(113,50),(113,51),(113,52),(113,53),(113,54),(113,55),(113,56),(113,57),(113,58),(113,59),(113,60),(113,61),(113,62),(113,63),(113,64),(113,65),(113,66),(113,67),(113,68),(113,69),(113,70),(113,71),(113,72),(113,73),(113,74),(113,75),(113,76),(113,77),(113,78),(113,79),(113,80),(113,81),(113,82),(113,83),(113,84),(113,85),(113,86),(113,87),(113,88),(113,89),(113,90),(113,91),(113,92),(113,93),(113,94),(113,95),(113,96),(113,97),(113,98),(113,99),(113,100),(113,101),(113,102),(113,103),(113,104),(113,105),(113,106),(113,107),(113,108),(113,109),(113,110),(113,111),(113,112),(114,0),(114,1),(114,2),(114,3),(114,4),(114,5),(114,6),(114,7),(114,8),(114,9),(114,10),(114,11),(114,12),(114,13),(114,14),(114,15),(114,16),(114,17),(114,18),(114,19),(114,20),(114,21),(114,22),(114,23),(114,24),(114,25),(114,26),(114,27),(114,28),(114,29),(114,30),(114,31),(114,32),(114,33),(114,34),(114,35),(114,36),(114,37),(114,38),(114,39),(114,40),(114,41),(114,42),(114,43),(114,44),(114,45),(114,46),(114,47),(114,48),(114,49),(114,50),(114,51),(114,52),(114,53),(114,54),(114,55),(114,56),(114,57),(114,58),(114,59),(114,60),(114,61),(114,62),(114,63),(114,64),(114,65),(114,66),(114,67),(114,68),(114,69),(114,70),(114,71),(114,72),(114,73),(114,74),(114,75),(114,76),(114,77),(114,78),(114,79),(114,80),(114,81),(114,82),(114,83),(114,84),(114,85),(114,86),(114,87),(114,88),(114,89),(114,90),(114,91),(114,92),(114,93),(114,94),(114,95),(114,96),(114,97),(114,98),(114,99),(114,100),(114,101),(114,102),(114,103),(114,104),(114,105),(114,106),(114,107),(114,108),(114,109),(114,110),(114,111),(114,112),(114,113),(115,0),(115,1),(115,2),(115,3),(115,4),(115,5),(115,6),(115,7),(115,8),(115,9),(115,10),(115,11),(115,12),(115,13),(115,14),(115,15),(115,16),(115,17),(115,18),(115,19),(115,20),(115,21),(115,22),(115,23),(115,24),(115,25),(115,26),(115,27),(115,28),(115,29),(115,30),(115,31),(115,32),(115,33),(115,34),(115,35),(115,36),(115,37),(115,38),(115,39),(115,40),(115,41),(115,42),(115,43),(115,44),(115,45),(115,46),(115,47),(115,48),(115,49),(115,50),(115,51),(115,52),(115,53),(115,54),(115,55),(115,56),(115,57),(115,58),(115,59),(115,60),(115,61),(115,62),(115,63),(115,64),(115,65),(115,66),(115,67),(115,68),(115,69),(115,70),(115,71),(115,72),(115,73),(115,74),(115,75),(115,76),(115,77),(115,78),(115,79),(115,80),(115,81),(115,82),(115,83),(115,84),(115,85),(115,86),(115,87),(115,88),(115,89),(115,90),(115,91),(115,92),(115,93),(115,94),(115,95),(115,96),(115,97),(115,98),(115,99),(115,100),(115,101),(115,102),(115,103),(115,104),(115,105),(115,106),(115,107),(115,108),(115,109),(115,110),(115,111),(115,112),(115,113),(115,114),(116,0),(116,1),(116,2),(116,3),(116,4),(116,5),(116,6),(116,7),(116,8),(116,9),(116,10),(116,11),(116,12),(116,13),(116,14),(116,15),(116,16),(116,17),(116,18),(116,19),(116,20),(116,21),(116,22),(116,23),(116,24),(116,25),(116,26),(116,27),(116,28),(116,29),(116,30),(116,31),(116,32),(116,33),(116,34),(116,35),(116,36),(116,37),(116,38),(116,39),(116,40),(116,41),(116,42),(116,43),(116,44),(116,45),(116,46),(116,47),(116,48),(116,49),(116,50),(116,51),(116,52),(116,53),(116,54),(116,55),(116,56),(116,57),(116,58),(116,59),(116,60),(116,61),(116,62),(116,63),(116,64),(116,65),(116,66),(116,67),(116,68),(116,69),(116,70),(116,71),(116,72),(116,73),(116,74),(116,75),(116,76),(116,77),(116,78),(116,79),(116,80),(116,81),(116,82),(116,83),(116,84),(116,85),(116,86),(116,87),(116,88),(116,89),(116,90),(116,91),(116,92),(116,93),(116,94),(116,95),(116,96),(116,97),(116,98),(116,99),(116,100),(116,101),(116,102),(116,103),(116,104),(116,105),(116,106),(116,107),(116,108),(116,109),(116,110),(116,111),(116,112),(116,113),(116,114),(116,115),(117,0),(117,1),(117,2),(117,3),(117,4),(117,5),(117,6),(117,7),(117,8),(117,9),(117,10),(117,11),(117,12),(117,13),(117,14),(117,15),(117,16),(117,17),(117,18),(117,19),(117,20),(117,21),(117,22),(117,23),(117,24),(117,25),(117,26),(117,27),(117,28),(117,29),(117,30),(117,31),(117,32),(117,33),(117,34),(117,35),(117,36),(117,37),(117,38),(117,39),(117,40),(117,41),(117,42),(117,43),(117,44),(117,45),(117,46),(117,47),(117,48),(117,49),(117,50),(117,51),(117,52),(117,53),(117,54),(117,55),(117,56),(117,57),(117,58),(117,59),(117,60),(117,61),(117,62),(117,63),(117,64),(117,65),(117,66),(117,67),(117,68),(117,69),(117,70),(117,71),(117,72),(117,73),(117,74),(117,75),(117,76),(117,77),(117,78),(117,79),(117,80),(117,81),(117,82),(117,83),(117,84),(117,85),(117,86),(117,87),(117,88),(117,89),(117,90),(117,91),(117,92),(117,93),(117,94),(117,95),(117,96),(117,97),(117,98),(117,99),(117,100),(117,101),(117,102),(117,103),(117,104),(117,105),(117,106),(117,107),(117,108),(117,109),(117,110),(117,111),(117,112),(117,113),(117,114),(117,115),(117,116),(118,0),(118,1),(118,2),(118,3),(118,4),(118,5),(118,6),(118,7),(118,8),(118,9),(118,10),(118,11),(118,12),(118,13),(118,14),(118,15),(118,16),(118,17),(118,18),(118,19),(118,20),(118,21),(118,22),(118,23),(118,24),(118,25),(118,26),(118,27),(118,28),(118,29),(118,30),(118,31),(118,32),(118,33),(118,34),(118,35),(118,36),(118,37),(118,38),(118,39),(118,40),(118,41),(118,42),(118,43),(118,44),(118,45),(118,46),(118,47),(118,48),(118,49),(118,50),(118,51),(118,52),(118,53),(118,54),(118,55),(118,56),(118,57),(118,58),(118,59),(118,60),(118,61),(118,62),(118,63),(118,64),(118,65),(118,66),(118,67),(118,68),(118,69),(118,70),(118,71),(118,72),(118,73),(118,74),(118,75),(118,76),(118,77),(118,78),(118,79),(118,80),(118,81),(118,82),(118,83),(118,84),(118,85),(118,86),(118,87),(118,88),(118,89),(118,90),(118,91),(118,92),(118,93),(118,94),(118,95),(118,96),(118,97),(118,98),(118,99),(118,100),(118,101),(118,102),(118,103),(118,104),(118,105),(118,106),(118,107),(118,108),(118,109),(118,110),(118,111),(118,112),(118,113),(118,114),(118,115),(118,116),(118,117),(119,0),(119,1),(119,2),(119,3),(119,4),(119,5),(119,6),(119,7),(119,8),(119,9),(119,10),(119,11),(119,12),(119,13),(119,14),(119,15),(119,16),(119,17),(119,18),(119,19),(119,20),(119,21),(119,22),(119,23),(119,24),(119,25),(119,26),(119,27),(119,28),(119,29),(119,30),(119,31),(119,32),(119,33),(119,34),(119,35),(119,36),(119,37),(119,38),(119,39),(119,40),(119,41),(119,42),(119,43),(119,44),(119,45),(119,46),(119,47),(119,48),(119,49),(119,50),(119,51),(119,52),(119,53),(119,54),(119,55),(119,56),(119,57),(119,58),(119,59),(119,60),(119,61),(119,62),(119,63),(119,64),(119,65),(119,66),(119,67),(119,68),(119,69),(119,70),(119,71),(119,72),(119,73),(119,74),(119,75),(119,76),(119,77),(119,78),(119,79),(119,80),(119,81),(119,82),(119,83),(119,84),(119,85),(119,86),(119,87),(119,88),(119,89),(119,90),(119,91),(119,92),(119,93),(119,94),(119,95),(119,96),(119,97),(119,98),(119,99),(119,100),(119,101),(119,102),(119,103),(119,104),(119,105),(119,106),(119,107),(119,108),(119,109),(119,110),(119,111),(119,112),(119,113),(119,114),(119,115),(119,116),(119,117),(119,118),(120,0),(120,1),(120,2),(120,3),(120,4),(120,5),(120,6),(120,7),(120,8),(120,9),(120,10),(120,11),(120,12),(120,13),(120,14),(120,15),(120,16),(120,17),(120,18),(120,19),(120,20),(120,21),(120,22),(120,23),(120,24),(120,25),(120,26),(120,27),(120,28),(120,29),(120,30),(120,31),(120,32),(120,33),(120,34),(120,35),(120,36),(120,37),(120,38),(120,39),(120,40),(120,41),(120,42),(120,43),(120,44),(120,45),(120,46),(120,47),(120,48),(120,49),(120,50),(120,51),(120,52),(120,53),(120,54),(120,55),(120,56),(120,57),(120,58),(120,59),(120,60),(120,61),(120,62),(120,63),(120,64),(120,65),(120,66),(120,67),(120,68),(120,69),(120,70),(120,71),(120,72),(120,73),(120,74),(120,75),(120,76),(120,77),(120,78),(120,79),(120,80),(120,81),(120,82),(120,83),(120,84),(120,85),(120,86),(120,87),(120,88),(120,89),(120,90),(120,91),(120,92),(120,93),(120,94),(120,95),(120,96),(120,97),(120,98),(120,99),(120,100),(120,101),(120,102),(120,103),(120,104),(120,105),(120,106),(120,107),(120,108),(120,109),(120,110),(120,111),(120,112),(120,113),(120,114),(120,115),(120,116),(120,117),(120,118),(120,119),(121,0),(121,1),(121,2),(121,3),(121,4),(121,5),(121,6),(121,7),(121,8),(121,9),(121,10),(121,11),(121,12),(121,13),(121,14),(121,15),(121,16),(121,17),(121,18),(121,19),(121,20),(121,21),(121,22),(121,23),(121,24),(121,25),(121,26),(121,27),(121,28),(121,29),(121,30),(121,31),(121,32),(121,33),(121,34),(121,35),(121,36),(121,37),(121,38),(121,39),(121,40),(121,41),(121,42),(121,43),(121,44),(121,45),(121,46),(121,47),(121,48),(121,49),(121,50),(121,51),(121,52),(121,53),(121,54),(121,55),(121,56),(121,57),(121,58),(121,59),(121,60),(121,61),(121,62),(121,63),(121,64),(121,65),(121,66),(121,67),(121,68),(121,69),(121,70),(121,71),(121,72),(121,73),(121,74),(121,75),(121,76),(121,77),(121,78),(121,79),(121,80),(121,81),(121,82),(121,83),(121,84),(121,85),(121,86),(121,87),(121,88),(121,89),(121,90),(121,91),(121,92),(121,93),(121,94),(121,95),(121,96),(121,97),(121,98),(121,99),(121,100),(121,101),(121,102),(121,103),(121,104),(121,105),(121,106),(121,107),(121,108),(121,109),(121,110),(121,111),(121,112),(121,113),(121,114),(121,115),(121,116),(121,117),(121,118),(121,119),(121,120),(122,0),(122,1),(122,2),(122,3),(122,4),(122,5),(122,6),(122,7),(122,8),(122,9),(122,10),(122,11),(122,12),(122,13),(122,14),(122,15),(122,16),(122,17),(122,18),(122,19),(122,20),(122,21),(122,22),(122,23),(122,24),(122,25),(122,26),(122,27),(122,28),(122,29),(122,30),(122,31),(122,32),(122,33),(122,34),(122,35),(122,36),(122,37),(122,38),(122,39),(122,40),(122,41),(122,42),(122,43),(122,44),(122,45),(122,46),(122,47),(122,48),(122,49),(122,50),(122,51),(122,52),(122,53),(122,54),(122,55),(122,56),(122,57),(122,58),(122,59),(122,60),(122,61),(122,62),(122,63),(122,64),(122,65),(122,66),(122,67),(122,68),(122,69),(122,70),(122,71),(122,72),(122,73),(122,74),(122,75),(122,76),(122,77),(122,78),(122,79),(122,80),(122,81),(122,82),(122,83),(122,84),(122,85),(122,86),(122,87),(122,88),(122,89),(122,90),(122,91),(122,92),(122,93),(122,94),(122,95),(122,96),(122,97),(122,98),(122,99),(122,100),(122,101),(122,102),(122,103),(122,104),(122,105),(122,106),(122,107),(122,108),(122,109),(122,110),(122,111),(122,112),(122,113),(122,114),(122,115),(122,116),(122,117),(122,118),(122,119),(122,120),(122,121),(123,0),(123,1),(123,2),(123,3),(123,4),(123,5),(123,6),(123,7),(123,8),(123,9),(123,10),(123,11),(123,12),(123,13),(123,14),(123,15),(123,16),(123,17),(123,18),(123,19),(123,20),(123,21),(123,22),(123,23),(123,24),(123,25),(123,26),(123,27),(123,28),(123,29),(123,30),(123,31),(123,32),(123,33),(123,34),(123,35),(123,36),(123,37),(123,38),(123,39),(123,40),(123,41),(123,42),(123,43),(123,44),(123,45),(123,46),(123,47),(123,48),(123,49),(123,50),(123,51),(123,52),(123,53),(123,54),(123,55),(123,56),(123,57),(123,58),(123,59),(123,60),(123,61),(123,62),(123,63),(123,64),(123,65),(123,66),(123,67),(123,68),(123,69),(123,70),(123,71),(123,72),(123,73),(123,74),(123,75),(123,76),(123,77),(123,78),(123,79),(123,80),(123,81),(123,82),(123,83),(123,84),(123,85),(123,86),(123,87),(123,88),(123,89),(123,90),(123,91),(123,92),(123,93),(123,94),(123,95),(123,96),(123,97),(123,98),(123,99),(123,100),(123,101),(123,102),(123,103),(123,104),(123,105),(123,106),(123,107),(123,108),(123,109),(123,110),(123,111),(123,112),(123,113),(123,114),(123,115),(123,116),(123,117),(123,118),(123,119),(123,120),(123,121),(123,122),(124,0),(124,1),(124,2),(124,3),(124,4),(124,5),(124,6),(124,7),(124,8),(124,9),(124,10),(124,11),(124,12),(124,13),(124,14),(124,15),(124,16),(124,17),(124,18),(124,19),(124,20),(124,21),(124,22),(124,23),(124,24),(124,25),(124,26),(124,27),(124,28),(124,29),(124,30),(124,31),(124,32),(124,33),(124,34),(124,35),(124,36),(124,37),(124,38),(124,39),(124,40),(124,41),(124,42),(124,43),(124,44),(124,45),(124,46),(124,47),(124,48),(124,49),(124,50),(124,51),(124,52),(124,53),(124,54),(124,55),(124,56),(124,57),(124,58),(124,59),(124,60),(124,61),(124,62),(124,63),(124,64),(124,65),(124,66),(124,67),(124,68),(124,69),(124,70),(124,71),(124,72),(124,73),(124,74),(124,75),(124,76),(124,77),(124,78),(124,79),(124,80),(124,81),(124,82),(124,83),(124,84),(124,85),(124,86),(124,87),(124,88),(124,89),(124,90),(124,91),(124,92),(124,93),(124,94),(124,95),(124,96),(124,97),(124,98),(124,99),(124,100),(124,101),(124,102),(124,103),(124,104),(124,105),(124,106),(124,107),(124,108),(124,109),(124,110),(124,111),(124,112),(124,113),(124,114),(124,115),(124,116),(124,117),(124,118),(124,119),(124,120),(124,121),(124,122),(124,123),(125,0),(125,1),(125,2),(125,3),(125,4),(125,5),(125,6),(125,7),(125,8),(125,9),(125,10),(125,11),(125,12),(125,13),(125,14),(125,15),(125,16),(125,17),(125,18),(125,19),(125,20),(125,21),(125,22),(125,23),(125,24),(125,25),(125,26),(125,27),(125,28),(125,29),(125,30),(125,31),(125,32),(125,33),(125,34),(125,35),(125,36),(125,37),(125,38),(125,39),(125,40),(125,41),(125,42),(125,43),(125,44),(125,45),(125,46),(125,47),(125,48),(125,49),(125,50),(125,51),(125,52),(125,53),(125,54),(125,55),(125,56),(125,57),(125,58),(125,59),(125,60),(125,61),(125,62),(125,63),(125,64),(125,65),(125,66),(125,67),(125,68),(125,69),(125,70),(125,71),(125,72),(125,73),(125,74),(125,75),(125,76),(125,77),(125,78),(125,79),(125,80),(125,81),(125,82),(125,83),(125,84),(125,85),(125,86),(125,87),(125,88),(125,89),(125,90),(125,91),(125,92),(125,93),(125,94),(125,95),(125,96),(125,97),(125,98),(125,99),(125,100),(125,101),(125,102),(125,103),(125,104),(125,105),(125,106),(125,107),(125,108),(125,109),(125,110),(125,111),(125,112),(125,113),(125,114),(125,115),(125,116),(125,117),(125,118),(125,119),(125,120),(125,121),(125,122),(125,123),(125,124),(126,0),(126,1),(126,2),(126,3),(126,4),(126,5),(126,6),(126,7),(126,8),(126,9),(126,10),(126,11),(126,12),(126,13),(126,14),(126,15),(126,16),(126,17),(126,18),(126,19),(126,20),(126,21),(126,22),(126,23),(126,24),(126,25),(126,26),(126,27),(126,28),(126,29),(126,30),(126,31),(126,32),(126,33),(126,34),(126,35),(126,36),(126,37),(126,38),(126,39),(126,40),(126,41),(126,42),(126,43),(126,44),(126,45),(126,46),(126,47),(126,48),(126,49),(126,50),(126,51),(126,52),(126,53),(126,54),(126,55),(126,56),(126,57),(126,58),(126,59),(126,60),(126,61),(126,62),(126,63),(126,64),(126,65),(126,66),(126,67),(126,68),(126,69),(126,70),(126,71),(126,72),(126,73),(126,74),(126,75),(126,76),(126,77),(126,78),(126,79),(126,80),(126,81),(126,82),(126,83),(126,84),(126,85),(126,86),(126,87),(126,88),(126,89),(126,90),(126,91),(126,92),(126,93),(126,94),(126,95),(126,96),(126,97),(126,98),(126,99),(126,100),(126,101),(126,102),(126,103),(126,104),(126,105),(126,106),(126,107),(126,108),(126,109),(126,110),(126,111),(126,112),(126,113),(126,114),(126,115),(126,116),(126,117),(126,118),(126,119),(126,120),(126,121),(126,122),(126,123),(126,124),(126,125),(127,0),(127,1),(127,2),(127,3),(127,4),(127,5),(127,6),(127,7),(127,8),(127,9),(127,10),(127,11),(127,12),(127,13),(127,14),(127,15),(127,16),(127,17),(127,18),(127,19),(127,20),(127,21),(127,22),(127,23),(127,24),(127,25),(127,26),(127,27),(127,28),(127,29),(127,30),(127,31),(127,32),(127,33),(127,34),(127,35),(127,36),(127,37),(127,38),(127,39),(127,40),(127,41),(127,42),(127,43),(127,44),(127,45),(127,46),(127,47),(127,48),(127,49),(127,50),(127,51),(127,52),(127,53),(127,54),(127,55),(127,56),(127,57),(127,58),(127,59),(127,60),(127,61),(127,62),(127,63),(127,64),(127,65),(127,66),(127,67),(127,68),(127,69),(127,70),(127,71),(127,72),(127,73),(127,74),(127,75),(127,76),(127,77),(127,78),(127,79),(127,80),(127,81),(127,82),(127,83),(127,84),(127,85),(127,86),(127,87),(127,88),(127,89),(127,90),(127,91),(127,92),(127,93),(127,94),(127,95),(127,96),(127,97),(127,98),(127,99),(127,100),(127,101),(127,102),(127,103),(127,104),(127,105),(127,106),(127,107),(127,108),(127,109),(127,110),(127,111),(127,112),(127,113),(127,114),(127,115),(127,116),(127,117),(127,118),(127,119),(127,120),(127,121),(127,122),(127,123),(127,124),(127,125),(127,126),(128,0),(128,1),(128,2),(128,3),(128,4),(128,5),(128,6),(128,7),(128,8),(128,9),(128,10),(128,11),(128,12),(128,13),(128,14),(128,15),(128,16),(128,17),(128,18),(128,19),(128,20),(128,21),(128,22),(128,23),(128,24),(128,25),(128,26),(128,27),(128,28),(128,29),(128,30),(128,31),(128,32),(128,33),(128,34),(128,35),(128,36),(128,37),(128,38),(128,39),(128,40),(128,41),(128,42),(128,43),(128,44),(128,45),(128,46),(128,47),(128,48),(128,49),(128,50),(128,51),(128,52),(128,53),(128,54),(128,55),(128,56),(128,57),(128,58),(128,59),(128,60),(128,61),(128,62),(128,63),(128,64),(128,65),(128,66),(128,67),(128,68),(128,69),(128,70),(128,71),(128,72),(128,73),(128,74),(128,75),(128,76),(128,77),(128,78),(128,79),(128,80),(128,81),(128,82),(128,83),(128,84),(128,85),(128,86),(128,87),(128,88),(128,89),(128,90),(128,91),(128,92),(128,93),(128,94),(128,95),(128,96),(128,97),(128,98),(128,99),(128,100),(128,101),(128,102),(128,103),(128,104),(128,105),(128,106),(128,107),(128,108),(128,109),(128,110),(128,111),(128,112),(128,113),(128,114),(128,115),(128,116),(128,117),(128,118),(128,119),(128,120),(128,121),(128,122),(128,123),(128,124),(128,125),(128,126),(128,127),(129,0),(129,1),(129,2),(129,3),(129,4),(129,5),(129,6),(129,7),(129,8),(129,9),(129,10),(129,11),(129,12),(129,13),(129,14),(129,15),(129,16),(129,17),(129,18),(129,19),(129,20),(129,21),(129,22),(129,23),(129,24),(129,25),(129,26),(129,27),(129,28),(129,29),(129,30),(129,31),(129,32),(129,33),(129,34),(129,35),(129,36),(129,37),(129,38),(129,39),(129,40),(129,41),(129,42),(129,43),(129,44),(129,45),(129,46),(129,47),(129,48),(129,49),(129,50),(129,51),(129,52),(129,53),(129,54),(129,55),(129,56),(129,57),(129,58),(129,59),(129,60),(129,61),(129,62),(129,63),(129,64),(129,65),(129,66),(129,67),(129,68),(129,69),(129,70),(129,71),(129,72),(129,73),(129,74),(129,75),(129,76),(129,77),(129,78),(129,79),(129,80),(129,81),(129,82),(129,83),(129,84),(129,85),(129,86),(129,87),(129,88),(129,89),(129,90),(129,91),(129,92),(129,93),(129,94),(129,95),(129,96),(129,97),(129,98),(129,99),(129,100),(129,101),(129,102),(129,103),(129,104),(129,105),(129,106),(129,107),(129,108),(129,109),(129,110),(129,111),(129,112),(129,113),(129,114),(129,115),(129,116),(129,117),(129,118),(129,119),(129,120),(129,121),(129,122),(129,123),(129,124),(129,125),(129,126),(129,127),(129,128),(130,0),(130,1),(130,2),(130,3),(130,4),(130,5),(130,6),(130,7),(130,8),(130,9),(130,10),(130,11),(130,12),(130,13),(130,14),(130,15),(130,16),(130,17),(130,18),(130,19),(130,20),(130,21),(130,22),(130,23),(130,24),(130,25),(130,26),(130,27),(130,28),(130,29),(130,30),(130,31),(130,32),(130,33),(130,34),(130,35),(130,36),(130,37),(130,38),(130,39),(130,40),(130,41),(130,42),(130,43),(130,44),(130,45),(130,46),(130,47),(130,48),(130,49),(130,50),(130,51),(130,52),(130,53),(130,54),(130,55),(130,56),(130,57),(130,58),(130,59),(130,60),(130,61),(130,62),(130,63),(130,64),(130,65),(130,66),(130,67),(130,68),(130,69),(130,70),(130,71),(130,72),(130,73),(130,74),(130,75),(130,76),(130,77),(130,78),(130,79),(130,80),(130,81),(130,82),(130,83),(130,84),(130,85),(130,86),(130,87),(130,88),(130,89),(130,90),(130,91),(130,92),(130,93),(130,94),(130,95),(130,96),(130,97),(130,98),(130,99),(130,100),(130,101),(130,102),(130,103),(130,104),(130,105),(130,106),(130,107),(130,108),(130,109),(130,110),(130,111),(130,112),(130,113),(130,114),(130,115),(130,116),(130,117),(130,118),(130,119),(130,120),(130,121),(130,122),(130,123),(130,124),(130,125),(130,126),(130,127),(130,128),(130,129),(131,0),(131,1),(131,2),(131,3),(131,4),(131,5),(131,6),(131,7),(131,8),(131,9),(131,10),(131,11),(131,12),(131,13),(131,14),(131,15),(131,16),(131,17),(131,18),(131,19),(131,20),(131,21),(131,22),(131,23),(131,24),(131,25),(131,26),(131,27),(131,28),(131,29),(131,30),(131,31),(131,32),(131,33),(131,34),(131,35),(131,36),(131,37),(131,38),(131,39),(131,40),(131,41),(131,42),(131,43),(131,44),(131,45),(131,46),(131,47),(131,48),(131,49),(131,50),(131,51),(131,52),(131,53),(131,54),(131,55),(131,56),(131,57),(131,58),(131,59),(131,60),(131,61),(131,62),(131,63),(131,64),(131,65),(131,66),(131,67),(131,68),(131,69),(131,70),(131,71),(131,72),(131,73),(131,74),(131,75),(131,76),(131,77),(131,78),(131,79),(131,80),(131,81),(131,82),(131,83),(131,84),(131,85),(131,86),(131,87),(131,88),(131,89),(131,90),(131,91),(131,92),(131,93),(131,94),(131,95),(131,96),(131,97),(131,98),(131,99),(131,100),(131,101),(131,102),(131,103),(131,104),(131,105),(131,106),(131,107),(131,108),(131,109),(131,110),(131,111),(131,112),(131,113),(131,114),(131,115),(131,116),(131,117),(131,118),(131,119),(131,120),(131,121),(131,122),(131,123),(131,124),(131,125),(131,126),(131,127),(131,128),(131,129),(131,130),(132,0),(132,1),(132,2),(132,3),(132,4),(132,5),(132,6),(132,7),(132,8),(132,9),(132,10),(132,11),(132,12),(132,13),(132,14),(132,15),(132,16),(132,17),(132,18),(132,19),(132,20),(132,21),(132,22),(132,23),(132,24),(132,25),(132,26),(132,27),(132,28),(132,29),(132,30),(132,31),(132,32),(132,33),(132,34),(132,35),(132,36),(132,37),(132,38),(132,39),(132,40),(132,41),(132,42),(132,43),(132,44),(132,45),(132,46),(132,47),(132,48),(132,49),(132,50),(132,51),(132,52),(132,53),(132,54),(132,55),(132,56),(132,57),(132,58),(132,59),(132,60),(132,61),(132,62),(132,63),(132,64),(132,65),(132,66),(132,67),(132,68),(132,69),(132,70),(132,71),(132,72),(132,73),(132,74),(132,75),(132,76),(132,77),(132,78),(132,79),(132,80),(132,81),(132,82),(132,83),(132,84),(132,85),(132,86),(132,87),(132,88),(132,89),(132,90),(132,91),(132,92),(132,93),(132,94),(132,95),(132,96),(132,97),(132,98),(132,99),(132,100),(132,101),(132,102),(132,103),(132,104),(132,105),(132,106),(132,107),(132,108),(132,109),(132,110),(132,111),(132,112),(132,113),(132,114),(132,115),(132,116),(132,117),(132,118),(132,119),(132,120),(132,121),(132,122),(132,123),(132,124),(132,125),(132,126),(132,127),(132,128),(132,129),(132,130),(132,131),(133,0),(133,1),(133,2),(133,3),(133,4),(133,5),(133,6),(133,7),(133,8),(133,9),(133,10),(133,11),(133,12),(133,13),(133,14),(133,15),(133,16),(133,17),(133,18),(133,19),(133,20),(133,21),(133,22),(133,23),(133,24),(133,25),(133,26),(133,27),(133,28),(133,29),(133,30),(133,31),(133,32),(133,33),(133,34),(133,35),(133,36),(133,37),(133,38),(133,39),(133,40),(133,41),(133,42),(133,43),(133,44),(133,45),(133,46),(133,47),(133,48),(133,49),(133,50),(133,51),(133,52),(133,53),(133,54),(133,55),(133,56),(133,57),(133,58),(133,59),(133,60),(133,61),(133,62),(133,63),(133,64),(133,65),(133,66),(133,67),(133,68),(133,69),(133,70),(133,71),(133,72),(133,73),(133,74),(133,75),(133,76),(133,77),(133,78),(133,79),(133,80),(133,81),(133,82),(133,83),(133,84),(133,85),(133,86),(133,87),(133,88),(133,89),(133,90),(133,91),(133,92),(133,93),(133,94),(133,95),(133,96),(133,97),(133,98),(133,99),(133,100),(133,101),(133,102),(133,103),(133,104),(133,105),(133,106),(133,107),(133,108),(133,109),(133,110),(133,111),(133,112),(133,113),(133,114),(133,115),(133,116),(133,117),(133,118),(133,119),(133,120),(133,121),(133,122),(133,123),(133,124),(133,125),(133,126),(133,127),(133,128),(133,129),(133,130),(133,131),(133,132),(134,0),(134,1),(134,2),(134,3),(134,4),(134,5),(134,6),(134,7),(134,8),(134,9),(134,10),(134,11),(134,12),(134,13),(134,14),(134,15),(134,16),(134,17),(134,18),(134,19),(134,20),(134,21),(134,22),(134,23),(134,24),(134,25),(134,26),(134,27),(134,28),(134,29),(134,30),(134,31),(134,32),(134,33),(134,34),(134,35),(134,36),(134,37),(134,38),(134,39),(134,40),(134,41),(134,42),(134,43),(134,44),(134,45),(134,46),(134,47),(134,48),(134,49),(134,50),(134,51),(134,52),(134,53),(134,54),(134,55),(134,56),(134,57),(134,58),(134,59),(134,60),(134,61),(134,62),(134,63),(134,64),(134,65),(134,66),(134,67),(134,68),(134,69),(134,70),(134,71),(134,72),(134,73),(134,74),(134,75),(134,76),(134,77),(134,78),(134,79),(134,80),(134,81),(134,82),(134,83),(134,84),(134,85),(134,86),(134,87),(134,88),(134,89),(134,90),(134,91),(134,92),(134,93),(134,94),(134,95),(134,96),(134,97),(134,98),(134,99),(134,100),(134,101),(134,102),(134,103),(134,104),(134,105),(134,106),(134,107),(134,108),(134,109),(134,110),(134,111),(134,112),(134,113),(134,114),(134,115),(134,116),(134,117),(134,118),(134,119),(134,120),(134,121),(134,122),(134,123),(134,124),(134,125),(134,126),(134,127),(134,128),(134,129),(134,130),(134,131),(134,132),(134,133),(135,0),(135,1),(135,2),(135,3),(135,4),(135,5),(135,6),(135,7),(135,8),(135,9),(135,10),(135,11),(135,12),(135,13),(135,14),(135,15),(135,16),(135,17),(135,18),(135,19),(135,20),(135,21),(135,22),(135,23),(135,24),(135,25),(135,26),(135,27),(135,28),(135,29),(135,30),(135,31),(135,32),(135,33),(135,34),(135,35),(135,36),(135,37),(135,38),(135,39),(135,40),(135,41),(135,42),(135,43),(135,44),(135,45),(135,46),(135,47),(135,48),(135,49),(135,50),(135,51),(135,52),(135,53),(135,54),(135,55),(135,56),(135,57),(135,58),(135,59),(135,60),(135,61),(135,62),(135,63),(135,64),(135,65),(135,66),(135,67),(135,68),(135,69),(135,70),(135,71),(135,72),(135,73),(135,74),(135,75),(135,76),(135,77),(135,78),(135,79),(135,80),(135,81),(135,82),(135,83),(135,84),(135,85),(135,86),(135,87),(135,88),(135,89),(135,90),(135,91),(135,92),(135,93),(135,94),(135,95),(135,96),(135,97),(135,98),(135,99),(135,100),(135,101),(135,102),(135,103),(135,104),(135,105),(135,106),(135,107),(135,108),(135,109),(135,110),(135,111),(135,112),(135,113),(135,114),(135,115),(135,116),(135,117),(135,118),(135,119),(135,120),(135,121),(135,122),(135,123),(135,124),(135,125),(135,126),(135,127),(135,128),(135,129),(135,130),(135,131),(135,132),(135,133),(135,134),(136,0),(136,1),(136,2),(136,3),(136,4),(136,5),(136,6),(136,7),(136,8),(136,9),(136,10),(136,11),(136,12),(136,13),(136,14),(136,15),(136,16),(136,17),(136,18),(136,19),(136,20),(136,21),(136,22),(136,23),(136,24),(136,25),(136,26),(136,27),(136,28),(136,29),(136,30),(136,31),(136,32),(136,33),(136,34),(136,35),(136,36),(136,37),(136,38),(136,39),(136,40),(136,41),(136,42),(136,43),(136,44),(136,45),(136,46),(136,47),(136,48),(136,49),(136,50),(136,51),(136,52),(136,53),(136,54),(136,55),(136,56),(136,57),(136,58),(136,59),(136,60),(136,61),(136,62),(136,63),(136,64),(136,65),(136,66),(136,67),(136,68),(136,69),(136,70),(136,71),(136,72),(136,73),(136,74),(136,75),(136,76),(136,77),(136,78),(136,79),(136,80),(136,81),(136,82),(136,83),(136,84),(136,85),(136,86),(136,87),(136,88),(136,89),(136,90),(136,91),(136,92),(136,93),(136,94),(136,95),(136,96),(136,97),(136,98),(136,99),(136,100),(136,101),(136,102),(136,103),(136,104),(136,105),(136,106),(136,107),(136,108),(136,109),(136,110),(136,111),(136,112),(136,113),(136,114),(136,115),(136,116),(136,117),(136,118),(136,119),(136,120),(136,121),(136,122),(136,123),(136,124),(136,125),(136,126),(136,127),(136,128),(136,129),(136,130),(136,131),(136,132),(136,133),(136,134),(136,135),(137,0),(137,1),(137,2),(137,3),(137,4),(137,5),(137,6),(137,7),(137,8),(137,9),(137,10),(137,11),(137,12),(137,13),(137,14),(137,15),(137,16),(137,17),(137,18),(137,19),(137,20),(137,21),(137,22),(137,23),(137,24),(137,25),(137,26),(137,27),(137,28),(137,29),(137,30),(137,31),(137,32),(137,33),(137,34),(137,35),(137,36),(137,37),(137,38),(137,39),(137,40),(137,41),(137,42),(137,43),(137,44),(137,45),(137,46),(137,47),(137,48),(137,49),(137,50),(137,51),(137,52),(137,53),(137,54),(137,55),(137,56),(137,57),(137,58),(137,59),(137,60),(137,61),(137,62),(137,63),(137,64),(137,65),(137,66),(137,67),(137,68),(137,69),(137,70),(137,71),(137,72),(137,73),(137,74),(137,75),(137,76),(137,77),(137,78),(137,79),(137,80),(137,81),(137,82),(137,83),(137,84),(137,85),(137,86),(137,87),(137,88),(137,89),(137,90),(137,91),(137,92),(137,93),(137,94),(137,95),(137,96),(137,97),(137,98),(137,99),(137,100),(137,101),(137,102),(137,103),(137,104),(137,105),(137,106),(137,107),(137,108),(137,109),(137,110),(137,111),(137,112),(137,113),(137,114),(137,115),(137,116),(137,117),(137,118),(137,119),(137,120),(137,121),(137,122),(137,123),(137,124),(137,125),(137,126),(137,127),(137,128),(137,129),(137,130),(137,131),(137,132),(137,133),(137,134),(137,135),(137,136),(138,0),(138,1),(138,2),(138,3),(138,4),(138,5),(138,6),(138,7),(138,8),(138,9),(138,10),(138,11),(138,12),(138,13),(138,14),(138,15),(138,16),(138,17),(138,18),(138,19),(138,20),(138,21),(138,22),(138,23),(138,24),(138,25),(138,26),(138,27),(138,28),(138,29),(138,30),(138,31),(138,32),(138,33),(138,34),(138,35),(138,36),(138,37),(138,38),(138,39),(138,40),(138,41),(138,42),(138,43),(138,44),(138,45),(138,46),(138,47),(138,48),(138,49),(138,50),(138,51),(138,52),(138,53),(138,54),(138,55),(138,56),(138,57),(138,58),(138,59),(138,60),(138,61),(138,62),(138,63),(138,64),(138,65),(138,66),(138,67),(138,68),(138,69),(138,70),(138,71),(138,72),(138,73),(138,74),(138,75),(138,76),(138,77),(138,78),(138,79),(138,80),(138,81),(138,82),(138,83),(138,84),(138,85),(138,86),(138,87),(138,88),(138,89),(138,90),(138,91),(138,92),(138,93),(138,94),(138,95),(138,96),(138,97),(138,98),(138,99),(138,100),(138,101),(138,102),(138,103),(138,104),(138,105),(138,106),(138,107),(138,108),(138,109),(138,110),(138,111),(138,112),(138,113),(138,114),(138,115),(138,116),(138,117),(138,118),(138,119),(138,120),(138,121),(138,122),(138,123),(138,124),(138,125),(138,126),(138,127),(138,128),(138,129),(138,130),(138,131),(138,132),(138,133),(138,134),(138,135),(138,136),(138,137),(139,0),(139,1),(139,2),(139,3),(139,4),(139,5),(139,6),(139,7),(139,8),(139,9),(139,10),(139,11),(139,12),(139,13),(139,14),(139,15),(139,16),(139,17),(139,18),(139,19),(139,20),(139,21),(139,22),(139,23),(139,24),(139,25),(139,26),(139,27),(139,28),(139,29),(139,30),(139,31),(139,32),(139,33),(139,34),(139,35),(139,36),(139,37),(139,38),(139,39),(139,40),(139,41),(139,42),(139,43),(139,44),(139,45),(139,46),(139,47),(139,48),(139,49),(139,50),(139,51),(139,52),(139,53),(139,54),(139,55),(139,56),(139,57),(139,58),(139,59),(139,60),(139,61),(139,62),(139,63),(139,64),(139,65),(139,66),(139,67),(139,68),(139,69),(139,70),(139,71),(139,72),(139,73),(139,74),(139,75),(139,76),(139,77),(139,78),(139,79),(139,80),(139,81),(139,82),(139,83),(139,84),(139,85),(139,86),(139,87),(139,88),(139,89),(139,90),(139,91),(139,92),(139,93),(139,94),(139,95),(139,96),(139,97),(139,98),(139,99),(139,100),(139,101),(139,102),(139,103),(139,104),(139,105),(139,106),(139,107),(139,108),(139,109),(139,110),(139,111),(139,112),(139,113),(139,114),(139,115),(139,116),(139,117),(139,118),(139,119),(139,120),(139,121),(139,122),(139,123),(139,124),(139,125),(139,126),(139,127),(139,128),(139,129),(139,130),(139,131),(139,132),(139,133),(139,134),(139,135),(139,136),(139,137),(139,138),(140,0),(140,1),(140,2),(140,3),(140,4),(140,5),(140,6),(140,7),(140,8),(140,9),(140,10),(140,11),(140,12),(140,13),(140,14),(140,15),(140,16),(140,17),(140,18),(140,19),(140,20),(140,21),(140,22),(140,23),(140,24),(140,25),(140,26),(140,27),(140,28),(140,29),(140,30),(140,31),(140,32),(140,33),(140,34),(140,35),(140,36),(140,37),(140,38),(140,39),(140,40),(140,41),(140,42),(140,43),(140,44),(140,45),(140,46),(140,47),(140,48),(140,49),(140,50),(140,51),(140,52),(140,53),(140,54),(140,55),(140,56),(140,57),(140,58),(140,59),(140,60),(140,61),(140,62),(140,63),(140,64),(140,65),(140,66),(140,67),(140,68),(140,69),(140,70),(140,71),(140,72),(140,73),(140,74),(140,75),(140,76),(140,77),(140,78),(140,79),(140,80),(140,81),(140,82),(140,83),(140,84),(140,85),(140,86),(140,87),(140,88),(140,89),(140,90),(140,91),(140,92),(140,93),(140,94),(140,95),(140,96),(140,97),(140,98),(140,99),(140,100),(140,101),(140,102),(140,103),(140,104),(140,105),(140,106),(140,107),(140,108),(140,109),(140,110),(140,111),(140,112),(140,113),(140,114),(140,115),(140,116),(140,117),(140,118),(140,119),(140,120),(140,121),(140,122),(140,123),(140,124),(140,125),(140,126),(140,127),(140,128),(140,129),(140,130),(140,131),(140,132),(140,133),(140,134),(140,135),(140,136),(140,137),(140,138),(140,139),(141,0),(141,1),(141,2),(141,3),(141,4),(141,5),(141,6),(141,7),(141,8),(141,9),(141,10),(141,11),(141,12),(141,13),(141,14),(141,15),(141,16),(141,17),(141,18),(141,19),(141,20),(141,21),(141,22),(141,23),(141,24),(141,25),(141,26),(141,27),(141,28),(141,29),(141,30),(141,31),(141,32),(141,33),(141,34),(141,35),(141,36),(141,37),(141,38),(141,39),(141,40),(141,41),(141,42),(141,43),(141,44),(141,45),(141,46),(141,47),(141,48),(141,49),(141,50),(141,51),(141,52),(141,53),(141,54),(141,55),(141,56),(141,57),(141,58),(141,59),(141,60),(141,61),(141,62),(141,63),(141,64),(141,65),(141,66),(141,67),(141,68),(141,69),(141,70),(141,71),(141,72),(141,73),(141,74),(141,75),(141,76),(141,77),(141,78),(141,79),(141,80),(141,81),(141,82),(141,83),(141,84),(141,85),(141,86),(141,87),(141,88),(141,89),(141,90),(141,91),(141,92),(141,93),(141,94),(141,95),(141,96),(141,97),(141,98),(141,99),(141,100),(141,101),(141,102),(141,103),(141,104),(141,105),(141,106),(141,107),(141,108),(141,109),(141,110),(141,111),(141,112),(141,113),(141,114),(141,115),(141,116),(141,117),(141,118),(141,119),(141,120),(141,121),(141,122),(141,123),(141,124),(141,125),(141,126),(141,127),(141,128),(141,129),(141,130),(141,131),(141,132),(141,133),(141,134),(141,135),(141,136),(141,137),(141,138),(141,139),(141,140),(142,0),(142,1),(142,2),(142,3),(142,4),(142,5),(142,6),(142,7),(142,8),(142,9),(142,10),(142,11),(142,12),(142,13),(142,14),(142,15),(142,16),(142,17),(142,18),(142,19),(142,20),(142,21),(142,22),(142,23),(142,24),(142,25),(142,26),(142,27),(142,28),(142,29),(142,30),(142,31),(142,32),(142,33),(142,34),(142,35),(142,36),(142,37),(142,38),(142,39),(142,40),(142,41),(142,42),(142,43),(142,44),(142,45),(142,46),(142,47),(142,48),(142,49),(142,50),(142,51),(142,52),(142,53),(142,54),(142,55),(142,56),(142,57),(142,58),(142,59),(142,60),(142,61),(142,62),(142,63),(142,64),(142,65),(142,66),(142,67),(142,68),(142,69),(142,70),(142,71),(142,72),(142,73),(142,74),(142,75),(142,76),(142,77),(142,78),(142,79),(142,80),(142,81),(142,82),(142,83),(142,84),(142,85),(142,86),(142,87),(142,88),(142,89),(142,90),(142,91),(142,92),(142,93),(142,94),(142,95),(142,96),(142,97),(142,98),(142,99),(142,100),(142,101),(142,102),(142,103),(142,104),(142,105),(142,106),(142,107),(142,108),(142,109),(142,110),(142,111),(142,112),(142,113),(142,114),(142,115),(142,116),(142,117),(142,118),(142,119),(142,120),(142,121),(142,122),(142,123),(142,124),(142,125),(142,126),(142,127),(142,128),(142,129),(142,130),(142,131),(142,132),(142,133),(142,134),(142,135),(142,136),(142,137),(142,138),(142,139),(142,140),(142,141),(143,0),(143,1),(143,2),(143,3),(143,4),(143,5),(143,6),(143,7),(143,8),(143,9),(143,10),(143,11),(143,12),(143,13),(143,14),(143,15),(143,16),(143,17),(143,18),(143,19),(143,20),(143,21),(143,22),(143,23),(143,24),(143,25),(143,26),(143,27),(143,28),(143,29),(143,30),(143,31),(143,32),(143,33),(143,34),(143,35),(143,36),(143,37),(143,38),(143,39),(143,40),(143,41),(143,42),(143,43),(143,44),(143,45),(143,46),(143,47),(143,48),(143,49),(143,50),(143,51),(143,52),(143,53),(143,54),(143,55),(143,56),(143,57),(143,58),(143,59),(143,60),(143,61),(143,62),(143,63),(143,64),(143,65),(143,66),(143,67),(143,68),(143,69),(143,70),(143,71),(143,72),(143,73),(143,74),(143,75),(143,76),(143,77),(143,78),(143,79),(143,80),(143,81),(143,82),(143,83),(143,84),(143,85),(143,86),(143,87),(143,88),(143,89),(143,90),(143,91),(143,92),(143,93),(143,94),(143,95),(143,96),(143,97),(143,98),(143,99),(143,100),(143,101),(143,102),(143,103),(143,104),(143,105),(143,106),(143,107),(143,108),(143,109),(143,110),(143,111),(143,112),(143,113),(143,114),(143,115),(143,116),(143,117),(143,118),(143,119),(143,120),(143,121),(143,122),(143,123),(143,124),(143,125),(143,126),(143,127),(143,128),(143,129),(143,130),(143,131),(143,132),(143,133),(143,134),(143,135),(143,136),(143,137),(143,138),(143,139),(143,140),(143,141),(143,142),(144,0),(144,1),(144,2),(144,3),(144,4),(144,5),(144,6),(144,7),(144,8),(144,9),(144,10),(144,11),(144,12),(144,13),(144,14),(144,15),(144,16),(144,17),(144,18),(144,19),(144,20),(144,21),(144,22),(144,23),(144,24),(144,25),(144,26),(144,27),(144,28),(144,29),(144,30),(144,31),(144,32),(144,33),(144,34),(144,35),(144,36),(144,37),(144,38),(144,39),(144,40),(144,41),(144,42),(144,43),(144,44),(144,45),(144,46),(144,47),(144,48),(144,49),(144,50),(144,51),(144,52),(144,53),(144,54),(144,55),(144,56),(144,57),(144,58),(144,59),(144,60),(144,61),(144,62),(144,63),(144,64),(144,65),(144,66),(144,67),(144,68),(144,69),(144,70),(144,71),(144,72),(144,73),(144,74),(144,75),(144,76),(144,77),(144,78),(144,79),(144,80),(144,81),(144,82),(144,83),(144,84),(144,85),(144,86),(144,87),(144,88),(144,89),(144,90),(144,91),(144,92),(144,93),(144,94),(144,95),(144,96),(144,97),(144,98),(144,99),(144,100),(144,101),(144,102),(144,103),(144,104),(144,105),(144,106),(144,107),(144,108),(144,109),(144,110),(144,111),(144,112),(144,113),(144,114),(144,115),(144,116),(144,117),(144,118),(144,119),(144,120),(144,121),(144,122),(144,123),(144,124),(144,125),(144,126),(144,127),(144,128),(144,129),(144,130),(144,131),(144,132),(144,133),(144,134),(144,135),(144,136),(144,137),(144,138),(144,139),(144,140),(144,141),(144,142),(144,143),(145,0),(145,1),(145,2),(145,3),(145,4),(145,5),(145,6),(145,7),(145,8),(145,9),(145,10),(145,11),(145,12),(145,13),(145,14),(145,15),(145,16),(145,17),(145,18),(145,19),(145,20),(145,21),(145,22),(145,23),(145,24),(145,25),(145,26),(145,27),(145,28),(145,29),(145,30),(145,31),(145,32),(145,33),(145,34),(145,35),(145,36),(145,37),(145,38),(145,39),(145,40),(145,41),(145,42),(145,43),(145,44),(145,45),(145,46),(145,47),(145,48),(145,49),(145,50),(145,51),(145,52),(145,53),(145,54),(145,55),(145,56),(145,57),(145,58),(145,59),(145,60),(145,61),(145,62),(145,63),(145,64),(145,65),(145,66),(145,67),(145,68),(145,69),(145,70),(145,71),(145,72),(145,73),(145,74),(145,75),(145,76),(145,77),(145,78),(145,79),(145,80),(145,81),(145,82),(145,83),(145,84),(145,85),(145,86),(145,87),(145,88),(145,89),(145,90),(145,91),(145,92),(145,93),(145,94),(145,95),(145,96),(145,97),(145,98),(145,99),(145,100),(145,101),(145,102),(145,103),(145,104),(145,105),(145,106),(145,107),(145,108),(145,109),(145,110),(145,111),(145,112),(145,113),(145,114),(145,115),(145,116),(145,117),(145,118),(145,119),(145,120),(145,121),(145,122),(145,123),(145,124),(145,125),(145,126),(145,127),(145,128),(145,129),(145,130),(145,131),(145,132),(145,133),(145,134),(145,135),(145,136),(145,137),(145,138),(145,139),(145,140),(145,141),(145,142),(145,143),(145,144),(146,0),(146,1),(146,2),(146,3),(146,4),(146,5),(146,6),(146,7),(146,8),(146,9),(146,10),(146,11),(146,12),(146,13),(146,14),(146,15),(146,16),(146,17),(146,18),(146,19),(146,20),(146,21),(146,22),(146,23),(146,24),(146,25),(146,26),(146,27),(146,28),(146,29),(146,30),(146,31),(146,32),(146,33),(146,34),(146,35),(146,36),(146,37),(146,38),(146,39),(146,40),(146,41),(146,42),(146,43),(146,44),(146,45),(146,46),(146,47),(146,48),(146,49),(146,50),(146,51),(146,52),(146,53),(146,54),(146,55),(146,56),(146,57),(146,58),(146,59),(146,60),(146,61),(146,62),(146,63),(146,64),(146,65),(146,66),(146,67),(146,68),(146,69),(146,70),(146,71),(146,72),(146,73),(146,74),(146,75),(146,76),(146,77),(146,78),(146,79),(146,80),(146,81),(146,82),(146,83),(146,84),(146,85),(146,86),(146,87),(146,88),(146,89),(146,90),(146,91),(146,92),(146,93),(146,94),(146,95),(146,96),(146,97),(146,98),(146,99),(146,100),(146,101),(146,102),(146,103),(146,104),(146,105),(146,106),(146,107),(146,108),(146,109),(146,110),(146,111),(146,112),(146,113),(146,114),(146,115),(146,116),(146,117),(146,118),(146,119),(146,120),(146,121),(146,122),(146,123),(146,124),(146,125),(146,126),(146,127),(146,128),(146,129),(146,130),(146,131),(146,132),(146,133),(146,134),(146,135),(146,136),(146,137),(146,138),(146,139),(146,140),(146,141),(146,142),(146,143),(146,144),(146,145),(147,0),(147,1),(147,2),(147,3),(147,4),(147,5),(147,6),(147,7),(147,8),(147,9),(147,10),(147,11),(147,12),(147,13),(147,14),(147,15),(147,16),(147,17),(147,18),(147,19),(147,20),(147,21),(147,22),(147,23),(147,24),(147,25),(147,26),(147,27),(147,28),(147,29),(147,30),(147,31),(147,32),(147,33),(147,34),(147,35),(147,36),(147,37),(147,38),(147,39),(147,40),(147,41),(147,42),(147,43),(147,44),(147,45),(147,46),(147,47),(147,48),(147,49),(147,50),(147,51),(147,52),(147,53),(147,54),(147,55),(147,56),(147,57),(147,58),(147,59),(147,60),(147,61),(147,62),(147,63),(147,64),(147,65),(147,66),(147,67),(147,68),(147,69),(147,70),(147,71),(147,72),(147,73),(147,74),(147,75),(147,76),(147,77),(147,78),(147,79),(147,80),(147,81),(147,82),(147,83),(147,84),(147,85),(147,86),(147,87),(147,88),(147,89),(147,90),(147,91),(147,92),(147,93),(147,94),(147,95),(147,96),(147,97),(147,98),(147,99),(147,100),(147,101),(147,102),(147,103),(147,104),(147,105),(147,106),(147,107),(147,108),(147,109),(147,110),(147,111),(147,112),(147,113),(147,114),(147,115),(147,116),(147,117),(147,118),(147,119),(147,120),(147,121),(147,122),(147,123),(147,124),(147,125),(147,126),(147,127),(147,128),(147,129),(147,130),(147,131),(147,132),(147,133),(147,134),(147,135),(147,136),(147,137),(147,138),(147,139),(147,140),(147,141),(147,142),(147,143),(147,144),(147,145),(147,146),(148,0),(148,1),(148,2),(148,3),(148,4),(148,5),(148,6),(148,7),(148,8),(148,9),(148,10),(148,11),(148,12),(148,13),(148,14),(148,15),(148,16),(148,17),(148,18),(148,19),(148,20),(148,21),(148,22),(148,23),(148,24),(148,25),(148,26),(148,27),(148,28),(148,29),(148,30),(148,31),(148,32),(148,33),(148,34),(148,35),(148,36),(148,37),(148,38),(148,39),(148,40),(148,41),(148,42),(148,43),(148,44),(148,45),(148,46),(148,47),(148,48),(148,49),(148,50),(148,51),(148,52),(148,53),(148,54),(148,55),(148,56),(148,57),(148,58),(148,59),(148,60),(148,61),(148,62),(148,63),(148,64),(148,65),(148,66),(148,67),(148,68),(148,69),(148,70),(148,71),(148,72),(148,73),(148,74),(148,75),(148,76),(148,77),(148,78),(148,79),(148,80),(148,81),(148,82),(148,83),(148,84),(148,85),(148,86),(148,87),(148,88),(148,89),(148,90),(148,91),(148,92),(148,93),(148,94),(148,95),(148,96),(148,97),(148,98),(148,99),(148,100),(148,101),(148,102),(148,103),(148,104),(148,105),(148,106),(148,107),(148,108),(148,109),(148,110),(148,111),(148,112),(148,113),(148,114),(148,115),(148,116),(148,117),(148,118),(148,119),(148,120),(148,121),(148,122),(148,123),(148,124),(148,125),(148,126),(148,127),(148,128),(148,129),(148,130),(148,131),(148,132),(148,133),(148,134),(148,135),(148,136),(148,137),(148,138),(148,139),(148,140),(148,141),(148,142),(148,143),(148,144),(148,145),(148,146),(148,147),(149,0),(149,1),(149,2),(149,3),(149,4),(149,5),(149,6),(149,7),(149,8),(149,9),(149,10),(149,11),(149,12),(149,13),(149,14),(149,15),(149,16),(149,17),(149,18),(149,19),(149,20),(149,21),(149,22),(149,23),(149,24),(149,25),(149,26),(149,27),(149,28),(149,29),(149,30),(149,31),(149,32),(149,33),(149,34),(149,35),(149,36),(149,37),(149,38),(149,39),(149,40),(149,41),(149,42),(149,43),(149,44),(149,45),(149,46),(149,47),(149,48),(149,49),(149,50),(149,51),(149,52),(149,53),(149,54),(149,55),(149,56),(149,57),(149,58),(149,59),(149,60),(149,61),(149,62),(149,63),(149,64),(149,65),(149,66),(149,67),(149,68),(149,69),(149,70),(149,71),(149,72),(149,73),(149,74),(149,75),(149,76),(149,77),(149,78),(149,79),(149,80),(149,81),(149,82),(149,83),(149,84),(149,85),(149,86),(149,87),(149,88),(149,89),(149,90),(149,91),(149,92),(149,93),(149,94),(149,95),(149,96),(149,97),(149,98),(149,99),(149,100),(149,101),(149,102),(149,103),(149,104),(149,105),(149,106),(149,107),(149,108),(149,109),(149,110),(149,111),(149,112),(149,113),(149,114),(149,115),(149,116),(149,117),(149,118),(149,119),(149,120),(149,121),(149,122),(149,123),(149,124),(149,125),(149,126),(149,127),(149,128),(149,129),(149,130),(149,131),(149,132),(149,133),(149,134),(149,135),(149,136),(149,137),(149,138),(149,139),(149,140),(149,141),(149,142),(149,143),(149,144),(149,145),(149,146),(149,147),(149,148),(150,0),(150,1),(150,2),(150,3),(150,4),(150,5),(150,6),(150,7),(150,8),(150,9),(150,10),(150,11),(150,12),(150,13),(150,14),(150,15),(150,16),(150,17),(150,18),(150,19),(150,20),(150,21),(150,22),(150,23),(150,24),(150,25),(150,26),(150,27),(150,28),(150,29),(150,30),(150,31),(150,32),(150,33),(150,34),(150,35),(150,36),(150,37),(150,38),(150,39),(150,40),(150,41),(150,42),(150,43),(150,44),(150,45),(150,46),(150,47),(150,48),(150,49),(150,50),(150,51),(150,52),(150,53),(150,54),(150,55),(150,56),(150,57),(150,58),(150,59),(150,60),(150,61),(150,62),(150,63),(150,64),(150,65),(150,66),(150,67),(150,68),(150,69),(150,70),(150,71),(150,72),(150,73),(150,74),(150,75),(150,76),(150,77),(150,78),(150,79),(150,80),(150,81),(150,82),(150,83),(150,84),(150,85),(150,86),(150,87),(150,88),(150,89),(150,90),(150,91),(150,92),(150,93),(150,94),(150,95),(150,96),(150,97),(150,98),(150,99),(150,100),(150,101),(150,102),(150,103),(150,104),(150,105),(150,106),(150,107),(150,108),(150,109),(150,110),(150,111),(150,112),(150,113),(150,114),(150,115),(150,116),(150,117),(150,118),(150,119),(150,120),(150,121),(150,122),(150,123),(150,124),(150,125),(150,126),(150,127),(150,128),(150,129),(150,130),(150,131),(150,132),(150,133),(150,134),(150,135),(150,136),(150,137),(150,138),(150,139),(150,140),(150,141),(150,142),(150,143),(150,144),(150,145),(150,146),(150,147),(150,148),(150,149),(151,0),(151,1),(151,2),(151,3),(151,4),(151,5),(151,6),(151,7),(151,8),(151,9),(151,10),(151,11),(151,12),(151,13),(151,14),(151,15),(151,16),(151,17),(151,18),(151,19),(151,20),(151,21),(151,22),(151,23),(151,24),(151,25),(151,26),(151,27),(151,28),(151,29),(151,30),(151,31),(151,32),(151,33),(151,34),(151,35),(151,36),(151,37),(151,38),(151,39),(151,40),(151,41),(151,42),(151,43),(151,44),(151,45),(151,46),(151,47),(151,48),(151,49),(151,50),(151,51),(151,52),(151,53),(151,54),(151,55),(151,56),(151,57),(151,58),(151,59),(151,60),(151,61),(151,62),(151,63),(151,64),(151,65),(151,66),(151,67),(151,68),(151,69),(151,70),(151,71),(151,72),(151,73),(151,74),(151,75),(151,76),(151,77),(151,78),(151,79),(151,80),(151,81),(151,82),(151,83),(151,84),(151,85),(151,86),(151,87),(151,88),(151,89),(151,90),(151,91),(151,92),(151,93),(151,94),(151,95),(151,96),(151,97),(151,98),(151,99),(151,100),(151,101),(151,102),(151,103),(151,104),(151,105),(151,106),(151,107),(151,108),(151,109),(151,110),(151,111),(151,112),(151,113),(151,114),(151,115),(151,116),(151,117),(151,118),(151,119),(151,120),(151,121),(151,122),(151,123),(151,124),(151,125),(151,126),(151,127),(151,128),(151,129),(151,130),(151,131),(151,132),(151,133),(151,134),(151,135),(151,136),(151,137),(151,138),(151,139),(151,140),(151,141),(151,142),(151,143),(151,144),(151,145),(151,146),(151,147),(151,148),(151,149),(151,150),(152,0),(152,1),(152,2),(152,3),(152,4),(152,5),(152,6),(152,7),(152,8),(152,9),(152,10),(152,11),(152,12),(152,13),(152,14),(152,15),(152,16),(152,17),(152,18),(152,19),(152,20),(152,21),(152,22),(152,23),(152,24),(152,25),(152,26),(152,27),(152,28),(152,29),(152,30),(152,31),(152,32),(152,33),(152,34),(152,35),(152,36),(152,37),(152,38),(152,39),(152,40),(152,41),(152,42),(152,43),(152,44),(152,45),(152,46),(152,47),(152,48),(152,49),(152,50),(152,51),(152,52),(152,53),(152,54),(152,55),(152,56),(152,57),(152,58),(152,59),(152,60),(152,61),(152,62),(152,63),(152,64),(152,65),(152,66),(152,67),(152,68),(152,69),(152,70),(152,71),(152,72),(152,73),(152,74),(152,75),(152,76),(152,77),(152,78),(152,79),(152,80),(152,81),(152,82),(152,83),(152,84),(152,85),(152,86),(152,87),(152,88),(152,89),(152,90),(152,91),(152,92),(152,93),(152,94),(152,95),(152,96),(152,97),(152,98),(152,99),(152,100),(152,101),(152,102),(152,103),(152,104),(152,105),(152,106),(152,107),(152,108),(152,109),(152,110),(152,111),(152,112),(152,113),(152,114),(152,115),(152,116),(152,117),(152,118),(152,119),(152,120),(152,121),(152,122),(152,123),(152,124),(152,125),(152,126),(152,127),(152,128),(152,129),(152,130),(152,131),(152,132),(152,133),(152,134),(152,135),(152,136),(152,137),(152,138),(152,139),(152,140),(152,141),(152,142),(152,143),(152,144),(152,145),(152,146),(152,147),(152,148),(152,149),(152,150),(152,151),(153,0),(153,1),(153,2),(153,3),(153,4),(153,5),(153,6),(153,7),(153,8),(153,9),(153,10),(153,11),(153,12),(153,13),(153,14),(153,15),(153,16),(153,17),(153,18),(153,19),(153,20),(153,21),(153,22),(153,23),(153,24),(153,25),(153,26),(153,27),(153,28),(153,29),(153,30),(153,31),(153,32),(153,33),(153,34),(153,35),(153,36),(153,37),(153,38),(153,39),(153,40),(153,41),(153,42),(153,43),(153,44),(153,45),(153,46),(153,47),(153,48),(153,49),(153,50),(153,51),(153,52),(153,53),(153,54),(153,55),(153,56),(153,57),(153,58),(153,59),(153,60),(153,61),(153,62),(153,63),(153,64),(153,65),(153,66),(153,67),(153,68),(153,69),(153,70),(153,71),(153,72),(153,73),(153,74),(153,75),(153,76),(153,77),(153,78),(153,79),(153,80),(153,81),(153,82),(153,83),(153,84),(153,85),(153,86),(153,87),(153,88),(153,89),(153,90),(153,91),(153,92),(153,93),(153,94),(153,95),(153,96),(153,97),(153,98),(153,99),(153,100),(153,101),(153,102),(153,103),(153,104),(153,105),(153,106),(153,107),(153,108),(153,109),(153,110),(153,111),(153,112),(153,113),(153,114),(153,115),(153,116),(153,117),(153,118),(153,119),(153,120),(153,121),(153,122),(153,123),(153,124),(153,125),(153,126),(153,127),(153,128),(153,129),(153,130),(153,131),(153,132),(153,133),(153,134),(153,135),(153,136),(153,137),(153,138),(153,139),(153,140),(153,141),(153,142),(153,143),(153,144),(153,145),(153,146),(153,147),(153,148),(153,149),(153,150),(153,151),(153,152),(154,0),(154,1),(154,2),(154,3),(154,4),(154,5),(154,6),(154,7),(154,8),(154,9),(154,10),(154,11),(154,12),(154,13),(154,14),(154,15),(154,16),(154,17),(154,18),(154,19),(154,20),(154,21),(154,22),(154,23),(154,24),(154,25),(154,26),(154,27),(154,28),(154,29),(154,30),(154,31),(154,32),(154,33),(154,34),(154,35),(154,36),(154,37),(154,38),(154,39),(154,40),(154,41),(154,42),(15Interrupted. λ> [ (x,y) | x <- [0..], y <- [0..x] ] [(0,0),(1,0),(1,1),(2,0),(2,1),(2,2),(3,0),(3,1),(3,2),(3,3),(4,0),(4,1),(4,2),(4,3),(4,4),(5,0),(5,1),(5,2),(5,3),(5,4),(5,5),(6,0),(6,1),(6,2),(6,3),(6,4),(6,5),(6,6),(7,0),(7,1),(7,2),(7,3),(7,4),(7,5),(7,6),(7,7),(8,0),(8,1),(8,2),(8,3),(8,4),(8,5),(8,6),(8,7),(8,8),(9,0),(9,1),(9,2),(9,3),(9,4),(9,5),(9,6),(9,7),(9,8),(9,9),(10,0),(10,1),(10,2),(10,3),(10,4),(10,5),(10,6),(10,7),(10,8),(10,9),(10,10),(11,0),(11,1),(11,2),(11,3),(11,4),(11,5),(11,6),(11,7),(11,8),(11,9),(11,10),(11,11),(12,0),(12,1),(12,2),(12,3),(12,4),(12,5),(12,6),(12,7),(12,8),(12,9),(12,10),(12,11),(12,12),(13,0),(13,1),(13,2),(13,3),(13,4),(13,5),(13,6),(13,7),(13,8),(13,9),(13,10),(13,11),(13,12),(13,13),(14,0),(14,1),(14,2),(14,3),(14,4),(14,5),(14,6),(14,7),(14,8),(14,9),(14,10),(14,11),(14,12),(14,13),(14,14),(15,0),(15,1),(15,2),(15,3),(15,4),(15,5),(15,6),(15,7),(15,8),(15,9),(15,10),(15,11),(15,12),(15,13),(15,14),(15,15),(16,0),(16,1),(16,2),(16,3),(16,4),(16,5),(16,6),(16,7),(16,8),(16,9),(16,10),(16,11),(16,12),(16,13),(16,14),(16,15),(16,16),(17,0),(17,1),(17,2),(17,3),(17,4),(17,5),(17,6),(17,7),(17,8),(17,9),(17,10),(17,11),(17,12),(17,13),(17,14),(17,15),(17,16),(17,17),(18,0),(18,1),(18,2),(18,3),(18,4),(18,5),(18,6),(18,7),(18,8),(18,9),(18,10),(18,11),(18,12),(18,13),(18,14),(18,15),(18,16),(18,17),(18,18),(19,0),(19,1),(19,2),(19,3),(19,4),(19,5),(19,6),(19,7),(19,8),(19,9),(19,10),(19,11),(19,12),(19,13),(19,14),(19,15),(19,16),(19,17),(19,18),(19,19),(20,0),(20,1),(20,2),(20,3),(20,4),(20,5),(20,6),(20,7),(20,8),(20,9),(20,10),(20,11),(20,12),(20,13),(20,14),(20,15),(20,16),(20,17),(20,18),(20,19),(20,20),(21,0),(21,1),(21,2),(21,3),(21,4),(21,5),(21,6),(21,7),(21,8),(21,9),(21,10),(21,11),(21,12),(21,13),(21,14),(21,15),(21,16),(21,17),(21,18),(21,19),(21,20),(21,21),(22,0),(22,1),(22,2),(22,3),(22,4),(22,5),(22,6),(22,7),(22,8),(22,9),(22,10),(22,11),(22,12),(22,13),(22,14),(22,15),(22,16),(22,17),(22,18),(22,19),(22,20),(22,21),(22,22),(23,0),(23,1),(23,2),(23,3),(23,4),(23,5),(23,6),(23,7),(23,8),(23,9),(23,10),(23,11),(23,12),(23,13),(23,14),(23,15),(23,16),(23,17),(23,18),(23,19),(23,20),(23,21),(23,22),(23,23),(24,0),(24,1),(24,2),(24,3),(24,4),(24,5),(24,6),(24,7),(24,8),(24,9),(24,10),(24,11),(24,12),(24,13),(24,14),(24,15),(24,16),(24,17),(24,18),(24,19),(24,20),(24,21),(24,22),(24,23),(24,24),(25,0),(25,1),(25,2),(25,3),(25,4),(25,5),(25,6),(25,7),(25,8),(25,9),(25,10),(25,11),(25,12),(25,13),(25,14),(25,15),(25,16),(25,17),(25,18),(25,19),(25,20),(25,21),(25,22),(25,23),(25,24),(25,25),(26,0),(26,1),(26,2),(26,3),(26,4),(26,5),(26,6),(26,7),(26,8),(26,9),(26,10),(26,11),(26,12),(26,13),(26,14),(26,15),(26,16),(26,17),(26,18),(26,19),(26,20),(26,21),(26,22),(26,23),(26,24),(26,25),(26,26),(27,0),(27,1),(27,2),(27,3),(27,4),(27,5),(27,6),(27,7),(27,8),(27,9),(27,10),(27,11),(27,12),(27,13),(27,14),(27,15),(27,16),(27,17),(27,18),(27,19),(27,20),(27,21),(27,22),(27,23),(27,24),(27,25),(27,26),(27,27),(28,0),(28,1),(28,2),(28,3),(28,4),(28,5),(28,6),(28,7),(28,8),(28,9),(28,10),(28,11),(28,12),(28,13),(28,14),(28,15),(28,16),(28,17),(28,18),(28,19),(28,20),(28,21),(28,22),(28,23),(28,24),(28,25),(28,26),(28,27),(28,28),(29,0),(29,1),(29,2),(29,3),(29,4),(29,5),(29,6),(29,7),(29,8),(29,9),(29,10),(29,11),(29,12),(29,13),(29,14),(29,15),(29,16),(29,17),(29,18),(29,19),(29,20),(29,21),(29,22),(29,23),(29,24),(29,25),(29,26),(29,27),(29,28),(29,29),(30,0),(30,1),(30,2),(30,3),(30,4),(30,5),(30,6),(30,7),(30,8),(30,9),(30,10),(30,11),(30,12),(30,13),(30,14),(30,15),(30,16),(30,17),(30,18),(30,19),(30,20),(30,21),(30,22),(30,23),(30,24),(30,25),(30,26),(30,27),(30,28),(30,29),(30,30),(31,0),(31,1),(31,2),(31,3),(31,4),(31,5),(31,6),(31,7),(31,8),(31,9),(31,10),(31,11),(31,12),(31,13),(31,14),(31,15),(31,16),(31,17),(31,18),(31,19),(31,20),(31,21),(31,22),(31,23),(31,24),(31,25),(31,26),(31,27),(31,28),(31,29),(31,30),(31,31),(32,0),(32,1),(32,2),(32,3),(32,4),(32,5),(32,6),(32,7),(32,8),(32,9),(32,10),(32,11),(32,12),(32,13),(32,14),(32,15),(32,16),(32,17),(32,18),(32,19),(32,20),(32,21),(32,22),(32,23),(32,24),(32,25),(32,26),(32,27),(32,28),(32,29),(32,30),(32,31),(32,32),(33,0),(33,1),(33,2),(33,3),(33,4),(33,5),(33,6),(33,7),(33,8),(33,9),(33,10),(33,11),(33,12),(33,13),(33,14),(33,15),(33,16),(33,17),(33,18),(33,19),(33,20),(33,21),(33,22),(33,23),(33,24),(33,25),(33,26),(33,27),(33,28),(33,29),(33,30),(33,31),(33,32),(33,33),(34,0),(34,1),(34,2),(34,3),(34,4),(34,5),(34,6),(34,7),(34,8),(34,9),(34,10),(34,11),(34,12),(34,13),(34,14),(34,15),(34,16),(34,17),(34,18),(34,19),(34,20),(34,21),(34,22),(34,23),(34,24),(34,25),(34,26),(34,27),(34,28),(34,29),(34,30),(34,31),(34,32),(34,33),(34,34),(35,0),(35,1),(35,2),(35,3),(35,4),(35,5),(35,6),(35,7),(35,8),(35,9),(35,10),(35,11),(35,12),(35,13),(35,14),(35,15),(35,16),(35,17),(35,18),(35,19),(35,20),(35,21),(35,22),(35,23),(35,24),(35,25),(35,26),(35,27),(35,28),(35,29),(35,30),(35,31),(35,32),(35,33),(35,34),(35,35),(36,0),(36,1),(36,2),(36,3),(36,4),(36,5),(36,6),(36,7),(36,8),(36,9),(36,10),(36,11),(36,12),(36,13),(36,14),(36,15),(36,16),(36,17),(36,18),(36,19),(36,20),(36,21),(36,22),(36,23),(36,24),(36,25),(36,26),(36,27),(36,28),(36,29),(36,30),(36,31),(36,32),(36,33),(36,34),(36,35),(36,36),(37,0),(37,1),(37,2),(37,3),(37,4),(37,5),(37,6),(37,7),(37,8),(37,9),(37,10),(37,11),(37,12),(37,13),(37,14),(37,15),(37,16),(37,17),(37,18),(37,19),(37,20),(37,21),(37,22),(37,23),(37,24),(37,25),(37,26),(37,27),(37,28),(37,29),(37,30),(37,31),(37,32),(37,33),(37,34),(37,35),(37,36),(37,37),(38,0),(38,1),(38,2),(38,3),(38,4),(38,5),(38,6),(38,7),(38,8),(38,9),(38,10),(38,11),(38,12),(38,13),(38,14),(38,15),(38,16),(38,17),(38,18),(38,19),(38,20),(38,21),(38,22),(38,23),(38,24),(38,25),(38,26),(38,27),(38,28),(38,29),(38,30),(38,31),(38,32),(38,33),(38,34),(38,35),(38,36),(38,37),(38,38),(39,0),(39,1),(39,2),(39,3),(39,4),(39,5),(39,6),(39,7),(39,8),(39,9),(39,10),(39,11),(39,12),(39,13),(39,14),(39,15),(39,16),(39,17),(39,18),(39,19),(39,20),(39,21),(39,22),(39,23),(39,24),(39,25),(39,26),(39,27),(39,28),(39,29),(39,30),(39,31),(39,32),(39,33),(39,34),(39,35),(39,36),(39,37),(39,38),(39,39),(40,0),(40,1),(40,2),(40,3),(40,4),(40,5),(40,6),(40,7),(40,8),(40,9),(40,10),(40,11),(40,12),(40,13),(40,14),(40,15),(40,16),(40,17),(40,18),(40,19),(40,20),(40,21),(40,22),(40,23),(40,24),(40,25),(40,26),(40,27),(40,28),(40,29),(40,30),(40,31),(40,32),(40,33),(40,34),(40,35),(40,36),(40,37),(40,38),(40,39),(40,40),(41,0),(41,1),(41,2),(41,3),(41,4),(41,5),(41,6),(41,7),(41,8),(41,9),(41,10),(41,11),(41,12),(41,13),(41,14),(41,15),(41,16),(41,17),(41,18),(41,19),(41,20),(41,21),(41,22),(41,23),(41,24),(41,25),(41,26),(41,27),(41,28),(41,29),(41,30),(41,31),(41,32),(41,33),(41,34),(41,35),(41,36),(41,37),(41,38),(41,39),(41,40),(41,41),(42,0),(42,1),(42,2),(42,3),(42,4),(42,5),(42,6),(42,7),(42,8),(42,9),(42,10),(42,11),(42,12),(42,13),(42,14),(42,15),(42,16),(42,17),(42,18),(42,19),(42,20),(42,21),(42,22),(42,23),(42,24),(42,25),(42,26),(42,27),(42,28),(42,29),(42,30),(42,31),(42,32),(42,33),(42,34),(42,35),(42,36),(42,37),(42,38),(42,39),(42,40),(42,41),(42,42),(43,0),(43,1),(43,2),(43,3),(43,4),(43,5),(43,6),(43,7),(43,8),(43,9),(43,10),(43,11),(43,12),(43,13),(43,14),(43,15),(43,16),(43,17),(43,18),(43,19),(43,20),(43,21),(43,22),(43,23),(43,24),(43,25),(43,26),(43,27),(43,28),(43,29),(43,30),(43,31),(43,32),(43,33),(43,34),(43,35),(43,36),(43,37),(43,38),(43,39),(43,40),(43,41),(43,42),(43,43),(44,0),(44,1),(44,2),(44,3),(44,4),(44,5),(44,6),(44,7),(44,8),(44,9),(44,10),(44,11),(44,12),(44,13),(44,14),(44,15),(44,16),(44,17),(44,18),(44,19),(44,20),(44,21),(44,22),(44,23),(44,24),(44,25),(44,26),(44,27),(44,28),(44,29),(44,30),(44,31),(44,32),(44,33),(44,34),(44,35),(44,36),(44,37),(44,38),(44,39),(44,40),(44,41),(44,42),(44,43),(44,44),(45,0),(45,1),(45,2),(45,3),(45,4),(45,5),(45,6),(45,7),(45,8),(45,9),(45,10),(45,11),(45,12),(45,13),(45,14),(45,15),(45,16),(45,17),(45,18),(45,19),(45,20),(45,21),(45,22),(45,23),(45,24),(45,25),(45,26),(45,27),(45,28),(45,29),(45,30),(45,31),(45,32),(45,33),(45,34),(45,35),(45,36),(45,37),(45,38),(45,39),(45,40),(45,41),(45,42),(45,43),(45,44),(45,45),(46,0),(46,1),(46,2),(46,3),(46,4),(46,5),(46,6),(46,7),(46,8),(46,9),(46,10),(46,11),(46,12),(46,13),(46,14),(46,15),(46,16),(46,17),(46,18),(46,19),(46,20),(46,21),(46,22),(46,23),(46,24),(46,25),(46,26),(46,27),(46,28),(46,29),(46,30),(46,31),(46,32),(46,33),(46,34),(46,35),(46,36),(46,37),(46,38),(46,39),(46,40),(46,41),(46,42),(46,43),(46,44),(46,45),(46,46),(47,0),(47,1),(47,2),(47,3),(47,4),(47,5),(47,6),(47,7),(47,8),(47,9),(47,10),(47,11),(47,12),(47,13),(47,14),(47,15),(47,16),(47,17),(47,18),(47,19),(47,20),(47,21),(47,22),(47,23),(47,24),(47,25),(47,26),(47,27),(47,28),(47,29),(47,30),(47,31),(47,32),(47,33),(47,34),(47,35),(47,36),(47,37),(47,38),(47,39),(47,40),(47,41),(47,42),(47,43),(47,44),(47,45),(47,46),(47,47),(48,0),(48,1),(48,2),(48,3),(48,4),(48,5),(48,6),(48,7),(48,8),(48,9),(48,10),(48,11),(48,12),(48,13),(48,14),(48,15),(48,16),(48,17),(48,18),(48,19),(48,20),(48,21),(48,22),(48,23),(48,24),(48,25),(48,26),(48,27),(48,28),(48,29),(48,30),(48,31),(48,32),(48,33),(48,34),(48,35),(48,36),(48,37),(48,38),(48,39),(48,40),(48,41),(48,42),(48,43),(48,44),(48,45),(48,46),(48,47),(48,48),(49,0),(49,1),(49,2),(49,3),(49,4),(49,5),(49,6),(49,7),(49,8),(49,9),(49,10),(49,11),(49,12),(49,13),(49,14),(49,15),(49,16),(49,17),(49,18),(49,19),(49,20),(49,21),(49,22),(49,23),(49,24),(49,25),(49,26),(49,27),(49,28),(49,29),(49,30),(49,31),(49,32),(49,33),(49,34),(49,35),(49,36),(49,37),(49,38),(49,39),(49,40),(49,41),(49,42),(49,43),(49,44),(49,45),(49,46),(49,47),(49,48),(49,49),(50,0),(50,1),(50,2),(50,3),(50,4),(50,5),(50,6),(50,7),(50,8),(50,9),(50,10),(50,11),(50,12),(50,13),(50,14),(50,15),(50,16),(50,17),(50,18),(50,19),(50,20),(50,21),(50,22),(50,23),(50,24),(50,25),(50,26),(50,27),(50,28),(50,29),(50,30),(50,31),(50,32),(50,33),(50,34),(50,35),(50,36),(50,37),(50,38),(50,39),(50,40),(50,41),(50,42),(50,43),(50,44),(50,45),(50,46),(50,47),(50,48),(50,49),(50,50),(51,0),(51,1),(51,2),(51,3),(51,4),(51,5),(51,6),(51,7),(51,8),(51,9),(51,10),(51,11),(51,12),(51,13),(51,14),(51,15),(51,16),(51,17),(51,18),(51,19),(51,20),(51,21),(51,22),(51,23),(51,24),(51,25),(51,26),(51,27),(51,28),(51,29),(51,30),(51,31),(51,32),(51,33),(51,34),(51,35),(51,36),(51,37),(51,38),(51,39),(51,40),(51,41),(51,42),(51,43),(51,44),(51,45),(51,46),(51,47),(51,48),(51,49),(51,50),(51,51),(52,0),(52,1),(52,2),(52,3),(52,4),(52,5),(52,6),(52,7),(52,8),(52,9),(52,10),(52,11),(52,12),(52,13),(52,14),(52,15),(52,16),(52,17),(52,18),(52,19),(52,20),(52,21),(52,22),(52,23),(52,24),(52,25),(52,26),(52,27),(52,28),(52,29),(52,30),(52,31),(52,32),(52,33),(52,34),(52,35),(52,36),(52,37),(52,38),(52,39),(52,40),(52,41),(52,42),(52,43),(52,44),(52,45),(52,46),(52,47),(52,48),(52,49),(52,50),(52,51),(52,52),(53,0),(53,1),(53,2),(53,3),(53,4),(53,5),(53,6),(53,7),(53,8),(53,9),(53,10),(53,11),(53,12),(53,13),(53,14),(53,15),(53,16),(53,17),(53,18),(53,19),(53,20),(53,21),(53,22),(53,23),(53,24),(53,25),(53,26),(53,27),(53,28),(53,29),(53,30),(53,31),(53,32),(53,33),(53,34),(53,35),(53,36),(53,37),(53,38),(53,39),(53,40),(53,41),(53,42),(53,43),(53,44),(53,45),(53,46),(53,47),(53,48),(53,49),(53,50),(53,51),(53,52),(53,53),(54,0),(54,1),(54,2),(54,3),(54,4),(54,5),(54,6),(54,7),(54,8),(54,9),(54,10),(54,11),(54,12),(54,13),(54,14),(54,15),(54,16),(54,17),(54,18),(54,19),(54,20),(54,21),(54,22),(54,23),(54,24),(54,25),(54,26),(54,27),(54,28),(54,29),(54,30),(54,31),(54,32),(54,33),(54,34),(54,35),(54,36),(54,37),(54,38),(54,39),(54,40),(54,41),(54,42),(54,43),(54,44),(54,45),(54,46),(54,47),(54,48),(54,49),(54,50),(54,51),(54,52),(54,53),(54,54),(55,0),(55,1),(55,2),(55,3),(55,4),(55,5),(55,6),(55,7),(55,8),(55,9),(55,10),(55,11),(55,12),(55,13),(55,14),(55,15),(55,16),(55,17),(55,18),(55,19),(55,20),(55,21),(55,22),(55,23),(55,24),(55,25),(55,26),(55,27),(55,28),(55,29),(55,30),(55,31),(55,32),(55,33),(55,34),(55,35),(55,36),(55,37),(55,38),(55,39),(55,40),(55,41),(55,42),(55,43),(55,44),(55,45),(55,46),(55,47),(55,48),(55,49),(55,50),(55,51),(55,52),(55,53),(55,54),(55,55),(56,0),(56,1),(56,2),(56,3),(56,4),(56,5),(56,6),(56,7),(56,8),(56,9),(56,10),(56,11),(56,12),(56,13),(56,14),(56,15),(56,16),(56,17),(56,18),(56,19),(56,20),(56,21),(56,22),(56,23),(56,24),(56,25),(56,26),(56,27),(56,28),(56,29),(56,30),(56,31),(56,32),(56,33),(56,34),(56,35),(56,36),(56,37),(56,38),(56,39),(56,40),(56,41),(56,42),(56,43),(56,44),(56,45),(56,46),(56,47),(56,48),(56,49),(56,50),(56,51),(56,52),(56,53),(56,54),(56,55),(56,56),(57,0),(57,1),(57,2),(57,3),(57,4),(57,5),(57,6),(57,7),(57,8),(57,9),(57,10),(57,11),(57,12),(57,13),(57,14),(57,15),(57,16),(57,17),(57,18),(57,19),(57,20),(57,21),(57,22),(57,23),(57,24),(57,25),(57,26),(57,27),(57,28),(57,29),(57,30),(57,31),(57,32),(57,33),(57,34),(57,35),(57,36),(57,37),(57,38),(57,39),(57,40),(57,41),(57,42),(57,43),(57,44),(57,45),(57,46),(57,47),(57,48),(57,49),(57,50),(57,51),(57,52),(57,53),(57,54),(57,55),(57,56),(57,57),(58,0),(58,1),(58,2),(58,3),(58,4),(58,5),(58,6),(58,7),(58,8),(58,9),(58,10),(58,11),(58,12),(58,13),(58,14),(58,15),(58,16),(58,17),(58,18),(58,19),(58,20),(58,21),(58,22),(58,23),(58,24),(58,25),(58,26),(58,27),(58,28),(58,29),(58,30),(58,31),(58,32),(58,33),(58,34),(58,35),(58,36),(58,37),(58,38),(58,39),(58,40),(58,41),(58,42),(58,43),(58,44),(58,45),(58,46),(58,47),(58,48),(58,49),(58,50),(58,51),(58,52),(58,53),(58,54),(58,55),(58,56),(58,57),(58,58),(59,0),(59,1),(59,2),(59,3),(59,4),(59,5),(59,6),(59,7),(59,8),(59,9),(59,10),(59,11),(59,12),(59,13),(59,14),(59,15),(59,16),(59,17),(59,18),(59,19),(59,20),(59,21),(59,22),(59,23),(59,24),(59,25),(59,26),(59,27),(59,28),(59,29),(59,30),(59,31),(59,32),(59,33),(59,34),(59,35),(59,36),(59,37),(59,38),(59,39),(59,40),(59,41),(59,42),(59,43),(59,44),(59,45),(59,46),(59,47),(59,48),(59,49),(59,50),(59,51),(59,52),(59,53),(59,54),(59,55),(59,56),(59,57),(59,58),(59,59),(60,0),(60,1),(60,2),(60,3),(60,4),(60,5),(60,6),(60,7),(60,8),(60,9),(60,10),(60,11),(60,12),(60,13),(60,14),(60,15),(60,16),(60,17),(60,18),(60,19),(60,20),(60,21),(60,22),(60,23),(60,24),(60,25),(60,26),(60,27),(60,28),(60,29),(60,30),(60,31),(60,32),(60,33),(60,34),(60,35),(60,36),(60,37),(60,38),(60,39),(60,40),(60,41),(60,42),(60,43),(60,44),(60,45),(60,46),(60,47),(60,48),(60,49),(60,50),(60,51),(60,52),(60,53),(60,54),(60,55),(60,56),(60,57),(60,58),(60,59),(60,60),(61,0),(61,1),(61,2),(61,3),(61,4),(61,5),(61,6),(61,7),(61,8),(61,9),(61,10),(61,11),(61,12),(61,13),(61,14),(61,15),(61,16),(61,17),(61,18),(61,19),(61,20),(61,21),(61,22),(61,23),(61,24),(61,25),(61,26),(61,27),(61,28),(61,29),(61,30),(61,31),(61,32),(61,33),(61,34),(61,35),(61,36),(61,37),(61,38),(61,39),(61,40),(61,41),(61,42),(61,43),(61,44),(61,45),(61,46),(61,47),(61,48),(61,49),(61,50),(61,51),(61,52),(61,53),(61,54),(61,55),(61,56),(61,57),(61,58),(61,59),(61,60),(61,61),(62,0),(62,1),(62,2),(62,3),(62,4),(62,5),(62,6),(62,7),(62,8),(62,9),(62,10),(62,11),(62,12),(62,13),(62,14),(62,15),(62,16),(62,17),(62,18),(62,19),(62,20),(62,21),(62,22),(62,23),(62,24),(62,25),(62,26),(62,27),(62,28),(62,29),(62,30),(62,31),(62,32),(62,33),(62,34),(62,35),(62,36),(62,37),(62,38),(62,39),(62,40),(62,41),(62,42),(62,43),(62,44),(62,45),(62,46),(62,47),(62,48),(62,49),(62,50),(62,51),(62,52),(62,53),(62,54),(62,55),(62,56),(62,57),(62,58),(62,59),(62,60),(62,61),(62,62),(63,0),(63,1),(63,2),(63,3),(63,4),(63,5),(63,6),(63,7),(63,8),(63,9),(63,10),(63,11),(63,12),(63,13),(63,14),(63,15),(63,16),(63,17),(63,18),(63,19),(63,20),(63,21),(63,22),(63,23),(63,24),(63,25),(63,26),(63,27),(63,28),(63,29),(63,30),(63,31),(63,32),(63,33),(63,34),(63,35),(63,36),(63,37),(63,38),(63,39),(63,40),(63,41),(63,42),(63,43),(63,44),(63,45),(63,46),(63,47),(63,48),(63,49),(63,50),(63,51),(63,52),(63,53),(63,54),(63,55),(63,56),(63,57),(63,58),(63,59),(63,60),(63,61),(63,62),(63,63),(64,0),(64,1),(64,2),(64,3),(64,4),(64,5),(64,6),(64,7),(64,8),(64,9),(64,10),(64,11),(64,12),(64,13),(64,14),(64,15),(64,16),(64,17),(64,18),(64,19),(64,20),(64,21),(64,22),(64,23),(64,24),(64,25),(64,26),(64,27),(64,28),(64,29),(64,30),(64,31),(64,32),(64,33),(64,34),(64,35),(64,36),(64,37),(64,38),(64,39),(64,40),(64,41),(64,42),(64,43),(64,44),(64,45),(64,46),(64,47),(64,48),(64,49),(64,50),(64,51),(64,52),(64,53),(64,54),(64,55),(64,56),(64,57),(64,58),(64,59),(64,60),(64,61),(64,62),(64,63),(64,64),(65,0),(65,1),(65,2),(65,3),(65,4),(65,5),(65,6),(65,7),(65,8),(65,9),(65,10),(65,11),(65,12),(65,13),(65,14),(65,15),(65,16),(65,17),(65,18),(65,19),(65,20),(65,21),(65,22),(65,23),(65,24),(65,25),(65,26),(65,27),(65,28),(65,29),(65,30),(65,31),(65,32),(65,33),(65,34),(65,35),(65,36),(65,37),(65,38),(65,39),(65,40),(65,41),(65,42),(65,43),(65,44),(65,45),(65,46),(65,47),(65,48),(65,49),(65,50),(65,51),(65,52),(65,53),(65,54),(65,55),(65,56),(65,57),(65,58),(65,59),(65,60),(65,61),(65,62),(65,63),(65,64),(65,65),(66,0),(66,1),(66,2),(66,3),(66,4),(66,5),(66,6),(66,7),(66,8),(66,9),(66,10),(66,11),(66,12),(66,13),(66,14),(66,15),(66,16),(66,17),(66,18),(66,19),(66,20),(66,21),(66,22),(66,23),(66,24),(66,25),(66,26),(66,27),(66,28),(66,29),(66,30),(66,31),(66,32),(66,33),(66,34),(66,35),(66,36),(66,37),(66,38),(66,39),(66,40),(66,41),(66,42),(66,43),(66,44),(66,45),(66,46),(66,47),(66,48),(66,49),(66,50),(66,51),(66,52),(66,53),(66,54),(66,55),(66,56),(66,57),(66,58),(66,59),(66,60),(66,61),(66,62),(66,63),(66,64),(66,65),(66,66),(67,0),(67,1),(67,2),(67,3),(67,4),(67,5),(67,6),(67,7),(67,8),(67,9),(67,10),(67,11),(67,12),(67,13),(67,14),(67,15),(67,16),(67,17),(67,18),(67,19),(67,20),(67,21),(67,22),(67,23),(67,24),(67,25),(67,26),(67,27),(67,28),(67,29),(67,30),(67,31),(67,32),(67,33),(67,34),(67,35),(67,36),(67,37),(67,38),(67,39),(67,40),(67,41),(67,42),(67,43),(67,44),(67,45),(67,46),(67,47),(67,48),(67,49),(67,50),(67,51),(67,52),(67,53),(67,54),(67,55),(67,56),(67,57),(67,58),(67,59),(67,60),(67,61),(67,62),(67,63),(67,64),(67,65),(67,66),(67,67),(68,0),(68,1),(68,2),(68,3),(68,4),(68,5),(68,6),(68,7),(68,8),(68,9),(68,10),(68,11),(68,12),(68,13),(68,14),(68,15),(68,16),(68,17),(68,18),(68,19),(68,20),(68,21),(68,22),(68,23),(68,24),(68,25),(68,26),(68,27),(68,28),(68,29),(68,30),(68,31),(68,32),(68,33),(68,34),(68,35),(68,36),(68,37),(68,38),(68,39),(68,40),(68,41),(68,42),(68,43),(68,44),(68,45),(68,46),(68,47),(68,48),(68,49),(68,50),(68,51),(68,52),(68,53),(68,54),(68,55),(68,56),(68,57),(68,58),(68,59),(68,60),(68,61),(68,62),(68,63),(68,64),(68,65),(68,66),(68,67),(68,68),(69,0),(69,1),(69,2),(69,3),(69,4),(69,5),(69,6),(69,7),(69,8),(69,9),(69,10),(69,11),(69,12),(69,13),(69,14),(69,15),(69,16),(69,17),(69,18),(69,19),(69,20),(69,21),(69,22),(69,23),(69,24),(69,25),(69,26),(69,27),(69,28),(69,29),(69,30),(69,31),(69,32),(69,33),(69,34),(69,35),(69,36),(69,37),(69,38),(69,39),(69,40),(69,41),(69,42),(69,43),(69,44),(69,45),(69,46),(69,47),(69,48),(69,49),(69,50),(69,51),(69,52),(69,53),(69,54),(69,55),(69,56),(69,57),(69,58),(69,59),(69,60),(69,61),(69,62),(69,63),(69,64),(69,65),(69,66),(69,67),(69,68),(69,69),(70,0),(70,1),(70,2),(70,3),(70,4),(70,5),(70,6),(70,7),(70,8),(70,9),(70,10),(70,11),(70,12),(70,13),(70,14),(70,15),(70,16),(70,17),(70,18),(70,19),(70,20),(70,21),(70,22),(70,23),(70,24),(70,25),(70,26),(70,27),(70,28),(70,29),(70,30),(70,31),(70,32),(70,33),(70,34),(70,35),(70,36),(70,37),(70,38),(70,39),(70,40),(70,41),(70,42),(70,43),(70,44),(70,45),(70,46),(70,47),(70,48),(70,49),(70,50),(70,51),(70,52),(70,53),(70,54),(70,55),(70,56),(70,57),(70,58),(70,59),(70,60),(70,61),(70,62),(70,63),(70,64),(70,65),(70,66),(70,67),(70,68),(70,69),(70,70),(71,0),(71,1),(71,2),(71,3),(71,4),(71,5),(71,6),(71,7),(71,8),(71,9),(71,10),(71,11),(71,12),(71,13),(71,14),(71,15),(71,16),(71,17),(71,18),(71,19),(71,20),(71,21),(71,22),(71,23),(71,24),(71,25),(71,26),(71,27),(71,28),(71,29),(71,30),(71,31),(71,32),(71,33),(71,34),(71,35),(71,36),(71,37),(71,38),(71,39),(71,40),(71,41),(71,42),(71,43),(71,44),(71,45),(71,46),(71,47),(71,48),(71,49),(71,50),(71,51),(71,52),(71,53),(71,54),(71,55),(71,56),(71,57),(71,58),(71,59),(71,60),(71,61),(71,62),(71,63),(71,64),(71,65),(71,66),(71,67),(71,68),(71,69),(71,70),(71,71),(72,0),(72,1),(72,2),(72,3),(72,4),(72,5),(72,6),(72,7),(72,8),(72,9),(72,10),(72,11),(72,12),(72,13),(72,14),(72,15),(72,16),(72,17),(72,18),(72,19),(72,20),(72,21),(72,22),(72,23),(72,24),(72,25),(72,26),(72,27),(72,28),(72,29),(72,30),(72,31),(72,32),(72,33),(72,34),(72,35),(72,36),(72,37),(72,38),(72,39),(72,40),(72,41),(72,42),(72,43),(72,44),(72,45),(72,46),(72,47),(72,48),(72,49),(72,50),(72,51),(72,52),(72,53),(72,54),(72,55),(72,56),(72,57),(72,58),(72,59),(72,60),(72,61),(72,62),(72,63),(72,64),(72,65),(72,66),(72,67),(72,68),(72,69),(72,70),(72,71),(72,72),(73,0),(73,1),(73,2),(73,3),(73,4),(73,5),(73,6),(73,7),(73,8),(73,9),(73,10),(73,11),(73,12),(73,13),(73,14),(73,15),(73,16),(73,17),(73,18),(73,19),(73,20),(73,21),(73,22),(73,23),(73,24),(73,25),(73,26),(73,27),(73,28),(73,29),(73,30),(73,31),(73,32),(73,33),(73,34),(73,35),(73,36),(73,37),(73,38),(73,39),(73,40),(73,41),(73,42),(73,43),(73,44),(73,45),(73,46),(73,47),(73,48),(73,49),(73,50),(73,51),(73,52),(73,53),(73,54),(73,55),(73,56),(73,57),(73,58),(73,59),(73,60),(73,61),(73,62),(73,63),(73,64),(73,65),(73,66),(73,67),(73,68),(73,69),(73,70),(73,71),(73,72),(73,73),(74,0),(74,1),(74,2),(74,3),(74,4),(74,5),(74,6),(74,7),(74,8),(74,9),(74,10),(74,11),(74,12),(74,13),(74,14),(74,15),(74,16),(74,17),(74,18),(74,19),(74,20),(74,21),(74,22),(74,23),(74,24),(74,25),(74,26),(74,27),(74,28),(74,29),(74,30),(74,31),(74,32),(74,33),(74,34),(74,35),(74,36),(74,37),(74,38),(74,39),(74,40),(74,41),(74,42),(74,43),(74,44),(74,45),(74,46),(74,47),(74,48),(74,49),(74,50),(74,51),(74,52),(74,53),(74,54),(74,55),(74,56),(74,57),(74,58),(74,59),(74,60),(74,61),(74,62),(74,63),(74,64),(74,65),(74,66),(74,67),(74,68),(74,69),(74,70),(74,71),(74,72),(74,73),(74,74),(75,0),(75,1),(75,2),(75,3),(75,4),(75,5),(75,6),(75,7),(75,8),(75,9),(75,10),(75,11),(75,12),(75,13),(75,14),(75,15),(75,16),(75,17),(75,18),(75,19),(75,20),(75,21),(75,22),(75,23),(75,24),(75,25),(75,26),(75,27),(75,28),(75,29),(75,30),(75,31),(75,32),(75,33),(75,34),(75,35),(75,36),(75,37),(75,38),(75,39),(75,40),(75,41),(75,42),(75,43),(75,44),(75,45),(75,46),(75,47),(75,48),(75,49),(75,50),(75,51),(75,52),(75,53),(75,54),(75,55),(75,56),(75,57),(75,58),(75,59),(75,60),(75,61),(75,62),(75,63),(75,64),(75,65),(75,66),(75,67),(75,68),(75,69),(75,70),(75,71),(75,72),(75,73),(75,74),(75,75),(76,0),(76,1),(76,2),(76,3),(76,4),(76,5),(76,6),(76,7),(76,8),(76,9),(76,10),(76,11),(76,12),(76,13),(76,14),(76,15),(76,16),(76,17),(76,18),(76,19),(76,20),(76,21),(76,22),(76,23),(76,24),(76,25),(76,26),(76,27),(76,28),(76,29),(76,30),(76,31),(76,32),(76,33),(76,34),(76,35),(76,36),(76,37),(76,38),(76,39),(76,40),(76,41),(76,42),(76,43),(76,44),(76,45),(76,46),(76,47),(76,48),(76,49),(76,50),(76,51),(76,52),(76,53),(76,54),(76,55),(76,56),(76,57),(76,58),(76,59),(76,60),(76,61),(76,62),(76,63),(76,64),(76,65),(76,66),(76,67),(76,68),(76,69),(76,70),(76,71),(76,72),(76,73),(76,74),(76,75),(76,76),(77,0),(77,1),(77,2),(77,3),(77,4),(77,5),(77,6),(77,7),(77,8),(77,9),(77,10),(77,11),(77,12),(77,13),(77,14),(77,15),(77,16),(77,17),(77,18),(77,19),(77,20),(77,21),(77,22),(77,23),(77,24),(77,25),(77,26),(77,27),(77,28),(77,29),(77,30),(77,31),(77,32),(77,33),(77,34),(77,35),(77,36),(77,37),(77,38),(77,39),(77,40),(77,41),(77,42),(77,43),(77,44),(77,45),(77,46),(77,47),(77,48),(77,49),(77,50),(77,51),(77,52),(77,53),(77,54),(77,55),(77,56),(77,57),(77,58),(77,59),(77,60),(77,61),(77,62),(77,63),(77,64),(77,65),(77,66),(77,67),(77,68),(77,69),(77,70),(77,71),(77,72),(77,73),(77,74),(77,75),(77,76),(77,77),(78,0),(78,1),(78,2),(78,3),(78,4),(78,5),(78,6),(78,7),(78,8),(78,9),(78,10),(78,11),(78,12),(78,13),(78,14),(78,15),(78,16),(78,17),(78,18),(78,19),(78,20),(78,21),(78,22),(78,23),(78,24),(78,25),(78,26),(78,27),(78,28),(78,29),(78,30),(78,31),(78,32),(78,33),(78,34),(78,35),(78,36),(78,37),(78,38),(78,39),(78,40),(78,41),(78,42),(78,43),(78,44),(78,45),(78,46),(78,47),(78,48),(78,49),(78,50),(78,51),(78,52),(78,53),(78,54),(78,55),(78,56),(78,57),(78,58),(78,59),(78,60),(78,61),(78,62),(78,63),(78,64),(78,65),(78,66),(78,67),(78,68),(78,69),(78,70),(78,71),(78,72),(78,73),(78,74),(78,75),(78,76),(78,77),(78,78),(79,0),(79,1),(79,2),(79,3),(79,4),(79,5),(79,6),(79,7),(79,8),(79,9),(79,10),(79,11),(79,12),(79,13),(79,14),(79,15),(79,16),(79,17),(79,18),(79,19),(79,20),(79,21),(79,22),(79,23),(79,24),(79,25),(79,26),(79,27),(79,28),(79,29),(79,30),(79,31),(79,32),(79,33),(79,34),(79,35),(79,36),(79,37),(79,38),(79,39),(79,40),(79,41),(79,42),(79,43),(79,44),(79,45),(79,46),(79,47),(79,48),(79,49),(79,50),(79,51),(79,52),(79,53),(79,54),(79,55),(79,56),(79,57),(79,58),(79,59),(79,60),(79,61),(79,62),(79,63),(79,64),(79,65),(79,66),(79,67),(79,68),(79,69),(79,70),(79,71),(79,72),(79,73),(79,74),(79,75),(79,76),(79,77),(79,78),(79,79),(80,0),(80,1),(80,2),(80,3),(80,4),(80,5),(80,6),(80,7),(80,8),(80,9),(80,10),(80,11),(80,12),(80,13),(80,14),(80,15),(80,16),(80,17),(80,18),(80,19),(80,20),(80,21),(80,22),(80,23),(80,24),(80,25),(80,26),(80,27),(80,28),(80,29),(80,30),(80,31),(80,32),(80,33),(80,34),(80,35),(80,36),(80,37),(80,38),(80,39),(80,40),(80,41),(80,42),(80,43),(80,44),(80,45),(80,46),(80,47),(80,48),(80,49),(80,50),(80,51),(80,52),(80,53),(80,54),(80,55),(80,56),(80,57),(80,58),(80,59),(80,60),(80,61),(80,62),(80,63),(80,64),(80,65),(80,66),(80,67),(80,68),(80,69),(80,70),(80,71),(80,72),(80,73),(80,74),(80,75),(80,76),(80,77),(80,78),(80,79),(80,80),(81,0),(81,1),(81,2),(81,3),(81,4),(81,5),(81,6),(81,7),(81,8),(81,9),(81,10),(81,11),(81,12),(81,13),(81,14),(81,15),(81,16),(81,17),(81,18),(81,19),(81,20),(81,21),(81,22),(81,23),(81,24),(81,25),(81,26),(81,27),(81,28),(81,29),(81,30),(81,31),(81,32),(81,33),(81,34),(81,35),(81,36),(81,37),(81,38),(81,39),(81,40),(81,41),(81,42),(81,43),(81,44),(81,45),(81,46),(81,47),(81,48),(81,49),(81,50),(81,51),(81,52),(81,53),(81,54),(81,55),(81,56),(81,57),(81,58),(81,59),(81,60),(81,61),(81,62),(81,63),(81,64),(81,65),(81,66),(81,67),(81,68),(81,69),(81,70),(81,71),(81,72),(81,73),(81,74),(81,75),(81,76),(81,77),(81,78),(81,79),(81,80),(81,81),(82,0),(82,1),(82,2),(82,3),(82,4),(82,5),(82,6),(82,7),(82,8),(82,9),(82,10),(82,11),(82,12),(82,13),(82,14),(82,15),(82,16),(82,17),(82,18),(82,19),(82,20),(82,21),(82,22),(82,23),(82,24),(82,25),(82,26),(82,27),(82,28),(82,29),(82,30),(82,31),(82,32),(82,33),(82,34),(82,35),(82,36),(82,37),(82,38),(82,39),(82,40),(82,41),(82,42),(82,43),(82,44),(82,45),(82,46),(82,47),(82,48),(82,49),(82,50),(82,51),(82,52),(82,53),(82,54),(82,55),(82,56),(82,57),(82,58),(82,59),(82,60),(82,61),(82,62),(82,63),(82,64),(82,65),(82,66),(82,67),(82,68),(82,69),(82,70),(82,71),(82,72),(82,73),(82,74),(82,75),(82,76),(82,77),(82,78),(82,79),(82,80),(82,81),(82,82),(83,0),(83,1),(83,2),(83,3),(83,4),(83,5),(83,6),(83,7),(83,8),(83,9),(83,10),(83,11),(83,12),(83,13),(83,14),(83,15),(83,16),(83,17),(83,18),(83,19),(83,20),(83,21),(83,22),(83,23),(83,24),(83,25),(83,26),(83,27),(83,28),(83,29),(83,30),(83,31),(83,32),(83,33),(83,34),(83,35),(83,36),(83,37),(83,38),(83,39),(83,40),(83,41),(83,42),(83,43),(83,44),(83,45),(83,46),(83,47),(83,48),(83,49),(83,50),(83,51),(83,52),(83,53),(83,54),(83,55),(83,56),(83,57),(83,58),(83,59),(83,60),(83,61),(83,62),(83,63),(83,64),(83,65),(83,66),(83,67),(83,68),(83,69),(83,70),(83,71),(83,72),(83,73),(83,74),(83,75),(83,76),(83,77),(83,78),(83,79),(83,80),(83,81),(83,82),(83,83),(84,0),(84,1),(84,2),(84,3),(84,4),(84,5),(84,6),(84,7),(84,8),(84,9),(84,10),(84,11),(84,12),(84,13),(84,14),(84,15),(84,16),(84,17),(84,18),(84,19),(84,20),(84,21),(84,22),(84,23),(84,24),(84,25),(84,26),(84,27),(84,28),(84,29),(84,30),(84,31),(84,32),(84,33),(84,34),(84,35),(84,36),(84,37),(84,38),(84,39),(84,40),(84,41),(84,42),(84,43),(84,44),(84,45),(84,46),(84,47),(84,48),(84,49),(84,50),(84,51),(84,52),(84,53),(84,54),(84,55),(84,56),(84,57),(84,58),(84,59),(84,60),(84,61),(84,62),(84,63),(84,64),(84,65),(84,66),(84,67),(84,68),(84,69),(84,70),(84,71),(84,72),(84,73),(84,74),(84,75),(84,76),(84,77),(84,78),(84,79),(84,80),(84,81),(84,82),(84,83),(84,84),(85,0),(85,1),(85,2),(85,3),(85,4),(85,5),(85,6),(85,7),(85,8),(85,9),(85,10),(85,11),(85,12),(85,13),(85,14),(85,15),(85,16),(85,17),(85,18),(85,19),(85,20),(85,21),(85,22),(85,23),(85,24),(85,25),(85,26),(85,27),(85,28),(85,29),(85,30),(85,31),(85,32),(85,33),(85,34),(85,35),(85,36),(85,37),(85,38),(85,39),(85,40),(85,41),(85,42),(85,43),(85,44),(85,45),(85,46),(85,47),(85,48),(85,49),(85,50),(85,51),(85,52),(85,53),(85,54),(85,55),(85,56),(85,57),(85,58),(85,59),(85,60),(85,61),(85,62),(85,63),(85,64),(85,65),(85,66),(85,67),(85,68),(85,69),(85,70),(85,71),(85,72),(85,73),(85,74),(85,75),(85,76),(85,77),(85,78),(85,79),(85,80),(85,81),(85,82),(85,83),(85,84),(85,85),(86,0),(86,1),(86,2),(86,3),(86,4),(86,5),(86,6),(86,7),(86,8),(86,9),(86,10),(86,11),(86,12),(86,13),(86,14),(86,15),(86,16),(86,17),(86,18),(86,19),(86,20),(86,21),(86,22),(86,23),(86,24),(86,25),(86,26),(86,27),(86,28),(86,29),(86,30),(86,31),(86,32),(86,33),(86,34),(86,35),(86,36),(86,37),(86,38),(86,39),(86,40),(86,41),(86,42),(86,43),(86,44),(86,45),(86,46),(86,47),(86,48),(86,49),(86,50),(86,51),(86,52),(86,53),(86,54),(86,55),(86,56),(86,57),(86,58),(86,59),(86,60),(86,61),(86,62),(86,63),(86,64),(86,65),(86,66),(86,67),(86,68),(86,69),(86,70),(86,71),(86,72),(86,73),(86,74),(86,75),(86,76),(86,77),(86,78),(86,79),(86,80),(86,81),(86,82),(86,83),(86,84),(86,85),(86,86),(87,0),(87,1),(87,2),(87,3),(87,4),(87,5),(87,6),(87,7),(87,8),(87,9),(87,10),(87,11),(87,12),(87,13),(87,14),(87,15),(87,16),(87,17),(87,18),(87,19),(87,20),(87,21),(87,22),(87,23),(87,24),(87,25),(87,26),(87,27),(87,28),(87,29),(87,30),(87,31),(87,32),(87,33),(87,34),(87,35),(87,36),(87,37),(87,38),(87,39),(87,40),(87,41),(87,42),(87,43),(87,44),(87,45),(87,46),(87,47),(87,48),(87,49),(87,50),(87,51),(87,52),(87,53),(87,54),(87,55),(87,56),(87,57),(87,58),(87,59),(87,60),(87,61),(87,62),(87,63),(87,64),(87,65),(87,66),(87,67),(87,68),(87,69),(87,70),(87,71),(87,72),(87,73),(87,74),(87,75),(87,76),(87,77),(87,78),(87,79),(87,80),(87,81),(87,82),(87,83),(87,84),(87,85),(87,86),(87,87),(88,0),(88,1),(88,2),(88,3),(88,4),(88,5),(88,6),(88,7),(88,8),(88,9),(88,10),(88,11),(88,12),(88,13),(88,14),(88,15),(88,16),(88,17),(88,18),(88,19),(88,20),(88,21),(88,22),(88,23),(88,24),(88,25),(88,26),(88,27),(88,28),(88,29),(88,30),(88,31),(88,32),(88,33),(88,34),(88,35),(88,36),(88,37),(88,38),(88,39),(88,40),(88,41),(88,42),(88,43),(88,44),(88,45),(88,46),(88,47),(88,48),(88,49),(88,50),(88,51),(88,52),(88,53),(88,54),(88,55),(88,56),(88,57),(88,58),(88,59),(88,60),(88,61),(88,62),(88,63),(88,64),(88,65),(88,66),(88,67),(88,68),(88,69),(88,70),(88,71),(88,72),(88,73),(88,74),(88,75),(88,76),(88,77),(88,78),(88,79),(88,80),(88,81),(88,82),(88,83),(88,84),(88,85),(88,86),(88,87),(88,88),(89,0),(89,1),(89,2),(89,3),(89,4),(89,5),(89,6),(89,7),(89,8),(89,9),(89,10),(89,11),(89,12),(89,13),(89,14),(89,15),(89,16),(89,17),(89,18),(89,19),(89,20),(89,21),(89,22),(89,23),(89,24),(89,25),(89,26),(89,27),(89,28),(89,29),(89,30),(89,31),(89,32),(89,33),(89,34),(89,35),(89,36),(89,37),(89,38),(89,39),(89,40),(89,41),(89,42),(89,43),(89,44),(89,45),(89,46),(89,47),(89,48),(89,49),(89,50),(89,51),(89,52),(89,53),(89,54),(89,55),(89,56),(89,57),(89,58),(89,59),(89,60),(89,61),(89,62),(89,63),(89,64),(89,65),(89,66),(89,67),(89,68),(89,69),(89,70),(89,71),(89,72),(89,73),(89,74),(89,75),(89,76),(89,77),(89,78),(89,79),(89,80),(89,81),(89,82),(89,83),(89,84),(89,85),(89,86),(89,87),(89,88),(89,89),(90,0),(90,1),(90,2),(90,3),(90,4),(90,5),(90,6),(90,7),(90,8),(90,9),(90,10),(90,11),(90,12),(90,13),(90,14),(90,15),(90,16),(90,17),(90,18),(90,19),(90,20),(90,21),(90,22),(90,23),(90,24),(90,25),(90,26),(90,27),(90,28),(90,29),(90,30),(90,31),(90,32),(90,33),(90,34),(90,35),(90,36),(90,37),(90,38),(90,39),(90,40),(90,41),(90,42),(90,43),(90,44),(90,45),(90,46),(90,47),(90,48),(90,49),(90,50),(90,51),(90,52),(90,53),(90,54),(90,55),(90,56),(90,57),(90,58),(90,59),(90,60),(90,61),(90,62),(90,63),(90,64),(90,65),(90,66),(90,67),(90,68),(90,69),(90,70),(90,71),(90,72),(90,73),(90,74),(90,75),(90,76),(90,77),(90,78),(90,79),(90,80),(90,81),(90,82),(90,83),(90,84),(90,85),(90,86),(90,87),(90,88),(90,89),(90,90),(91,0),(91,1),(91,2),(91,3),(91,4),(91,5),(91,6),(91,7),(91,8),(91,9),(91,10),(91,11),(91,12),(91,13),(91,14),(91,15),(91,16),(91,17),(91,18),(91,19),(91,20),(91,21),(91,22),(91,23),(91,24),(91,25),(91,26),(91,27),(91,28),(91,29),(91,30),(91,31),(91,32),(91,33),(91,34),(91,35),(91,36),(91,37),(91,38),(91,39),(91,40),(91,41),(91,42),(91,43),(91,44),(91,45),(91,46),(91,47),(91,48),(91,49),(91,50),(91,51),(91,52),(91,53),(91,54),(91,55),(91,56),(91,57),(91,58),(91,59),(91,60),(91,61),(91,62),(91,63),(91,64),(91,65),(91,66),(91,67),(91,68),(91,69),(91,70),(91,71),(91,72),(91,73),(91,74),(91,75),(91,76),(91,77),(91,78),(91,79),(91,80),(91,81),(91,82),(91,83),(91,84),(91,85),(91,86),(91,87),(91,88),(91,89),(91,90),(91,91),(92,0),(92,1),(92,2),(92,3),(92,4),(92,5),(92,6),(92,7),(92,8),(92,9),(92,10),(92,11),(92,12),(92,13),(92,14),(92,15),(92,16),(92,17),(92,18),(92,19),(92,20),(92,21),(92,22),(92,23),(92,24),(92,25),(92,26),(92,27),(92,28),(92,29),(92,30),(92,31),(92,32),(92,33),(92,34),(92,35),(92,36),(92,37),(92,38),(92,39),(92,40),(92,41),(92,42),(92,43),(92,44),(92,45),(92,46),(92,47),(92,48),(92,49),(92,50),(92,51),(92,52),(92,53),(92,54),(92,55),(92,56),(92,57),(92,58),(92,59),(92,60),(92,61),(92,62),(92,63),(92,64),(92,65),(92,66),(92,67),(92,68),(92,69),(92,70),(92,71),(92,72),(92,73),(92,74),(92,75),(92,76),(92,77),(92,78),(92,79),(92,80),(92,81),(92,82),(92,83),(92,84),(92,85),(92,86),(92,87),(92,88),(92,89),(92,90),(92,91),(92,92),(93,0),(93,1),(93,2),(93,3),(93,4),(93,5),(93,6),(93,7),(93,8),(93,9),(93,10),(93,11),(93,12),(93,13),(93,14),(93,15),(93,16),(93,17),(93,18),(93,19),(93,20),(93,21),(93,22),(93,23),(93,24),(93,25),(93,26),(93,27),(93,28),(93,29),(93,30),(93,31),(93,32),(93,33),(93,34),(93,35),(93,36),(93,37),(93,38),(93,39),(93,40),(93,41),(93,42),(93,43),(93,44),(93,45),(93,46),(93,47),(93,48),(93,49),(93,50),(93,51),(93,52),(93,53),(93,54),(93,55),(93,56),(93,57),(93,58),(93,59),(93,60),(93,61),(93,62),(93,63),(93,64),(93,65),(93,66),(93,67),(93,68),(93,69),(93,70),(93,71),(93,72),(93,73),(93,74),(93,75),(93,76),(93,77),(93,78),(93,79),(93,80),(93,81),(93,82),(93,83),(93,84),(93,85),(93,86),(93,87),(93,88),(93,89),(93,90),(93,91),(93,92),(93,93),(94,0),(94,1),(94,2),(94,3),(94,4),(94,5),(94,6),(94,7),(94,8),(94,9),(94,10),(94,11),(94,12),(94,13),(94,14),(94,15),(94,16),(94,17),(94,18),(94,19),(94,20),(94,21),(94,22),(94,23),(94,24),(94,25),(94,26),(94,27),(94,28),(94,29),(94,30),(94,31),(94,32),(94,33),(94,34),(94,35),(94,36),(94,37),(94,38),(94,39),(94,40),(94,41),(94,42),(94,43),(94,44),(94,45),(94,46),(94,47),(94,48),(94,49),(94,50),(94,51),(94,52),(94,53),(94,54),(94,55),(94,56),(94,57),(94,58),(94,59),(94,60),(94,61),(94,62),(94,63),(94,64),(94,65),(94,66),(94,67),(94,68),(94,69),(94,70),(94,71),(94,72),(94,73),(94,74),(94,75),(94,76),(94,77),(94,78),(94,79),(94,80),(94,81),(94,82),(94,83),(94,84),(94,85),(94,86),(94,87),(94,88),(94,89),(94,90),(94,91),(94,92),(94,93),(94,94),(95,0),(95,1),(95,2),(95,3),(95,4),(95,5),(95,6),(95,7),(95,8),(95,9),(95,10),(95,11),(95,12),(95,13),(95,14),(95,15),(95,16),(95,17),(95,18),(95,19),(95,20),(95,21),(95,22),(95,23),(95,24),(95,25),(95,26),(95,27),(95,28),(95,29),(95,30),(95,31),(95,32),(95,33),(95,34),(95,35),(95,36),(95,37),(95,38),(95,39),(95,40),(95,41),(95,42),(95,43),(95,44),(95,45),(95,46),(95,47),(95,48),(95,49),(95,50),(95,51),(95,52),(95,53),(95,54),(95,55),(95,56),(95,57),(95,58),(95,59),(95,60),(95,61),(95,62),(95,63),(95,64),(95,65),(95,66),(95,67),(95,68),(95,69),(95,70),(95,71),(95,72),(95,73),(95,74),(95,75),(95,76),(95,77),(95,78),(95,79),(95,80),(95,81),(95,82),(95,83),(95,84),(95,85),(95,86),(95,87),(95,88),(95,89),(95,90),(95,91),(95,92),(95,93),(95,94),(95,95),(96,0),(96,1),(96,2),(96,3),(96,4),(96,5),(96,6),(96,7),(96,8),(96,9),(96,10),(96,11),(96,12),(96,13),(96,14),(96,15),(96,16),(96,17),(96,18),(96,19),(96,20),(96,21),(96,22),(96,23),(96,24),(96,25),(96,26),(96,27),(96,28),(96,29),(96,30),(96,31),(96,32),(96,33),(96,34),(96,35),(96,36),(96,37),(96,38),(96,39),(96,40),(96,41),(96,42),(96,43),(96,44),(96,45),(96,46),(96,47),(96,48),(96,49),(96,50),(96,51),(96,52),(96,53),(96,54),(96,55),(96,56),(96,57),(96,58),(96,59),(96,60),(96,61),(96,62),(96,63),(96,64),(96,65),(96,66),(96,67),(96,68),(96,69),(96,70),(96,71),(96,72),(96,73),(96,74),(96,75),(96,76),(96,77),(96,78),(96,79),(96,80),(96,81),(96,82),(96,83),(96,84),(96,85),(96,86),(96,87),(96,88),(96,89),(96,90),(96,91),(96,92),(96,93),(96,94),(96,95),(96,96),(97,0),(97,1),(97,2),(97,3),(97,4),(97,5),(97,6),(97,7),(97,8),(97,9),(97,10),(97,11),(97,12),(97,13),(97,14),(97,15),(97,16),(97,17),(97,18),(97,19),(97,20),(97,21),(97,22),(97,23),(97,24),(97,25),(97,26),(97,27),(97,28),(97,29),(97,30),(97,31),(97,32),(97,33),(97,34),(97,35),(97,36),(97,37),(97,38),(97,39),(97,40),(97,41),(97,42),(97,43),(97,44),(97,45),(97,46),(97,47),(97,48),(97,49),(97,50),(97,51),(97,52),(97,53),(97,54),(97,55),(97,56),(97,57),(97,58),(97,59),(97,60),(97,61),(97,62),(97,63),(97,64),(97,65),(97,66),(97,67),(97,68),(97,69),(97,70),(97,71),(97,72),(97,73),(97,74),(97,75),(97,76),(97,77),(97,78),(97,79),(97,80),(97,81),(97,82),(97,83),(97,84),(97,85),(97,86),(97,87),(97,88),(97,89),(97,90),(97,91),(97,92),(97,93),(97,94),(97,95),(97,96),(97,97),(98,0),(98,1),(98,2),(98,3),(98,4),(98,5),(98,6),(98,7),(98,8),(98,9),(98,10),(98,11),(98,12),(98,13),(98,14),(98,15),(98,16),(98,17),(98,18),(98,19),(98,20),(98,21),(98,22),(98,23),(98,24),(98,25),(98,26),(98,27),(98,28),(98,29),(98,30),(98,31),(98,32),(98,33),(98,34),(98,35),(98,36),(98,37),(98,38),(98,39),(98,40),(98,41),(98,42),(98,43),(98,44),(98,45),(98,46),(98,47),(98,48),(98,49),(98,50),(98,51),(98,52),(98,53),(98,54),(98,55),(98,56),(98,57),(98,58),(98,59),(98,60),(98,61),(98,62),(98,63),(98,64),(98,65),(98,66),(98,67),(98,68),(98,69),(98,70),(98,71),(98,72),(98,73),(98,74),(98,75),(98,76),(98,77),(98,78),(98,79),(98,80),(98,81),(98,82),(98,83),(98,84),(98,85),(98,86),(98,87),(98,88),(98,89),(98,90),(98,91),(98,92),(98,93),(98,94),(98,95),(98,96),(98,97),(98,98),(99,0),(99,1),(99,2),(99,3),(99,4),(99,5),(99,6),(99,7),(99,8),(99,9),(99,10),(99,11),(99,12),(99,13),(99,14),(99,15),(99,16),(99,17),(99,18),(99,19),(99,20),(99,21),(99,22),(99,23),(99,24),(99,25),(99,26),(99,27),(99,28),(99,29),(99,30),(99,31),(99,32),(99,33),(99,34),(99,35),(99,36),(99,37),(99,38),(99,39),(99,40),(99,41),(99,42),(99,43),(99,44),(99,45),(99,46),(99,47),(99,48),(99,49),(99,50),(99,51),(99,52),(99,53),(99,54),(99,55),(99,56),(99,57),(99,58),(99,59),(99,60),(99,61),(99,62),(99,63),(99,64),(99,65),(99,66),(99,67),(99,68),(99,69),(99,70),(99,71),(99,72),(99,73),(99,74),(99,75),(99,76),(99,77),(99,78),(99,79),(99,80),(99,81),(99,82),(99,83),(99,84),(99,85),(99,86),(99,87),(99,88),(99,89),(99,90),(99,91),(99,92),(99,93),(99,94),(99,95),(99,96),(99,97),(99,98),(99,99),(100,0),(100,1),(100,2),(100,3),(100,4),(100,5),(100,6),(100,7),(100,8),(100,9),(100,10),(100,11),(100,12),(100,13),(100,14),(100,15),(100,16),(100,17),(100,18),(100,19),(100,20),(100,21),(100,22),(100,23),(100,24),(100,25),(100,26),(100,27),(100,28),(100,29),(100,30),(100,31),(100,32),(100,33),(100,34),(100,35),(100,36),(100,37),(100,38),(100,39),(100,40),(100,41),(100,42),(100,43),(100,44),(100,45),(100,46),(100,47),(100,48),(100,49),(100,50),(100,51),(100,52),(100,53),(100,54),(100,55),(100,56),(100,57),(100,58),(100,59),(100,60),(100,61),(100,62),(100,63),(100,64),(100,65),(100,66),(100,67),(100,68),(100,69),(100,70),(100,71),(100,72),(100,73),(100,74),(100,75),(100,76),(100,77),(100,78),(100,79),(100,80),(100,81),(100,82),(100,83),(100,84),(100,85),(100,86),(100,87),(100,88),(100,89),(100,90),(100,91),(100,92),(100,93),(100,94),(100,95),(100,96),(100,97),(100,98),(100,99),(100,100),(101,0),(101,1),(101,2),(101,3),(101,4),(101,5),(101,6),(101,7),(101,8),(101,9),(101,10),(101,11),(101,12),(101,13),(101,14),(101,15),(101,16),(101,17),(101,18),(101,19),(101,20),(101,21),(101,22),(101,23),(101,24),(101,25),(101,26),(101,27),(101,28),(101,29),(101,30),(101,31),(101,32),(101,33),(101,34),(101,35),(101,36),(101,37),(101,38),(101,39),(101,40),(101,41),(101,42),(101,43),(101,44),(101,45),(101,46),(101,47),(101,48),(101,49),(101,50),(101,51),(101,52),(101,53),(101,54),(101,55),(101,56),(101,57),(101,58),(101,59),(101,60),(101,61),(101,62),(101,63),(101,64),(101,65),(101,66),(101,67),(101,68),(101,69),(101,70),(101,71),(101,72),(101,73),(101,74),(101,75),(101,76),(101,77),(101,78),(101,79),(101,80),(101,81),(101,82),(101,83),(101,84),(101,85),(101,86),(101,87),(101,88),(101,89),(101,90),(101,91),(101,92),(101,93),(101,94),(101,95),(101,96),(101,97),(101,98),(101,99),(101,100),(101,101),(102,0),(102,1),(102,2),(102,3),(102,4),(102,5),(102,6),(102,7),(102,8),(102,9),(102,10),(102,11),(102,12),(102,13),(102,14),(102,15),(102,16),(102,17),(102,18),(102,19),(102,20),(102,21),(102,22),(102,23),(102,24),(102,25),(102,26),(102,27),(102,28),(102,29),(102,30),(102,31),(102,32),(102,33),(102,34),(102,35),(102,36),(102,37),(102,38),(102,39),(102,40),(102,41),(102,42),(102,43),(102,44),(102,45),(102,46),(102,47),(102,48),(102,49),(102,50),(102,51),(102,52),(102,53),(102,54),(102,55),(102,56),(102,57),(102,58),(102,59),(102,60),(102,61),(102,62),(102,63),(102,64),(102,65),(102,66),(102,67),(102,68),(102,69),(102,70),(102,71),(102,72),(102,73),(102,74),(102,75),(102,76),(102,77),(102,78),(102,79),(102,80),(102,81),(102,82),(102,83),(102,84),(102,85),(102,86),(102,87),(102,88),(102,89),(102,90),(102,91),(102,92),(102,93),(102,94),(102,95),(102,96),(102,97),(102,98),(102,99),(102,100),(102,101),(102,102),(103,0),(103,1),(103,2),(103,3),(103,4),(103,5),(103,6),(103,7),(103,8),(103,9),(103,10),(103,11),(103,12),(103,13),(103,14),(103,15),(103,16),(103,17),(103,18),(103,19),(103,20),(103,21),(103,22),(103,23),(103,24),(103,25),(103,26),(103,27),(103,28),(103,29),(103,30),(103,31),(103,32),(103,33),(103,34),(103,35),(103,36),(103,37),(103,38),(103,39),(103,40),(103,41),(103,42),(103,43),(103,44),(103,45),(103,46),(103,47),(103,48),(103,49),(103,50),(103,51),(103,52),(103,53),(103,54),(103,55),(103,56),(103,57),(103,58),(103,59),(103,60),(103,61),(103,62),(103,63),(103,64),(103,65),(103,66),(103,67),(103,68),(103,69),(103,70),(103,71),(103,72),(103,73),(103,74),(103,75),(103,76),(103,77),(103,78),(103,79),(103,80),(103,81),(103,82),(103,83),(103,84),(103,85),(103,86),(103,87),(103,88),(103,89),(103,90),(103,91),(103,92),(103,93),(103,94),(103,95),(103,96),(103,97),(103,98),(103,99),(103,100),(103,101),(103,102),(103,103),(104,0),(104,1),(104,2),(104,3),(104,4),(104,5),(104,6),(104,7),(104,8),(104,9),(104,10),(104,11),(104,12),(104,13),(104,14),(104,15),(104,16),(104,17),(104,18),(104,19),(104,20),(104,21),(104,22),(104,23),(104,24),(104,25),(104,26),(104,27),(104,28),(104,29),(104,30),(104,31),(104,32),(104,33),(104,34),(104,35),(104,36),(104,37),(104,38),(104,39),(104,40),(104,41),(104,42),(104,43),(104,44),(104,45),(104,46),(104,47),(104,48),(104,49),(104,50),(104,51),(104,52),(104,53),(104,54),(104,55),(104,56),(104,57),(104,58),(104,59),(104,60),(104,61),(104,62),(104,63),(104,64),(104,65),(104,66),(104,67),(104,68),(104,69),(104,70),(104,71),(104,72),(104,73),(104,74),(104,75),(104,76),(104,77),(104,78),(104,79),(104,80),(104,81),(104,82),(104,83),(104,84),(104,85),(104,86),(104,87),(104,88),(104,89),(104,90),(104,91),(104,92),(104,93),(104,94),(104,95),(104,96),(104,97),(104,98),(104,99),(104,100),(104,101),(104,102),(104,103),(104,104),(105,0),(105,1),(105,2),(105,3),(105,4),(105,5),(105,6),(105,7),(105,8),(105,9),(105,10),(105,11),(105,12),(105,13),(105,14),(105,15),(105,16),(105,17),(105,18),(105,19),(105,20),(105,21),(105,22),(105,23),(105,24),(105,25),(105,26),(105,27),(105,28),(105,29),(105,30),(105,31),(105,32),(105,33),(105,34),(105,35),(105,36),(105,37),(105,38),(105,39),(105,40),(105,41),(105,42),(105,43),(105,44),(105,45),(105,46),(105,47),(105,48),(105,49),(105,50),(105,51),(105,52),(105,53),(105,54),(105,55),(105,56),(105,57),(105,58),(105,59),(105,60),(105,61),(105,62),(105,63),(105,64),(105,65),(105,66),(105,67),(105,68),(105,69),(105,70),(105,71),(105,72),(105,73),(105,74),(105,75),(105,76),(105,77),(105,78),(105,79),(105,80),(105,81),(105,82),(105,83),(105,84),(105,85),(105,86),(105,87),(105,88),(105,89),(105,90),(105,91),(105,92),(105,93),(105,94),(105,95),(105,96),(105,97),(105,98),(105,99),(105,100),(105,101),(105,102),(105,103),(105,104),(105,105),(106,0),(106,1),(106,2),(106,3),(106,4),(106,5),(106,6),(106,7),(106,8),(106,9),(106,10),(106,11),(106,12),(106,13),(106,14),(106,15),(106,16),(106,17),(106,18),(106,19),(106,20),(106,21),(106,22),(106,23),(106,24),(106,25),(106,26),(106,27),(106,28),(106,29),(106,30),(106,31),(106,32),(106,33),(106,34),(106,35),(106,36),(106,37),(106,38),(106,39),(106,40),(106,41),(106,42),(106,43),(106,44),(106,45),(106,46),(106,47),(106,48),(106,49),(106,50),(106,51),(106,52),(106,53),(106,54),(106,55),(106,56),(106,57),(106,58),(106,59),(106,60),(106,61),(106,62),(106,63),(106,64),(106,65),(106,66),(106,67),(106,68),(106,69),(106,70),(106,71),(106,72),(106,73),(106,74),(106,75),(106,76),(106,77),(106,78),(106,79),(106,80),(106,81),(106,82),(106,83),(106,84),(106,85),(106,86),(106,87),(106,88),(106,89),(106,90),(106,91),(106,92),(106,93),(106,94),(106,95),(106,96),(106,97),(106,98),(106,99),(106,100),(106,101),(106,102),(106,103),(106,104),(106,105),(106,106),(107,0),(107,1),(107,2),(107,3),(107,4),(107,5),(107,6),(107,7),(107,8),(107,9),(107,10),(107,11),(107,12),(107,13),(107,14),(107,15),(107,16),(107,17),(107,18),(107,19),(107,20),(107,21),(107,22),(107,23),(107,24),(107,25),(107,26),(107,27),(107,28),(107,29),(107,30),(107,31),(107,32),(107,33),(107,34),(107,35),(107,36),(107,37),(107,38),(107,39),(107,40),(107,41),(107,42),(107,43),(107,44),(107,45),(107,46),(107,47),(107,48),(107,49),(107,50),(107,51),(107,52),(107,53),(107,54),(107,55),(107,56),(107,57),(107,58),(107,59),(107,60),(107,61),(107,62),(107,63),(107,64),(107,65),(107,66),(107,67),(107,68),(107,69),(107,70),(107,71),(107,72),(107,73),(107,74),(107,75),(107,76),(107,77),(107,78),(107,79),(107,80),(107,81),(107,82),(107,83),(107,84),(107,85),(107,86),(107,87),(107,88),(107,89),(107,90),(107,91),(107,92),(107,93),(107,94),(107,95),(107,96),(107,97),(107,98),(107,99),(107,100),(107,101),(107,102),(107,103),(107,104),(107,105),(107,106),(107,107),(108,0),(108,1),(108,2),(108,3),(108,4),(108,5),(108,6),(108,7),(108,8),(108,9),(108,10),(108,11),(108,12),(108,13),(108,14),(108,15),(108,16),(108,17),(108,18),(108,19),(108,20),(108,21),(108,22),(108,23),(108,24),(108,25),(108,26),(108,27),(108,28),(108,29),(108,30),(108,31),(108,32),(108,33),(108,34),(108,35),(108,36),(108,37),(108,38),(108,39),(108,40),(108,41),(108,42),(108,43),(108,44),(108,45),(108,46),(108,47),(108,48),(108,49),(108,50),(108,51),(108,52),(108,53),(108,54),(108,55),(108,56),(108,57),(108,58),(108,59),(108,60),(108,61),(108,62),(108,63),(108,64),(108,65),(108,66),(108,67),(108,68),(108,69),(108,70),(108,71),(108,72),(108,73),(108,74),(108,75),(108,76),(108,77),(108,78),(108,79),(108,80),(108,81),(108,82),(108,83),(108,84),(108,85),(108,86),(108,87),(108,88),(108,89),(108,90),(108,91),(108,92),(108,93),(108,94),(108,95),(108,96),(108,97),(108,98),(108,99),(108,100),(108,101),(108,102),(108,103),(108,104),(108,105),(108,106),(108,107),(108,108),(109,0),(109,1),(109,2),(109,3),(109,4),(109,5),(109,6),(109,7),(109,8),(109,9),(109,10),(109,11),(109,12),(109,13),(109,14),(109,15),(109,16),(109,17),(109,18),(109,19),(109,20),(109,21),(109,22),(109,23),(109,24),(109,25),(109,26),(109,27),(109,28),(109,29),(109,30),(109,31),(109,32),(109,33),(109,34),(109,35),(109,36),(109,37),(109,38),(109,39),(109,40),(109,41),(109,42),(109,43),(109,44),(109,45),(109,46),(109,47),(109,48),(109,49),(109,50),(109,51),(109,52),(109,53),(109,54),(109,55),(109,56),(109,57),(109,58),(109,59),(109,60),(109,61),(109,62),(109,63),(109,64),(109,65),(109,66),(109,67),(109,68),(109,69),(109,70),(109,71),(109,72),(109,73),(109,74),(109,75),(109,76),(109,77),(109,78),(109,79),(109,80),(109,81),(109,82),(109,83),(109,84),(109,85),(109,86),(109,87),(109,88),(109,89),(109,90),(109,91),(109,92),(109,93),(109,94),(109,95),(109,96),(109,97),(109,98),(109,99),(109,100),(109,101),(109,102),(109,103),(109,104),(109,105),(109,106),(109,107),(109,108),(109,109),(110,0),(110,1),(110,2),(110,3),(110,4),(110,5),(110,6),(110,7),(110,8),(110,9),(110,10),(110,11),(110,12),(110,13),(110,14),(110,15),(110,16),(110,17),(110,18),(110,19),(110,20),(110,21),(110,22),(110,23),(110,24),(110,25),(110,26),(110,27),(110,28),(110,29),(110,30),(110,31),(110,32),(110,33),(110,34),(110,35),(110,36),(110,37),(110,38),(110,39),(110,40),(110,41),(110,42),(110,43),(110,44),(110,45),(110,46),(110,47),(110,48),(110,49),(110,50),(110,51),(110,52),(110,53),(110,54),(110,55),(110,56),(110,57),(110,58),(110,59),(110,60),(110,61),(110,62),(110,63),(110,64),(110,65),(110,66),(110,67),(110,68),(110,69),(110,70),(110,71),(110,72),(110,73),(110,74),(110,75),(110,76),(110,77),(110,78),(110,79),(110,80),(110,81),(110,82),(110,83),(110,84),(110,85),(110,86),(110,87),(110,88),(110,89),(110,90),(110,91),(110,92),(110,93),(110,94),(110,95),(110,96),(110,97),(110,98),(110,99),(110,100),(110,101),(110,102),(110,103),(110,104),(110,105),(110,106),(110,107),(110,108),(110,109),(110,110),(111,0),(111,1),(111,2),(111,3),(111,4),(111,5),(111,6),(111,7),(111,8),(111,9),(111,10),(111,11),(111,12),(111,13),(111,14),(111,15),(111,16),(111,17),(111,18),(111,19),(111,20),(111,21),(111,22),(111,23),(111,24),(111,25),(111,26),(111,27),(111,28),(111,29),(111,30),(111,31),(111,32),(111,33),(111,34),(111,35),(111,36),(111,37),(111,38),(111,39),(111,40),(111,41),(111,42),(111,43),(111,44),(111,45),(111,46),(111,47),(111,48),(111,49),(111,50),(111,51),(111,52),(111,53),(111,54),(111,55),(111,56),(111,57),(111,58),(111,59),(111,60),(111,61),(111,62),(111,63),(111,64),(111,65),(111,66),(111,67),(111,68),(111,69),(111,70),(111,71),(111,72),(111,73),(111,74),(111,75),(111,76),(111,77),(111,78),(111,79),(111,80),(111,81),(111,82),(111,83),(111,84),(111,85),(111,86),(111,87),(111,88),(111,89),(111,90),(111,91),(111,92),(111,93),(111,94),(111,95),(111,96),(111,97),(111,98),(111,99),(111,100),(111,101),(111,102),(111,103),(111,104),(111,105),(111,106),(111,107),(111,108),(111,109),(111,110),(111,111),(112,0),(112,1),(112,2),(112,3),(112,4),(112,5),(112,6),(112,7),(112,8),(112,9),(112,10),(112,11),(112,12),(112,13),(112,14),(112,15),(112,16),(112,17),(112,18),(112,19),(112,20),(112,21),(112,22),(112,23),(112,24),(112,25),(112,26),(112,27),(112,28),(112,29),(112,30),(112,31),(112,32),(112,33),(112,34),(112,35),(112,36),(112,37),(112,38),(112,39),(112,40),(112,41),(112,42),(112,43),(112,44),(112,45),(112,46),(112,47),(112,48),(112,49),(112,50),(112,51),(112,52),(112,53),(112,54),(112,55),(112,56),(112,57),(112,58),(112,59),(112,60),(112,61),(112,62),(112,63),(112,64),(112,65),(112,66),(112,67),(112,68),(112,69),(112,70),(112,71),(112,72),(112,73),(112,74),(112,75),(112,76),(112,77),(112,78),(112,79),(112,80),(112,81),(112,82),(112,83),(112,84),(112,85),(112,86),(112,87),(112,88),(112,89),(112,90),(112,91),(112,92),(112,93),(112,94),(112,95),(112,96),(112,97),(112,98),(112,99),(112,100),(112,101),(112,102),(112,103),(112,104),(112,105),(112,106),(112,107),(112,108),(112,109),(112,110),(112,111),(112,112),(113,0),(113,1),(113,2),(113,3),(113,4),(113,5),(113,6),(113,7),(113,8),(113,9),(113,10),(113,11),(113,12),(113,13),(113,14),(113,15),(113,16),(113,17),(113,18),(113,19),(113,20),(113,21),(113,22),(113,23),(113,24),(113,25),(113,26),(113,27),(113,28),(113,29),(113,30),(113,31),(113,32),(113,33),(113,34),(113,35),(113,36),(113,37),(113,38),(113,39),(113,40),(113,41),(113,42),(113,43),(113,44),(113,45),(113,46),(113,47),(113,48),(113,49),(113,50),(113,51),(113,52),(113,53),(113,54),(113,55),(113,56),(113,57),(113,58),(113,59),(113,60),(113,61),(113,62),(113,63),(113,64),(113,65),(113,66),(113,67),(113,68),(113,69),(113,70),(113,71),(113,72),(113,73),(113,74),(113,75),(113,76),(113,77),(113,78),(113,79),(113,80),(113,81),(113,82),(113,83),(113,84),(113,85),(113,86),(113,87),(113,88),(113,89),(113,90),(113,91),(113,92),(113,93),(113,94),(113,95),(113,96),(113,97),(113,98),(113,99),(113,100),(113,101),(113,102),(113,103),(113,104),(113,105),(113,106),(113,107),(113,108),(113,109),(113,110),(113,111),(113,112),(113,113),(114,0),(114,1),(114,2),(114,3),(114,4),(114,5),(114,6),(114,7),(114,8),(114,9),(114,10),(114,11),(114,12),(114,13),(114,14),(114,15),(114,16),(114,17),(114,18),(114,19),(114,20),(114,21),(114,22),(114,23),(114,24),(114,25),(114,26),(114,27),(114,28),(114,29),(114,30),(114,31),(114,32),(114,33),(114,34),(114,35),(114,36),(114,37),(114,38),(114,39),(114,40),(114,41),(114,42),(114,43),(114,44),(114,45),(114,46),(114,47),(114,48),(114,49),(114,50),(114,51),(114,52),(114,53),(114,54),(114,55),(114,56),(114,57),(114,58),(114,59),(114,60),(114,61),(114,62),(114,63),(114,64),(114,65),(114,66),(114,67),(114,68),(114,69),(114,70),(114,71),(114,72),(114,73),(114,74),(114,75),(114,76),(114,77),(114,78),(114,79),(114,80),(114,81),(114,82),(114,83),(114,84),(114,85),(114,86),(114,87),(114,88),(114,89),(114,90),(114,91),(114,92),(114,93),(114,94),(114,95),(114,96),(114,97),(114,98),(114,99),(114,100),(114,101),(114,102),(114,103),(114,104),(114,105),(114,106),(114,107),(114,108),(114,109),(114,110),(114,111),(114,112),(114,113),(114,114),(115,0),(115,1),(115,2),(115,3),(115,4),(115,5),(115,6),(115,7),(115,8),(115,9),(115,10),(115,11),(115,12),(115,13),(115,14),(115,15),(115,16),(115,17),(115,18),(115,19),(115,20),(115,21),(115,22),(115,23),(115,24),(115,25),(115,26),(115,27),(115,28),(115,29),(115,30),(115,31),(115,32),(115,33),(115,34),(115,35),(115,36),(115,37),(115,38),(115,39),(115,40),(115,41),(115,42),(115,43),(115,44),(115,45),(115,46),(115,47),(115,48),(115,49),(115,50),(115,51),(115,52),(115,53),(115,54),(115,55),(115,56),(115,57),(115,58),(115,59),(115,60),(115,61),(115,62),(115,63),(115,64),(115,65),(115,66),(115,67),(115,68),(115,69),(115,70),(115,71),(115,72),(115,73),(115,74),(115,75),(115,76),(115,77),(115,78),(115,79),(115,80),(115,81),(115,82),(115,83),(115,84),(115,85),(115,86),(115,87),(115,88),(115,89),(115,90),(115,91),(115,92),(115,93),(115,94),(115,95),(115,96),(115,97),(115,98),(115,99),(115,100),(115,101),(115,102),(115,103),(115,104),(115,105),(115,106),(115,107),(115,108),(115,109),(115,110),(115,111),(115,112),(115,113),(115,114),(115,115),(116,0),(116,1),(116,2),(116,3),(116,4),(116,5),(116,6),(116,7),(116,8),(116,9),(116,10),(116,11),(116,12),(116,13),(116,14),(116,15),(116,16),(116,17),(116,18),(116,19),(116,20),(116,21),(116,22),(116,23),(116,24),(116,25),(116,26),(116,27),(116,28),(116,29),(116,30),(116,31),(116,32),(116,33),(116,34),(116,35),(116,36),(116,37),(116,38),(116,39),(116,40),(116,41),(116,42),(116,43),(116,44),(116,45),(116,46),(116,47),(116,48),(116,49),(116,50),(116,51),(116,52),(116,53),(116,54),(116,55),(116,56),(116,57),(116,58),(116,59),(116,60),(116,61),(116,62),(116,63),(116,64),(116,65),(116,66),(116,67),(116,68),(116,69),(116,70),(116,71),(116,72),(116,73),(116,74),(116,75),(116,76),(116,77),(116,78),(116,79),(116,80),(116,81),(116,82),(116,83),(116,84),(116,85),(116,86),(116,87),(116,88),(116,89),(116,90),(116,91),(116,92),(116,93),(116,94),(116,95),(116,96),(116,97),(116,98),(116,99),(116,100),(116,101),(116,102),(116,103),(116,104),(116,105),(116,106),(116,107),(116,108),(116,109),(116,110),(116,111),(116,112),(116,113),(116,114),(116,115),(116,116),(117,0),(117,1),(117,2),(117,3),(117,4),(117,5),(117,6),(117,7),(117,8),(117,9),(117,10),(117,11),(117,12),(117,13),(117,14),(117,15),(117,16),(117,17),(117,18),(117,19),(117,20),(117,21),(117,22),(117,23),(117,24),(117,25),(117,26),(117,27),(117,28),(117,29),(117,30),(117,31),(117,32),(117,33),(117,34),(117,35),(117,36),(117,37),(117,38),(117,39),(117,40),(117,41),(117,42),(117,43),(117,44),(117,45),(117,46),(117,47),(117,48),(117,49),(117,50),(117,51),(117,52),(117,53),(117,54),(117,55),(117,56),(117,57),(117,58),(117,59),(117,60),(117,61),(117,62),(117,63),(117,64),(117,65),(117,66),(117,67),(117,68),(117,69),(117,70),(117,71),(117,72),(117,73),(117,74),(117,75),(117,76),(117,77),(117,78),(117,79),(117,80),(117,81),(117,82),(117,83),(117,84),(117,85),(117,86),(117,87),(117,88),(117,89),(117,90),(117,91),(117,92),(117,93),(117,94),(117,95),(117,96),(117,97),(117,98),(117,99),(117,100),(117,101),(117,102),(117,103),(117,104),(117,105),(117,106),(117,107),(117,108),(117,109),(117,110),(117,111),(117,112),(117,113),(117,114),(117,115),(117,116),(117,117),(118,0),(118,1),(118,2),(118,3),(118,4),(118,5),(118,6),(118,7),(118,8),(118,9),(118,10),(118,11),(118,12),(118,13),(118,14),(118,15),(118,16),(118,17),(118,18),(118,19),(118,20),(118,21),(118,22),(118,23),(118,24),(118,25),(118,26),(118,27),(118,28),(118,29),(118,30),(118,31),(118,32),(118,33),(118,34),(118,35),(118,36),(118,37),(118,38),(118,39),(118,40),(118,41),(118,42),(118,43),(118,44),(118,45),(118,46),(118,47),(118,48),(118,49),(118,50),(118,51),(118,52),(118,53),(118,54),(118,55),(118,56),(118,57),(118,58),(118,59),(118,60),(118,61),(118,62),(118,63),(118,64),(118,65),(118,66),(118,67),(118,68),(118,69),(118,70),(118,71),(118,72),(118,73),(118,74),(118,75),(118,76),(118,77),(118,78),(118,79),(118,80),(118,81),(118,82),(118,83),(118,84),(118,85),(118,86),(118,87),(118,88),(118,89),(118,90),(118,91),(118,92),(118,93),(118,94),(118,95),(118,96),(118,97),(118,98),(118,99),(118,100),(118,101),(118,102),(118,103),(118,104),(118,105),(118,106),(118,107),(118,108),(118,109),(118,110),(118,111),(118,112),(118,113),(118,114),(118,115),(118,116),(118,117),(118,118),(119,0),(119,1),(119,2),(119,3),(119,4),(119,5),(119,6),(119,7),(119,8),(119,9),(119,10),(119,11),(119,12),(119,13),(119,14),(119,15),(119,16),(119,17),(119,18),(119,19),(119,20),(119,21),(119,22),(119,23),(119,24),(119,25),(119,26),(119,27),(119,28),(119,29),(119,30),(119,31),(119,32),(119,33),(119,34),(119,35),(119,36),(119,37),(119,38),(119,39),(119,40),(119,41),(119,42),(119,43),(119,44),(119,45),(119,46),(119,47),(119,48),(119,49),(119,50),(119,51),(119,52),(119,53),(119,54),(119,55),(119,56),(119,57),(119,58),(119,59),(119,60),(119,61),(119,62),(119,63),(119,64),(119,65),(119,66),(119,67),(119,68),(119,69),(119,70),(119,71),(119,72),(119,73),(119,74),(119,75),(119,76),(119,77),(119,78),(119,79),(119,80),(119,81),(119,82),(119,83),(119,84),(119,85),(119,86),(119,87),(119,88),(119,89),(119,90),(119,91),(119,92),(119,93),(119,94),(119,95),(119,96),(119,97),(119,98),(119,99),(119,100),(119,101),(119,102),(119,103),(119,104),(119,105),(119,106),(119,107),(119,108),(119,109),(119,110),(119,111),(119,112),(119,113),(119,114),(119,115),(119,116),(119,117),(119,118),(119,119),(120,0),(120,1),(120,2),(120,3),(120,4),(120,5),(120,6),(120,7),(120,8),(120,9),(120,10),(120,11),(120,12),(120,13),(120,14),(120,15),(120,16),(120,17),(120,18),(120,19),(120,20),(120,21),(120,22),(120,23),(120,24),(120,25),(120,26),(120,27),(120,28),(120,29),(120,30),(120,31),(120,32),(120,33),(120,34),(120,35),(120,36),(120,37),(120,38),(120,39),(120,40),(120,41),(120,42),(120,43),(120,44),(120,45),(120,46),(120,47),(120,48),(120,49),(120,50),(120,51),(120,52),(120,53),(120,54),(120,55),(120,56),(120,57),(120,58),(120,59),(120,60),(120,61),(120,62),(120,63),(120,64),(120,65),(120,66),(120,67),(120,68),(120,69),(120,70),(120,71),(120,72),(120,73),(120,74),(120,75),(120,76),(120,77),(120,78),(120,79),(120,80),(120,81),(120,82),(120,83),(120,84),(120,85),(120,86),(120,87),(120,88),(120,89),(120,90),(120,91),(120,92),(120,93),(120,94),(120,95),(120,96),(120,97),(120,98),(120,99),(120,100),(120,101),(120,102),(120,103),(120,104),(120,105),(120,106),(120,107),(120,108),(120,109),(120,110),(120,111),(120,112),(120,113),(120,114),(120,115),(120,116),(120,117),(120,118),(120,119),(120,120),(121,0),(121,1),(121,2),(121,3),(121,4),(121,5),(121,6),(121,7),(121,8),(121,9),(121,10),(121,11),(121,12),(121,13),(121,14),(121,15),(121,16),(121,17),(121,18),(121,19),(121,20),(121,21),(121,22),(121,23),(121,24),(121,25),(121,26),(121,27),(121,28),(121,29),(121,30),(121,31),(121,32),(121,33),(121,34),(121,35),(121,36),(121,37),(121,38),(121,39),(121,40),(121,41),(121,42),(121,43),(121,44),(121,45),(121,46),(121,47),(121,48),(121,49),(121,50),(121,51),(121,52),(121,53),(121,54),(121,55),(121,56),(121,57),(121,58),(121,59),(121,60),(121,61),(121,62),(121,63),(121,64),(121,65),(121,66),(121,67),(121,68),(121,69),(121,70),(121,71),(121,72),(121,73),(121,74),(121,75),(121,76),(121,77),(121,78),(121,79),(121,80),(121,81),(121,82),(121,83),(121,84),(121,85),(121,86),(121,87),(121,88),(121,89),(121,90),(121,91),(121,92),(121,93),(121,94),(121,95),(121,96),(121,97),(121,98),(121,99),(121,100),(121,101),(121,102),(121,103),(121,104),(121,105),(121,106),(121,107),(121,108),(121,109),(121,110),(121,111),(121,112),(121,113),(121,114),(121,115),(121,116),(121,117),(121,118),(121,119),(121,120),(121,121),(122,0),(122,1),(122,2),(122,3),(122,4),(122,5),(122,6),(122,7),(122,8),(122,9),(122,10),(122,11),(122,12),(122,13),(122,14),(122,15),(122,16),(122,17),(122,18),(122,19),(122,20),(122,21),(122,22),(122,23),(122,24),(122,25),(122,26),(122,27),(122,28),(122,29),(122,30),(122,31),(122,32),(122,33),(122,34),(122,35),(122,36),(122,37),(122,38),(122,39),(122,40),(122,41),(122,42),(122,43),(122,44),(122,45),(122,46),(122,47),(122,48),(122,49),(122,50),(122,51),(122,52),(122,53),(122,54),(122,55),(122,56),(122,57),(122,58),(122,59),(122,60),(122,61),(122,62),(122,63),(122,64),(122,65),(122,66),(122,67),(122,68),(122,69),(122,70),(122,71),(122,72),(122,73),(122,74),(122,75),(122,76),(122,77),(122,78),(122,79),(122,80),(122,81),(122,82),(122,83),(122,84),(122,85),(122,86),(122,87),(122,88),(122,89),(122,90),(122,91),(122,92),(122,93),(122,94),(122,95),(122,96),(122,97),(122,98),(122,99),(122,100),(122,101),(122,102),(122,103),(122,104),(122,105),(122,106),(122,107),(122,108),(122,109),(122,110),(122,111),(122,112),(122,113),(122,114),(122,115),(122,116),(122,117),(122,118),(122,119),(122,120),(122,121),(122,122),(123,0),(123,1),(123,2),(123,3),(123,4),(123,5),(123,6),(123,7),(123,8),(123,9),(123,10),(123,11),(123,12),(123,13),(123,14),(123,15),(123,16),(123,17),(123,18),(123,19),(123,20),(123,21),(123,22),(123,23),(123,24),(123,25),(123,26),(123,27),(123,28),(123,29),(123,30),(123,31),(123,32),(123,33),(123,34),(123,35),(123,36),(123,37),(123,38),(123,39),(123,40),(123,41),(123,42),(123,43),(123,44),(123,45),(123,46),(123,47),(123,48),(123,49),(123,50),(123,51),(123,52),(123,53),(123,54),(123,55),(123,56),(123,57),(123,58),(123,59),(123,60),(123,61),(123,62),(123,63),(123,64),(123,65),(123,66),(123,67),(123,68),(123,69),(123,70),(123,71),(123,72),(123,73),(123,74),(123,75),(123,76),(123,77),(123,78),(123,79),(123,80),(123,81),(123,82),(123,83),(123,84),(123,85),(123,86),(123,87),(123,88),(123,89),(123,90),(123,91),(123,92),(123,93),(123,94),(123,95),(123,96),(123,97),(123,98),(123,99),(123,100),(123,101),(123,102),(123,103),(123,104),(123,105),(123,106),(123,107),(123,108),(123,109),(123,110),(123,111),(123,112),(123,113),(123,114),(123,115),(123,116),(123,117),(123,118),(123,119),(123,120),(123,121),(123,122),(123,123),(124,0),(124,1),(124,2),(124,3),(124,4),(124,5),(124,6),(124,7),(124,8),(124,9),(124,10),(124,11),(124,12),(124,13),(124,14),(124,15),(124,16),(124,17),(124,18),(124,19),(124,20),(124,21),(124,22),(124,23),(124,24),(124,25),(124,26),(124,27),(124,28),(124,29),(124,30),(124,31),(124,32),(124,33),(124,34),(124,35),(124,36),(124,37),(124,38),(124,39),(124,40),(124,41),(124,42),(124,43),(124,44),(124,45),(124,46),(124,47),(124,48),(124,49),(124,50),(124,51),(124,52),(124,53),(124,54),(124,55),(124,56),(124,57),(124,58),(124,59),(124,60),(124,61),(124,62),(124,63),(124,64),(124,65),(124,66),(124,67),(124,68),(124,69),(124,70),(124,71),(124,72),(124,73),(124,74),(124,75),(124,76),(124,77),(124,78),(124,79),(124,80),(124,81),(124,82),(124,83),(124,84),(124,85),(124,86),(124,87),(124,88),(124,89),(124,90),(124,91),(124,92),(124,93),(124,94),(124,95),(124,96),(124,97),(124,98),(124,99),(124,100),(124,101),(124,102),(124,103),(124,104),(124,105),(124,106),(124,107),(124,108),(124,109),(124,110),(124,111),(124,112),(124,113),(124,114),(124,115),(124,116),(124,117),(124,118),(124,119),(124,120),(124,121),(124,122),(124,123),(124,124),(125,0),(125,1),(125,2),(125,3),(125,4),(125,5),(125,6),(125,7),(125,8),(125,9),(125,10),(125,11),(125,12),(125,13),(125,14),(125,15),(125,16),(125,17),(125,18),(125,19),(125,20),(125,21),(125,22),(125,23),(125,24),(125,25),(125,26),(125,27),(125,28),(125,29),(125,30),(125,31),(125,32),(125,33),(125,34),(125,35),(125,36),(125,37),(125,38),(125,39),(125,40),(125,41),(125,42),(125,43),(125,44),(125,45),(125,46),(125,47),(125,48),(125,49),(125,50),(125,51),(125,52),(125,53),(125,54),(125,55),(125,56),(125,57),(125,58),(125,59),(125,60),(125,61),(125,62),(125,63),(125,64),(125,65),(125,66),(125,67),(125,68),(125,69),(125,70),(125,71),(125,72),(125,73),(125,74),(125,75),(125,76),(125,77),(125,78),(125,79),(125,80),(125,81),(125,82),(125,83),(125,84),(125,85),(125,86),(125,87),(125,88),(125,89),(125,90),(125,91),(125,92),(125,93),(125,94),(125,95),(125,96),(125,97),(125,98),(125,99),(125,100),(125,101),(125,102),(125,103),(125,104),(125,105),(125,106),(125,107),(125,108),(125,109),(125,110),(125,111),(125,112),(125,113),(125,114),(125,115),(125,116),(125,117),(125,118),(125,119),(125,120),(125,121),(125,122),(125,123),(125,124),(125,125),(126,0),(126,1),(126,2),(126,3),(126,4),(126,5),(126,6),(126,7),(126,8),(126,9),(126,10),(126,11),(126,12),(126,13),(126,14),(126,15),(126,16),(126,17),(126,18),(126,19),(126,20),(126,21),(126,22),(126,23),(126,24),(126,25),(126,26),(126,27),(126,28),(126,29),(126,30),(126,31),(126,32),(126,33),(126,34),(126,35),(126,36),(126,37),(126,38),(126,39),(126,40),(126,41),(126,42),(126,43),(126,44),(126,45),(126,46),(126,47),(126,48),(126,49),(126,50),(126,51),(126,52),(126,53),(126,54),(126,55),(126,56),(126,57),(126,58),(126,59),(126,60),(126,61),(126,62),(126,63),(126,64),(126,65),(126,66),(126,67),(126,68),(126,69),(126,70),(126,71),(126,72),(126,73),(126,74),(126,75),(126,76),(126,77),(126,78),(126,79),(126,80),(126,81),(126,82),(126,83),(126,84),(126,85),(126,86),(126,87),(126,88),(126,89),(126,90),(126,91),(126,92),(126,93),(126,94),(126,95),(126,96),(126,97),(126,98),(126,99),(126,100),(126,101),(126,102),(126,103),(126,104),(126,105),(126,106),(126,107),(126,108),(126,109),(126,110),(126,111),(126,112),(126,113),(126,114),(126,115),(126,116),(126,117),(126,118),(126,119),(126,120),(126,121),(126,122),(126,123),(126,124),(126,125),(126,126),(127,0),(127,1),(127,2),(127,3),(127,4),(127,5),(127,6),(127,7),(127,8),(127,9),(127,10),(127,11),(127,12),(127,13),(127,14),(127,15),(127,16),(127,17),(127,18),(127,19),(127,20),(127,21),(127,22),(127,23),(127,24),(127,25),(127,26),(127,27),(127,28),(127,29),(127,30),(127,31),(127,32),(127,33),(127,34),(127,35),(127,36),(127,37),(127,38),(127,39),(127,40),(127,41),(127,42),(127,43),(127,44),(127,45),(127,46),(127,47),(127,48),(127,49),(127,50),(127,51),(127,52),(127,53),(127,54),(127,55),(127,56),(127,57),(127,58),(127,59),(127,60),(127,61),(127,62),(127,63),(127,64),(127,65),(127,66),(127,67),(127,68),(127,69),(127,70),(127,71),(127,72),(127,73),(127,74),(127,75),(127,76),(127,77),(127,78),(127,79),(127,80),(127,81),(127,82),(127,83),(127,84),(127,85),(127,86),(127,87),(127,88),(127,89),(127,90),(127,91),(127,92),(127,93),(127,94),(127,95),(127,96),(127,97),(127,98),(127,99),(127,100),(127,101),(127,102),(127,103),(127,104),(127,105),(127,106),(127,107),(127,108),(127,109),(127,110),(127,111),(127,112),(127,113),(127,114),(127,115),(127,116),(127,117),(127,118),(127,119),(127,120),(127,121),(127,122),(127,123),(127,124),(127,125),(127,126),(127,127),(128,0),(128,1),(128,2),(128,3),(128,4),(128,5),(128,6),(128,7),(128,8),(128,9),(128,10),(128,11),(128,12),(128,13),(128,14),(128,15),(128,16),(128,17),(128,18),(128,19),(128,20),(128,21),(128,22),(128,23),(128,24),(128,25),(128,26),(128,27),(128,28),(128,29),(128,30),(128,31),(128,32),(128,33),(128,34),(128,35),(128,36),(128,37),(128,38),(128,39),(128,40),(128,41),(128,42),(128,43),(128,44),(128,45),(128,46),(128,47),(128,48),(128,49),(128,50),(128,51),(128,52),(128,53),(128,54),(128,55),(128,56),(128,57),(128,58),(128,59),(128,60),(128,61),(128,62),(128,63),(128,64),(128,65),(128,66),(128,67),(128,68),(128,69),(128,70),(128,71),(128,72),(128,73),(128,74),(128,75),(128,76),(128,77),(128,78),(128,79),(128,80),(128,81),(128,82),(128,83),(128,84),(128,85),(128,86),(128,87),(128,88),(128,89),(128,90),(128,91),(128,92),(128,93),(128,94),(128,95),(128,96),(128,97),(128,98),(128,99),(128,100),(128,101),(128,102),(128,103),(128,104),(128,105),(128,106),(128,107),(128,108),(128,109),(128,110),(128,111),(128,112),(128,113),(128,114),(128,115),(128,116),(128,117),(128,118),(128,119),(128,120),(128,121),(128,122),(128,123),(128,124),(128,125),(128,126),(128,127),(128,128),(129,0),(129,1),(129,2),(129,3),(129,4),(129,5),(129,6),(129,7),(129,8),(129,9),(129,10),(129,11),(129,12),(129,13),(129,14),(129,15),(129,16),(129,17),(129,18),(129,19),(129,20),(129,21),(129,22),(129,23),(129,24),(129,25),(129,26),(129,27),(129,28),(129,29),(129,30),(129,31),(129,32),(129,33),(129,34),(129,35),(129,36),(129,37),(129,38),(129,39),(129,40),(129,41),(129,42),(129,43),(129,44),(129,45),(129,46),(129,47),(129,48),(129,49),(129,50),(129,51),(129,52),(129,53),(129,54),(129,55),(129,56),(129,57),(129,58),(129,59),(129,60),(129,61),(129,62),(129,63),(129,64),(129,65),(129,66),(129,67),(129,68),(129,69),(129,70),(129,71),(129,72),(129,73),(129,74),(129,75),(129,76),(129,77),(129,78),(129,79),(129,80),(129,81),(129,82),(129,83),(129,84),(129,85),(129,86),(129,87),(129,88),(129,89),(129,90),(129,91),(129,92),(129,93),(129,94),(129,95),(129,96),(129,97),(129,98),(129,99),(129,100),(129,101),(129,102),(129,103),(129,104),(129,105),(129,106),(129,107),(129,108),(129,109),(129,110),(129,111),(129,112),(129,113),(129,114),(129,115),(129,116),(129,117),(129,118),(129,119),(129,120),(129,121),(129,122),(129,123),(129,124),(129,125),(129,126),(129,127),(129,128),(129,129),(130,0),(130,1),(130,2),(130,3),(130,4),(130,5),(130,6),(130,7),(130,8),(130,9),(130,10),(130,11),(130,12),(130,13),(130,14),(130,15),(130,16),(130,17),(130,18),(130,19),(130,20),(130,21),(130,22),(130,23),(130,24),(130,25),(130,26),(130,27),(130,28),(130,29),(130,30),(130,31),(130,32),(130,33),(130,34),(130,35),(130,36),(130,37),(130,38),(130,39),(130,40),(130,41),(130,42),(130,43),(130,44),(130,45),(130,46),(130,47),(130,48),(130,49),(130,50),(130,51),(130,52),(130,53),(130,54),(130,55),(130,56),(130,57),(130,58),(130,59),(130,60),(130,61),(130,62),(130,63),(130,64),(130,65),(130,66),(130,67),(130,68),(130,69),(130,70),(130,71),(130,72),(130,73),(130,74),(130,75),(130,76),(130,77),(130,78),(130,79),(130,80),(130,81),(130,82),(130,83),(130,84),(130,85),(130,86),(130,87),(130,88),(130,89),(130,90),(130,91),(130,92),(130,93),(130,94),(130,95),(130,96),(130,97),(130,98),(130,99),(130,100),(130,101),(130,102),(130,103),(130,104),(130,105),(130,106),(130,107),(130,108),(130,109),(130,110),(130,111),(130,112),(130,113),(130,114),(130,115),(130,116),(130,117),(130,118),(130,119),(130,120),(130,121),(130,122),(130,123),(130,124),(130,125),(130,126),(130,127),(130,128),(130,129),(130,130),(131,0),(131,1),(131,2),(131,3),(131,4),(131,5),(131,6),(131,7),(131,8),(131,9),(131,10),(131,11),(131,12),(131,13),(131,14),(131,15),(131,16),(131,17),(131,18),(131,19),(131,20),(131,21),(131,22),(131,23),(131,24),(131,25),(131,26),(131,27),(131,28),(131,29),(131,30),(131,31),(131,32),(131,33),(131,34),(131,35),(131,36),(131,37),(131,38),(131,39),(131,40),(131,41),(131,42),(131,43),(131,44),(131,45),(131,46),(131,47),(131,48),(131,49),(131,50),(131,51),(131,52),(131,53),(131,54),(131,55),(131,56),(131,57),(131,58),(131,59),(131,60),(131,61),(131,62),(131,63),(131,64),(131,65),(131,66),(131,67),(131,68),(131,69),(131,70),(131,71),(131,72),(131,73),(131,74),(131,75),(131,76),(131,77),(131,78),(131,79),(131,80),(131,81),(131,82),(131,83),(131,84),(131,85),(131,86),(131,87),(131,88),(131,89),(131,90),(131,91),(131,92),(131,93),(131,94),(131,95),(131,96),(131,97),(131,98),(131,99),(131,100),(131,101),(131,102),(131,103),(131,104),(131,105),(131,106),(131,107),(131,108),(131,109),(131,110),(131,111),(131,112),(131,113),(131,114),(131,115),(131,116),(131,117),(131,118),(131,119),(131,120),(131,121),(131,122),(131,123),(131,124),(131,125),(131,126),(131,127),(131,128),(131,129),(131,130),(131,131),(132,0),(132,1),(132,2),(132,3),(132,4),(132,5),(132,6),(132,7),(132,8),(132,9),(132,10),(132,11),(132,12),(132,13),(132,14),(132,15),(132,16),(132,17),(132,18),(132,19),(132,20),(132,21),(132,22),(132,23),(132,24),(132,25),(132,26),(132,27),(132,28),(132,29),(132,30),(132,31),(132,32),(132,33),(132,34),(132,35),(132,36),(132,37),(132,38),(132,39),(132,40),(132,41),(132,42),(132,43),(132,44),(132,45),(132,46),(132,47),(132,48),(132,49),(132,50),(132,51),(132,52),(132,53),(132,54),(132,55),(132,56),(132,57),(132,58),(132,59),(132,60),(132,61),(132,62),(132,63),(132,64),(132,65),(132,66),(132,67),(132,68),(132,69),(132,70),(132,71),(132,72),(132,73),(132,74),(132,75),(132,76),(132,77),(132,78),(132,79),(132,80),(132,81),(132,82),(132,83),(132,84),(132,85),(132,86),(132,87),(132,88),(132,89),(132,90),(132,91),(132,92),(132,93),(132,94),(132,95),(132,96),(132,97),(132,98),(132,99),(132,100),(132,101),(132,102),(132,103),(132,104),(132,105),(132,106),(132,107),(132,108),(132,109),(132,110),(132,111),(132,112),(132,113),(132,114),(132,115),(132,116),(132,117),(132,118),(132,119),(132,120),(132,121),(132,122),(132,123),(132,124),(132,125),(132,126),(132,127),(132,128),(132,129),(132,130),(132,131),(132,132),(133,0),(133,1),(133,2),(133,3),(133,4),(133,5),(133,6),(133,7),(133,8),(133,9),(133,10),(133,11),(133,12),(133,13),(133,14),(133,15),(133,16),(133,17),(133,18),(133,19),(133,20),(133,21),(133,22),(133,23),(133,24),(133,25),(133,26),(133,27),(133,28),(133,29),(133,30),(133,31),(133,32),(133,33),(133,34),(133,35),(133,36),(133,37),(133,38),(133,39),(133,40),(133,41),(133,42),(133,43),(133,44),(133,45),(133,46),(133,47),(133,48),(133,49),(133,50),(133,51),(133,52),(133,53),(133,54),(133,55),(133,56),(133,57),(133,58),(133,59),(133,60),(133,61),(133,62),(133,63),(133,64),(133,65),(133,66),(133,67),(133,68),(133,69),(133,70),(133,71),(133,72),(133,73),(133,74),(133,75),(133,76),(133,77),(133,78),(133,79),(133,80),(133,81),(133,82),(133,83),(133,84),(133,85),(133,86),(133,87),(133,88),(133,89),(133,90),(133,91),(133,92),(133,93),(133,94),(133,95),(133,96),(133,97),(133,98),(133,99),(133,100),(133,101),(133,102),(133,103),(133,104),(133,105),(133,106),(133,107),(133,108),(133,109),(133,110),(133,111),(133,112),(133,113),(133,114),(133,115),(133,116),(133,117),(133,118),(133,119),(133,120),(133,121),(133,122),(133,123),(133,124),(133,125),(133,126),(133,127),(133,128),(133,129),(133,130),(133,131),(133,132),(133,133),(134,0),(134,1),(134,2),(134,3),(134,4),(134,5),(134,6),(134,7),(134,8),(134,9),(134,10),(134,11),(134,12),(134,13),(134,14),(134,15),(134,16),(134,17),(134,18),(134,19),(134,20),(134,21),(134,22),(134,23),(134,24),(134,25),(134,26),(134,27),(134,28),(134,29),(134,30),(134,31),(134,32),(134,33),(134,34),(134,35),(134,36),(134,37),(134,38),(134,39),(134,40),(134,41),(134,42),(134,43),(134,44),(134,45),(134,46),(134,47),(134,48),(134,49),(134,50),(134,51),(134,52),(134,53),(134,54),(134,55),(134,56),(134,57),(134,58),(134,59),(134,60),(134,61),(134,62),(134,63),(134,64),(134,65),(134,66),(134,67),(134,68),(134,69),(134,70),(134,71),(134,72),(134,73),(134,74),(134,75),(134,76),(134,77),(134,78),(134,79),(134,80),(134,81),(134,82),(134,83),(134,84),(134,85),(134,86),(134,87),(134,88),(134,89),(134,90),(134,91),(134,92),(134,93),(134,94),(134,95),(134,96),(134,97),(134,98),(134,99),(134,100),(134,101),(134,102),(134,103),(134,104),(134,105),(134,106),(134,107),(134,108),(134,109),(134,110),(134,111),(134,112),(134,113),(134,114),(134,115),(134,116),(134,117),(134,118),(134,119),(134,120),(134,121),(134,122),(134,123),(134,124),(134,125),(134,126),(134,127),(134,128),(134,129),(134,130),(134,131),(134,132),(134,133),(134,134),(135,0),(135,1),(135,2),(135,3),(135,4),(135,5),(135,6),(135,7),(135,8),(135,9),(135,10),(135,11),(135,12),(135,13),(135,14),(135,15),(135,16),(135,17),(135,18),(135,19),(135,20),(135,21),(135,22),(135,23),(135,24),(135,25),(135,26),(135,27),(135,28),(135,29),(135,30),(135,31),(135,32),(135,33),(135,34),(135,35),(135,36),(135,37),(135,38),(135,39),(135,40),(135,41),(135,42),(135,43),(135,44),(135,45),(135,46),(135,47),(135,48),(135,49),(135,50),(135,51),(135,52),(135,53),(135,54),(135,55),(135,56),(135,57),(135,58),(135,59),(135,60),(135,61),(135,62),(135,63),(135,64),(135,65),(135,66),(135,67),(135,68),(135,69),(135,70),(135,71),(135,72),(135,73),(135,74),(135,75),(135,76),(135,77),(135,78),(135,79),(135,80),(135,81),(135,82),(135,83),(135,84),(135,85),(135,86),(135,87),(135,88),(135,89),(135,90),(135,91),(135,92),(135,93),(135,94),(135,95),(135,96),(135,97),(135,98),(135,99),(135,100),(135,101),(135,102),(135,103),(135,104),(135,105),(135,106),(135,107),(135,108),(135,109),(135,110),(135,111),(135,112),(135,113),(135,114),(135,115),(135,116),(135,117),(135,118),(135,119),(135,120),(135,121),(135,122),(135,123),(135,124),(135,125),(135,126),(135,127),(135,128),(135,129),(135,130),(135,131),(135,132),(135,133),(135,134),(135,135),(136,0),(136,1),(136,2),(136,3),(136,4),(136,5),(136,6),(136,7),(136,8),(136,9),(136,10),(136,11),(136,12),(136,13),(136,14),(136,15),(136,16),(136,17),(136,18),(136,19),(136,20),(136,21),(136,22),(136,23),(136,24),(136,25),(136,26),(136,27),(136,28),(136,29),(136,30),(136,31),(136,32),(136,33),(136,34),(136,35),(136,36),(136,37),(136,38),(136,39),(136,40),(136,41),(136,42),(136,43),(136,44),(136,45),(136,46),Interrupted. λ> take 10 [(a,b,c) | c <- [1..], b <- [1..c-1], a <- [1..b-1], a^2 + b^2 == c^2 ] [(3,4,5),(6,8,10),(5,12,13),(9,12,15),(8,15,17),(12,16,20),(15,20,25),(7,24,25),(10,24,26),(20,21,29)] λ> take 100 [(a,b,c) | c <- [1..], b <- [1..c-1], a <- [1..b-1], a^2 + b^2 == c^2 ] [(3,4,5),(6,8,10),(5,12,13),(9,12,15),(8,15,17),(12,16,20),(15,20,25),(7,24,25),(10,24,26),(20,21,29),(18,24,30),(16,30,34),(21,28,35),(12,35,37),(15,36,39),(24,32,40),(9,40,41),(27,36,45),(30,40,50),(14,48,50),(24,45,51),(20,48,52),(28,45,53),(33,44,55),(40,42,58),(36,48,60),(11,60,61),(39,52,65),(33,56,65),(25,60,65),(16,63,65),(32,60,68),(42,56,70),(48,55,73),(24,70,74),(45,60,75),(21,72,75),(30,72,78),(48,64,80),(18,80,82),(51,68,85),(40,75,85),(36,77,85),(13,84,85),(60,63,87),(39,80,89),(54,72,90),(35,84,91),(57,76,95),(65,72,97),(60,80,100),(28,96,100),(20,99,101),(48,90,102),(40,96,104),(63,84,105),(56,90,106),(60,91,109),(66,88,110),(36,105,111),(15,112,113),(69,92,115),(80,84,116),(45,108,117),(56,105,119),(72,96,120),(22,120,122),(27,120,123),(75,100,125),(44,117,125),(35,120,125),(78,104,130),(66,112,130),(50,120,130),(32,126,130),(81,108,135),(64,120,136),(88,105,137),(84,112,140),(55,132,143),(100,105,145),(87,116,145),(24,143,145),(17,144,145),(96,110,146),(48,140,148),(51,140,149),(90,120,150),(42,144,150),(72,135,153),(93,124,155),(60,144,156),(85,132,157),(84,135,159),(96,128,160),(36,160,164),(99,132,165),(119,120,169),(65,156,169),(102,136,170)] λ> foldr (++) [] [[1,2,3],[4,5,6],[7,8,9]] [1,2,3,4,5,6,7,8,9] λ> take 3 (drop 5 [1..]) [6,7,8] λ> take 3 (drop 5 [0..]) [5,6,7] λ>