-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.C
More file actions
33 lines (33 loc) · 165 KB
/
graph.C
File metadata and controls
33 lines (33 loc) · 165 KB
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
#include<unistd.h>
void graph() {
TCanvas *c1 = new TCanvas("c1", "Graph title", 10, 40, 700, 450);
c1->SetGrid();
TMultiGraph *mg = new TMultiGraph();
const Int_t n = 2698;
Double_t x0[] = {0,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};
Double_t y0[] = {296.176831,296.307400,296.176831,296.242116,296.046262,296.307400,296.176831,296.176831,296.242116,296.307400,296.242116,296.176831,296.176831,296.242116,296.176831,296.242116,296.307400,296.307400,296.242116,296.242116,296.307400,296.176831,296.176831,295.980977,295.915692,296.046262,295.980977,295.980977,295.850408,295.654554,295.654554,295.589269,295.262846,295.262846,295.001707,295.066992,294.936423,294.740569,294.479430,294.414146,294.022438,293.957153,293.761299,293.434876,293.434876,292.782030,292.651460,292.325037,291.998614,291.802760,291.411052,291.084629,290.692921,290.692921,290.301213,289.909506,289.517798,289.387228,288.864951,288.734382,288.277390,287.820397,287.428689,287.036981,286.579989,286.318850,285.992427,285.535435,285.078442,284.556165,284.164457,283.642180,283.315757,282.924049,282.467057,282.075349,281.553072,281.226648,280.704371,280.377948,279.920956,279.463963,279.006971,278.680548,278.158270,277.831847,277.440139,276.983147,276.656724,276.069162,275.742739,275.351031,275.024608,274.502331,274.045338,273.653630,273.392492,272.870215,272.478507,272.086799,271.760376,271.368668,270.911675,270.585252,270.128260,269.736552,269.475413,269.083706,268.626713,268.235005,267.908582,267.582159,267.255736,266.733458,266.341751,266.015327,265.688904,265.297196,265.036058,264.579065,264.252642,263.926219,263.730365,263.208088,262.816380,262.620526,262.163534,261.902395,261.510687,261.184264,260.857841,260.596702,260.204995,260.009141,259.617433,259.356294,258.899302,258.507594,258.181171,257.789463,257.397755,257.136616,256.679624,256.418485,256.092062,255.765639,255.373931,255.047508,254.590516,328.362158,253.872384,253.545961,253.154253,328.362158,252.370838,251.913845,251.652707,251.260999,250.738722,250.347014,249.955306,249.563598,249.041321,248.714898,248.323190,247.996767,247.409205,247.148067,246.560505,246.299366,245.907658,245.450666,245.058958,244.601966,244.275542,243.818550,243.426842,242.969850,242.578142,242.121149,241.729442,241.272449,240.946026,240.423749,240.032041,239.575048,239.118056,238.595779,238.269356,237.877648,237.355371,236.767809,236.506670,236.049678,235.723255,235.266262,234.678700,234.221708,233.634146,233.242438,232.785446,232.263169,231.806176,231.414468,230.826907,230.435199,229.782352,229.521214,228.933652,228.476660,227.954383,227.758529,227.236252,226.713974,226.322267,225.865274,225.538851,225.277712,224.886005,224.233158,223.841450,223.449742,223.188604,222.862181,222.405188,222.078765,221.752342,221.360634,221.034211,220.838357,220.381364,220.054941,219.793803,219.336810,219.140956,218.879818,218.553394,218.422825,217.965833,217.704694,217.508840,217.117132,216.921278,216.790709,216.529571,216.268432,216.007294,215.811440,215.550301,215.354447,215.093309,214.962739,214.832170,214.636316,214.375178,214.179324,214.048754,214.048754,213.657047,213.722331,213.657047,213.526477,213.461193,213.265339,213.200054,212.938915,212.938915,213.004200,212.873631,212.743062,212.612492,212.547208,212.416638,212.416638,212.416638,212.155500,212.024931,212.090215,211.894361,211.763792,211.894361,211.633223,211.437369,211.437369,211.306799,211.176230,211.110946,210.915092,210.523384,210.653953,210.523384,210.523384,210.262245,210.131676,210.001107,209.870537,209.805253,209.413545,209.282976,209.021837,208.825983,208.695414,208.564845,208.564845,208.368991,208.042567,208.042567,207.781429,207.716144,207.650860,207.455006,207.389721,207.259152,206.998013,206.998013,206.932729,206.606305,206.736875,206.671590,206.475736,206.345167,206.279882,206.084028,205.953459,205.822890,205.692320,205.496467,205.496467,205.365897,205.300613,205.300613,205.170043,205.039474,204.974189,204.778336,204.778336,204.582482,204.647766,204.386628,204.451912,204.451912,204.321343,204.190774,204.125489,204.060204,203.929635,203.733781,203.799066,203.668497,203.733781,203.537927,203.276789,203.407358,203.276789,203.276789,203.211504,203.211504,203.146220,203.211504,202.885081,202.885081,202.885081,202.754512,202.558658,202.689227,202.689227,202.689227,202.623942,202.689227,202.558658,202.558658,202.362804,202.428088,202.428088,202.428088,202.362804,202.297519,202.297519,202.232235,202.232235,202.232235,202.166950,202.166950,202.101665,202.101665,202.036381,202.036381,202.101665,201.905811,202.036381,201.971096,201.971096,201.840527,201.840527,201.709957,201.709957,201.840527,201.905811,201.775242,201.840527,201.709957,201.644673,201.644673,201.644673,201.775242,201.644673,201.579388,201.448819,201.514104,201.579388,201.579388,201.514104,201.579388,201.448819,201.383534,201.383534,201.644673,201.448819,201.448819,201.448819,201.448819,201.318250,201.252965,201.187680,201.252965,201.187680,201.252965,201.383534,201.122396,201.122396,201.252965,201.187680,201.252965,201.187680,201.057111,201.122396,200.926542,200.926542,201.057111,201.122396,200.991826,200.926542,200.926542,200.795973,201.057111,200.861257,200.795973,200.730688,200.861257,200.795973,200.861257,200.926542,200.861257,200.665403,200.730688,200.730688,200.600119,200.600119,200.665403,200.730688,200.795973,200.795973,200.665403,200.600119,200.600119,200.600119,200.600119,200.534834,200.469549,200.600119,200.534834,200.469549,200.469549,200.534834,200.469549,200.273695,200.469549,200.534834,200.600119,200.469549,200.404265,200.338980,200.338980,200.404265,200.338980,200.338980,200.404265,200.273695,200.273695,200.273695,200.273695,200.273695,200.208411,200.208411,200.273695,200.273695,200.338980,200.208411,200.143126,200.273695,200.208411,200.077841,200.208411,200.208411,200.143126,200.143126,200.077841,200.012557,200.208411,200.077841,200.077841,200.012557,200.208411,200.143126,200.012557,200.208411,200.012557,200.143126,200.143126,200.143126,200.077841,200.077841,200.208411,200.273695,200.273695,200.273695,200.273695,200.208411,200.273695,200.404265,200.338980,200.534834,200.534834,200.534834,200.534834,200.600119,200.730688,200.600119,200.730688,200.795973,200.795973,200.991826,200.926542,200.926542,201.187680,201.057111,201.057111,201.252965,201.448819,201.318250,201.383534,201.448819,201.514104,201.579388,201.579388,201.709957,201.775242,201.905811,201.971096,201.840527,201.905811,202.101665,201.905811,202.232235,202.232235,202.166950,202.362804,202.297519,202.493373,202.558658,202.689227,202.558658,202.754512,202.819796,202.885081,202.819796,203.015650,203.080935,203.080935,203.211504,203.146220,203.342073,203.407358,203.472643,203.342073,203.407358,203.537927,203.668497,203.668497,203.864351,203.929635,203.929635,204.060204,203.929635,204.060204,204.060204,204.190774,204.190774,204.321343,204.386628,204.386628,204.517197,204.517197,204.647766,204.713051,204.778336,204.778336,204.778336,205.170043,205.039474,205.104759,205.039474,205.365897,205.235328,205.365897,205.431182,205.365897,205.627036,205.561751,205.692320,205.888174,205.757605,205.822890,205.953459,206.018744,206.214598,206.214598,206.345167,206.345167,206.410452,206.345167,206.475736,206.606305,206.606305,206.736875,206.932729,206.736875,206.998013,207.193867,206.998013,207.193867,207.259152,207.259152,207.324436,207.389721,207.389721,207.520290,207.650860,207.650860,207.650860,207.716144,207.911998,207.977283,207.977283,208.173137,208.173137,208.173137,208.173137,208.434275,208.434275,208.434275,208.760699,208.630129,208.760699,208.695414,208.891268,208.891268,208.956552,209.021837,209.021837,209.217691,209.282976,209.348260,209.413545,209.348260,209.544114,209.609399,209.609399,209.805253,209.805253,209.870537,209.935822,210.066391,210.001107,210.066391,210.131676,210.327530,210.327530,210.458099,210.458099,210.523384,210.588668,210.719238,210.719238,210.719238,210.915092,210.784522,211.045661,211.110946,211.176230,211.372084,211.176230,211.306799,211.372084,211.372084,211.633223,211.633223,211.698507,211.763792,211.763792,211.829077,211.894361,211.959646,211.959646,211.894361,212.155500,212.351354,212.416638,212.351354,212.612492,212.481923,212.743062,212.677777,212.743062,212.873631,213.004200,213.004200,213.069485,213.200054,213.200054,213.004200,213.200054,213.330623,213.395908,213.461193,213.591762,213.591762,213.722331,213.787616,213.852900,213.918185,213.983470,213.983470,214.114039,213.983470,214.244608,214.375178,214.440462,214.571031,214.440462,214.505747,214.701601,214.832170,214.701601,214.832170,214.897455,215.028024,215.028024,215.354447,215.223878,215.419732,215.289162,215.419732,215.485016,215.485016,215.680870,215.485016,215.811440,215.746155,215.811440,215.811440,216.007294,216.007294,216.072578,216.203147,216.333717,216.333717,216.399001,216.399001,216.464286,216.594855,216.660140,216.921278,216.921278,216.986563,216.855994,216.986563,216.986563,217.117132,217.182417,217.182417,217.378271,217.312986,217.247702,217.574125,217.639410,217.704694,217.769979,217.900548,217.900548,218.031117,218.031117,218.096402,218.161687,218.161687,218.226971,218.226971,218.422825,218.488110,218.618679,218.553394,218.683964,218.814533,218.945102,218.945102,219.010387,219.010387,219.075672,219.271526,219.271526,219.336810,219.271526,219.467379,219.532664,219.532664,219.597949,219.663233,219.728518,219.793803,219.924372,219.924372,219.989657,220.054941,220.120226,220.316080,220.316080,220.381364,220.446649,220.446649,220.577218,220.446649,220.642503,220.773072,220.838357,220.838357,220.903642,220.903642,221.164780,221.099495,221.230065,221.295349,221.295349,221.164780,221.491203,221.556488,221.687057,221.687057,221.752342,221.948196,221.817626,221.882911,221.948196,222.078765,222.209334,222.209334,222.405188,222.209334,222.535757,222.405188,222.470473,222.601042,222.731611,222.731611,222.796896,222.927465,222.927465,222.927465,223.058035,223.058035,223.188604,223.253889,223.253889,223.384458,223.384458,223.449742,223.515027,223.580312,223.841450,223.776166,223.841450,223.841450,223.906735,224.102589,224.102589,224.167873,224.167873,224.429012,224.363727,224.233158,224.494297,224.494297,224.624866,224.690151,224.755435,224.755435,224.690151,224.820720,224.951289,224.951289,225.212428,225.147143,225.212428,225.342997,225.408282,225.473566,225.538851,225.604136,225.604136,225.669420,225.799989,225.865274,225.799989,225.865274,226.061128,226.061128,226.256982,226.256982,226.322267,226.387551,226.387551,226.518121,226.648690,226.713974,226.713974,226.779259,226.844544,226.975113,227.040398,226.975113,226.975113,227.301536,227.236252,227.301536,227.366821,227.432105,227.497390,227.758529,227.562675,227.627959,227.693244,227.889098,227.889098,227.954383,227.954383,228.084952,227.954383,228.150236,228.280806,228.215521,228.476660,228.476660,228.476660,228.411375,228.607229,228.672514,228.737798,228.737798,228.803083,228.868368,229.064221,228.998937,229.064221,229.260075,229.194791,229.194791,229.390645,229.455929,229.455929,229.651783,229.586499,229.782352,229.782352,229.847637,229.912922,229.912922,229.978206,229.912922,230.174060,230.369914,230.369914,230.369914,230.369914,230.435199,230.565768,230.631053,230.500484,230.761622,230.761622,230.826907,230.761622,231.022761,231.088045,231.088045,231.218615,231.283899,231.283899,231.414468,231.349184,231.675607,231.610322,231.545038,231.806176,231.806176,231.871461,231.936746,232.002030,232.067315,232.263169,232.132600,232.132600,232.263169,232.393738,232.393738,232.459023,232.459023,232.524307,232.589592,232.785446,232.785446,232.785446,232.850731,232.981300,233.111869,233.242438,233.242438,233.242438,233.438292,233.438292,233.568862,233.438292,233.634146,233.699431,233.699431,233.764716,233.830000,234.025854,234.091139,234.156423,234.221708,234.221708,234.286993,234.352277,234.417562,234.417562,234.548131,234.548131,234.678700,234.743985,234.809270,234.939839,235.005124,235.005124,235.070408,235.135693,235.200978,235.266262,235.462116,235.396831,235.527401,235.527401,235.657970,235.723255,235.723255,235.853824,236.049678,235.919109,235.984393,236.049678,236.049678,236.114963,236.245532,236.376101,236.310816,236.441386,236.441386,236.506670,236.506670,236.506670,236.702524,236.702524,236.767809,236.833094,236.833094,236.963663,237.094232,237.028947,237.094232,237.224801,236.963663,237.290086,237.290086,237.420655,237.485940,237.681794,237.485940,237.485940,237.681794,237.812363,238.008217,237.812363,237.942932,238.008217,238.138786,238.204071,238.204071,238.269356,238.334640,238.465210,238.465210,238.530494,238.530494,238.661063,238.661063,238.726348,238.595779,238.791633,239.052771,239.052771,238.922202,239.183341,238.987487,239.183341,239.313910,239.379195,239.444479,239.509764,239.640333,239.575048,239.705618,239.705618,239.836187,239.901472,239.966756,239.901472,240.032041,240.097326,240.162610,240.032041,240.293179,240.358464,240.293179,240.489033,240.489033,240.619603,240.489033,240.619603,240.750172,240.750172,240.946026,240.880741,240.946026,241.011310,241.076595,241.141880,241.207164,241.272449,241.141880,241.076595,241.403018,241.403018,241.468303,241.533588,241.533588,241.729442,241.729442,241.794726,241.925295,241.729442,241.925295,242.186434,241.990580,242.121149,242.251719,242.251719,242.251719,242.382288,242.382288,242.643426,242.578142,242.643426,242.708711,242.708711,242.839280,242.839280,242.839280,242.904565,243.165704,243.165704,243.230988,243.230988,243.361558,243.296273,243.426842,243.492127,243.361558,243.622696,243.557411,243.622696,243.622696,243.818550,243.883835,243.949119,244.014404,244.014404,244.144973,244.144973,244.210258,244.275542,244.275542,244.406112,244.471396,244.471396,244.340827,244.601966,244.732535,244.732535,244.863104,244.732535,244.863104,244.993674,244.928389,245.058958,244.993674,245.124243,245.189527,245.254812,245.320097,245.189527,245.385381,245.450666,245.450666,245.450666,245.515951,245.646520,245.842374,245.972943,245.842374,245.907658,245.972943,246.038228,245.972943,246.103512,246.234082,246.103512,246.364651,246.429936,246.364651,246.429936,246.495220,246.691074,246.691074,246.691074,246.821643,246.756359,246.886928,246.821643,247.082782,247.017497,247.148067,247.213351,247.148067,247.148067,247.343921,247.409205,247.474490,247.409205,247.605059,247.474490,247.605059,247.800913,247.735628,247.931482,247.670344,247.996767,248.062052,248.127336,248.062052,248.127336,248.062052,248.192621,248.323190,248.388475,248.388475,248.323190,248.584329,248.584329,248.584329,248.714898,248.780183,248.780183,248.780183,249.041321,248.910752,249.041321,249.041321,249.171890,249.041321,249.302460,249.302460,249.367744,249.563598,249.433029,249.498314,249.563598,249.498314,249.759452,249.759452,249.824737,249.890021,249.824737,249.955306,250.020591,250.020591,250.085875,250.281729,250.216445,250.347014,250.347014,250.477583,250.412299,250.542868,250.608153,250.608153,250.673437,250.542868,250.738722,250.804006,250.934576,250.999860,251.065145,251.130430,251.065145,251.065145,251.195714,251.260999,251.391568,251.326284,251.456853,251.456853,251.522137,251.456853,251.587422,251.522137,251.717991,251.848561,251.979130,252.044415,251.979130,252.174984,252.305553,252.305553,252.370838,252.240269,252.370838,252.305553,252.436122,252.566692,252.697261,252.762546,252.697261,252.631976,252.827830,252.958400,252.893115,252.893115,253.023684,253.088969,253.154253,253.154253,253.154253,253.284823,253.284823,253.284823,253.415392,253.545961,253.480677,253.676531,253.611246,253.676531,253.741815,253.676531,253.676531,253.807100,253.872384,254.002954,254.133523,254.068238,254.068238,254.133523,254.264092,254.329377,254.329377,254.394662,254.329377,254.329377,254.525231,254.590516,254.655800,254.590516,254.655800,254.786369,254.786369,254.982223,254.916939,254.916939,255.112793,255.112793,255.112793,254.851654,255.178077,255.373931,255.308647,255.373931,255.373931,255.439216,255.504500,255.439216,255.569785,255.635070,255.569785,255.700354,255.569785,255.896208,255.830924,255.896208,255.961493,256.026778,256.092062,256.092062,256.157347,256.092062,256.222632,256.287916,256.353201,256.353201,256.418485,256.614339,256.483770,256.679624,256.810193,256.679624,256.744909,256.810193,256.875478,256.940763,256.744909,257.006047,257.071332,257.071332,257.136616,257.267186,257.267186,257.267186,257.332470,257.201901,257.332470,257.463040,257.463040,257.593609,257.724178,257.724178,257.789463,257.658894,257.789463,257.920032,257.985317,257.854748,257.985317,258.115886,258.115886,258.050601,258.246455,258.311740,258.377025,258.377025,258.377025,258.442309,258.638163,258.572879,258.703448,258.703448,258.703448,258.834017,258.834017,258.768732,259.029871,259.029871,259.029871,258.899302,259.160440,259.160440,259.225725,259.095156,259.356294,259.291010,259.356294,259.486864,259.552148,259.552148,259.617433,259.486864,259.552148,259.682717,259.748002,259.813287,259.878571,259.813287,260.009141,260.074425,260.009141,260.204995,260.204995,260.139710,260.074425,260.335564,260.335564,260.335564,260.400848,260.531418,260.531418,260.596702,260.596702,260.727272,260.792556,260.792556,260.857841,260.857841,260.923126,260.988410,260.923126,260.988410,261.118979,261.053695,261.184264,261.249549,261.314833,261.249549,261.380118,261.445403,261.445403,261.510687,261.510687,261.575972,261.771826,261.510687,261.706541,261.641257,261.837111,261.771826,261.641257,261.706541,261.967680,261.967680,262.032964,261.902395,262.098249,262.098249,262.163534,262.359388,262.163534,262.294103,262.359388,262.424672,262.424672,262.555242,262.489957,262.555242,262.489957,262.620526,262.751095,262.751095,262.881665,262.816380,262.946949,262.881665,262.946949,263.012234,263.012234,263.142803,263.273373,263.142803,263.338657,263.338657,263.338657,263.338657,263.403942,263.403942,263.665080,263.599796,263.665080,263.730365,263.730365,263.730365,263.665080,263.860934,263.860934,263.991504,263.991504,263.991504,263.991504,264.187358,264.122073,264.056788,264.187358,264.317927,264.252642,264.252642,264.448496,264.448496,264.513781,264.513781,264.579065,264.513781,264.905489,264.774919,264.774919,264.644350,264.709635,264.840204,264.905489,264.970773,264.970773,265.036058,264.970773,265.036058,265.166627,265.297196,265.231912,265.231912,265.362481,265.297196,265.231912,265.493050,265.493050,265.427766,265.493050,265.558335,265.623620,265.688904,265.623620,265.688904,265.754189,265.688904,265.819474,265.754189,266.015327,266.015327,266.080612,266.080612,266.015327,266.211181,266.211181,266.211181,266.407035,266.276466,266.407035,266.407035,266.537605,266.472320,266.407035,266.602889,266.537605,266.733458,266.733458,266.733458,266.798743,266.733458,266.864028,266.864028,266.929312,266.929312,267.059882,267.059882,266.994597,267.125166,267.125166,267.321020,267.190451,267.125166,267.321020,267.386305,267.451590,267.386305,267.386305,267.582159,267.516874,267.582159,267.712728,267.582159,267.647443,267.778013,267.712728,267.908582,267.908582,267.973867,267.973867,267.973867,268.104436,268.104436,268.235005,268.169721,268.169721,268.235005,268.235005,268.300290,268.300290,268.430859,268.496144,268.430859,268.365574,268.430859,268.626713,268.691998,268.691998,268.626713,268.822567,268.757282,268.953136,268.887852,268.822567,269.083706,269.018421,269.214275,269.148990,269.148990,269.148990,269.018421,269.279559,269.279559,269.344844,269.344844,269.344844,269.475413,269.540698,269.475413,269.540698,269.540698,269.605983,269.605983,269.671267,269.867121,269.801837,269.801837,269.801837,269.736552,269.997690,269.932406,270.062975,269.867121,269.932406,269.997690,270.193544,270.193544,270.258829,270.193544,270.258829,270.193544,270.324114,270.454683,270.389398,270.454683,270.454683,270.389398,270.585252,270.585252,270.781106,270.715822,270.781106,270.846391,270.781106,270.781106,270.846391,270.976960,270.781106,270.911675,271.042245,271.042245,271.042245,271.107529,271.172814,271.238099,271.107529,271.238099,271.238099,271.368668,271.368668,271.433953,271.368668,271.433953,271.433953,271.499237,271.499237,271.564522,271.564522,271.760376,271.629806,271.629806,271.760376,271.760376,271.760376,271.825660,271.956230,272.021514,271.825660,271.890945,271.890945,272.021514,272.021514,272.152084,272.086799,272.152084,272.217368,272.217368,272.347938,272.282653,272.413222,272.413222,272.413222,272.478507,272.347938,272.543791,272.543791,272.609076,272.609076,272.543791,272.674361,272.609076,272.739645,272.804930,272.739645,272.870215,272.870215,272.870215,272.870215,273.000784,273.066069,273.066069,273.196638,273.000784,273.196638,273.131353,273.131353,273.261922,273.261922,273.261922,273.327207,273.327207,273.327207,273.392492,273.457776,273.457776,273.523061,273.523061,273.588346,273.588346,273.653630,273.718915,273.718915,273.784200,273.653630,273.849484,273.784200,273.784200,273.980053,273.914769,273.980053,273.980053,274.045338,274.110623,274.045338,274.045338,274.045338,274.371761,274.241192,274.110623,274.175907,274.306477,274.306477,274.371761,274.371761,274.306477,274.567615,274.306477,274.437046,274.437046,274.567615,274.567615,274.567615,274.567615,274.698185,274.632900,274.698185,274.763469,274.763469,274.763469,274.959323,274.828754,274.894038,275.024608,275.024608,275.024608,275.155177,275.024608,275.155177,275.089892,275.155177,275.351031,275.024608,275.351031,275.220462,275.416316,275.351031,275.351031,275.481600,275.351031,275.416316,275.546885,275.285746,275.546885,275.546885,275.612169,275.612169,275.612169,275.742739,275.612169,275.677454,275.742739,275.742739,275.808023,275.873308,275.808023,275.873308,275.938593,275.938593,276.134447,275.938593,276.069162,276.003877,276.003877,276.199731,276.199731,276.199731,276.330301,276.265016,276.330301,276.395585,276.330301,276.395585,276.395585,276.395585,276.395585,276.722008,276.591439,276.591439,276.526154,276.526154,276.656724,276.656724,276.656724,276.787293,276.722008,276.722008,276.787293,276.787293,276.852578,276.917862,276.983147,277.048432,276.852578,276.983147,276.983147,277.113716,277.048432,277.179001,277.179001,277.309570,277.113716,277.179001,277.374855,277.244285,277.179001,277.309570,277.309570,277.440139,277.309570,277.440139,277.374855,277.505424,277.440139,277.570709,277.505424,277.570709,277.635993,277.570709,277.701278,277.766563,277.831847,277.701278,277.766563,277.701278,277.701278,277.831847,277.701278,277.962417,277.962417,277.962417,277.897132,278.027701,277.962417,278.027701,278.092986,278.092986,278.223555,278.158270,278.223555,278.158270,278.223555,278.288840,278.288840,278.354124,278.354124,278.288840,278.354124,278.419409,278.354124,278.354124,278.549978,278.484694,278.484694,278.615263,278.615263,278.680548,278.615263,278.549978,278.615263,278.680548,278.811117,278.745832,278.745832,278.745832,278.811117,278.745832,278.876401,278.941686,279.006971,278.876401,278.876401,278.941686,279.072255,279.006971,279.006971,278.941686,279.072255,279.006971,279.137540,279.398679,279.268109,279.202825,279.333394,279.202825,279.333394,279.398679,279.463963,279.333394,279.333394,279.529248,279.463963,279.529248,279.463963,279.529248,279.529248,279.398679,279.529248,279.725102,279.529248,279.659817,279.659817,279.594532,279.659817,279.855671,279.725102,279.790386,279.790386,279.725102,279.855671,279.986240,279.790386,279.790386,279.986240,279.920956,279.986240,279.920956,280.116810,280.116810,280.182094,279.920956,280.116810,280.247379,280.182094,280.247379,280.182094,280.312664,280.377948,280.247379,280.312664,280.377948,280.312664,280.247379,280.443233,280.508517,280.443233,280.508517,280.508517,280.573802,280.639087,280.573802,280.639087,280.573802,280.639087,280.639087,280.704371,280.639087,280.704371,280.704371,280.704371,280.834941,280.769656,280.769656,280.704371,280.834941,280.900225,280.965510,281.030795,280.900225,281.030795,280.900225,281.030795,281.030795,281.030795,281.096079,281.096079,281.161364,281.161364,281.291933,281.226648,281.226648,281.161364,281.357218,281.291933,281.422502,281.487787,281.357218,281.422502,281.422502,281.422502,281.487787,281.487787,281.422502,281.487787,281.553072,281.487787,281.422502,281.618356,281.553072,281.553072,281.422502,281.487787,281.553072,281.553072,281.748926,281.748926,281.879495,281.618356,281.814210,281.944780,281.814210,281.748926,281.879495,282.010064,281.944780,281.944780,281.814210,281.748926,282.010064,282.075349,282.010064,282.075349,282.140633,282.140633,282.075349,282.075349,282.205918,282.336487,282.140633,282.271203,282.140633,282.336487,282.271203,282.336487,282.401772,282.010064,282.336487,282.401772,282.467057,282.401772,282.336487,282.401772,282.401772,282.532341,282.597626,282.532341,282.597626,282.597626,282.532341,282.467057,282.662911,282.532341,282.662911,282.597626,282.597626,282.728195,282.662911,282.858764,282.793480,282.858764,282.858764,282.858764,282.858764,282.858764,282.858764,282.924049,282.989334,282.858764,282.924049,282.989334,282.924049,283.119903,283.119903,283.054618,282.924049,283.054618,283.054618,283.054618,283.119903,283.119903,283.185188,283.119903,283.250472,283.185188,283.315757,283.185188,283.250472,283.315757,283.250472,283.446326,283.511611,283.381042,283.446326,283.511611,283.315757,283.511611,283.511611,283.446326,283.576896,283.642180,283.576896,283.576896,283.576896,283.642180,283.511611,283.642180,283.772749,283.642180,283.772749,283.772749,283.707465,283.772749,283.707465,283.903319,283.903319,283.838034,283.838034,283.772749,283.903319,283.968603,283.903319,283.968603,283.968603,283.903319,283.903319,284.033888,283.968603,284.033888,284.033888,284.099173,284.164457,284.033888,284.099173,284.033888,284.164457,284.229742,284.229742,284.164457,284.229742,284.099173,284.229742,284.164457,284.360311,284.490880,284.295027,284.360311,284.425596,284.360311,284.360311,284.360311,284.360311,284.490880,284.556165,284.556165,284.425596,284.425596,284.621450,284.556165,284.556165,284.556165,284.556165,284.621450,284.686734,284.686734,284.686734,284.621450,284.686734,284.686734,284.752019,284.752019,284.686734,284.817304,284.817304,284.621450,284.882588,285.013158,284.817304,284.817304,284.752019,284.752019,284.947873,284.947873,284.947873,285.078442,284.947873,284.947873,285.013158,285.013158,285.143727,285.078442,285.013158,285.013158,285.078442,285.143727,285.209012,285.078442,285.013158,285.078442,285.274296,285.274296,285.078442,285.143727,285.274296,285.209012,285.339581,285.339581,285.274296,285.339581,285.339581,285.404865,285.404865,285.404865,285.535435,285.404865,285.404865,285.470150,285.470150,285.535435,285.470150,285.470150,285.600719,285.470150,285.600719,285.600719,285.600719,285.600719,285.600719,285.666004,285.796573,285.666004,285.600719,285.404865,285.666004,285.731289,285.666004,285.731289,285.796573,285.861858,285.861858,285.796573,285.861858,285.796573,285.927143,285.927143,285.861858,285.992427,285.927143,285.927143,286.057712,285.992427,285.796573,285.992427,286.057712,285.992427,285.992427,286.057712,286.057712,286.057712,286.122996,286.057712,286.122996,286.188281,286.122996,286.188281,285.992427,286.188281,286.253566,286.188281,286.253566,286.122996,286.188281,286.384135,286.253566,286.384135,286.318850,286.253566,286.384135,286.253566,286.253566,286.449420,286.384135,286.449420,286.449420,286.449420,286.449420,286.384135,286.514704,286.514704,286.514704,286.579989,286.514704,286.384135,286.579989,286.645274,286.514704,286.579989,286.579989,286.645274,286.645274,286.645274,286.645274,286.579989,286.775843,286.710558,286.710558,286.841127,286.775843,286.775843,286.775843,286.710558,286.775843,286.775843,286.775843,286.841127,286.710558,286.710558,286.841127,286.841127,286.906412,286.971697,286.906412,286.971697,287.167551,286.971697,286.841127,286.971697,286.971697,287.102266,287.036981,287.102266,287.167551,287.036981,287.167551,287.102266,287.036981,287.167551,287.036981,287.232835,287.232835,287.102266,287.167551,287.232835,287.167551,287.232835,287.232835,287.232835,287.232835,287.232835,287.232835,287.363405,287.428689,287.363405,287.298120,287.363405,287.428689,287.428689,287.363405,287.428689,287.363405,287.493974,287.363405,287.559259,287.493974,287.493974,287.559259,287.689828,287.493974,287.624543,287.559259,287.624543,287.559259,287.820397,287.624543,287.689828,287.755112,287.755112,287.624543,287.820397,287.755112,287.559259,287.755112,287.755112,287.950966,287.820397,287.755112,287.885682,287.950966,287.885682,287.885682,287.950966,287.950966,287.820397,287.950966,287.950966,287.885682,288.081536,288.016251,288.081536,288.016251,287.885682,288.016251,288.081536,288.146820,288.146820,288.081536,288.146820,288.016251,288.146820,288.146820,288.146820,288.212105,288.277390,288.277390,288.212105,288.146820,288.277390,288.342674,288.081536,288.277390,288.407959,288.342674,288.407959,288.342674,288.407959,288.277390,288.277390,288.342674,288.538528,288.538528,288.342674,288.407959,288.603813,288.538528,288.538528,288.603813,288.407959,288.473243,288.603813,288.603813,288.603813,288.603813,288.473243,288.669097,288.734382,288.734382,288.734382,288.669097,288.734382,288.734382,288.669097,288.669097,288.799667,288.734382,288.930236,288.864951,288.799667,288.734382,288.799667,288.864951,288.864951,288.864951,288.930236,288.864951,288.864951,288.864951,288.930236,288.995521,288.930236,288.930236,288.995521,288.930236,288.995521,288.995521,289.191375,289.060805,289.191375,288.930236,288.995521,289.060805,289.256659,289.126090,288.995521,289.256659,289.256659,289.191375,289.191375,289.191375,289.126090,289.126090,289.256659,289.256659,289.191375,289.321944,289.060805,289.387228,289.256659,289.191375,289.191375,289.452513,289.387228,289.321944,289.321944,289.321944,289.452513,289.387228,289.452513,289.452513,289.452513,289.452513,289.452513,289.387228,289.321944,289.321944,289.517798,289.583082,289.583082,289.648367,289.517798,289.583082,289.778936,289.648367,289.909506,289.909506};
TGraph *gr0 = new TGraph(n,x0,y0);
gr0->SetMarkerColor(2);
gr0->SetMarkerStyle(20);
mg->Add(gr0);
Double_t x1[] = {0,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};
Double_t y1[] = {296.908023,296.976986,296.976986,296.976986,297.045948,297.114911,297.252836,297.390761,297.390761,297.459724,297.459724,297.528687,297.528687,297.459724,297.528687,297.459724,297.459724,297.390761,297.321799,297.459724,297.390761,297.252836,297.045948,296.908023,296.770098,296.494247,296.149434,295.942546,295.666695,295.183957,294.977069,294.494330,293.873666,293.115077,292.632339,292.080638,291.322048,290.632422,289.942796,289.184206,288.218729,287.460140,286.701551,285.736074,284.908522,284.080970,283.322381,282.425867,281.874166,281.184539,280.425950,279.736324,278.908772,278.150183,277.253668,276.357154,275.322714,274.357237,273.322797,272.219395,271.184955,270.012590,268.771263,267.874748,266.702383,265.461056,264.357653,263.254251,262.219811,261.047446,260.150932,258.978567,257.944127,256.978650,255.806285,254.771845,253.806368,252.840891,251.806451,250.909937,249.875497,248.841058,248.013506,247.048029,246.013589,245.048112,244.289523,243.393008,242.565457,241.531017,240.565540,239.875913,238.979399,238.151847,237.255333,236.427781,235.462304,234.841640,233.876163,233.117574,232.427948,231.600396,230.772844,229.945292,229.324628,228.703965,227.945375,227.462637,226.841973,226.014421,225.462720,224.911019,224.359318,223.600729,222.980065,222.566289,221.876662,221.324961,220.635335,220.290522,219.531932,218.773343,217.945792,217.325128,216.773427,216.014837,215.463136,214.842472,214.221809,213.463219,213.049444,212.428780,211.808116,211.049527,210.428863,209.601311,208.842722,208.015170,207.463469,206.360067,205.808366,204.911851,204.153262,203.532598,202.636084,202.015420,201.118906,200.291354,199.256914,331.044533,197.463885,196.705296,195.601894,331.044533,193.739902,192.636500,191.533098,190.636583,189.602143,188.705629,187.740152,186.705712,185.809198,184.843721,183.947206,182.981729,182.223140,181.188700,180.154261,179.188784,178.361232,177.395755,176.292352,175.395838,174.499324,173.395921,172.637332,171.533930,170.637415,169.602976,168.637499,167.465134,166.499657,165.465217,164.292852,163.051524,161.948122,160.775757,159.603392,158.499989,157.189699,155.879409,154.500156,153.258828,151.810613,150.293434,148.707294,147.328041,145.810862,144.431609,142.845468,141.673103,140.362813,139.121486,137.949120,136.776755,135.742316,134.707876,133.673436,132.294183,131.466632,130.639080,129.604640,128.708126,127.880574,127.121985,126.225470,125.397919,124.708292,124.018666,123.191114,122.432525,121.742898,120.984309,120.363645,119.742982,119.191280,118.846467,118.087878,117.536177,116.846550,116.432774,115.674185,115.191447,114.570783,113.950119,113.398418,112.984642,112.432941,111.950202,111.743314,111.191613,110.708875,110.433024,110.019248,109.743398,109.398584,109.260659,109.053771,108.915846,108.708958,108.571033,108.571033,108.502070,108.295182,108.502070,108.502070,108.364145,108.571033,108.502070,108.639995,108.639995,108.777921,108.708958,108.984809,108.984809,109.122734,109.260659,109.398584,109.536510,109.398584,109.605472,109.467547,109.191697,109.053771,108.639995,108.295182,107.674518,107.398668,106.778004,106.364228,106.019415,105.467714,105.053938,104.709124,104.226386,103.950535,103.398834,103.260909,102.640245,102.226469,101.950619,101.605805,101.398917,100.985141,100.571366,100.364478,99.881739,99.467963,99.192113,98.778337,98.571449,98.226636,98.088710,97.674934,97.468046,97.330121,97.054271,96.778420,96.433607,96.157756,96.019831,95.950868,95.743980,95.537092,95.330204,95.123316,94.916428,94.778503,94.778503,94.433690,94.226802,93.950951,93.813026,93.675101,93.537176,93.399250,93.192362,93.054437,92.847549,92.709624,92.709624,92.502736,92.364811,92.157923,92.088960,91.951035,91.951035,91.744147,91.675184,91.468296,91.468296,91.399333,91.330371,91.192446,91.054520,90.847632,90.847632,90.778670,90.571782,90.502819,90.433856,90.226968,90.226968,90.226968,90.020081,90.020081,89.951118,89.951118,89.882155,89.813193,89.813193,89.744230,89.744230,89.675267,89.606305,89.606305,89.606305,89.606305,89.606305,89.606305,89.606305,89.606305,89.675267,89.675267,89.606305,89.744230,89.606305,89.468379,89.399417,89.330454,89.192529,89.123566,89.123566,88.916678,89.054603,88.916678,88.916678,88.916678,88.847716,88.778753,88.709790,88.709790,88.571865,88.640828,88.502902,88.502902,88.296014,88.433940,88.364977,88.433940,88.433940,88.364977,88.296014,88.158089,88.158089,88.227052,88.158089,88.158089,88.089126,88.158089,88.020164,88.089126,88.020164,88.020164,87.882238,87.951201,87.951201,87.951201,88.020164,87.951201,87.882238,87.882238,87.744313,87.813276,87.744313,87.744313,87.813276,87.675350,87.675350,87.813276,87.606388,87.606388,87.606388,87.606388,87.675350,87.606388,87.468463,87.537425,87.606388,87.606388,87.537425,87.468463,87.537425,87.537425,87.537425,87.399500,87.468463,87.261575,87.399500,87.330537,87.330537,87.537425,87.261575,87.330537,87.330537,87.261575,87.261575,87.261575,87.261575,87.330537,87.261575,87.192612,87.123649,87.330537,87.192612,87.192612,87.192612,87.123649,87.123649,87.123649,87.054687,87.192612,87.054687,87.123649,87.123649,87.054687,87.054687,86.985724,86.985724,87.123649,87.054687,87.054687,87.192612,87.123649,86.916761,86.985724,86.985724,87.054687,86.985724,86.985724,86.985724,86.985724,86.985724,86.916761,86.985724,86.985724,86.847799,86.916761,86.916761,86.985724,87.054687,86.985724,87.192612,87.192612,87.123649,87.330537,87.330537,87.399500,87.606388,87.675350,87.675350,87.813276,88.020164,88.089126,88.227052,88.364977,88.640828,88.778753,88.985641,89.123566,89.330454,89.537342,89.744230,89.951118,90.158006,90.502819,90.640744,90.778670,91.054520,91.399333,91.537259,91.675184,92.019997,92.226885,92.433773,92.571698,92.847549,93.123400,93.330288,93.468213,93.950951,94.088877,94.226802,94.502653,94.709541,94.985391,95.330204,95.606055,95.743980,95.950868,96.019831,96.433607,96.709457,96.916345,97.123233,97.330121,97.537009,97.812860,98.019748,98.364561,98.433524,98.778337,99.054187,99.054187,99.467963,99.743814,99.812776,100.157590,100.433440,100.640328,100.847216,101.192029,101.329955,101.674768,101.812693,102.019581,102.157506,102.433357,102.847133,102.916096,103.191946,103.329871,103.536759,103.743647,104.019498,104.226386,104.433274,104.709124,104.778087,105.122900,105.398751,105.605639,105.881489,105.881489,106.088377,106.364228,106.571116,106.846966,106.984892,107.260742,107.398668,107.605556,107.881406,107.950369,108.157257,108.571033,108.708958,108.984809,109.191697,109.329622,109.605472,109.743398,110.019248,110.226136,110.433024,110.639912,110.846800,111.053688,111.191613,111.605389,111.674352,111.881240,112.019165,112.363978,112.501904,112.708792,112.915679,113.122567,113.329455,113.605306,113.743231,114.157007,114.225970,114.294932,114.639746,114.846634,115.122484,115.122484,115.467297,115.743148,115.881073,116.018999,116.294849,116.363812,116.570700,116.777588,117.053438,117.260326,117.536177,117.674102,118.018915,118.018915,118.294766,118.432691,118.639579,118.846467,119.053355,119.398168,119.467131,119.605056,119.880907,120.018832,120.225720,120.432608,120.708459,120.777421,120.984309,121.260160,121.467048,121.673936,121.742898,121.949786,122.225637,122.363562,122.639413,122.777338,122.984226,123.260077,123.398002,123.535927,123.742815,123.949703,124.087628,124.363479,124.570367,124.846217,124.984143,125.122068,125.328956,125.397919,125.466881,125.880657,126.087545,126.294433,126.501321,126.777172,126.846134,127.053022,127.190947,127.466798,127.604723,127.673686,127.880574,128.156425,128.225387,128.432275,128.639163,128.846051,129.121902,129.259827,129.397752,129.604640,129.949453,130.087379,130.156341,130.294267,130.501155,130.570117,130.983893,131.121818,131.328706,131.328706,131.673520,131.949370,132.018333,132.225221,132.363146,132.570034,132.707959,132.914847,133.052773,133.397586,133.535511,133.673436,133.880324,134.087212,134.225138,134.294100,134.500988,134.707876,134.845801,135.121652,135.190615,135.535428,135.604390,135.880241,135.949204,136.225054,136.294017,136.569868,136.776755,136.845718,137.052606,137.259494,137.466382,137.535345,137.880158,138.018083,138.156008,138.362896,138.431859,138.638747,138.914598,139.052523,139.259411,139.397336,139.604224,139.811112,139.880075,140.018000,140.293851,140.500738,140.500738,140.776589,140.914514,141.121402,141.259328,141.604141,141.673103,141.811029,141.948954,142.155842,142.155842,142.569618,142.638581,142.845468,143.052356,143.190282,143.397170,143.535095,143.741983,143.879908,144.017833,144.293684,144.362647,144.500572,144.776423,144.914348,144.983311,145.259161,145.535012,145.603974,145.810862,145.948788,146.155676,146.224638,146.431526,146.500489,146.707377,146.983227,147.121153,147.190115,147.397003,147.534928,147.741816,147.948704,148.155592,148.293518,148.362480,148.569368,148.776256,148.845219,149.052107,149.258995,149.396920,149.603808,149.810696,149.879659,150.017584,150.224472,150.362397,150.569285,150.638248,150.845136,150.983061,151.258911,151.396837,151.465799,151.672687,151.810613,152.017501,152.017501,152.362314,152.431276,152.707127,152.914015,152.982978,153.120903,153.258828,153.534679,153.672604,153.810529,153.948455,154.155343,154.293268,154.362231,154.500156,154.707044,154.776006,154.982894,155.120820,155.258745,155.327708,155.534596,155.741484,155.948371,156.086297,156.086297,156.500073,156.569035,156.706961,156.775923,157.051774,157.189699,157.327624,157.465550,157.672438,157.810363,157.948288,158.086214,158.224139,158.431027,158.499989,158.775840,158.844803,158.844803,159.327541,159.465467,159.534429,159.810280,159.810280,159.948205,160.155093,160.293018,160.499906,160.706794,160.775757,160.775757,161.120570,161.258495,161.396421,161.741234,161.741234,161.879159,162.017084,162.155010,162.292935,162.499823,162.637748,162.706711,162.844636,163.258412,163.120487,163.258412,163.534263,163.741151,163.741151,163.879076,164.085964,164.223889,164.361814,164.499740,164.637665,164.706628,164.982478,165.120404,165.327292,165.396254,165.534179,165.810030,165.947955,166.016918,166.154843,166.292769,166.499657,166.637582,166.913432,166.913432,167.120320,167.327208,167.465134,167.534096,167.534096,167.672022,168.016835,168.085797,168.292685,168.430611,168.637499,168.706461,168.982312,169.120237,169.189200,169.396088,169.534013,169.602976,169.740901,169.947789,170.016752,170.223640,170.361565,170.637415,170.706378,170.775341,170.913266,171.120154,171.327042,171.464967,171.533930,171.602892,171.809780,171.947706,172.016668,172.292519,172.361482,172.499407,172.637332,172.844220,172.982145,173.051108,173.257996,173.326959,173.602809,173.602809,173.809697,173.947622,174.154510,174.223473,174.361398,174.499324,174.637249,174.775174,174.982062,175.119987,175.188950,175.395838,175.533763,175.740651,175.947539,175.947539,175.947539,176.154427,176.361315,176.499240,176.637166,176.844054,176.913016,177.119904,177.257830,177.395755,177.533680,177.602643,177.809531,177.947456,178.085381,178.223307,178.361232,178.430195,178.637083,178.843970,178.912933,179.050858,179.188784,179.326709,179.464634,179.602560,179.740485,179.878410,180.016335,180.361149,180.361149,180.361149,180.636999,180.636999,180.843887,181.050775,181.119738,181.257663,181.395588,181.464551,181.671439,181.740402,182.016252,182.085215,182.292103,182.430028,182.498991,182.705879,182.843804,182.843804,183.119655,183.257580,183.326543,183.533430,183.602393,183.809281,184.016169,184.016169,184.154094,184.360982,184.429945,184.636833,184.774758,184.843721,184.981646,185.188534,185.395422,185.464385,185.602310,185.740235,185.878160,186.016086,186.154011,186.291936,186.291936,186.636750,186.705712,186.843638,186.912600,187.119488,187.257413,187.326376,187.533264,187.602227,187.809115,187.947040,188.084965,188.153928,188.291853,188.429778,188.567704,188.705629,188.912517,188.981480,189.119405,189.188368,189.395256,189.533181,189.602143,189.533181,189.946957,190.015919,190.084882,190.222807,190.429695,190.429695,190.567621,190.636583,190.843471,191.119322,191.119322,191.119322,191.326210,191.395172,191.671023,191.808948,191.808948,191.877911,192.153761,192.222724,192.498575,192.498575,192.636500,192.843388,192.843388,193.119238,193.119238,193.257164,193.257164,193.601977,193.739902,193.739902,193.877828,193.946790,194.084716,194.222641,194.498491,194.498491,194.636417,194.705379,194.843305,194.981230,194.981230,195.257081,195.395006,195.532931,195.670856,195.739819,195.808782,195.946707,196.222558,196.222558,196.498408,196.429446,196.567371,196.774259,196.843221,197.050109,197.050109,197.256997,197.394923,197.463885,197.601811,197.670773,197.877661,197.877661,198.084549,198.222474,198.291437,198.429362,198.498325,198.636250,198.843138,198.912101,199.118989,199.118989,199.256914,199.325877,199.463802,199.601727,199.670690,199.877578,199.946541,199.946541,200.222391,200.291354,200.567204,200.429279,200.705130,200.843055,200.980980,201.049943,201.187868,201.256831,201.394756,201.463719,201.670607,201.739569,201.877495,202.015420,202.153345,202.222308,202.360233,202.429196,202.567121,202.705046,202.774009,202.980897,202.980897,203.118822,203.256748,203.463636,203.670524,203.670524,203.739486,203.739486,203.946374,204.084299,204.222225,204.429113,204.429113,204.567038,204.636001,204.773926,204.842889,204.980814,205.118739,205.256664,205.394590,205.532515,205.601478,205.739403,205.808366,205.946291,205.946291,206.222141,206.360067,206.635917,206.429029,206.566955,206.773843,206.842805,206.911768,207.049693,207.187619,207.256581,207.256581,207.463469,207.670357,207.808282,207.808282,208.015170,208.015170,208.222058,208.222058,208.359984,208.497909,208.635834,208.773759,208.842722,208.980647,209.118573,209.187535,209.325461,209.325461,209.394423,209.601311,209.739237,209.877162,209.946124,210.153012,210.221975,210.290938,210.359900,210.497826,210.635751,210.635751,210.773676,210.980564,211.187452,211.118489,211.256415,211.325377,211.463303,211.601228,211.739153,211.808116,211.946041,212.015004,212.152929,212.221892,212.359817,212.428780,212.635668,212.704630,212.842556,212.911518,213.049444,213.049444,213.256332,213.394257,213.532182,213.601145,213.670107,213.876995,213.876995,214.014921,214.152846,214.359734,214.290771,214.428697,214.566622,214.635584,214.635584,214.911435,214.980398,215.049360,215.187286,215.256248,215.394174,215.463136,215.601062,215.601062,215.670024,215.807949,216.083800,216.083800,216.221725,216.290688,216.428613,216.566539,216.566539,216.635501,216.773427,216.773427,216.980314,217.118240,217.187202,217.325128,217.463053,217.600978,217.669941,217.738904,217.876829,217.945792,218.014754,218.221642,218.221642,218.359567,218.428530,218.566455,218.704381,218.773343,218.842306,218.980231,219.049194,219.187119,219.394007,219.600895,219.600895,219.738820,219.738820,219.945708,219.945708,220.083634,220.221559,220.566372,220.221559,220.497410,220.497410,220.842223,220.842223,220.911185,220.980148,221.118073,221.187036,221.324961,221.393924,221.531849,221.669775,221.738737,221.876662,221.945625,222.014588,222.014588,222.152513,222.290438,222.359401,222.428364,222.497326,222.704214,222.704214,222.911102,222.980065,223.049027,223.393841,223.324878,223.324878,223.462803,223.669691,223.669691,223.807617,223.945542,224.014505,224.152430,224.221392,224.221392,224.428280,224.497243,224.566206,224.635168,224.635168,224.842056,224.911019,225.048944,225.117907,225.048944,225.324795,225.255832,225.324795,225.393757,225.600645,225.738571,225.669608,225.807533,225.876496,226.014421,226.290272,226.152347,226.290272,226.428197,226.566122,226.566122,226.635085,226.704048,226.910936,226.979898,227.117824,227.186786,227.255749,227.324712,227.462637,227.669525,227.738487,227.669525,227.807450,227.876413,228.014338,228.152263,228.221226,228.221226,228.359151,228.428114,228.497077,228.703965,228.841890,228.703965,228.910853,229.048778,229.048778,229.255666,229.255666,229.324628,229.462554,229.531516,229.669442,229.669442,229.945292,230.014255,229.945292,230.014255,230.152180,230.290105,230.428031,230.428031,230.496993,230.703881,230.634919,230.910769,230.910769,231.048695,231.048695,231.186620,231.255583,231.462470,231.462470,231.531433,231.600396,231.669358,231.807284,231.945209,232.014172,232.014172,232.221060,232.221060,232.358985,232.496910,232.565873,232.634835,232.772761,232.772761,232.979649,232.979649,233.048611,233.048611,233.255499,233.393425,233.531350,233.531350,233.600313,233.669275,233.738238,233.876163,233.876163,233.945126,234.152014,234.289939,234.220976,234.358902,234.427864,234.565790,234.565790,234.634752,234.910603,234.841640,234.910603,234.979565,235.117491,235.255416,235.255416,235.393341,235.531267,235.531267,235.600229,235.738155,235.807117,235.876080,235.945043,236.082968,236.082968,236.151930,236.220893,236.427781,236.565706,236.634669,236.703632,236.703632,236.841557,236.910520,236.979482,237.117408,236.979482,237.255333,237.324295,237.531183,237.462221,237.531183,237.600146,237.669109,237.669109,237.875997,237.944959,238.013922,238.151847,238.220810,238.427698,238.565623,238.427698,238.496660,238.565623,238.634586,238.841474,238.841474,238.910436,239.048362,239.048362,239.186287,239.255250,239.324212,239.393175,239.531100,239.600063,239.669026,239.737988,239.806951,239.944876,240.013839,239.944876,240.151764,240.289689,240.289689,240.427615,240.565540,240.427615,240.496577,240.772428,240.841391,240.910353,240.979316,240.979316,241.048278,241.186204,241.255166,241.393092,241.393092,241.599980,241.668942,241.668942,241.668942,241.944793,241.875830,241.875830,242.151681,242.289606,242.289606,242.289606,242.358569,242.427531,242.496494,242.496494,242.703382,242.772345,242.703382,242.841307,242.910270,243.117158,243.186121,243.255083,243.324046,243.530934,243.324046,243.530934,243.530934,243.599896,243.668859,243.737822,243.944710,243.944710,244.082635,244.013672,244.220560,244.289523,244.427448,244.427448,244.634336,244.634336,244.565373,244.703299,244.565373,244.979149,244.979149,244.979149,245.048112,245.186037,245.255000,245.392925,245.392925,245.392925,245.599813,245.668776,245.599813,245.668776,245.737738,245.944626,246.082552,246.220477,246.082552,246.151514,246.358402,246.496328,246.358402,246.427365,246.703216,246.634253,246.772178,246.772178,246.910103,246.979066,247.048029,247.048029,247.185954,247.185954,247.254917,247.323879,247.530767,247.461805,247.530767,247.530767,247.737655,247.875581,247.875581,247.944543,247.944543,248.082468,248.151431,248.427282,248.289356,248.358319,248.496244,248.496244,248.565207,248.703132,248.703132,248.910020,248.910020,248.978983,248.978983,249.047946,249.116908,249.185871,249.323796,249.392759,249.461721,249.530684,249.530684,249.737572,249.737572,249.737572,249.806535,250.013423,250.013423,250.151348,250.082385,250.220311,250.358236,250.289273,250.427199,250.565124,250.634086,250.634086,250.772012,250.909937,250.909937,250.978900,251.047862,251.116825,251.185788,251.185788,251.254750,251.323713,251.392676,251.392676,251.599564,251.668526,251.875414,251.737489,251.806451,251.875414,251.944377,251.944377,252.013339,252.151265,252.151265,252.220227,252.358153,252.358153,252.358153,252.496078,252.702966,252.565041,252.702966,252.771929,252.771929,252.909854,253.047779,252.978816,253.047779,253.185704,253.254667,253.185704,253.254667,253.392592,253.530518,253.530518,253.530518,253.668443,253.737406,253.806368,253.875331,253.944294,254.013256,254.013256,254.151181,254.220144,254.220144,254.358069,254.358069,254.358069,254.495995,254.564957,254.633920,254.702883,254.771845,254.771845,254.909771,254.840808,255.047696,255.047696,255.185621,255.116659,255.254584,255.323546,255.323546,255.461472,255.530434,255.599397,255.599397,255.668360,255.668360,255.875248,255.875248,255.875248,255.875248,256.013173,256.082136,256.151098,256.013173,256.220061,256.220061,256.357986,256.357986,256.357986,256.564874,256.633837,256.702799,256.771762,256.840725,256.909687,256.909687,257.047613,257.047613,257.116575,257.185538,257.185538,257.254501,257.392426,257.599314,257.530351,257.530351,257.530351,257.668276,257.668276,257.737239,257.737239,257.806202,257.944127,257.944127,258.082052,258.151015,258.151015,258.219978,258.357903,258.288940,258.426866,258.426866,258.564791,258.633754,258.633754,258.564791,258.771679,258.771679,258.909604,258.840641,259.047529,259.047529,259.185455,259.116492,259.254417,259.254417,259.254417,259.392343,259.530268,259.392343,259.530268,259.599231,259.668193,259.737156,259.668193,259.875081,259.875081,259.944044,260.013007,259.944044,260.081969,260.081969,260.288857,260.219894,260.288857,260.357820,260.426782,260.495745,260.357820,260.633670,260.702633,260.633670,260.702633,260.909521,260.840558,260.909521,260.909521,260.909521,260.978484,261.185372,261.116409,261.254334,261.254334,261.323297,261.392259,261.461222,261.392259,261.530185,261.599147,261.668110,261.668110,261.806035,261.737073,261.806035,261.943961,261.943961,262.012923,262.081886,262.081886,262.219811,262.219811,262.150849,262.288774,262.288774,262.495662,262.495662,262.564624,262.564624,262.633587,262.771512,262.771512,262.771512,262.840475,262.840475,262.978400,262.978400,262.978400,263.185288,263.185288,263.185288,263.254251,263.530102,263.323214,263.461139,263.599064,263.392176,263.599064,263.668027,263.736989,263.736989,263.874915,263.805952,263.943877,263.874915,263.943877,264.081803,264.219728,264.150765,264.081803,264.219728,264.219728,264.357653,264.357653,264.495579,264.495579,264.564541,264.495579,264.564541,264.564541,264.702467,264.771429,264.771429,264.840392,264.909354,264.840392,264.840392,265.116242,264.978317,265.116242,265.185205,265.254168,265.323130,265.254168,265.323130,265.461056,265.530018,265.323130,265.667944,265.736906,265.667944,265.667944,265.805869,265.805869,265.874832,265.874832,265.943794,266.081719,265.943794,266.081719,266.150682,266.219645,266.219645,266.219645,266.357570,266.426533,266.426533,266.495495,266.495495,266.633421,266.564458,266.633421,266.702383,266.702383,266.771346,266.909271,266.909271,266.909271,267.116159,267.047197,267.047197,267.116159,267.185122,267.116159,267.254084,267.254084,267.323047,267.323047,267.392010,267.460972,267.598898,267.667860,267.667860,267.598898,267.805786,267.736823,267.805786,267.736823,267.805786,267.805786,267.943711,268.012674,268.012674,268.150599,267.943711,268.219562,268.219562,268.357487,268.357487,268.357487,268.426449,268.426449,268.495412,268.564375,268.495412,268.495412,268.633337,268.702300,268.771263,268.771263,268.909188,268.840225,268.909188,269.047113,268.978151,269.116076,269.047113,269.116076,269.254001,269.185039,269.254001,269.322964,269.254001,269.322964,269.391927,269.391927,269.460889,269.667777,269.598815,269.598815,269.736740,269.667777,269.736740,269.736740,269.736740,269.874665,269.874665,269.874665,269.943628,270.081553,270.081553,270.081553,270.150516,270.219478,270.150516,270.288441,270.357404,270.357404,270.357404,270.564292,270.426366,270.426366,270.564292,270.564292,270.702217,270.564292,270.633254,270.771180,270.840142,270.840142,270.840142,270.840142,270.978067,270.978067,271.047030,271.047030,271.047030,271.115993,271.184955,271.391843,271.253918,271.184955,271.253918,271.391843,271.322881,271.253918,271.529769,271.598731,271.667694,271.529769,271.598731,271.667694,271.736657,271.736657,271.874582,271.874582,271.874582,271.874582,272.081470,271.943545,272.012507,272.150432,272.150432,272.219395,272.150432,272.219395,272.288358,272.219395,272.357320,272.426283,272.426283,272.426283,272.495246,272.633171,272.633171,272.633171,272.702134,272.771096,272.702134,272.702134,272.771096,272.771096,272.977984,273.046947,272.909022,273.046947,273.046947,273.046947,273.046947,273.115910,273.184872,273.184872,273.391760,273.322797,273.253835,273.322797,273.322797,273.460723,273.391760,273.460723,273.598648,273.598648,273.598648,273.598648,273.667611,273.598648,273.805536,273.667611,273.736573,273.874499,273.805536,273.943461,273.943461,273.874499,273.943461,274.219312,274.012424,274.150349,274.150349,274.150349,274.150349,274.219312,274.150349,274.357237,274.288275,274.357237,274.426200,274.426200,274.564125,274.633088,274.564125,274.702050,274.495162,274.633088,274.702050,274.702050,274.771013,274.771013,274.839976,274.908938,274.839976,274.977901,274.908938,274.977901,275.046864,275.046864,275.046864,275.115826,275.184789,275.115826,275.115826,275.184789,275.184789,275.184789,275.460640,275.460640,275.460640,275.460640,275.529602,275.529602,275.598565,275.460640,275.598565,275.529602,275.736490,275.805453,275.667527,275.805453,275.736490,275.874415,275.943378,276.012341,275.943378,276.012341,276.012341,276.012341,276.081303,276.150266,276.150266,276.150266,276.219229,276.288191,276.288191,276.357154,276.426117,276.357154,276.495079,276.426117,276.564042,276.495079,276.495079,276.633005,276.564042,276.633005,276.564042,276.633005,276.770930,276.770930,276.839892,276.839892,276.839892,276.908855,276.908855,276.908855,276.908855,277.046780,277.115743,277.115743,277.046780,276.977818,277.184706,277.184706,277.115743,277.253668,277.322631,277.253668,277.253668,277.322631,277.391594,277.460556,277.529519,277.460556,277.460556,277.598482,277.529519,277.598482,277.598482,277.598482,277.736407,277.736407,277.736407,277.736407,277.805370,277.736407,277.805370,277.874332,277.943295,277.943295,278.012257,277.943295,278.012257,278.081220,278.012257,278.081220,278.150183,278.150183,278.219145,278.219145,278.219145,278.357071,278.288108,278.288108,278.288108,278.426033,278.426033,278.219145,278.426033,278.494996,278.494996,278.632921,278.563959,278.632921,278.632921,278.701884,278.632921,278.701884,278.563959,278.770847,278.770847,278.839809,278.839809,278.839809,278.908772,278.839809,278.977735,278.977735,278.977735,278.977735,279.115660,279.184623,279.115660,279.115660,279.184623,279.184623,279.253585,279.322548,279.322548,279.322548,279.322548,279.529436,279.460473,279.391510,279.460473,279.460473,279.529436,279.598398,279.598398,279.598398,279.598398,279.529436,279.667361,279.598398,279.805286,279.667361,279.874249,279.805286,279.805286,279.874249,279.874249,279.805286,279.874249,279.943212,280.012174,279.943212,280.081137,280.150100,280.081137,280.150100,280.150100,280.150100,280.219062,280.219062,280.150100,280.288025,280.219062,280.288025,280.425950,280.356988,280.356988,280.494913,280.288025,280.494913,280.494913,280.563875,280.425950,280.632838,280.632838,280.632838,280.701801,280.770763,280.770763,280.701801,280.701801,280.770763,280.770763,280.908689,280.839726,280.977651,280.908689,280.908689,280.908689,280.977651,281.046614,281.115577,281.046614,281.046614,281.115577,281.046614,281.046614,281.253502,281.253502,281.184539,281.322465,281.391427,281.184539,281.322465,281.253502,281.322465,281.391427,281.391427,281.322465,281.460390,281.529353,281.460390,281.598315,281.529353,281.598315,281.598315,281.667278,281.667278,281.667278,281.529353,281.667278,281.667278,281.736240,281.805203,281.874166,281.736240,281.943128,281.874166,281.943128,282.012091,281.943128,281.943128,281.943128,282.012091,282.012091,282.081054,282.012091,281.874166,282.081054,282.081054,282.150016,282.150016,282.150016,282.287942,282.218979,282.218979,282.287942,282.287942,282.356904,282.356904,282.287942,282.356904,282.425867,282.425867,282.425867,282.494830,282.425867,282.494830,282.563792,282.632755,282.563792,282.701718,282.770680,282.632755,282.701718,282.632755,282.701718,282.701718,282.632755,282.701718,282.770680,282.839643,282.770680,282.839643,282.908605,282.908605,282.908605,282.908605,283.046531,283.046531,283.046531,283.184456,283.046531,283.115493,283.115493,283.115493,283.253419,283.184456,283.184456,283.391344,283.253419,283.184456,283.322381,283.184456,283.322381,283.391344,283.391344,283.391344,283.460307,283.460307,283.460307,283.529269,283.598232,283.529269,283.598232,283.529269,283.736157,283.598232,283.529269,283.667195,283.736157,283.874083,283.736157,283.667195,283.805120,283.805120,283.667195,284.012008,283.805120,283.874083,283.943045,283.943045,284.012008,284.012008,284.012008,284.012008,283.943045,284.012008,284.012008,283.874083,284.012008,284.149933,284.080970,284.149933,284.287858,284.287858,284.287858,284.287858,284.080970,284.287858,284.356821,284.494746,284.425784,284.149933,284.356821,284.425784,284.494746,284.494746,284.563709,284.425784,284.494746,284.494746,284.563709,284.632672,284.632672,284.563709,284.770597,284.563709,284.632672,284.632672,284.701634,284.701634,284.770597,284.839560,284.839560,284.839560,284.839560,284.839560,284.908522,284.908522,284.908522,284.977485,284.908522,285.115410,284.977485,285.046448,285.046448,285.046448,285.046448,285.115410,285.046448,285.184373,285.322298,285.253335,285.322298,285.322298,285.253335,285.253335,285.253335,285.253335,285.391261,285.322298,285.460223,285.391261,285.460223,285.391261,285.460223,285.460223,285.598149,285.529186,285.391261,285.460223,285.460223,285.598149,285.598149,285.598149,285.598149,285.460223,285.529186,285.667111,285.667111,285.736074,285.736074,285.805037,285.736074,285.736074,285.736074,285.805037,285.873999,285.805037,286.011925,286.011925,285.805037,285.873999,286.011925,285.942962,285.942962,285.942962,285.942962,286.080887,286.011925,286.011925,286.149850,286.080887,286.149850,286.080887,286.149850,286.149850,286.287775,286.149850,286.218813,286.218813,286.218813,286.149850,286.287775,286.425700,286.425700,286.425700,286.356738,286.632588,286.494663,286.494663,286.494663};
TGraph *gr1 = new TGraph(n,x1,y1);
gr1->SetMarkerColor(3);
gr1->SetMarkerStyle(20);
mg->Add(gr1);
Double_t x2[] = {0,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};
Double_t y2[] = {295.927572,295.927572,295.927572,295.861405,295.927572,295.927572,296.059906,296.059906,296.126073,296.324573,296.390740,296.390740,296.324573,296.324573,296.456907,296.390740,296.258407,296.126073,295.861405,295.729072,295.464404,295.265904,295.265904,294.868902,294.405734,293.810233,293.280898,292.751563,292.156061,291.494392,291.163558,290.303389,289.509386,288.715384,287.789048,286.928879,285.936376,285.076207,284.149870,283.157367,282.297198,281.569363,280.643027,279.716690,279.121189,278.393353,277.864018,277.268516,276.606848,275.945179,274.886509,273.960173,272.901503,271.644333,270.585663,269.328493,268.203656,266.946486,265.821649,264.762979,263.571976,262.380972,261.189968,260.197465,259.006462,257.815458,256.889122,255.698119,254.771783,253.713113,252.786777,251.728107,250.735604,249.809268,248.816765,247.956596,246.964093,246.037756,245.111420,244.251251,243.258748,242.332412,241.472243,240.545907,239.751904,238.957902,238.097733,237.303730,236.377394,235.583392,234.789390,234.061554,233.333718,232.473549,231.481046,230.951711,230.157709,229.496040,228.635871,227.908036,227.180200,226.584698,225.923030,225.658362,225.195194,224.599692,224.004191,223.276355,222.482353,221.688350,220.894348,220.431180,220.034179,219.769511,219.306343,218.843175,218.181507,217.387504,216.659669,215.799499,215.005497,214.079161,213.483659,213.020491,212.623490,212.358822,212.094155,211.564820,210.770818,210.175316,209.182813,208.388811,207.528641,206.734639,206.006803,204.948134,204.220298,203.426296,202.963128,202.367626,201.573624,200.845788,199.985619,199.059283,197.934446,197.008110,196.081774,195.089271,194.030601,316.373133,191.979428,190.986925,189.994422,316.373133,188.141750,186.950747,185.958244,184.965741,183.907071,183.113068,182.517567,181.723564,180.863395,180.069393,179.076890,178.084387,177.025717,176.231714,175.173045,174.180542,173.386539,172.327869,171.600034,170.607531,169.548861,168.887193,167.894690,166.968353,166.108184,165.049514,163.726177,162.667507,161.741171,160.484001,159.425331,158.168160,156.844823,155.653820,154.528983,153.271813,151.749975,150.294304,148.838633,147.382962,146.125791,145.000954,143.809951,142.751281,141.758778,140.700108,139.773772,138.781269,137.987267,137.060931,136.266928,135.274425,134.414256,133.620254,132.892418,131.833748,131.105913,130.444244,129.650242,128.922406,128.326905,127.599069,127.135901,126.606566,126.011064,125.283229,124.753894,124.158392,123.629057,123.033555,122.438054,122.107219,121.445551,121.180883,120.717715,120.254547,119.659045,119.063544,118.534209,118.004874,117.541706,117.078538,116.681536,116.350702,115.755200,115.490533,115.225865,115.027365,114.630364,114.365696,114.233362,114.034862,113.968695,113.902528,113.836361,113.836361,113.968695,113.968695,113.902528,114.034862,114.167196,114.233362,114.431863,114.564197,114.564197,114.762697,114.895031,115.027365,115.159699,115.292032,115.556700,115.689033,115.755200,116.019868,115.953701,116.019868,115.689033,115.225865,114.630364,114.101029,113.637861,113.174693,112.645358,112.314523,111.785188,111.454354,111.057353,110.528018,110.131017,109.866349,109.403181,109.204681,108.609179,108.476845,108.212178,107.947510,107.616676,107.285842,106.955007,106.624173,106.491839,106.094838,105.896338,105.565503,105.102335,104.903835,104.506833,104.308333,104.109832,103.845165,103.646664,103.381997,103.249663,103.117329,103.051162,102.786495,102.521827,102.389494,102.190993,101.992493,101.926326,101.793992,101.727825,101.529324,101.463158,101.198490,101.066156,100.867656,100.735322,100.470655,100.404488,100.272154,100.139820,99.875153,99.941320,99.742819,99.742819,99.676652,99.544319,99.279651,99.345818,99.147317,99.213484,99.081151,98.882650,98.882650,98.750316,98.684149,98.684149,98.485649,98.551816,98.353315,98.088648,98.088648,98.088648,97.956314,98.088648,97.823980,97.823980,97.757813,97.823980,97.757813,97.757813,97.625479,97.559313,97.625479,97.426979,97.559313,97.426979,97.426979,97.426979,97.625479,97.493146,97.426979,97.426979,97.426979,97.559313,97.559313,97.426979,97.493146,97.493146,97.426979,97.360812,97.294645,97.228478,97.162311,97.162311,97.029978,97.029978,96.963811,96.963811,96.897644,96.897644,96.897644,96.765310,96.699143,96.765310,96.632977,96.699143,96.699143,96.699143,96.500643,96.500643,96.434476,96.500643,96.500643,96.566810,96.434476,96.302142,96.434476,96.368309,96.500643,96.368309,96.302142,96.235975,96.368309,96.302142,96.302142,96.302142,96.302142,96.302142,96.235975,96.169808,96.169808,96.103642,96.103642,96.235975,96.103642,96.103642,95.905141,95.905141,96.037475,96.103642,95.971308,95.838974,95.905141,95.971308,95.905141,95.838974,96.169808,96.037475,96.037475,96.037475,95.905141,95.971308,96.037475,95.971308,95.838974,95.905141,95.905141,95.905141,95.838974,95.838974,95.838974,95.905141,95.706640,95.772807,95.706640,95.772807,95.772807,95.905141,95.640474,95.706640,95.706640,95.772807,95.706640,95.640474,95.706640,95.574307,95.706640,95.640474,95.508140,95.640474,95.640474,95.574307,95.640474,95.574307,95.508140,95.441973,95.574307,95.574307,95.508140,95.508140,95.640474,95.508140,95.508140,95.508140,95.508140,95.375806,95.574307,95.508140,95.441973,95.574307,95.441973,95.508140,95.441973,95.508140,95.375806,95.508140,95.441973,95.508140,95.441973,95.441973,95.441973,95.441973,95.441973,95.508140,95.574307,95.640474,95.574307,95.838974,95.772807,95.905141,95.971308,96.103642,96.235975,96.434476,96.500643,96.699143,96.897644,97.029978,97.228478,97.294645,97.493146,97.691646,97.823980,98.088648,98.419482,98.485649,98.816483,98.948817,99.213484,99.411985,99.610485,99.742819,100.073653,100.205987,100.602988,100.669155,100.933823,101.132323,101.396991,101.661658,101.793992,102.058659,102.257160,102.521827,102.720328,102.918829,103.183496,103.448164,103.580497,103.778998,103.911332,104.308333,104.506833,104.705334,104.903835,104.970001,105.367003,105.631670,105.697837,105.962504,106.094838,106.425672,106.624173,106.888841,107.153508,107.285842,107.418175,107.815177,107.947510,108.278345,108.476845,108.675346,108.741513,109.006180,109.204681,109.403181,109.667849,109.800183,109.998683,110.263351,110.528018,110.660352,110.991186,111.123520,111.255854,111.586688,111.719022,111.851355,112.182190,112.380690,112.579191,112.777691,112.843858,113.240860,113.373193,113.571694,113.704028,113.902528,114.167196,114.299529,114.564197,114.828864,114.895031,115.027365,115.292032,115.556700,115.755200,115.887534,116.152202,116.350702,116.549203,116.747703,116.880037,117.144705,117.343205,117.541706,117.740206,118.004874,118.137207,118.335708,118.666542,118.732709,118.931210,119.129710,119.328211,119.526712,119.791379,119.989880,120.122213,120.386881,120.519215,120.783882,120.982383,121.114716,121.247050,121.379384,121.644051,121.842552,122.107219,122.239553,122.570387,122.636554,122.702721,122.901222,123.232056,123.364390,123.629057,123.695224,123.959892,124.158392,124.290726,124.489226,124.753894,124.952395,125.018561,125.349396,125.481729,125.680230,126.011064,126.011064,126.143398,126.408066,126.738900,126.871234,127.069734,127.268235,127.466735,127.532902,127.665236,127.863737,127.996070,128.260738,128.393071,128.591572,128.856240,129.120907,129.120907,129.319408,129.584075,129.782576,129.981076,130.113410,130.245744,130.378077,130.576578,130.708912,130.973579,131.172080,131.370580,131.502914,131.701415,131.899915,132.164583,132.230750,132.495417,132.627751,132.826251,132.958585,133.157086,133.289419,133.554087,133.686421,133.884921,134.083422,134.281922,134.414256,134.612757,134.745090,134.943591,135.075925,135.340592,135.472926,135.671427,135.936094,136.002261,136.200761,136.333095,136.531596,136.796263,136.862430,137.060931,137.060931,137.457932,137.590266,137.788766,137.788766,138.053434,138.318101,138.450435,138.516602,138.715102,138.847436,138.913603,139.244437,139.442938,139.575272,139.839939,139.839939,140.104606,140.236940,140.501608,140.633941,140.832442,140.898609,141.361777,141.295610,141.494111,141.692611,141.824945,142.023446,142.155779,142.288113,142.420447,142.618947,142.817448,142.883615,143.148282,143.412950,143.479117,143.611450,143.876118,144.074618,144.140785,144.273119,144.471620,144.603953,144.868621,145.000954,145.265622,145.331789,145.464122,145.662623,145.794957,145.993457,146.125791,146.390459,146.522792,146.655126,146.853627,146.919794,147.052127,147.250628,147.382962,147.515295,147.713796,148.110797,148.044630,148.243131,148.375465,148.441631,148.640132,148.772466,148.970966,149.235634,149.301801,149.434134,149.566468,149.764969,149.897302,150.161970,150.360470,150.360470,150.558971,150.757472,150.889805,151.154473,151.286807,151.352973,151.617641,151.749975,151.882308,152.014642,152.213143,152.411643,152.543977,152.610144,152.808644,152.874811,153.073312,153.337979,153.404146,153.602647,153.734981,153.933481,154.065815,154.264315,154.330482,154.595150,154.793650,154.793650,154.992151,155.190652,155.256818,155.521486,155.719986,155.786153,155.918487,156.183155,156.249321,156.315488,156.580156,156.712489,156.910990,156.977157,157.109491,157.307991,157.506492,157.638826,157.704992,157.903493,158.234327,158.168160,158.498995,158.498995,158.763662,158.763662,159.028330,159.226830,159.292997,159.491498,159.557665,159.623831,159.888499,160.020833,160.219333,160.285500,160.550168,160.616334,160.814835,160.881002,161.079503,161.211836,161.278003,161.542671,161.741171,161.873505,162.005839,162.138172,162.336673,162.336673,162.535174,162.667507,162.866008,162.998342,163.196842,163.329176,163.461510,163.660010,163.924678,163.990845,164.123178,164.057011,164.321679,164.520179,164.586346,164.784847,164.917181,165.115681,165.314182,165.314182,165.578849,165.578849,165.843517,165.909684,166.174351,166.240518,166.439019,166.505185,166.637519,166.836020,166.902187,167.166854,167.299188,167.299188,167.563855,167.696189,167.828523,167.894690,168.159357,168.357858,168.424024,168.490191,168.622525,168.821026,169.019526,169.151860,169.284194,169.416527,169.615028,169.681195,169.879695,170.144363,170.144363,170.210530,170.409030,170.541364,170.673698,170.806032,171.004532,171.136866,171.335367,171.401533,171.600034,171.666201,171.864701,171.864701,172.063202,172.327869,172.327869,172.592537,172.724871,172.791038,172.923371,173.055705,173.188039,173.320372,173.518873,173.585040,173.783540,173.915874,174.114375,174.246709,174.312875,174.379042,174.643710,174.709877,174.842210,175.040711,175.173045,175.437712,175.437712,175.834713,175.768546,175.834713,175.967047,176.099381,176.297881,176.430215,176.562549,176.694883,176.761049,176.827216,177.091884,177.224217,177.356551,177.422718,177.621219,177.819719,177.952053,177.952053,178.282887,178.415221,178.547555,178.547555,178.746055,178.944556,179.010723,179.076890,179.209223,179.341557,179.540058,179.804725,179.804725,179.937059,180.069393,180.201726,180.267893,180.532561,180.532561,180.863395,180.731061,180.995729,181.194229,181.194229,181.458897,181.525064,181.657397,181.657397,181.988232,182.120565,182.186732,182.252899,182.385233,182.517567,182.782234,182.848401,182.980735,183.179235,183.245402,183.377736,183.443903,183.642403,183.774737,183.907071,183.973238,184.237905,184.304072,184.568739,184.634906,184.701073,184.899574,184.965741,185.098074,185.230408,185.296575,185.693576,185.693576,185.892077,185.892077,186.024410,186.222911,186.355245,186.487578,186.619912,186.752246,186.950747,187.083080,187.281581,187.215414,187.413915,187.546248,187.612415,187.877083,187.943249,188.141750,188.274084,188.406418,188.538751,188.671085,188.803419,188.869586,189.068086,189.134253,189.266587,189.398920,189.531254,189.663588,189.795922,189.729755,189.928255,190.126756,190.192923,190.391423,190.523757,190.656091,190.854592,190.986925,190.986925,191.053092,191.185426,191.383926,191.516260,191.648594,191.780928,191.913261,191.979428,191.979428,192.244096,192.442596,192.574930,192.641097,192.839597,192.839597,193.104265,193.104265,193.170432,193.368932,193.501266,193.567433,193.633600,193.898267,194.162935,194.096768,194.096768,194.427602,194.559936,194.626103,194.559936,194.956937,195.023104,195.089271,195.221605,195.287771,195.420105,195.486272,195.750939,195.883273,195.883273,196.081774,196.147941,196.280274,196.412608,196.611109,196.677276,196.809609,196.941943,197.140444,197.008110,197.206611,197.405111,197.471278,197.603612,197.802112,197.735945,198.000613,198.066780,198.265280,198.199113,198.463781,198.596115,198.662282,198.926949,198.926949,198.993116,199.125450,199.257783,199.456284,199.522451,199.588618,199.720951,199.853285,199.919452,200.117953,200.184119,200.316453,200.448787,200.581121,200.647287,200.779621,200.845788,201.044289,201.176622,201.308956,201.242789,201.441290,201.573624,201.573624,201.772124,201.904458,202.036792,202.102958,202.367626,202.499960,202.566127,202.698460,202.764627,202.963128,202.963128,203.095461,203.227795,203.293962,203.360129,203.558629,203.624796,203.757130,203.823297,204.021798,204.021798,204.220298,204.352632,204.418799,204.617299,204.683466,204.815800,204.881967,204.948134,205.146634,205.278968,205.345135,205.543635,205.609802,205.675969,205.742136,205.940637,206.006803,206.072970,206.205304,206.337638,206.403805,206.536138,206.602305,206.734639,206.800806,206.933140,207.197807,207.197807,207.263974,207.396308,207.528641,207.727142,207.660975,207.859476,207.925643,207.925643,208.057976,208.256477,208.388811,208.587311,208.521144,208.851979,208.785812,208.984312,209.248980,209.182813,209.248980,209.315147,209.381314,209.645981,209.778315,209.778315,209.910648,210.042982,210.042982,210.175316,210.307650,210.506150,210.572317,210.638484,210.704651,210.903151,210.969318,211.300153,211.167819,211.300153,211.498653,211.630987,211.630987,211.763321,211.763321,211.961821,212.027988,212.160322,212.160322,212.358822,212.358822,212.557323,212.821991,212.755824,212.888157,213.086658,213.086658,213.285159,213.351325,213.417492,213.549826,213.682160,213.682160,213.880660,213.946827,214.012994,214.211495,214.343828,214.409995,214.476162,214.542329,214.806996,214.740830,214.806996,214.873163,215.005497,215.005497,215.203998,215.336331,215.402498,215.534832,215.733333,215.667166,215.799499,215.931833,215.998000,216.064167,216.196501,216.328834,216.395001,216.527335,216.593502,216.792002,216.792002,217.056670,217.122837,217.189004,217.255170,217.321337,217.519838,217.387504,217.718338,217.718338,217.784505,217.916839,218.049173,218.181507,218.181507,218.247673,218.380007,218.512341,218.777008,218.777008,218.975509,218.975509,219.041676,219.107843,219.306343,219.372510,219.571011,219.504844,219.637178,219.769511,219.968012,219.968012,220.034179,220.100346,220.232679,220.365013,220.431180,220.497347,220.629681,220.563514,220.894348,220.894348,220.894348,220.960515,221.423683,221.423683,221.489850,221.688350,221.754517,221.820684,221.886851,221.953018,222.151518,222.151518,222.283852,222.350019,222.482353,222.548520,222.614686,222.747020,222.945521,223.011688,223.077855,223.210188,223.276355,223.408689,223.541023,223.541023,223.739523,223.607189,223.805690,223.805690,224.004191,224.136524,224.004191,224.335025,224.401192,224.467359,224.533526,224.665859,224.732026,224.864360,225.062860,224.996694,224.996694,225.261361,225.393695,225.459862,225.592195,225.658362,225.856863,225.790696,225.923030,225.923030,226.055363,226.121530,226.320031,226.452365,226.452365,226.584698,226.584698,226.717032,226.783199,226.849366,226.849366,227.047866,227.047866,227.114033,227.180200,227.378701,227.511034,227.511034,227.643368,227.643368,227.841869,227.908036,227.974202,228.040369,228.172703,228.238870,228.437371,228.503537,228.569704,228.635871,228.702038,228.900539,228.900539,228.966705,229.099039,229.297540,229.165206,229.297540,229.496040,229.562207,229.628374,229.694541,229.760708,229.893042,229.959208,230.091542,230.157709,230.223876,230.290043,230.488543,230.620877,230.687044,230.687044,230.819378,230.951711,230.951711,231.017878,231.017878,231.216379,231.216379,231.348713,231.414879,231.547213,231.679547,231.679547,231.811881,231.944214,231.944214,232.010381,232.208882,232.208882,232.275049,232.407382,232.473549,232.605883,232.605883,232.804384,232.936717,233.002884,233.002884,233.267552,233.135218,233.333718,233.399885,233.399885,233.598386,233.532219,233.730720,233.796887,233.929220,234.061554,234.061554,234.127721,234.260055,234.326221,234.193888,234.524722,234.524722,234.590889,234.657056,234.855556,234.921723,235.120224,235.120224,235.186391,235.120224,235.252558,235.318724,235.384891,235.583392,235.451058,235.649559,235.781892,235.914226,235.914226,236.046560,236.178894,236.311227,236.178894,236.377394,236.443561,236.509728,236.642062,236.774395,236.774395,236.774395,236.906729,237.171397,237.171397,237.171397,237.303730,237.369897,237.436064,237.502231,237.634565,237.634565,237.700732,237.899232,237.766898,237.899232,238.031566,238.097733,238.362400,238.296233,238.362400,238.494734,238.560901,238.627068,238.693235,238.825568,238.891735,239.090236,239.024069,239.090236,239.288736,239.354903,239.421070,239.421070,239.553404,239.685737,239.685737,239.685737,239.884238,239.950405,239.950405,240.016572,239.950405,240.281239,240.281239,240.413573,240.413573,240.479740,240.612074,240.612074,240.678240,240.744407,240.942908,240.876741,241.075242,241.075242,241.141409,241.207575,241.406076,241.406076,241.472243,241.736910,241.670743,241.670743,241.869244,241.736910,242.001578,242.001578,242.133911,242.200078,242.200078,242.464746,242.464746,242.530913,242.663246,242.530913,242.729413,242.795580,242.861747,242.927914,243.126414,243.126414,243.192581,243.324915,243.391082,243.391082,243.324915,243.523416,243.655749,243.655749,243.788083,243.920417,243.854250,243.986584,244.185084,244.185084,244.118917,244.251251,244.317418,244.383585,244.449752,244.582085,244.648252,244.714419,244.648252,244.912920,244.912920,244.979087,245.045254,245.177587,245.177587,245.309921,245.376088,245.442255,245.442255,245.574588,245.706922,245.773089,245.839256,245.773089,245.905423,245.971590,246.037756,246.170090,246.170090,246.236257,246.368591,246.434758,246.500925,246.633258,246.633258,246.633258,246.897926,246.897926,246.831759,247.030259,247.030259,247.030259,247.162593,247.294927,247.427261,247.361094,247.493427,247.493427,247.493427,247.758095,247.758095,247.824262,247.890429,247.956596,248.022762,248.088929,248.221263,248.221263,248.353597,248.353597,248.353597,248.485930,248.552097,248.684431,248.684431,248.816765,248.949099,248.949099,249.015265,249.015265,249.015265,249.081432,249.279933,249.147599,249.412267,249.346100,249.610767,249.610767,249.676934,249.610767,249.743101,249.743101,249.875435,250.007768,250.073935,250.073935,250.140102,250.272436,250.272436,250.338603,250.404770,250.470936,250.537103,250.735604,250.669437,250.801771,250.867938,250.934104,251.000271,251.132605,251.132605,251.132605,251.331106,251.397272,251.397272,251.463439,251.595773,251.661940,251.661940,251.728107,251.794274,251.926607,251.926607,252.058941,252.058941,252.257442,252.257442,252.191275,252.323609,252.455942,252.522109,252.455942,252.455942,252.654443,252.654443,252.919110,252.786777,252.919110,252.985277,253.051444,253.051444,253.117611,253.316112,253.316112,253.382278,253.448445,253.448445,253.514612,253.580779,253.580779,253.713113,253.646946,253.779280,253.911613,253.911613,253.911613,254.043947,254.176281,254.176281,254.110114,254.308615,254.440948,254.440948,254.573282,254.573282,254.573282,254.573282,254.705616,254.837949,254.970283,254.904116,255.102617,255.036450,255.168784,255.168784,255.301117,255.301117,255.499618,255.433451,255.367284,255.499618,255.631952,255.631952,255.631952,255.830452,255.830452,255.830452,255.962786,256.095120,256.095120,256.095120,256.161287,256.227454,256.359787,256.359787,256.425954,256.492121,256.492121,256.624455,256.690622,256.690622,256.690622,256.822955,256.822955,256.889122,256.955289,256.955289,257.087623,257.286123,257.219957,257.352290,257.286123,257.286123,257.418457,257.484624,257.550791,257.616958,257.616958,257.749291,257.815458,257.815458,257.881625,257.881625,257.947792,257.947792,258.080126,258.080126,258.212460,258.278626,258.344793,258.344793,258.278626,258.543294,258.477127,258.543294,258.609461,258.741794,258.741794,258.874128,258.741794,258.940295,259.006462,259.006462,259.072629,259.271129,259.138796,259.271129,259.403463,259.469630,259.403463,259.403463,259.535797,259.601964,259.601964,259.668131,259.734297,259.866631,259.932798,259.866631,259.866631,259.932798,260.065132,260.131299,260.197465,260.263632,260.263632,260.395966,260.395966,260.462133,260.528300,260.528300,260.528300,260.660634,260.726800,260.726800,260.660634,260.859134,260.925301,260.925301,260.991468,261.057635,261.123802,261.123802,261.189968,261.189968,261.322302,261.256135,261.388469,261.454636,261.520803,261.520803,261.586970,261.719303,261.851637,261.719303,261.917804,261.917804,261.917804,261.983971,262.050138,262.050138,262.182471,262.050138,262.248638,262.380972,262.314805,262.447139,262.447139,262.513306,262.513306,262.579473,262.645639,262.777973,262.711806,262.777973,262.910307,262.910307,262.844140,262.844140,263.042641,263.042641,263.042641,263.241141,263.042641,263.241141,263.307308,263.439642,263.307308,263.505809,263.571976,263.704309,263.638142,263.704309,263.836643,263.836643,263.836643,263.902810,263.902810,263.968977,264.035144,264.035144,264.101310,264.167477,264.167477,264.299811,264.365978,264.432145,264.365978,264.432145,264.365978,264.498312,264.829146,264.696812,264.630645,264.696812,264.829146,264.829146,264.829146,264.895313,265.027647,265.159980,265.027647,265.226147,265.093813,265.358481,265.226147,265.292314,265.226147,265.358481,265.490815,265.424648,265.689315,265.556981,265.556981,265.689315,265.689315,265.755482,265.755482,265.821649,265.953983,265.887816,266.020150,266.020150,266.086316,266.086316,266.086316,266.152483,266.152483,266.152483,266.284817,266.350984,266.417151,266.483318,266.483318,266.549484,266.549484,266.615651,266.483318,266.747985,266.747985,266.681818,266.814152,266.880319,266.880319,266.946486,267.012653,267.012653,267.144986,267.078819,267.144986,267.277320,267.211153,267.211153,267.409654,267.409654,267.475821,267.409654,267.475821,267.608154,267.608154,267.608154,267.674321,267.740488,267.872822,267.806655,267.872822,267.938989,267.938989,268.071322,267.938989,268.071322,268.137489,268.203656,268.203656,268.269823,268.203656,268.203656,268.335990,268.402157,268.534490,268.468324,268.468324,268.666824,268.600657,268.600657,268.732991,268.799158,268.865325,268.799158,268.865325,269.063825,268.865325,268.997658,269.063825,268.997658,269.063825,269.262326,269.262326,269.262326,269.262326,269.262326,269.328493,269.394660,269.328493,269.460826,269.659327,269.526993,269.659327,269.593160,269.725494,269.725494,269.725494,269.791661,269.791661,269.923995,269.857828,269.990161,269.923995,269.923995,269.990161,270.122495,270.122495,270.188662,270.056328,270.254829,270.320996,270.320996,270.320996,270.387163,270.519496,270.519496,270.519496,270.585663,270.717997,270.651830,270.717997,270.651830,270.784164,270.850331,270.850331,270.850331,270.916498,270.982664,271.048831,271.048831,270.982664,271.114998,271.114998,271.114998,271.247332,271.247332,271.313499,271.313499,271.379666,271.445832,271.445832,271.511999,271.511999,271.445832,271.578166,271.644333,271.644333,271.710500,271.578166,271.710500,271.710500,271.909000,271.842834,271.975167,271.909000,272.041334,272.041334,272.107501,272.041334,272.107501,272.107501,272.239835,272.239835,272.173668,272.306002,272.239835,272.438335,272.438335,272.438335,272.570669,272.570669,272.504502,272.570669,272.570669,272.703003,272.636836,272.769170,272.769170,272.835337,272.835337,272.835337,272.967670,272.967670,272.901503,272.967670,273.232338,273.166171,273.100004,273.100004,273.166171,273.232338,273.166171,273.298505,273.364671,273.364671,273.497005,273.364671,273.364671,273.497005,273.563172,273.563172,273.563172,273.629339,273.629339,273.695506,273.695506,273.761673,273.827840,273.894006,273.827840,273.894006,273.894006,273.960173,273.960173,273.894006,274.026340,274.092507,274.092507,274.224841,274.224841,274.291008,274.291008,274.291008,274.291008,274.357174,274.357174,274.423341,274.423341,274.423341,274.489508,274.489508,274.754176,274.489508,274.688009,274.688009,274.688009,274.754176,274.754176,274.754176,274.886509,275.085010,274.952676,274.886509,275.018843,274.952676,275.018843,275.085010,275.151177,275.085010,275.217344,275.085010,275.217344,275.217344,275.283511,275.283511,275.349677,275.283511,275.415844,275.415844,275.415844,275.548178,275.482011,275.614345,275.482011,275.614345,275.614345,275.680512,275.680512,275.614345,275.746679,275.746679,275.879012,275.879012,275.879012,275.879012,275.945179,275.879012,275.945179,276.011346,276.077513,276.143680,276.143680,276.143680,276.143680,276.276014,276.209847,276.276014,276.276014,276.342180,276.408347,276.342180,276.540681,276.474514,276.408347,276.540681,276.540681,276.606848,276.606848,276.606848,276.673015,276.739182,276.739182,276.739182,276.739182,276.871515,276.805348,276.871515,276.805348,276.871515,276.937682,277.003849,277.003849,277.136183,277.070016,277.136183,277.136183,277.136183,277.202350,277.268516,277.334683,277.202350,277.268516,277.334683,277.400850,277.400850,277.400850,277.400850,277.467017,277.467017,277.467017,277.599351,277.533184,277.533184,277.665518,277.665518,277.665518,277.731685,277.731685,277.797851,277.864018,277.797851,277.864018,277.797851,277.930185,277.864018,277.864018,277.996352,277.797851,278.128686,278.062519,278.062519,278.194853,278.194853,278.194853,278.194853,278.261019,278.261019,278.194853,278.327186,278.327186,278.393353,278.393353,278.327186,278.393353,278.459520,278.525687,278.591854,278.591854,278.591854,278.459520,278.591854,278.525687,278.724188,278.724188,278.724188,278.790354,278.591854,278.790354,278.591854,278.790354,278.856521,278.922688,278.856521,278.922688,278.988855,278.988855,278.988855,279.055022,279.055022,279.121189,279.121189,279.121189,279.121189,279.187356,279.121189,279.253522,279.385856,279.253522,279.385856,279.452023,279.452023,279.452023,279.452023,279.452023,279.452023,279.452023,279.518190,279.584357,279.584357,279.518190,279.650524,279.584357,279.650524,279.716690,279.716690,279.782857,279.782857,279.849024,279.782857,279.782857,279.782857,279.782857,279.915191,279.849024,279.981358,279.915191,279.981358,280.047525,280.047525,280.047525,280.047525,280.113692,280.179859,280.378359,280.113692,280.246025,280.312192,280.312192,280.246025,280.312192,280.378359,280.444526,280.378359,280.444526,280.444526,280.510693,280.576860,280.510693,280.510693,280.709193,280.709193,280.576860,280.576860,280.709193,280.709193,280.709193,280.841527,280.709193,280.709193,280.775360,280.841527,280.775360,280.775360,280.907694,280.973861,280.841527,280.907694,281.040028,280.973861,281.040028,280.973861,281.106195,281.106195,281.040028,281.172361,281.172361,281.238528,281.238528,281.238528,281.172361,281.238528,281.304695,281.437029,281.370862,281.437029,281.370862,281.503196,281.503196,281.635530,281.437029,281.569363,281.503196,281.569363,281.569363,281.635530,281.569363,281.503196,281.701696,281.569363,281.701696,281.701696,281.635530,281.701696,281.767863,281.834030,281.834030,281.767863,281.834030,281.966364,281.900197,281.900197,281.834030,281.900197,281.900197,281.966364,282.032531,281.966364,282.098698,282.032531,282.098698,282.164864,282.164864,282.164864,282.164864,282.297198,282.231031,282.297198,282.164864,282.297198,282.164864,282.363365,282.231031,282.297198,282.429532,282.429532,282.297198,282.363365,282.429532,282.429532,282.429532,282.495699,282.561866,282.561866,282.561866,282.561866,282.561866,282.561866,282.826533,282.561866,282.561866,282.694199,282.694199,282.760366,282.760366,282.826533,282.760366,282.826533,282.892700,282.826533,282.760366,282.892700,282.892700,282.958867,283.025034,282.892700,282.958867,282.958867,283.091201,283.025034,283.025034,283.091201,283.025034,283.025034,283.157367,283.157367,283.223534,283.157367,283.289701,283.223534,283.355868,283.289701,283.289701,283.223534,283.355868,283.355868,283.355868,283.289701,283.355868,283.422035,283.488202,283.554369,283.686702,283.620535,283.554369,283.620535,283.620535,283.620535,283.686702,283.752869,283.752869,283.686702,283.752869,283.752869,283.554369,283.819036,283.819036,283.885203,283.885203,283.819036,283.885203,283.951370,283.951370,283.885203,284.083704,284.017537,283.819036,284.017537,284.017537,284.083704,284.017537,284.017537,284.083704,284.017537,284.149870,284.149870,284.149870,284.149870,284.149870,284.216037,284.149870,284.216037,284.282204,284.348371,284.216037,284.348371,284.348371,284.348371,284.480705,284.480705,284.348371,284.282204,284.480705,284.480705,284.480705,284.546872,284.546872,284.546872,284.546872,284.546872,284.613038,284.613038,284.679205,284.679205,284.745372,284.679205,284.745372,284.745372,284.877706,284.877706,284.811539,284.943873,284.811539,284.811539,284.811539,284.943873,284.877706,284.943873,284.943873,284.943873,284.943873,285.010040,284.877706,284.943873,285.076207,285.142373,285.010040,285.076207,285.076207,285.142373,285.208540,285.208540,285.142373,285.274707,285.208540,285.274707,285.142373,285.274707,285.340874,285.274707,285.274707,285.340874,285.340874,285.407041,285.340874,285.407041,285.407041,285.473208,285.605541,285.539375,285.473208,285.539375,285.671708,285.737875,285.671708,285.671708};
TGraph *gr2 = new TGraph(n,x2,y2);
gr2->SetMarkerColor(4);
gr2->SetMarkerStyle(20);
mg->Add(gr2);
Double_t x3[] = {0,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};
Double_t y3[] = {296.266036,296.266036,296.335487,296.474391,296.613294,296.682746,296.752198,296.960553,297.168908,297.099457,297.099457,297.099457,297.168908,297.168908,297.238360,297.030005,295.988229,294.043580,293.210159,293.487966,293.487966,293.696321,293.001804,290.432089,288.140182,286.542792,286.403888,286.542792,285.639919,284.528691,283.348011,281.889525,280.361586,278.833648,277.305710,275.777771,274.597092,273.208057,272.096829,271.055053,269.943825,268.971500,267.999176,267.651917,267.929724,268.276983,268.624242,268.138079,266.887948,265.429461,263.484812,261.609615,259.526063,257.373059,255.428410,253.414310,251.608564,249.733367,247.858170,246.538587,244.941197,243.552162,242.440934,241.121351,239.801768,238.829443,237.579312,236.398632,235.148501,233.967821,232.926045,231.745365,230.703589,229.453458,228.481133,227.369905,226.258678,225.286353,224.383480,223.133349,222.230476,221.188700,220.216376,219.382955,218.341179,217.438306,216.535433,215.632561,214.799140,214.035171,212.854491,212.229425,211.673811,210.979294,210.284776,209.590259,208.895741,208.409579,208.062321,207.506707,207.228900,207.367803,207.923417,208.756838,209.104097,208.756838,207.923417,207.020544,205.562058,204.520282,204.103571,204.103571,204.520282,204.936992,204.311926,203.547957,202.158922,200.283725,198.755787,197.019493,195.630458,194.866489,194.935941,195.561007,196.255524,197.019493,197.088945,196.186072,194.519230,192.852389,191.046643,189.657608,188.199122,186.671183,185.421052,184.309824,183.823662,184.032017,184.309824,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,258.275932,257.442511,257.511962,257.511962,257.581414,257.789769,257.928673,257.928673,257.928673,258.067576,258.137028,258.275932,258.206480,258.414835,258.553739,258.692642,258.692642,258.762094,258.900997,258.970449,259.039901,259.248256,259.317708,259.317708,259.387160,259.526063,259.526063,259.664967,259.734418,259.734418,259.873322,259.942774,260.637291,260.984550,261.192905,261.609615,261.817971,262.095778,261.956874,262.095778,262.234681,262.443036,262.512488,262.651392,262.859747,263.137554,263.276457,263.484812,263.415361,263.484812,263.693168,263.762619,263.832071,264.109878,264.248782,264.318233,264.457137,264.457137,264.457137,264.665492,264.596040,264.665492,264.734944,264.943299,264.804396,264.734944,264.804396,264.804396,265.082203,265.221106,265.221106,265.221106,265.290558,265.498913,266.610141,266.401786,266.540689,266.749044,266.818496,266.887948,266.957400,267.026851,266.957400,267.235207,267.304658,267.513014,267.513014,267.582465,267.651917,267.651917,267.582465,267.790821,267.929724,268.068628,268.068628,268.138079,268.138079,268.346435,268.415886,268.415886,268.624242,268.693693,268.832597,268.832597,268.902049,268.971500,269.040952,269.249307,269.249307,269.318759,269.388211,269.110404,269.249307,269.388211,269.457662,269.596566,269.735469,269.527114,269.527114,269.457662,269.666018,269.874373,270.152180,270.152180,270.360535,270.499439,270.291083,270.360535,270.707794,270.985601,271.263408,271.332860,271.471763,271.471763,271.541215,271.749570,272.235732,272.235732,272.305184,272.513539,272.444087,272.652443,272.652443,272.582991,272.930250,273.346960,273.485864,273.624767,273.694219,273.833122,273.902574,273.902574,273.972026,273.972026,274.041478,274.180381,274.249833,274.319285,274.388736,274.805447,274.874899,274.944350,275.013802,275.083254,275.083254,275.291609,275.430512,275.430512,275.499964,275.222157,275.291609,275.291609,275.222157,275.777771,275.847223,275.916675,275.847223,275.916675,275.708319,275.916675,276.055578,276.055578,276.263933,276.125030,276.263933,276.472289,276.541740,276.750096,276.750096,276.888999,277.305710,277.375161,277.444613,277.444613,277.791872,277.861324,278.000227,277.930775,278.000227,278.000227,277.861324,278.208582,278.694744,278.694744,278.764196,278.972551,278.972551,278.903100,279.250358,279.875424,280.569942,281.125556,285.431564,289.112506,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,310.017481,304.600245,302.516693,302.238886,303.211210,305.016956,306.336539,306.405990,306.822701,306.822701,306.475442,306.267087,305.711473,304.600245,302.586144,301.127658,299.946978,299.183009,299.252461,299.599719,301.127658,304.183535,307.308863,313.003906,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.351690,317.865528,317.796076,317.101559,316.893204,316.754300,317.448818,317.171011,317.309914,316.823752,316.754300,316.823752,316.337590,315.504169,314.740200,313.906779,313.698424,313.212261,313.073358,312.865003,312.656647,311.892678,311.128709,311.059257,310.920354,310.920354,311.198161,311.198161,311.267613,311.128709,310.989806,311.267613,311.545419,311.614871,311.892678,312.170485,312.517744,312.587196,312.934454,313.212261,313.559520,314.323489,315.434717,317.171011,317.726625,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.212787,317.448818,317.171011,316.059783,315.781976,314.809651,314.323489,314.184586,313.767875,313.420617,312.934454,312.239937,311.475968,310.434192,309.461867,308.628446,307.378315,306.405990,305.086407,304.044631,303.141758,302.308338,301.961079,301.544368,301.474917,301.405465,301.058206,300.780399,300.224785,299.946978,299.530268,299.113557,298.835750,298.419040,298.071781,297.932878,297.724522,297.585619,297.307812,297.446715,297.377264,297.307812,297.030005,296.960553,296.960553,296.891101,296.821650,296.821650,296.891101,297.099457,297.238360,297.168908,297.377264,297.377264,297.863426,298.002329,297.932878,297.724522,297.724522,297.793974,297.932878,298.002329,298.141233,298.488492,298.766299,298.766299,298.974654,298.974654,298.974654,299.044106,299.044106,299.113557,299.044106,299.044106,299.113557,299.252461,299.460816,299.321912,299.321912,299.321912,299.113557,299.044106,299.044106,299.113557,299.599719,299.877526,299.877526,300.085882,300.294237,300.155333,300.294237,300.294237,300.433140,300.433140,300.572044,300.502592,300.710947,300.572044,300.988754,301.127658,301.613820,302.030531,302.169434,302.447241,302.655596,302.725048,303.002855,303.072307,303.002855,303.002855,303.002855,303.141758,303.141758,303.489017,303.627921,304.114083,304.044631,304.183535,304.391890,304.322438,304.114083,304.183535,304.044631,303.836276,303.558469,303.558469,303.419565,303.280662,302.863951,302.655596,302.516693,302.586144,302.516693,302.516693,302.516693,302.655596,302.725048,302.863951,303.141758,303.350114,303.489017,303.627921,303.697372,304.044631,304.044631,303.975179,304.947504,305.155859,305.919828,305.919828,306.058732,306.058732,306.475442,306.475442,307.100508,306.961604,307.239411,307.517218,308.003381,308.072832,308.489543,308.836801,309.114608,309.600771,310.086933,310.295288,310.781450,310.781450,310.850902,310.573095,310.781450,310.642547,310.711999,310.920354,311.059257,311.267613,311.892678,312.448292,313.073358,313.837327,314.601296,315.365265,317.171011,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594,318.490594};
TGraph *gr3 = new TGraph(n,x3,y3);
gr3->SetMarkerColor(28);
gr3->SetMarkerStyle(20);
mg->Add(gr3);
mg->Draw("ALP");
c1->Update();
}