diff --git a/src/forms/Y2021/data/federal.ts b/src/forms/Y2021/data/federal.ts index 0007091c9..d3d6ab9f2 100644 --- a/src/forms/Y2021/data/federal.ts +++ b/src/forms/Y2021/data/federal.ts @@ -1,7 +1,7 @@ import { FilingStatus } from 'ustaxes/core/data' import { linear, Piecewise } from 'ustaxes/core/util' -export const CURRENT_YEAR = 2020 +export const CURRENT_YEAR = 2021 interface TaggedAmount { name: string diff --git a/src/forms/Y2021/irsForms/TaxTable.ts b/src/forms/Y2021/irsForms/TaxTable.ts index 33207d8e9..30532d22a 100644 --- a/src/forms/Y2021/irsForms/TaxTable.ts +++ b/src/forms/Y2021/irsForms/TaxTable.ts @@ -16,13 +16,35 @@ const computeTax = } else if (high === undefined) { // This is the top bracket return Math.max(0, income - low) * rate - } else if (income > high) { + } else if (income >= high) { // Taxable income is above the top of this bracket // so add the max tax for this bracket return (high - low) * rate } // Otherwise max income is inside this bracket, // add the tax on the amount falling in this bracket + + if (income < 5) { + return 0 + } + // If income is between $5 and $25, tax table computes rate at midpoint of $5 ranges + if (income >= 5 && income < 25) { + income = Math.floor(income) + const over5 = income % 5 + income += 2.5 - over5 + } + // If income is between $25 and $3,000, tax table computes rate at midpoint of $25 ranges + else if (income >= 25 && income < 3000) { + income = Math.floor(income) + const over25 = income % 25 + income += 12.5 - over25 + } + // If income is between $3,000 and $100,000, tax table computes rate at midpoint of $50 ranges + else if (income >= 3000 && income < 100000) { + income = Math.floor(income) + const over50 = income % 50 + income += 25 - over50 + } return (income - low) * rate } ) diff --git a/src/forms/Y2021/tests/f6251.test.ts b/src/forms/Y2021/tests/f6251.test.ts index de8c6ffb0..817b842bf 100644 --- a/src/forms/Y2021/tests/f6251.test.ts +++ b/src/forms/Y2021/tests/f6251.test.ts @@ -68,8 +68,8 @@ describe('AMT', () => { expect(f6251.isNeeded()).toEqual(true) expect(Math.round(f6251.l1() ?? 0)).toEqual(87450) expect(Math.round(f6251.l7() ?? 0)).toEqual(32864) - expect(Math.round(f6251.l10())).toEqual(15009) - expect(Math.round(f6251.l11())).toEqual(17855) + expect(Math.round(f6251.l10())).toEqual(15015) + expect(Math.round(f6251.l11())).toEqual(17849) }) it('small stock options should NOT trigger AMT', () => { @@ -81,7 +81,7 @@ describe('AMT', () => { expect(f6251.isNeeded()).toEqual(false) expect(Math.round(f6251.l1() ?? 0)).toEqual(87450) expect(Math.round(f6251.l7() ?? 0)).toEqual(7124) - expect(Math.round(f6251.l10())).toEqual(15009) + expect(Math.round(f6251.l10())).toEqual(15015) expect(Math.round(f6251.l11())).toEqual(0) }) }) diff --git a/src/forms/Y2021/tests/taxRates.test.ts b/src/forms/Y2021/tests/taxRates.test.ts new file mode 100644 index 000000000..00b72fd42 --- /dev/null +++ b/src/forms/Y2021/tests/taxRates.test.ts @@ -0,0 +1,135 @@ +import { FilingStatus } from 'ustaxes/core/data' +import { CURRENT_YEAR } from '../data/federal' +import { computeOrdinaryTax } from '../irsForms/TaxTable' +import fs from 'fs/promises' +import { parseCsv } from 'ustaxes/data/csvImport' +import { parseFormNumber } from 'ustaxes/core/util' + +async function getTaxTable() { + const path = './src/forms/Y2021/tests/taxTable.csv' + const taxTableCsv = (await fs.readFile(path)).toString('utf-8') + const rows: Array = [] + await parseCsv(taxTableCsv, (r: string[]) => { + rows.push(r.map((s) => parseFormNumber(s) ?? 0)) + return [] + }) + + // Remove heading row + rows.shift() + + return rows +} + +function expectTax(status: FilingStatus, amount: number, tax: number) { + const computedTax = Math.round(computeOrdinaryTax(status, amount)) + // Add a prefix so it's easy to see which one was wrong + const prefix = 'Tax on ' + amount + ' = ' + expect(prefix + computedTax).toEqual(prefix + tax) +} + +function expectTaxUnder100KRange( + status: FilingStatus, + min: number, + max: number, + tax: number +) { + const diff = max - min + const quarter = Math.round((diff / 4) * 100) / 100 + expectTax(status, min, tax) + expectTax(status, min + quarter, tax) + expectTax(status, min + 2 * quarter, tax) + expectTax(status, min + 3 * quarter, tax) + expectTax(status, max, tax) +} + +describe('Tax rates', () => { + it('test should be updated for new year', async () => { + // WARNING! Do not just change the year. Also update the CSV and expected tax amounts below! + expect(CURRENT_YEAR).toEqual(2021) + }) + it('ordinary taxes for single status should be correct', async () => { + const rows = await getTaxTable() + rows.forEach(([min, lessThan, tax]) => { + expectTaxUnder100KRange(FilingStatus.S, min, lessThan - 0.01, tax) + }) + + // Over $100,000 + const amounts = [ + [100000, 18021], + [164925, 33603], + [164926, 33603], + [209425, 47843], + [209426, 47843], + [523600, 157804], + [523601, 157805] + ] + amounts.forEach(([amount, tax]) => { + expectTax(FilingStatus.S, amount, tax) + }) + }) + + it('ordinary taxes for married filing jointly status should be correct', async () => { + const rows = await getTaxTable() + rows.forEach(([min, lessThan, , tax]) => { + expectTaxUnder100KRange(FilingStatus.MFJ, min, lessThan - 0.01, tax) + }) + + // Over $100,000 + const amounts = [ + [100000, 13497], + [172750, 29502], + [172751, 29502], + [329850, 67206], + [329851, 67206], + [418850, 95686], + [418851, 95686], + [628300, 168994], + [628301, 168994] + ] + amounts.forEach(([amount, tax]) => { + expectTax(FilingStatus.MFJ, amount, tax) + }) + }) + + it('ordinary taxes for married filing separately status should be correct', async () => { + const rows = await getTaxTable() + rows.forEach(([min, lessThan, , , tax]) => { + expectTaxUnder100KRange(FilingStatus.MFS, min, lessThan - 0.01, tax) + }) + + // Over $100,000 + const amounts = [ + [100000, 18021], + [164925, 33603], + [164926, 33603], + [209425, 47843], + [209426, 47843], + [314150, 84497], + [314151, 84497] + ] + amounts.forEach(([amount, tax]) => { + expectTax(FilingStatus.MFS, amount, tax) + }) + }) + + it('ordinary taxes for head of household status should be correct', async () => { + const rows = await getTaxTable() + rows.forEach(([min, lessThan, , , , tax]) => { + expectTaxUnder100KRange(FilingStatus.HOH, min, lessThan - 0.01, tax) + }) + + // Over $100,000 + const amounts = [ + [100000, 16569], + [164900, 32145], + [164901, 32145], + [209400, 46385], + [209401, 46385], + [523600, 156355], + [523601, 156355] + ] + amounts.forEach(([amount, tax]) => { + expectTax(FilingStatus.HOH, amount, tax) + }) + }) +}) diff --git a/src/forms/Y2021/tests/taxTable.csv b/src/forms/Y2021/tests/taxTable.csv new file mode 100644 index 000000000..31c42a25c --- /dev/null +++ b/src/forms/Y2021/tests/taxTable.csv @@ -0,0 +1,2063 @@ +At Least,Less than,Single,Married Filing Jointly,Married Filing Separately,Head of Household +0,5,0,0,0,0 +5,15,1,1,1,1 +15,25,2,2,2,2 +25,50,4,4,4,4 +50,75,6,6,6,6 +75,100,9,9,9,9 +100,125,11,11,11,11 +125,150,14,14,14,14 +150,175,16,16,16,16 +175,200,19,19,19,19 +200,225,21,21,21,21 +225,250,24,24,24,24 +250,275,26,26,26,26 +275,300,29,29,29,29 +300,325,31,31,31,31 +325,350,34,34,34,34 +350,375,36,36,36,36 +375,400,39,39,39,39 +400,425,41,41,41,41 +425,450,44,44,44,44 +450,475,46,46,46,46 +475,500,49,49,49,49 +500,525,51,51,51,51 +525,550,54,54,54,54 +550,575,56,56,56,56 +575,600,59,59,59,59 +600,625,61,61,61,61 +625,650,64,64,64,64 +650,675,66,66,66,66 +675,700,69,69,69,69 +700,725,71,71,71,71 +725,750,74,74,74,74 +750,775,76,76,76,76 +775,800,79,79,79,79 +800,825,81,81,81,81 +825,850,84,84,84,84 +850,875,86,86,86,86 +875,900,89,89,89,89 +900,925,91,91,91,91 +925,950,94,94,94,94 +950,975,96,96,96,96 +975,1000,99,99,99,99 +1000,1025,101,101,101,101 +1025,1050,104,104,104,104 +1050,1075,106,106,106,106 +1075,1100,109,109,109,109 +1100,1125,111,111,111,111 +1125,1150,114,114,114,114 +1150,1175,116,116,116,116 +1175,1200,119,119,119,119 +1200,1225,121,121,121,121 +1225,1250,124,124,124,124 +1250,1275,126,126,126,126 +1275,1300,129,129,129,129 +1300,1325,131,131,131,131 +1325,1350,134,134,134,134 +1350,1375,136,136,136,136 +1375,1400,139,139,139,139 +1400,1425,141,141,141,141 +1425,1450,144,144,144,144 +1450,1475,146,146,146,146 +1475,1500,149,149,149,149 +1500,1525,151,151,151,151 +1525,1550,154,154,154,154 +1550,1575,156,156,156,156 +1575,1600,159,159,159,159 +1600,1625,161,161,161,161 +1625,1650,164,164,164,164 +1650,1675,166,166,166,166 +1675,1700,169,169,169,169 +1700,1725,171,171,171,171 +1725,1750,174,174,174,174 +1750,1775,176,176,176,176 +1775,1800,179,179,179,179 +1800,1825,181,181,181,181 +1825,1850,184,184,184,184 +1850,1875,186,186,186,186 +1875,1900,189,189,189,189 +1900,1925,191,191,191,191 +1925,1950,194,194,194,194 +1950,1975,196,196,196,196 +1975,2000,199,199,199,199 +2000,2025,201,201,201,201 +2025,2050,204,204,204,204 +2050,2075,206,206,206,206 +2075,2100,209,209,209,209 +2100,2125,211,211,211,211 +2125,2150,214,214,214,214 +2150,2175,216,216,216,216 +2175,2200,219,219,219,219 +2200,2225,221,221,221,221 +2225,2250,224,224,224,224 +2250,2275,226,226,226,226 +2275,2300,229,229,229,229 +2300,2325,231,231,231,231 +2325,2350,234,234,234,234 +2350,2375,236,236,236,236 +2375,2400,239,239,239,239 +2400,2425,241,241,241,241 +2425,2450,244,244,244,244 +2450,2475,246,246,246,246 +2475,2500,249,249,249,249 +2500,2525,251,251,251,251 +2525,2550,254,254,254,254 +2550,2575,256,256,256,256 +2575,2600,259,259,259,259 +2600,2625,261,261,261,261 +2625,2650,264,264,264,264 +2650,2675,266,266,266,266 +2675,2700,269,269,269,269 +2700,2725,271,271,271,271 +2725,2750,274,274,274,274 +2750,2775,276,276,276,276 +2775,2800,279,279,279,279 +2800,2825,281,281,281,281 +2825,2850,284,284,284,284 +2850,2875,286,286,286,286 +2875,2900,289,289,289,289 +2900,2925,291,291,291,291 +2925,2950,294,294,294,294 +2950,2975,296,296,296,296 +2975,3000,299,299,299,299 +3000,3050,303,303,303,303 +3050,3100,308,308,308,308 +3100,3150,313,313,313,313 +3150,3200,318,318,318,318 +3200,3250,323,323,323,323 +3250,3300,328,328,328,328 +3300,3350,333,333,333,333 +3350,3400,338,338,338,338 +3400,3450,343,343,343,343 +3450,3500,348,348,348,348 +3500,3550,353,353,353,353 +3550,3600,358,358,358,358 +3600,3650,363,363,363,363 +3650,3700,368,368,368,368 +3700,3750,373,373,373,373 +3750,3800,378,378,378,378 +3800,3850,383,383,383,383 +3850,3900,388,388,388,388 +3900,3950,393,393,393,393 +3950,4000,398,398,398,398 +4000,4050,403,403,403,403 +4050,4100,408,408,408,408 +4100,4150,413,413,413,413 +4150,4200,418,418,418,418 +4200,4250,423,423,423,423 +4250,4300,428,428,428,428 +4300,4350,433,433,433,433 +4350,4400,438,438,438,438 +4400,4450,443,443,443,443 +4450,4500,448,448,448,448 +4500,4550,453,453,453,453 +4550,4600,458,458,458,458 +4600,4650,463,463,463,463 +4650,4700,468,468,468,468 +4700,4750,473,473,473,473 +4750,4800,478,478,478,478 +4800,4850,483,483,483,483 +4850,4900,488,488,488,488 +4900,4950,493,493,493,493 +4950,5000,498,498,498,498 +5000,5050,503,503,503,503 +5050,5100,508,508,508,508 +5100,5150,513,513,513,513 +5150,5200,518,518,518,518 +5200,5250,523,523,523,523 +5250,5300,528,528,528,528 +5300,5350,533,533,533,533 +5350,5400,538,538,538,538 +5400,5450,543,543,543,543 +5450,5500,548,548,548,548 +5500,5550,553,553,553,553 +5550,5600,558,558,558,558 +5600,5650,563,563,563,563 +5650,5700,568,568,568,568 +5700,5750,573,573,573,573 +5750,5800,578,578,578,578 +5800,5850,583,583,583,583 +5850,5900,588,588,588,588 +5900,5950,593,593,593,593 +5950,6000,598,598,598,598 +6000,6050,603,603,603,603 +6050,6100,608,608,608,608 +6100,6150,613,613,613,613 +6150,6200,618,618,618,618 +6200,6250,623,623,623,623 +6250,6300,628,628,628,628 +6300,6350,633,633,633,633 +6350,6400,638,638,638,638 +6400,6450,643,643,643,643 +6450,6500,648,648,648,648 +6500,6550,653,653,653,653 +6550,6600,658,658,658,658 +6600,6650,663,663,663,663 +6650,6700,668,668,668,668 +6700,6750,673,673,673,673 +6750,6800,678,678,678,678 +6800,6850,683,683,683,683 +6850,6900,688,688,688,688 +6900,6950,693,693,693,693 +6950,7000,698,698,698,698 +7000,7050,703,703,703,703 +7050,7100,708,708,708,708 +7100,7150,713,713,713,713 +7150,7200,718,718,718,718 +7200,7250,723,723,723,723 +7250,7300,728,728,728,728 +7300,7350,733,733,733,733 +7350,7400,738,738,738,738 +7400,7450,743,743,743,743 +7450,7500,748,748,748,748 +7500,7550,753,753,753,753 +7550,7600,758,758,758,758 +7600,7650,763,763,763,763 +7650,7700,768,768,768,768 +7700,7750,773,773,773,773 +7750,7800,778,778,778,778 +7800,7850,783,783,783,783 +7850,7900,788,788,788,788 +7900,7950,793,793,793,793 +7950,8000,798,798,798,798 +8000,8050,803,803,803,803 +8050,8100,808,808,808,808 +8100,8150,813,813,813,813 +8150,8200,818,818,818,818 +8200,8250,823,823,823,823 +8250,8300,828,828,828,828 +8300,8350,833,833,833,833 +8350,8400,838,838,838,838 +8400,8450,843,843,843,843 +8450,8500,848,848,848,848 +8500,8550,853,853,853,853 +8550,8600,858,858,858,858 +8600,8650,863,863,863,863 +8650,8700,868,868,868,868 +8700,8750,873,873,873,873 +8750,8800,878,878,878,878 +8800,8850,883,883,883,883 +8850,8900,888,888,888,888 +8900,8950,893,893,893,893 +8950,9000,898,898,898,898 +9000,9050,903,903,903,903 +9050,9100,908,908,908,908 +9100,9150,913,913,913,913 +9150,9200,918,918,918,918 +9200,9250,923,923,923,923 +9250,9300,928,928,928,928 +9300,9350,933,933,933,933 +9350,9400,938,938,938,938 +9400,9450,943,943,943,943 +9450,9500,948,948,948,948 +9500,9550,953,953,953,953 +9550,9600,958,958,958,958 +9600,9650,963,963,963,963 +9650,9700,968,968,968,968 +9700,9750,973,973,973,973 +9750,9800,978,978,978,978 +9800,9850,983,983,983,983 +9850,9900,988,988,988,988 +9900,9950,993,993,993,993 +9950,10000,998,998,998,998 +10000,10050,1004,1003,1004,1003 +10050,10100,1010,1008,1010,1008 +10100,10150,1016,1013,1016,1013 +10150,10200,1022,1018,1022,1018 +10200,10250,1028,1023,1028,1023 +10250,10300,1034,1028,1034,1028 +10300,10350,1040,1033,1040,1033 +10350,10400,1046,1038,1046,1038 +10400,10450,1052,1043,1052,1043 +10450,10500,1058,1048,1058,1048 +10500,10550,1064,1053,1064,1053 +10550,10600,1070,1058,1070,1058 +10600,10650,1076,1063,1076,1063 +10650,10700,1082,1068,1082,1068 +10700,10750,1088,1073,1088,1073 +10750,10800,1094,1078,1094,1078 +10800,10850,1100,1083,1100,1083 +10850,10900,1106,1088,1106,1088 +10900,10950,1112,1093,1112,1093 +10950,11000,1118,1098,1118,1098 +11000,11050,1124,1103,1124,1103 +11050,11100,1130,1108,1130,1108 +11100,11150,1136,1113,1136,1113 +11150,11200,1142,1118,1142,1118 +11200,11250,1148,1123,1148,1123 +11250,11300,1154,1128,1154,1128 +11300,11350,1160,1133,1160,1133 +11350,11400,1166,1138,1166,1138 +11400,11450,1172,1143,1172,1143 +11450,11500,1178,1148,1178,1148 +11500,11550,1184,1153,1184,1153 +11550,11600,1190,1158,1190,1158 +11600,11650,1196,1163,1196,1163 +11650,11700,1202,1168,1202,1168 +11700,11750,1208,1173,1208,1173 +11750,11800,1214,1178,1214,1178 +11800,11850,1220,1183,1220,1183 +11850,11900,1226,1188,1226,1188 +11900,11950,1232,1193,1232,1193 +11950,12000,1238,1198,1238,1198 +12000,12050,1244,1203,1244,1203 +12050,12100,1250,1208,1250,1208 +12100,12150,1256,1213,1256,1213 +12150,12200,1262,1218,1262,1218 +12200,12250,1268,1223,1268,1223 +12250,12300,1274,1228,1274,1228 +12300,12350,1280,1233,1280,1233 +12350,12400,1286,1238,1286,1238 +12400,12450,1292,1243,1292,1243 +12450,12500,1298,1248,1298,1248 +12500,12550,1304,1253,1304,1253 +12550,12600,1310,1258,1310,1258 +12600,12650,1316,1263,1316,1263 +12650,12700,1322,1268,1322,1268 +12700,12750,1328,1273,1328,1273 +12750,12800,1334,1278,1334,1278 +12800,12850,1340,1283,1340,1283 +12850,12900,1346,1288,1346,1288 +12900,12950,1352,1293,1352,1293 +12950,13000,1358,1298,1358,1298 +13000,13050,1364,1303,1364,1303 +13050,13100,1370,1308,1370,1308 +13100,13150,1376,1313,1376,1313 +13150,13200,1382,1318,1382,1318 +13200,13250,1388,1323,1388,1323 +13250,13300,1394,1328,1394,1328 +13300,13350,1400,1333,1400,1333 +13350,13400,1406,1338,1406,1338 +13400,13450,1412,1343,1412,1343 +13450,13500,1418,1348,1418,1348 +13500,13550,1424,1353,1424,1353 +13550,13600,1430,1358,1430,1358 +13600,13650,1436,1363,1436,1363 +13650,13700,1442,1368,1442,1368 +13700,13750,1448,1373,1448,1373 +13750,13800,1454,1378,1454,1378 +13800,13850,1460,1383,1460,1383 +13850,13900,1466,1388,1466,1388 +13900,13950,1472,1393,1472,1393 +13950,14000,1478,1398,1478,1398 +14000,14050,1484,1403,1484,1403 +14050,14100,1490,1408,1490,1408 +14100,14150,1496,1413,1496,1413 +14150,14200,1502,1418,1502,1418 +14200,14250,1508,1423,1508,1423 +14250,14300,1514,1428,1514,1429 +14300,14350,1520,1433,1520,1435 +14350,14400,1526,1438,1526,1441 +14400,14450,1532,1443,1532,1447 +14450,14500,1538,1448,1538,1453 +14500,14550,1544,1453,1544,1459 +14550,14600,1550,1458,1550,1465 +14600,14650,1556,1463,1556,1471 +14650,14700,1562,1468,1562,1477 +14700,14750,1568,1473,1568,1483 +14750,14800,1574,1478,1574,1489 +14800,14850,1580,1483,1580,1495 +14850,14900,1586,1488,1586,1501 +14900,14950,1592,1493,1592,1507 +14950,15000,1598,1498,1598,1513 +15000,15050,1604,1503,1604,1519 +15050,15100,1610,1508,1610,1525 +15100,15150,1616,1513,1616,1531 +15150,15200,1622,1518,1622,1537 +15200,15250,1628,1523,1628,1543 +15250,15300,1634,1528,1634,1549 +15300,15350,1640,1533,1640,1555 +15350,15400,1646,1538,1646,1561 +15400,15450,1652,1543,1652,1567 +15450,15500,1658,1548,1658,1573 +15500,15550,1664,1553,1664,1579 +15550,15600,1670,1558,1670,1585 +15600,15650,1676,1563,1676,1591 +15650,15700,1682,1568,1682,1597 +15700,15750,1688,1573,1688,1603 +15750,15800,1694,1578,1694,1609 +15800,15850,1700,1583,1700,1615 +15850,15900,1706,1588,1706,1621 +15900,15950,1712,1593,1712,1627 +15950,16000,1718,1598,1718,1633 +16000,16050,1724,1603,1724,1639 +16050,16100,1730,1608,1730,1645 +16100,16150,1736,1613,1736,1651 +16150,16200,1742,1618,1742,1657 +16200,16250,1748,1623,1748,1663 +16250,16300,1754,1628,1754,1669 +16300,16350,1760,1633,1760,1675 +16350,16400,1766,1638,1766,1681 +16400,16450,1772,1643,1772,1687 +16450,16500,1778,1648,1778,1693 +16500,16550,1784,1653,1784,1699 +16550,16600,1790,1658,1790,1705 +16600,16650,1796,1663,1796,1711 +16650,16700,1802,1668,1802,1717 +16700,16750,1808,1673,1808,1723 +16750,16800,1814,1678,1814,1729 +16800,16850,1820,1683,1820,1735 +16850,16900,1826,1688,1826,1741 +16900,16950,1832,1693,1832,1747 +16950,17000,1838,1698,1838,1753 +17000,17050,1844,1703,1844,1759 +17050,17100,1850,1708,1850,1765 +17100,17150,1856,1713,1856,1771 +17150,17200,1862,1718,1862,1777 +17200,17250,1868,1723,1868,1783 +17250,17300,1874,1728,1874,1789 +17300,17350,1880,1733,1880,1795 +17350,17400,1886,1738,1886,1801 +17400,17450,1892,1743,1892,1807 +17450,17500,1898,1748,1898,1813 +17500,17550,1904,1753,1904,1819 +17550,17600,1910,1758,1910,1825 +17600,17650,1916,1763,1916,1831 +17650,17700,1922,1768,1922,1837 +17700,17750,1928,1773,1928,1843 +17750,17800,1934,1778,1934,1849 +17800,17850,1940,1783,1940,1855 +17850,17900,1946,1788,1946,1861 +17900,17950,1952,1793,1952,1867 +17950,18000,1958,1798,1958,1873 +18000,18050,1964,1803,1964,1879 +18050,18100,1970,1808,1970,1885 +18100,18150,1976,1813,1976,1891 +18150,18200,1982,1818,1982,1897 +18200,18250,1988,1823,1988,1903 +18250,18300,1994,1828,1994,1909 +18300,18350,2000,1833,2000,1915 +18350,18400,2006,1838,2006,1921 +18400,18450,2012,1843,2012,1927 +18450,18500,2018,1848,2018,1933 +18500,18550,2024,1853,2024,1939 +18550,18600,2030,1858,2030,1945 +18600,18650,2036,1863,2036,1951 +18650,18700,2042,1868,2042,1957 +18700,18750,2048,1873,2048,1963 +18750,18800,2054,1878,2054,1969 +18800,18850,2060,1883,2060,1975 +18850,18900,2066,1888,2066,1981 +18900,18950,2072,1893,2072,1987 +18950,19000,2078,1898,2078,1993 +19000,19050,2084,1903,2084,1999 +19050,19100,2090,1908,2090,2005 +19100,19150,2096,1913,2096,2011 +19150,19200,2102,1918,2102,2017 +19200,19250,2108,1923,2108,2023 +19250,19300,2114,1928,2114,2029 +19300,19350,2120,1933,2120,2035 +19350,19400,2126,1938,2126,2041 +19400,19450,2132,1943,2132,2047 +19450,19500,2138,1948,2138,2053 +19500,19550,2144,1953,2144,2059 +19550,19600,2150,1958,2150,2065 +19600,19650,2156,1963,2156,2071 +19650,19700,2162,1968,2162,2077 +19700,19750,2168,1973,2168,2083 +19750,19800,2174,1978,2174,2089 +19800,19850,2180,1983,2180,2095 +19850,19900,2186,1988,2186,2101 +19900,19950,2192,1993,2192,2107 +19950,20000,2198,1999,2198,2113 +20000,20050,2204,2005,2204,2119 +20050,20100,2210,2011,2210,2125 +20100,20150,2216,2017,2216,2131 +20150,20200,2222,2023,2222,2137 +20200,20250,2228,2029,2228,2143 +20250,20300,2234,2035,2234,2149 +20300,20350,2240,2041,2240,2155 +20350,20400,2246,2047,2246,2161 +20400,20450,2252,2053,2252,2167 +20450,20500,2258,2059,2258,2173 +20500,20550,2264,2065,2264,2179 +20550,20600,2270,2071,2270,2185 +20600,20650,2276,2077,2276,2191 +20650,20700,2282,2083,2282,2197 +20700,20750,2288,2089,2288,2203 +20750,20800,2294,2095,2294,2209 +20800,20850,2300,2101,2300,2215 +20850,20900,2306,2107,2306,2221 +20900,20950,2312,2113,2312,2227 +20950,21000,2318,2119,2318,2233 +21000,21050,2324,2125,2324,2239 +21050,21100,2330,2131,2330,2245 +21100,21150,2336,2137,2336,2251 +21150,21200,2342,2143,2342,2257 +21200,21250,2348,2149,2348,2263 +21250,21300,2354,2155,2354,2269 +21300,21350,2360,2161,2360,2275 +21350,21400,2366,2167,2366,2281 +21400,21450,2372,2173,2372,2287 +21450,21500,2378,2179,2378,2293 +21500,21550,2384,2185,2384,2299 +21550,21600,2390,2191,2390,2305 +21600,21650,2396,2197,2396,2311 +21650,21700,2402,2203,2402,2317 +21700,21750,2408,2209,2408,2323 +21750,21800,2414,2215,2414,2329 +21800,21850,2420,2221,2420,2335 +21850,21900,2426,2227,2426,2341 +21900,21950,2432,2233,2432,2347 +21950,22000,2438,2239,2438,2353 +22000,22050,2444,2245,2444,2359 +22050,22100,2450,2251,2450,2365 +22100,22150,2456,2257,2456,2371 +22150,22200,2462,2263,2462,2377 +22200,22250,2468,2269,2468,2383 +22250,22300,2474,2275,2474,2389 +22300,22350,2480,2281,2480,2395 +22350,22400,2486,2287,2486,2401 +22400,22450,2492,2293,2492,2407 +22450,22500,2498,2299,2498,2413 +22500,22550,2504,2305,2504,2419 +22550,22600,2510,2311,2510,2425 +22600,22650,2516,2317,2516,2431 +22650,22700,2522,2323,2522,2437 +22700,22750,2528,2329,2528,2443 +22750,22800,2534,2335,2534,2449 +22800,22850,2540,2341,2540,2455 +22850,22900,2546,2347,2546,2461 +22900,22950,2552,2353,2552,2467 +22950,23000,2558,2359,2558,2473 +23000,23050,2564,2365,2564,2479 +23050,23100,2570,2371,2570,2485 +23100,23150,2576,2377,2576,2491 +23150,23200,2582,2383,2582,2497 +23200,23250,2588,2389,2588,2503 +23250,23300,2594,2395,2594,2509 +23300,23350,2600,2401,2600,2515 +23350,23400,2606,2407,2606,2521 +23400,23450,2612,2413,2612,2527 +23450,23500,2618,2419,2618,2533 +23500,23550,2624,2425,2624,2539 +23550,23600,2630,2431,2630,2545 +23600,23650,2636,2437,2636,2551 +23650,23700,2642,2443,2642,2557 +23700,23750,2648,2449,2648,2563 +23750,23800,2654,2455,2654,2569 +23800,23850,2660,2461,2660,2575 +23850,23900,2666,2467,2666,2581 +23900,23950,2672,2473,2672,2587 +23950,24000,2678,2479,2678,2593 +24000,24050,2684,2485,2684,2599 +24050,24100,2690,2491,2690,2605 +24100,24150,2696,2497,2696,2611 +24150,24200,2702,2503,2702,2617 +24200,24250,2708,2509,2708,2623 +24250,24300,2714,2515,2714,2629 +24300,24350,2720,2521,2720,2635 +24350,24400,2726,2527,2726,2641 +24400,24450,2732,2533,2732,2647 +24450,24500,2738,2539,2738,2653 +24500,24550,2744,2545,2744,2659 +24550,24600,2750,2551,2750,2665 +24600,24650,2756,2557,2756,2671 +24650,24700,2762,2563,2762,2677 +24700,24750,2768,2569,2768,2683 +24750,24800,2774,2575,2774,2689 +24800,24850,2780,2581,2780,2695 +24850,24900,2786,2587,2786,2701 +24900,24950,2792,2593,2792,2707 +24950,25000,2798,2599,2798,2713 +25000,25050,2804,2605,2804,2719 +25050,25100,2810,2611,2810,2725 +25100,25150,2816,2617,2816,2731 +25150,25200,2822,2623,2822,2737 +25200,25250,2828,2629,2828,2743 +25250,25300,2834,2635,2834,2749 +25300,25350,2840,2641,2840,2755 +25350,25400,2846,2647,2846,2761 +25400,25450,2852,2653,2852,2767 +25450,25500,2858,2659,2858,2773 +25500,25550,2864,2665,2864,2779 +25550,25600,2870,2671,2870,2785 +25600,25650,2876,2677,2876,2791 +25650,25700,2882,2683,2882,2797 +25700,25750,2888,2689,2888,2803 +25750,25800,2894,2695,2894,2809 +25800,25850,2900,2701,2900,2815 +25850,25900,2906,2707,2906,2821 +25900,25950,2912,2713,2912,2827 +25950,26000,2918,2719,2918,2833 +26000,26050,2924,2725,2924,2839 +26050,26100,2930,2731,2930,2845 +26100,26150,2936,2737,2936,2851 +26150,26200,2942,2743,2942,2857 +26200,26250,2948,2749,2948,2863 +26250,26300,2954,2755,2954,2869 +26300,26350,2960,2761,2960,2875 +26350,26400,2966,2767,2966,2881 +26400,26450,2972,2773,2972,2887 +26450,26500,2978,2779,2978,2893 +26500,26550,2984,2785,2984,2899 +26550,26600,2990,2791,2990,2905 +26600,26650,2996,2797,2996,2911 +26650,26700,3002,2803,3002,2917 +26700,26750,3008,2809,3008,2923 +26750,26800,3014,2815,3014,2929 +26800,26850,3020,2821,3020,2935 +26850,26900,3026,2827,3026,2941 +26900,26950,3032,2833,3032,2947 +26950,27000,3038,2839,3038,2953 +27000,27050,3044,2845,3044,2959 +27050,27100,3050,2851,3050,2965 +27100,27150,3056,2857,3056,2971 +27150,27200,3062,2863,3062,2977 +27200,27250,3068,2869,3068,2983 +27250,27300,3074,2875,3074,2989 +27300,27350,3080,2881,3080,2995 +27350,27400,3086,2887,3086,3001 +27400,27450,3092,2893,3092,3007 +27450,27500,3098,2899,3098,3013 +27500,27550,3104,2905,3104,3019 +27550,27600,3110,2911,3110,3025 +27600,27650,3116,2917,3116,3031 +27650,27700,3122,2923,3122,3037 +27700,27750,3128,2929,3128,3043 +27750,27800,3134,2935,3134,3049 +27800,27850,3140,2941,3140,3055 +27850,27900,3146,2947,3146,3061 +27900,27950,3152,2953,3152,3067 +27950,28000,3158,2959,3158,3073 +28000,28050,3164,2965,3164,3079 +28050,28100,3170,2971,3170,3085 +28100,28150,3176,2977,3176,3091 +28150,28200,3182,2983,3182,3097 +28200,28250,3188,2989,3188,3103 +28250,28300,3194,2995,3194,3109 +28300,28350,3200,3001,3200,3115 +28350,28400,3206,3007,3206,3121 +28400,28450,3212,3013,3212,3127 +28450,28500,3218,3019,3218,3133 +28500,28550,3224,3025,3224,3139 +28550,28600,3230,3031,3230,3145 +28600,28650,3236,3037,3236,3151 +28650,28700,3242,3043,3242,3157 +28700,28750,3248,3049,3248,3163 +28750,28800,3254,3055,3254,3169 +28800,28850,3260,3061,3260,3175 +28850,28900,3266,3067,3266,3181 +28900,28950,3272,3073,3272,3187 +28950,29000,3278,3079,3278,3193 +29000,29050,3284,3085,3284,3199 +29050,29100,3290,3091,3290,3205 +29100,29150,3296,3097,3296,3211 +29150,29200,3302,3103,3302,3217 +29200,29250,3308,3109,3308,3223 +29250,29300,3314,3115,3314,3229 +29300,29350,3320,3121,3320,3235 +29350,29400,3326,3127,3326,3241 +29400,29450,3332,3133,3332,3247 +29450,29500,3338,3139,3338,3253 +29500,29550,3344,3145,3344,3259 +29550,29600,3350,3151,3350,3265 +29600,29650,3356,3157,3356,3271 +29650,29700,3362,3163,3362,3277 +29700,29750,3368,3169,3368,3283 +29750,29800,3374,3175,3374,3289 +29800,29850,3380,3181,3380,3295 +29850,29900,3386,3187,3386,3301 +29900,29950,3392,3193,3392,3307 +29950,30000,3398,3199,3398,3313 +30000,30050,3404,3205,3404,3319 +30050,30100,3410,3211,3410,3325 +30100,30150,3416,3217,3416,3331 +30150,30200,3422,3223,3422,3337 +30200,30250,3428,3229,3428,3343 +30250,30300,3434,3235,3434,3349 +30300,30350,3440,3241,3440,3355 +30350,30400,3446,3247,3446,3361 +30400,30450,3452,3253,3452,3367 +30450,30500,3458,3259,3458,3373 +30500,30550,3464,3265,3464,3379 +30550,30600,3470,3271,3470,3385 +30600,30650,3476,3277,3476,3391 +30650,30700,3482,3283,3482,3397 +30700,30750,3488,3289,3488,3403 +30750,30800,3494,3295,3494,3409 +30800,30850,3500,3301,3500,3415 +30850,30900,3506,3307,3506,3421 +30900,30950,3512,3313,3512,3427 +30950,31000,3518,3319,3518,3433 +31000,31050,3524,3325,3524,3439 +31050,31100,3530,3331,3530,3445 +31100,31150,3536,3337,3536,3451 +31150,31200,3542,3343,3542,3457 +31200,31250,3548,3349,3548,3463 +31250,31300,3554,3355,3554,3469 +31300,31350,3560,3361,3560,3475 +31350,31400,3566,3367,3566,3481 +31400,31450,3572,3373,3572,3487 +31450,31500,3578,3379,3578,3493 +31500,31550,3584,3385,3584,3499 +31550,31600,3590,3391,3590,3505 +31600,31650,3596,3397,3596,3511 +31650,31700,3602,3403,3602,3517 +31700,31750,3608,3409,3608,3523 +31750,31800,3614,3415,3614,3529 +31800,31850,3620,3421,3620,3535 +31850,31900,3626,3427,3626,3541 +31900,31950,3632,3433,3632,3547 +31950,32000,3638,3439,3638,3553 +32000,32050,3644,3445,3644,3559 +32050,32100,3650,3451,3650,3565 +32100,32150,3656,3457,3656,3571 +32150,32200,3662,3463,3662,3577 +32200,32250,3668,3469,3668,3583 +32250,32300,3674,3475,3674,3589 +32300,32350,3680,3481,3680,3595 +32350,32400,3686,3487,3686,3601 +32400,32450,3692,3493,3692,3607 +32450,32500,3698,3499,3698,3613 +32500,32550,3704,3505,3704,3619 +32550,32600,3710,3511,3710,3625 +32600,32650,3716,3517,3716,3631 +32650,32700,3722,3523,3722,3637 +32700,32750,3728,3529,3728,3643 +32750,32800,3734,3535,3734,3649 +32800,32850,3740,3541,3740,3655 +32850,32900,3746,3547,3746,3661 +32900,32950,3752,3553,3752,3667 +32950,33000,3758,3559,3758,3673 +33000,33050,3764,3565,3764,3679 +33050,33100,3770,3571,3770,3685 +33100,33150,3776,3577,3776,3691 +33150,33200,3782,3583,3782,3697 +33200,33250,3788,3589,3788,3703 +33250,33300,3794,3595,3794,3709 +33300,33350,3800,3601,3800,3715 +33350,33400,3806,3607,3806,3721 +33400,33450,3812,3613,3812,3727 +33450,33500,3818,3619,3818,3733 +33500,33550,3824,3625,3824,3739 +33550,33600,3830,3631,3830,3745 +33600,33650,3836,3637,3836,3751 +33650,33700,3842,3643,3842,3757 +33700,33750,3848,3649,3848,3763 +33750,33800,3854,3655,3854,3769 +33800,33850,3860,3661,3860,3775 +33850,33900,3866,3667,3866,3781 +33900,33950,3872,3673,3872,3787 +33950,34000,3878,3679,3878,3793 +34000,34050,3884,3685,3884,3799 +34050,34100,3890,3691,3890,3805 +34100,34150,3896,3697,3896,3811 +34150,34200,3902,3703,3902,3817 +34200,34250,3908,3709,3908,3823 +34250,34300,3914,3715,3914,3829 +34300,34350,3920,3721,3920,3835 +34350,34400,3926,3727,3926,3841 +34400,34450,3932,3733,3932,3847 +34450,34500,3938,3739,3938,3853 +34500,34550,3944,3745,3944,3859 +34550,34600,3950,3751,3950,3865 +34600,34650,3956,3757,3956,3871 +34650,34700,3962,3763,3962,3877 +34700,34750,3968,3769,3968,3883 +34750,34800,3974,3775,3974,3889 +34800,34850,3980,3781,3980,3895 +34850,34900,3986,3787,3986,3901 +34900,34950,3992,3793,3992,3907 +34950,35000,3998,3799,3998,3913 +35000,35050,4004,3805,4004,3919 +35050,35100,4010,3811,4010,3925 +35100,35150,4016,3817,4016,3931 +35150,35200,4022,3823,4022,3937 +35200,35250,4028,3829,4028,3943 +35250,35300,4034,3835,4034,3949 +35300,35350,4040,3841,4040,3955 +35350,35400,4046,3847,4046,3961 +35400,35450,4052,3853,4052,3967 +35450,35500,4058,3859,4058,3973 +35500,35550,4064,3865,4064,3979 +35550,35600,4070,3871,4070,3985 +35600,35650,4076,3877,4076,3991 +35650,35700,4082,3883,4082,3997 +35700,35750,4088,3889,4088,4003 +35750,35800,4094,3895,4094,4009 +35800,35850,4100,3901,4100,4015 +35850,35900,4106,3907,4106,4021 +35900,35950,4112,3913,4112,4027 +35950,36000,4118,3919,4118,4033 +36000,36050,4124,3925,4124,4039 +36050,36100,4130,3931,4130,4045 +36100,36150,4136,3937,4136,4051 +36150,36200,4142,3943,4142,4057 +36200,36250,4148,3949,4148,4063 +36250,36300,4154,3955,4154,4069 +36300,36350,4160,3961,4160,4075 +36350,36400,4166,3967,4166,4081 +36400,36450,4172,3973,4172,4087 +36450,36500,4178,3979,4178,4093 +36500,36550,4184,3985,4184,4099 +36550,36600,4190,3991,4190,4105 +36600,36650,4196,3997,4196,4111 +36650,36700,4202,4003,4202,4117 +36700,36750,4208,4009,4208,4123 +36750,36800,4214,4015,4214,4129 +36800,36850,4220,4021,4220,4135 +36850,36900,4226,4027,4226,4141 +36900,36950,4232,4033,4232,4147 +36950,37000,4238,4039,4238,4153 +37000,37050,4244,4045,4244,4159 +37050,37100,4250,4051,4250,4165 +37100,37150,4256,4057,4256,4171 +37150,37200,4262,4063,4262,4177 +37200,37250,4268,4069,4268,4183 +37250,37300,4274,4075,4274,4189 +37300,37350,4280,4081,4280,4195 +37350,37400,4286,4087,4286,4201 +37400,37450,4292,4093,4292,4207 +37450,37500,4298,4099,4298,4213 +37500,37550,4304,4105,4304,4219 +37550,37600,4310,4111,4310,4225 +37600,37650,4316,4117,4316,4231 +37650,37700,4322,4123,4322,4237 +37700,37750,4328,4129,4328,4243 +37750,37800,4334,4135,4334,4249 +37800,37850,4340,4141,4340,4255 +37850,37900,4346,4147,4346,4261 +37900,37950,4352,4153,4352,4267 +37950,38000,4358,4159,4358,4273 +38000,38050,4364,4165,4364,4279 +38050,38100,4370,4171,4370,4285 +38100,38150,4376,4177,4376,4291 +38150,38200,4382,4183,4382,4297 +38200,38250,4388,4189,4388,4303 +38250,38300,4394,4195,4394,4309 +38300,38350,4400,4201,4400,4315 +38350,38400,4406,4207,4406,4321 +38400,38450,4412,4213,4412,4327 +38450,38500,4418,4219,4418,4333 +38500,38550,4424,4225,4424,4339 +38550,38600,4430,4231,4430,4345 +38600,38650,4436,4237,4436,4351 +38650,38700,4442,4243,4442,4357 +38700,38750,4448,4249,4448,4363 +38750,38800,4454,4255,4454,4369 +38800,38850,4460,4261,4460,4375 +38850,38900,4466,4267,4466,4381 +38900,38950,4472,4273,4472,4387 +38950,39000,4478,4279,4478,4393 +39000,39050,4484,4285,4484,4399 +39050,39100,4490,4291,4490,4405 +39100,39150,4496,4297,4496,4411 +39150,39200,4502,4303,4502,4417 +39200,39250,4508,4309,4508,4423 +39250,39300,4514,4315,4514,4429 +39300,39350,4520,4321,4520,4435 +39350,39400,4526,4327,4526,4441 +39400,39450,4532,4333,4532,4447 +39450,39500,4538,4339,4538,4453 +39500,39550,4544,4345,4544,4459 +39550,39600,4550,4351,4550,4465 +39600,39650,4556,4357,4556,4471 +39650,39700,4562,4363,4562,4477 +39700,39750,4568,4369,4568,4483 +39750,39800,4574,4375,4574,4489 +39800,39850,4580,4381,4580,4495 +39850,39900,4586,4387,4586,4501 +39900,39950,4592,4393,4592,4507 +39950,40000,4598,4399,4598,4513 +40000,40050,4604,4405,4604,4519 +40050,40100,4610,4411,4610,4525 +40100,40150,4616,4417,4616,4531 +40150,40200,4622,4423,4622,4537 +40200,40250,4628,4429,4628,4543 +40250,40300,4634,4435,4634,4549 +40300,40350,4640,4441,4640,4555 +40350,40400,4646,4447,4646,4561 +40400,40450,4652,4453,4652,4567 +40450,40500,4658,4459,4658,4573 +40500,40550,4664,4465,4664,4579 +40550,40600,4675,4471,4675,4585 +40600,40650,4686,4477,4686,4591 +40650,40700,4697,4483,4697,4597 +40700,40750,4708,4489,4708,4603 +40750,40800,4719,4495,4719,4609 +40800,40850,4730,4501,4730,4615 +40850,40900,4741,4507,4741,4621 +40900,40950,4752,4513,4752,4627 +40950,41000,4763,4519,4763,4633 +41000,41050,4774,4525,4774,4639 +41050,41100,4785,4531,4785,4645 +41100,41150,4796,4537,4796,4651 +41150,41200,4807,4543,4807,4657 +41200,41250,4818,4549,4818,4663 +41250,41300,4829,4555,4829,4669 +41300,41350,4840,4561,4840,4675 +41350,41400,4851,4567,4851,4681 +41400,41450,4862,4573,4862,4687 +41450,41500,4873,4579,4873,4693 +41500,41550,4884,4585,4884,4699 +41550,41600,4895,4591,4895,4705 +41600,41650,4906,4597,4906,4711 +41650,41700,4917,4603,4917,4717 +41700,41750,4928,4609,4928,4723 +41750,41800,4939,4615,4939,4729 +41800,41850,4950,4621,4950,4735 +41850,41900,4961,4627,4961,4741 +41900,41950,4972,4633,4972,4747 +41950,42000,4983,4639,4983,4753 +42000,42050,4994,4645,4994,4759 +42050,42100,5005,4651,5005,4765 +42100,42150,5016,4657,5016,4771 +42150,42200,5027,4663,5027,4777 +42200,42250,5038,4669,5038,4783 +42250,42300,5049,4675,5049,4789 +42300,42350,5060,4681,5060,4795 +42350,42400,5071,4687,5071,4801 +42400,42450,5082,4693,5082,4807 +42450,42500,5093,4699,5093,4813 +42500,42550,5104,4705,5104,4819 +42550,42600,5115,4711,5115,4825 +42600,42650,5126,4717,5126,4831 +42650,42700,5137,4723,5137,4837 +42700,42750,5148,4729,5148,4843 +42750,42800,5159,4735,5159,4849 +42800,42850,5170,4741,5170,4855 +42850,42900,5181,4747,5181,4861 +42900,42950,5192,4753,5192,4867 +42950,43000,5203,4759,5203,4873 +43000,43050,5214,4765,5214,4879 +43050,43100,5225,4771,5225,4885 +43100,43150,5236,4777,5236,4891 +43150,43200,5247,4783,5247,4897 +43200,43250,5258,4789,5258,4903 +43250,43300,5269,4795,5269,4909 +43300,43350,5280,4801,5280,4915 +43350,43400,5291,4807,5291,4921 +43400,43450,5302,4813,5302,4927 +43450,43500,5313,4819,5313,4933 +43500,43550,5324,4825,5324,4939 +43550,43600,5335,4831,5335,4945 +43600,43650,5346,4837,5346,4951 +43650,43700,5357,4843,5357,4957 +43700,43750,5368,4849,5368,4963 +43750,43800,5379,4855,5379,4969 +43800,43850,5390,4861,5390,4975 +43850,43900,5401,4867,5401,4981 +43900,43950,5412,4873,5412,4987 +43950,44000,5423,4879,5423,4993 +44000,44050,5434,4885,5434,4999 +44050,44100,5445,4891,5445,5005 +44100,44150,5456,4897,5456,5011 +44150,44200,5467,4903,5467,5017 +44200,44250,5478,4909,5478,5023 +44250,44300,5489,4915,5489,5029 +44300,44350,5500,4921,5500,5035 +44350,44400,5511,4927,5511,5041 +44400,44450,5522,4933,5522,5047 +44450,44500,5533,4939,5533,5053 +44500,44550,5544,4945,5544,5059 +44550,44600,5555,4951,5555,5065 +44600,44650,5566,4957,5566,5071 +44650,44700,5577,4963,5577,5077 +44700,44750,5588,4969,5588,5083 +44750,44800,5599,4975,5599,5089 +44800,44850,5610,4981,5610,5095 +44850,44900,5621,4987,5621,5101 +44900,44950,5632,4993,5632,5107 +44950,45000,5643,4999,5643,5113 +45000,45050,5654,5005,5654,5119 +45050,45100,5665,5011,5665,5125 +45100,45150,5676,5017,5676,5131 +45150,45200,5687,5023,5687,5137 +45200,45250,5698,5029,5698,5143 +45250,45300,5709,5035,5709,5149 +45300,45350,5720,5041,5720,5155 +45350,45400,5731,5047,5731,5161 +45400,45450,5742,5053,5742,5167 +45450,45500,5753,5059,5753,5173 +45500,45550,5764,5065,5764,5179 +45550,45600,5775,5071,5775,5185 +45600,45650,5786,5077,5786,5191 +45650,45700,5797,5083,5797,5197 +45700,45750,5808,5089,5808,5203 +45750,45800,5819,5095,5819,5209 +45800,45850,5830,5101,5830,5215 +45850,45900,5841,5107,5841,5221 +45900,45950,5852,5113,5852,5227 +45950,46000,5863,5119,5863,5233 +46000,46050,5874,5125,5874,5239 +46050,46100,5885,5131,5885,5245 +46100,46150,5896,5137,5896,5251 +46150,46200,5907,5143,5907,5257 +46200,46250,5918,5149,5918,5263 +46250,46300,5929,5155,5929,5269 +46300,46350,5940,5161,5940,5275 +46350,46400,5951,5167,5951,5281 +46400,46450,5962,5173,5962,5287 +46450,46500,5973,5179,5973,5293 +46500,46550,5984,5185,5984,5299 +46550,46600,5995,5191,5995,5305 +46600,46650,6006,5197,6006,5311 +46650,46700,6017,5203,6017,5317 +46700,46750,6028,5209,6028,5323 +46750,46800,6039,5215,6039,5329 +46800,46850,6050,5221,6050,5335 +46850,46900,6061,5227,6061,5341 +46900,46950,6072,5233,6072,5347 +46950,47000,6083,5239,6083,5353 +47000,47050,6094,5245,6094,5359 +47050,47100,6105,5251,6105,5365 +47100,47150,6116,5257,6116,5371 +47150,47200,6127,5263,6127,5377 +47200,47250,6138,5269,6138,5383 +47250,47300,6149,5275,6149,5389 +47300,47350,6160,5281,6160,5395 +47350,47400,6171,5287,6171,5401 +47400,47450,6182,5293,6182,5407 +47450,47500,6193,5299,6193,5413 +47500,47550,6204,5305,6204,5419 +47550,47600,6215,5311,6215,5425 +47600,47650,6226,5317,6226,5431 +47650,47700,6237,5323,6237,5437 +47700,47750,6248,5329,6248,5443 +47750,47800,6259,5335,6259,5449 +47800,47850,6270,5341,6270,5455 +47850,47900,6281,5347,6281,5461 +47900,47950,6292,5353,6292,5467 +47950,48000,6303,5359,6303,5473 +48000,48050,6314,5365,6314,5479 +48050,48100,6325,5371,6325,5485 +48100,48150,6336,5377,6336,5491 +48150,48200,6347,5383,6347,5497 +48200,48250,6358,5389,6358,5503 +48250,48300,6369,5395,6369,5509 +48300,48350,6380,5401,6380,5515 +48350,48400,6391,5407,6391,5521 +48400,48450,6402,5413,6402,5527 +48450,48500,6413,5419,6413,5533 +48500,48550,6424,5425,6424,5539 +48550,48600,6435,5431,6435,5545 +48600,48650,6446,5437,6446,5551 +48650,48700,6457,5443,6457,5557 +48700,48750,6468,5449,6468,5563 +48750,48800,6479,5455,6479,5569 +48800,48850,6490,5461,6490,5575 +48850,48900,6501,5467,6501,5581 +48900,48950,6512,5473,6512,5587 +48950,49000,6523,5479,6523,5593 +49000,49050,6534,5485,6534,5599 +49050,49100,6545,5491,6545,5605 +49100,49150,6556,5497,6556,5611 +49150,49200,6567,5503,6567,5617 +49200,49250,6578,5509,6578,5623 +49250,49300,6589,5515,6589,5629 +49300,49350,6600,5521,6600,5635 +49350,49400,6611,5527,6611,5641 +49400,49450,6622,5533,6622,5647 +49450,49500,6633,5539,6633,5653 +49500,49550,6644,5545,6644,5659 +49550,49600,6655,5551,6655,5665 +49600,49650,6666,5557,6666,5671 +49650,49700,6677,5563,6677,5677 +49700,49750,6688,5569,6688,5683 +49750,49800,6699,5575,6699,5689 +49800,49850,6710,5581,6710,5695 +49850,49900,6721,5587,6721,5701 +49900,49950,6732,5593,6732,5707 +49950,50000,6743,5599,6743,5713 +50000,50050,6754,5605,6754,5719 +50050,50100,6765,5611,6765,5725 +50100,50150,6776,5617,6776,5731 +50150,50200,6787,5623,6787,5737 +50200,50250,6798,5629,6798,5743 +50250,50300,6809,5635,6809,5749 +50300,50350,6820,5641,6820,5755 +50350,50400,6831,5647,6831,5761 +50400,50450,6842,5653,6842,5767 +50450,50500,6853,5659,6853,5773 +50500,50550,6864,5665,6864,5779 +50550,50600,6875,5671,6875,5785 +50600,50650,6886,5677,6886,5791 +50650,50700,6897,5683,6897,5797 +50700,50750,6908,5689,6908,5803 +50750,50800,6919,5695,6919,5809 +50800,50850,6930,5701,6930,5815 +50850,50900,6941,5707,6941,5821 +50900,50950,6952,5713,6952,5827 +50950,51000,6963,5719,6963,5833 +51000,51050,6974,5725,6974,5839 +51050,51100,6985,5731,6985,5845 +51100,51150,6996,5737,6996,5851 +51150,51200,7007,5743,7007,5857 +51200,51250,7018,5749,7018,5863 +51250,51300,7029,5755,7029,5869 +51300,51350,7040,5761,7040,5875 +51350,51400,7051,5767,7051,5881 +51400,51450,7062,5773,7062,5887 +51450,51500,7073,5779,7073,5893 +51500,51550,7084,5785,7084,5899 +51550,51600,7095,5791,7095,5905 +51600,51650,7106,5797,7106,5911 +51650,51700,7117,5803,7117,5917 +51700,51750,7128,5809,7128,5923 +51750,51800,7139,5815,7139,5929 +51800,51850,7150,5821,7150,5935 +51850,51900,7161,5827,7161,5941 +51900,51950,7172,5833,7172,5947 +51950,52000,7183,5839,7183,5953 +52000,52050,7194,5845,7194,5959 +52050,52100,7205,5851,7205,5965 +52100,52150,7216,5857,7216,5971 +52150,52200,7227,5863,7227,5977 +52200,52250,7238,5869,7238,5983 +52250,52300,7249,5875,7249,5989 +52300,52350,7260,5881,7260,5995 +52350,52400,7271,5887,7271,6001 +52400,52450,7282,5893,7282,6007 +52450,52500,7293,5899,7293,6013 +52500,52550,7304,5905,7304,6019 +52550,52600,7315,5911,7315,6025 +52600,52650,7326,5917,7326,6031 +52650,52700,7337,5923,7337,6037 +52700,52750,7348,5929,7348,6043 +52750,52800,7359,5935,7359,6049 +52800,52850,7370,5941,7370,6055 +52850,52900,7381,5947,7381,6061 +52900,52950,7392,5953,7392,6067 +52950,53000,7403,5959,7403,6073 +53000,53050,7414,5965,7414,6079 +53050,53100,7425,5971,7425,6085 +53100,53150,7436,5977,7436,6091 +53150,53200,7447,5983,7447,6097 +53200,53250,7458,5989,7458,6103 +53250,53300,7469,5995,7469,6109 +53300,53350,7480,6001,7480,6115 +53350,53400,7491,6007,7491,6121 +53400,53450,7502,6013,7502,6127 +53450,53500,7513,6019,7513,6133 +53500,53550,7524,6025,7524,6139 +53550,53600,7535,6031,7535,6145 +53600,53650,7546,6037,7546,6151 +53650,53700,7557,6043,7557,6157 +53700,53750,7568,6049,7568,6163 +53750,53800,7579,6055,7579,6169 +53800,53850,7590,6061,7590,6175 +53850,53900,7601,6067,7601,6181 +53900,53950,7612,6073,7612,6187 +53950,54000,7623,6079,7623,6193 +54000,54050,7634,6085,7634,6199 +54050,54100,7645,6091,7645,6205 +54100,54150,7656,6097,7656,6211 +54150,54200,7667,6103,7667,6217 +54200,54250,7678,6109,7678,6226 +54250,54300,7689,6115,7689,6237 +54300,54350,7700,6121,7700,6248 +54350,54400,7711,6127,7711,6259 +54400,54450,7722,6133,7722,6270 +54450,54500,7733,6139,7733,6281 +54500,54550,7744,6145,7744,6292 +54550,54600,7755,6151,7755,6303 +54600,54650,7766,6157,7766,6314 +54650,54700,7777,6163,7777,6325 +54700,54750,7788,6169,7788,6336 +54750,54800,7799,6175,7799,6347 +54800,54850,7810,6181,7810,6358 +54850,54900,7821,6187,7821,6369 +54900,54950,7832,6193,7832,6380 +54950,55000,7843,6199,7843,6391 +55000,55050,7854,6205,7854,6402 +55050,55100,7865,6211,7865,6413 +55100,55150,7876,6217,7876,6424 +55150,55200,7887,6223,7887,6435 +55200,55250,7898,6229,7898,6446 +55250,55300,7909,6235,7909,6457 +55300,55350,7920,6241,7920,6468 +55350,55400,7931,6247,7931,6479 +55400,55450,7942,6253,7942,6490 +55450,55500,7953,6259,7953,6501 +55500,55550,7964,6265,7964,6512 +55550,55600,7975,6271,7975,6523 +55600,55650,7986,6277,7986,6534 +55650,55700,7997,6283,7997,6545 +55700,55750,8008,6289,8008,6556 +55750,55800,8019,6295,8019,6567 +55800,55850,8030,6301,8030,6578 +55850,55900,8041,6307,8041,6589 +55900,55950,8052,6313,8052,6600 +55950,56000,8063,6319,8063,6611 +56000,56050,8074,6325,8074,6622 +56050,56100,8085,6331,8085,6633 +56100,56150,8096,6337,8096,6644 +56150,56200,8107,6343,8107,6655 +56200,56250,8118,6349,8118,6666 +56250,56300,8129,6355,8129,6677 +56300,56350,8140,6361,8140,6688 +56350,56400,8151,6367,8151,6699 +56400,56450,8162,6373,8162,6710 +56450,56500,8173,6379,8173,6721 +56500,56550,8184,6385,8184,6732 +56550,56600,8195,6391,8195,6743 +56600,56650,8206,6397,8206,6754 +56650,56700,8217,6403,8217,6765 +56700,56750,8228,6409,8228,6776 +56750,56800,8239,6415,8239,6787 +56800,56850,8250,6421,8250,6798 +56850,56900,8261,6427,8261,6809 +56900,56950,8272,6433,8272,6820 +56950,57000,8283,6439,8283,6831 +57000,57050,8294,6445,8294,6842 +57050,57100,8305,6451,8305,6853 +57100,57150,8316,6457,8316,6864 +57150,57200,8327,6463,8327,6875 +57200,57250,8338,6469,8338,6886 +57250,57300,8349,6475,8349,6897 +57300,57350,8360,6481,8360,6908 +57350,57400,8371,6487,8371,6919 +57400,57450,8382,6493,8382,6930 +57450,57500,8393,6499,8393,6941 +57500,57550,8404,6505,8404,6952 +57550,57600,8415,6511,8415,6963 +57600,57650,8426,6517,8426,6974 +57650,57700,8437,6523,8437,6985 +57700,57750,8448,6529,8448,6996 +57750,57800,8459,6535,8459,7007 +57800,57850,8470,6541,8470,7018 +57850,57900,8481,6547,8481,7029 +57900,57950,8492,6553,8492,7040 +57950,58000,8503,6559,8503,7051 +58000,58050,8514,6565,8514,7062 +58050,58100,8525,6571,8525,7073 +58100,58150,8536,6577,8536,7084 +58150,58200,8547,6583,8547,7095 +58200,58250,8558,6589,8558,7106 +58250,58300,8569,6595,8569,7117 +58300,58350,8580,6601,8580,7128 +58350,58400,8591,6607,8591,7139 +58400,58450,8602,6613,8602,7150 +58450,58500,8613,6619,8613,7161 +58500,58550,8624,6625,8624,7172 +58550,58600,8635,6631,8635,7183 +58600,58650,8646,6637,8646,7194 +58650,58700,8657,6643,8657,7205 +58700,58750,8668,6649,8668,7216 +58750,58800,8679,6655,8679,7227 +58800,58850,8690,6661,8690,7238 +58850,58900,8701,6667,8701,7249 +58900,58950,8712,6673,8712,7260 +58950,59000,8723,6679,8723,7271 +59000,59050,8734,6685,8734,7282 +59050,59100,8745,6691,8745,7293 +59100,59150,8756,6697,8756,7304 +59150,59200,8767,6703,8767,7315 +59200,59250,8778,6709,8778,7326 +59250,59300,8789,6715,8789,7337 +59300,59350,8800,6721,8800,7348 +59350,59400,8811,6727,8811,7359 +59400,59450,8822,6733,8822,7370 +59450,59500,8833,6739,8833,7381 +59500,59550,8844,6745,8844,7392 +59550,59600,8855,6751,8855,7403 +59600,59650,8866,6757,8866,7414 +59650,59700,8877,6763,8877,7425 +59700,59750,8888,6769,8888,7436 +59750,59800,8899,6775,8899,7447 +59800,59850,8910,6781,8910,7458 +59850,59900,8921,6787,8921,7469 +59900,59950,8932,6793,8932,7480 +59950,60000,8943,6799,8943,7491 +60000,60050,8954,6805,8954,7502 +60050,60100,8965,6811,8965,7513 +60100,60150,8976,6817,8976,7524 +60150,60200,8987,6823,8987,7535 +60200,60250,8998,6829,8998,7546 +60250,60300,9009,6835,9009,7557 +60300,60350,9020,6841,9020,7568 +60350,60400,9031,6847,9031,7579 +60400,60450,9042,6853,9042,7590 +60450,60500,9053,6859,9053,7601 +60500,60550,9064,6865,9064,7612 +60550,60600,9075,6871,9075,7623 +60600,60650,9086,6877,9086,7634 +60650,60700,9097,6883,9097,7645 +60700,60750,9108,6889,9108,7656 +60750,60800,9119,6895,9119,7667 +60800,60850,9130,6901,9130,7678 +60850,60900,9141,6907,9141,7689 +60900,60950,9152,6913,9152,7700 +60950,61000,9163,6919,9163,7711 +61000,61050,9174,6925,9174,7722 +61050,61100,9185,6931,9185,7733 +61100,61150,9196,6937,9196,7744 +61150,61200,9207,6943,9207,7755 +61200,61250,9218,6949,9218,7766 +61250,61300,9229,6955,9229,7777 +61300,61350,9240,6961,9240,7788 +61350,61400,9251,6967,9251,7799 +61400,61450,9262,6973,9262,7810 +61450,61500,9273,6979,9273,7821 +61500,61550,9284,6985,9284,7832 +61550,61600,9295,6991,9295,7843 +61600,61650,9306,6997,9306,7854 +61650,61700,9317,7003,9317,7865 +61700,61750,9328,7009,9328,7876 +61750,61800,9339,7015,9339,7887 +61800,61850,9350,7021,9350,7898 +61850,61900,9361,7027,9361,7909 +61900,61950,9372,7033,9372,7920 +61950,62000,9383,7039,9383,7931 +62000,62050,9394,7045,9394,7942 +62050,62100,9405,7051,9405,7953 +62100,62150,9416,7057,9416,7964 +62150,62200,9427,7063,9427,7975 +62200,62250,9438,7069,9438,7986 +62250,62300,9449,7075,9449,7997 +62300,62350,9460,7081,9460,8008 +62350,62400,9471,7087,9471,8019 +62400,62450,9482,7093,9482,8030 +62450,62500,9493,7099,9493,8041 +62500,62550,9504,7105,9504,8052 +62550,62600,9515,7111,9515,8063 +62600,62650,9526,7117,9526,8074 +62650,62700,9537,7123,9537,8085 +62700,62750,9548,7129,9548,8096 +62750,62800,9559,7135,9559,8107 +62800,62850,9570,7141,9570,8118 +62850,62900,9581,7147,9581,8129 +62900,62950,9592,7153,9592,8140 +62950,63000,9603,7159,9603,8151 +63000,63050,9614,7165,9614,8162 +63050,63100,9625,7171,9625,8173 +63100,63150,9636,7177,9636,8184 +63150,63200,9647,7183,9647,8195 +63200,63250,9658,7189,9658,8206 +63250,63300,9669,7195,9669,8217 +63300,63350,9680,7201,9680,8228 +63350,63400,9691,7207,9691,8239 +63400,63450,9702,7213,9702,8250 +63450,63500,9713,7219,9713,8261 +63500,63550,9724,7225,9724,8272 +63550,63600,9735,7231,9735,8283 +63600,63650,9746,7237,9746,8294 +63650,63700,9757,7243,9757,8305 +63700,63750,9768,7249,9768,8316 +63750,63800,9779,7255,9779,8327 +63800,63850,9790,7261,9790,8338 +63850,63900,9801,7267,9801,8349 +63900,63950,9812,7273,9812,8360 +63950,64000,9823,7279,9823,8371 +64000,64050,9834,7285,9834,8382 +64050,64100,9845,7291,9845,8393 +64100,64150,9856,7297,9856,8404 +64150,64200,9867,7303,9867,8415 +64200,64250,9878,7309,9878,8426 +64250,64300,9889,7315,9889,8437 +64300,64350,9900,7321,9900,8448 +64350,64400,9911,7327,9911,8459 +64400,64450,9922,7333,9922,8470 +64450,64500,9933,7339,9933,8481 +64500,64550,9944,7345,9944,8492 +64550,64600,9955,7351,9955,8503 +64600,64650,9966,7357,9966,8514 +64650,64700,9977,7363,9977,8525 +64700,64750,9988,7369,9988,8536 +64750,64800,9999,7375,9999,8547 +64800,64850,10010,7381,10010,8558 +64850,64900,10021,7387,10021,8569 +64900,64950,10032,7393,10032,8580 +64950,65000,10043,7399,10043,8591 +65000,65050,10054,7405,10054,8602 +65050,65100,10065,7411,10065,8613 +65100,65150,10076,7417,10076,8624 +65150,65200,10087,7423,10087,8635 +65200,65250,10098,7429,10098,8646 +65250,65300,10109,7435,10109,8657 +65300,65350,10120,7441,10120,8668 +65350,65400,10131,7447,10131,8679 +65400,65450,10142,7453,10142,8690 +65450,65500,10153,7459,10153,8701 +65500,65550,10164,7465,10164,8712 +65550,65600,10175,7471,10175,8723 +65600,65650,10186,7477,10186,8734 +65650,65700,10197,7483,10197,8745 +65700,65750,10208,7489,10208,8756 +65750,65800,10219,7495,10219,8767 +65800,65850,10230,7501,10230,8778 +65850,65900,10241,7507,10241,8789 +65900,65950,10252,7513,10252,8800 +65950,66000,10263,7519,10263,8811 +66000,66050,10274,7525,10274,8822 +66050,66100,10285,7531,10285,8833 +66100,66150,10296,7537,10296,8844 +66150,66200,10307,7543,10307,8855 +66200,66250,10318,7549,10318,8866 +66250,66300,10329,7555,10329,8877 +66300,66350,10340,7561,10340,8888 +66350,66400,10351,7567,10351,8899 +66400,66450,10362,7573,10362,8910 +66450,66500,10373,7579,10373,8921 +66500,66550,10384,7585,10384,8932 +66550,66600,10395,7591,10395,8943 +66600,66650,10406,7597,10406,8954 +66650,66700,10417,7603,10417,8965 +66700,66750,10428,7609,10428,8976 +66750,66800,10439,7615,10439,8987 +66800,66850,10450,7621,10450,8998 +66850,66900,10461,7627,10461,9009 +66900,66950,10472,7633,10472,9020 +66950,67000,10483,7639,10483,9031 +67000,67050,10494,7645,10494,9042 +67050,67100,10505,7651,10505,9053 +67100,67150,10516,7657,10516,9064 +67150,67200,10527,7663,10527,9075 +67200,67250,10538,7669,10538,9086 +67250,67300,10549,7675,10549,9097 +67300,67350,10560,7681,10560,9108 +67350,67400,10571,7687,10571,9119 +67400,67450,10582,7693,10582,9130 +67450,67500,10593,7699,10593,9141 +67500,67550,10604,7705,10604,9152 +67550,67600,10615,7711,10615,9163 +67600,67650,10626,7717,10626,9174 +67650,67700,10637,7723,10637,9185 +67700,67750,10648,7729,10648,9196 +67750,67800,10659,7735,10659,9207 +67800,67850,10670,7741,10670,9218 +67850,67900,10681,7747,10681,9229 +67900,67950,10692,7753,10692,9240 +67950,68000,10703,7759,10703,9251 +68000,68050,10714,7765,10714,9262 +68050,68100,10725,7771,10725,9273 +68100,68150,10736,7777,10736,9284 +68150,68200,10747,7783,10747,9295 +68200,68250,10758,7789,10758,9306 +68250,68300,10769,7795,10769,9317 +68300,68350,10780,7801,10780,9328 +68350,68400,10791,7807,10791,9339 +68400,68450,10802,7813,10802,9350 +68450,68500,10813,7819,10813,9361 +68500,68550,10824,7825,10824,9372 +68550,68600,10835,7831,10835,9383 +68600,68650,10846,7837,10846,9394 +68650,68700,10857,7843,10857,9405 +68700,68750,10868,7849,10868,9416 +68750,68800,10879,7855,10879,9427 +68800,68850,10890,7861,10890,9438 +68850,68900,10901,7867,10901,9449 +68900,68950,10912,7873,10912,9460 +68950,69000,10923,7879,10923,9471 +69000,69050,10934,7885,10934,9482 +69050,69100,10945,7891,10945,9493 +69100,69150,10956,7897,10956,9504 +69150,69200,10967,7903,10967,9515 +69200,69250,10978,7909,10978,9526 +69250,69300,10989,7915,10989,9537 +69300,69350,11000,7921,11000,9548 +69350,69400,11011,7927,11011,9559 +69400,69450,11022,7933,11022,9570 +69450,69500,11033,7939,11033,9581 +69500,69550,11044,7945,11044,9592 +69550,69600,11055,7951,11055,9603 +69600,69650,11066,7957,11066,9614 +69650,69700,11077,7963,11077,9625 +69700,69750,11088,7969,11088,9636 +69750,69800,11099,7975,11099,9647 +69800,69850,11110,7981,11110,9658 +69850,69900,11121,7987,11121,9669 +69900,69950,11132,7993,11132,9680 +69950,70000,11143,7999,11143,9691 +70000,70050,11154,8005,11154,9702 +70050,70100,11165,8011,11165,9713 +70100,70150,11176,8017,11176,9724 +70150,70200,11187,8023,11187,9735 +70200,70250,11198,8029,11198,9746 +70250,70300,11209,8035,11209,9757 +70300,70350,11220,8041,11220,9768 +70350,70400,11231,8047,11231,9779 +70400,70450,11242,8053,11242,9790 +70450,70500,11253,8059,11253,9801 +70500,70550,11264,8065,11264,9812 +70550,70600,11275,8071,11275,9823 +70600,70650,11286,8077,11286,9834 +70650,70700,11297,8083,11297,9845 +70700,70750,11308,8089,11308,9856 +70750,70800,11319,8095,11319,9867 +70800,70850,11330,8101,11330,9878 +70850,70900,11341,8107,11341,9889 +70900,70950,11352,8113,11352,9900 +70950,71000,11363,8119,11363,9911 +71000,71050,11374,8125,11374,9922 +71050,71100,11385,8131,11385,9933 +71100,71150,11396,8137,11396,9944 +71150,71200,11407,8143,11407,9955 +71200,71250,11418,8149,11418,9966 +71250,71300,11429,8155,11429,9977 +71300,71350,11440,8161,11440,9988 +71350,71400,11451,8167,11451,9999 +71400,71450,11462,8173,11462,10010 +71450,71500,11473,8179,11473,10021 +71500,71550,11484,8185,11484,10032 +71550,71600,11495,8191,11495,10043 +71600,71650,11506,8197,11506,10054 +71650,71700,11517,8203,11517,10065 +71700,71750,11528,8209,11528,10076 +71750,71800,11539,8215,11539,10087 +71800,71850,11550,8221,11550,10098 +71850,71900,11561,8227,11561,10109 +71900,71950,11572,8233,11572,10120 +71950,72000,11583,8239,11583,10131 +72000,72050,11594,8245,11594,10142 +72050,72100,11605,8251,11605,10153 +72100,72150,11616,8257,11616,10164 +72150,72200,11627,8263,11627,10175 +72200,72250,11638,8269,11638,10186 +72250,72300,11649,8275,11649,10197 +72300,72350,11660,8281,11660,10208 +72350,72400,11671,8287,11671,10219 +72400,72450,11682,8293,11682,10230 +72450,72500,11693,8299,11693,10241 +72500,72550,11704,8305,11704,10252 +72550,72600,11715,8311,11715,10263 +72600,72650,11726,8317,11726,10274 +72650,72700,11737,8323,11737,10285 +72700,72750,11748,8329,11748,10296 +72750,72800,11759,8335,11759,10307 +72800,72850,11770,8341,11770,10318 +72850,72900,11781,8347,11781,10329 +72900,72950,11792,8353,11792,10340 +72950,73000,11803,8359,11803,10351 +73000,73050,11814,8365,11814,10362 +73050,73100,11825,8371,11825,10373 +73100,73150,11836,8377,11836,10384 +73150,73200,11847,8383,11847,10395 +73200,73250,11858,8389,11858,10406 +73250,73300,11869,8395,11869,10417 +73300,73350,11880,8401,11880,10428 +73350,73400,11891,8407,11891,10439 +73400,73450,11902,8413,11902,10450 +73450,73500,11913,8419,11913,10461 +73500,73550,11924,8425,11924,10472 +73550,73600,11935,8431,11935,10483 +73600,73650,11946,8437,11946,10494 +73650,73700,11957,8443,11957,10505 +73700,73750,11968,8449,11968,10516 +73750,73800,11979,8455,11979,10527 +73800,73850,11990,8461,11990,10538 +73850,73900,12001,8467,12001,10549 +73900,73950,12012,8473,12012,10560 +73950,74000,12023,8479,12023,10571 +74000,74050,12034,8485,12034,10582 +74050,74100,12045,8491,12045,10593 +74100,74150,12056,8497,12056,10604 +74150,74200,12067,8503,12067,10615 +74200,74250,12078,8509,12078,10626 +74250,74300,12089,8515,12089,10637 +74300,74350,12100,8521,12100,10648 +74350,74400,12111,8527,12111,10659 +74400,74450,12122,8533,12122,10670 +74450,74500,12133,8539,12133,10681 +74500,74550,12144,8545,12144,10692 +74550,74600,12155,8551,12155,10703 +74600,74650,12166,8557,12166,10714 +74650,74700,12177,8563,12177,10725 +74700,74750,12188,8569,12188,10736 +74750,74800,12199,8575,12199,10747 +74800,74850,12210,8581,12210,10758 +74850,74900,12221,8587,12221,10769 +74900,74950,12232,8593,12232,10780 +74950,75000,12243,8599,12243,10791 +75000,75050,12254,8605,12254,10802 +75050,75100,12265,8611,12265,10813 +75100,75150,12276,8617,12276,10824 +75150,75200,12287,8623,12287,10835 +75200,75250,12298,8629,12298,10846 +75250,75300,12309,8635,12309,10857 +75300,75350,12320,8641,12320,10868 +75350,75400,12331,8647,12331,10879 +75400,75450,12342,8653,12342,10890 +75450,75500,12353,8659,12353,10901 +75500,75550,12364,8665,12364,10912 +75550,75600,12375,8671,12375,10923 +75600,75650,12386,8677,12386,10934 +75650,75700,12397,8683,12397,10945 +75700,75750,12408,8689,12408,10956 +75750,75800,12419,8695,12419,10967 +75800,75850,12430,8701,12430,10978 +75850,75900,12441,8707,12441,10989 +75900,75950,12452,8713,12452,11000 +75950,76000,12463,8719,12463,11011 +76000,76050,12474,8725,12474,11022 +76050,76100,12485,8731,12485,11033 +76100,76150,12496,8737,12496,11044 +76150,76200,12507,8743,12507,11055 +76200,76250,12518,8749,12518,11066 +76250,76300,12529,8755,12529,11077 +76300,76350,12540,8761,12540,11088 +76350,76400,12551,8767,12551,11099 +76400,76450,12562,8773,12562,11110 +76450,76500,12573,8779,12573,11121 +76500,76550,12584,8785,12584,11132 +76550,76600,12595,8791,12595,11143 +76600,76650,12606,8797,12606,11154 +76650,76700,12617,8803,12617,11165 +76700,76750,12628,8809,12628,11176 +76750,76800,12639,8815,12639,11187 +76800,76850,12650,8821,12650,11198 +76850,76900,12661,8827,12661,11209 +76900,76950,12672,8833,12672,11220 +76950,77000,12683,8839,12683,11231 +77000,77050,12694,8845,12694,11242 +77050,77100,12705,8851,12705,11253 +77100,77150,12716,8857,12716,11264 +77150,77200,12727,8863,12727,11275 +77200,77250,12738,8869,12738,11286 +77250,77300,12749,8875,12749,11297 +77300,77350,12760,8881,12760,11308 +77350,77400,12771,8887,12771,11319 +77400,77450,12782,8893,12782,11330 +77450,77500,12793,8899,12793,11341 +77500,77550,12804,8905,12804,11352 +77550,77600,12815,8911,12815,11363 +77600,77650,12826,8917,12826,11374 +77650,77700,12837,8923,12837,11385 +77700,77750,12848,8929,12848,11396 +77750,77800,12859,8935,12859,11407 +77800,77850,12870,8941,12870,11418 +77850,77900,12881,8947,12881,11429 +77900,77950,12892,8953,12892,11440 +77950,78000,12903,8959,12903,11451 +78000,78050,12914,8965,12914,11462 +78050,78100,12925,8971,12925,11473 +78100,78150,12936,8977,12936,11484 +78150,78200,12947,8983,12947,11495 +78200,78250,12958,8989,12958,11506 +78250,78300,12969,8995,12969,11517 +78300,78350,12980,9001,12980,11528 +78350,78400,12991,9007,12991,11539 +78400,78450,13002,9013,13002,11550 +78450,78500,13013,9019,13013,11561 +78500,78550,13024,9025,13024,11572 +78550,78600,13035,9031,13035,11583 +78600,78650,13046,9037,13046,11594 +78650,78700,13057,9043,13057,11605 +78700,78750,13068,9049,13068,11616 +78750,78800,13079,9055,13079,11627 +78800,78850,13090,9061,13090,11638 +78850,78900,13101,9067,13101,11649 +78900,78950,13112,9073,13112,11660 +78950,79000,13123,9079,13123,11671 +79000,79050,13134,9085,13134,11682 +79050,79100,13145,9091,13145,11693 +79100,79150,13156,9097,13156,11704 +79150,79200,13167,9103,13167,11715 +79200,79250,13178,9109,13178,11726 +79250,79300,13189,9115,13189,11737 +79300,79350,13200,9121,13200,11748 +79350,79400,13211,9127,13211,11759 +79400,79450,13222,9133,13222,11770 +79450,79500,13233,9139,13233,11781 +79500,79550,13244,9145,13244,11792 +79550,79600,13255,9151,13255,11803 +79600,79650,13266,9157,13266,11814 +79650,79700,13277,9163,13277,11825 +79700,79750,13288,9169,13288,11836 +79750,79800,13299,9175,13299,11847 +79800,79850,13310,9181,13310,11858 +79850,79900,13321,9187,13321,11869 +79900,79950,13332,9193,13332,11880 +79950,80000,13343,9199,13343,11891 +80000,80050,13354,9205,13354,11902 +80050,80100,13365,9211,13365,11913 +80100,80150,13376,9217,13376,11924 +80150,80200,13387,9223,13387,11935 +80200,80250,13398,9229,13398,11946 +80250,80300,13409,9235,13409,11957 +80300,80350,13420,9241,13420,11968 +80350,80400,13431,9247,13431,11979 +80400,80450,13442,9253,13442,11990 +80450,80500,13453,9259,13453,12001 +80500,80550,13464,9265,13464,12012 +80550,80600,13475,9271,13475,12023 +80600,80650,13486,9277,13486,12034 +80650,80700,13497,9283,13497,12045 +80700,80750,13508,9289,13508,12056 +80750,80800,13519,9295,13519,12067 +80800,80850,13530,9301,13530,12078 +80850,80900,13541,9307,13541,12089 +80900,80950,13552,9313,13552,12100 +80950,81000,13563,9319,13563,12111 +81000,81050,13574,9325,13574,12122 +81050,81100,13585,9334,13585,12133 +81100,81150,13596,9345,13596,12144 +81150,81200,13607,9356,13607,12155 +81200,81250,13618,9367,13618,12166 +81250,81300,13629,9378,13629,12177 +81300,81350,13640,9389,13640,12188 +81350,81400,13651,9400,13651,12199 +81400,81450,13662,9411,13662,12210 +81450,81500,13673,9422,13673,12221 +81500,81550,13684,9433,13684,12232 +81550,81600,13695,9444,13695,12243 +81600,81650,13706,9455,13706,12254 +81650,81700,13717,9466,13717,12265 +81700,81750,13728,9477,13728,12276 +81750,81800,13739,9488,13739,12287 +81800,81850,13750,9499,13750,12298 +81850,81900,13761,9510,13761,12309 +81900,81950,13772,9521,13772,12320 +81950,82000,13783,9532,13783,12331 +82000,82050,13794,9543,13794,12342 +82050,82100,13805,9554,13805,12353 +82100,82150,13816,9565,13816,12364 +82150,82200,13827,9576,13827,12375 +82200,82250,13838,9587,13838,12386 +82250,82300,13849,9598,13849,12397 +82300,82350,13860,9609,13860,12408 +82350,82400,13871,9620,13871,12419 +82400,82450,13882,9631,13882,12430 +82450,82500,13893,9642,13893,12441 +82500,82550,13904,9653,13904,12452 +82550,82600,13915,9664,13915,12463 +82600,82650,13926,9675,13926,12474 +82650,82700,13937,9686,13937,12485 +82700,82750,13948,9697,13948,12496 +82750,82800,13959,9708,13959,12507 +82800,82850,13970,9719,13970,12518 +82850,82900,13981,9730,13981,12529 +82900,82950,13992,9741,13992,12540 +82950,83000,14003,9752,14003,12551 +83000,83050,14014,9763,14014,12562 +83050,83100,14025,9774,14025,12573 +83100,83150,14036,9785,14036,12584 +83150,83200,14047,9796,14047,12595 +83200,83250,14058,9807,14058,12606 +83250,83300,14069,9818,14069,12617 +83300,83350,14080,9829,14080,12628 +83350,83400,14091,9840,14091,12639 +83400,83450,14102,9851,14102,12650 +83450,83500,14113,9862,14113,12661 +83500,83550,14124,9873,14124,12672 +83550,83600,14135,9884,14135,12683 +83600,83650,14146,9895,14146,12694 +83650,83700,14157,9906,14157,12705 +83700,83750,14168,9917,14168,12716 +83750,83800,14179,9928,14179,12727 +83800,83850,14190,9939,14190,12738 +83850,83900,14201,9950,14201,12749 +83900,83950,14212,9961,14212,12760 +83950,84000,14223,9972,14223,12771 +84000,84050,14234,9983,14234,12782 +84050,84100,14245,9994,14245,12793 +84100,84150,14256,10005,14256,12804 +84150,84200,14267,10016,14267,12815 +84200,84250,14278,10027,14278,12826 +84250,84300,14289,10038,14289,12837 +84300,84350,14300,10049,14300,12848 +84350,84400,14311,10060,14311,12859 +84400,84450,14322,10071,14322,12870 +84450,84500,14333,10082,14333,12881 +84500,84550,14344,10093,14344,12892 +84550,84600,14355,10104,14355,12903 +84600,84650,14366,10115,14366,12914 +84650,84700,14377,10126,14377,12925 +84700,84750,14388,10137,14388,12936 +84750,84800,14399,10148,14399,12947 +84800,84850,14410,10159,14410,12958 +84850,84900,14421,10170,14421,12969 +84900,84950,14432,10181,14432,12980 +84950,85000,14443,10192,14443,12991 +85000,85050,14454,10203,14454,13002 +85050,85100,14465,10214,14465,13013 +85100,85150,14476,10225,14476,13024 +85150,85200,14487,10236,14487,13035 +85200,85250,14498,10247,14498,13046 +85250,85300,14509,10258,14509,13057 +85300,85350,14520,10269,14520,13068 +85350,85400,14531,10280,14531,13079 +85400,85450,14542,10291,14542,13090 +85450,85500,14553,10302,14553,13101 +85500,85550,14564,10313,14564,13112 +85550,85600,14575,10324,14575,13123 +85600,85650,14586,10335,14586,13134 +85650,85700,14597,10346,14597,13145 +85700,85750,14608,10357,14608,13156 +85750,85800,14619,10368,14619,13167 +85800,85850,14630,10379,14630,13178 +85850,85900,14641,10390,14641,13189 +85900,85950,14652,10401,14652,13200 +85950,86000,14663,10412,14663,13211 +86000,86050,14674,10423,14674,13222 +86050,86100,14685,10434,14685,13233 +86100,86150,14696,10445,14696,13244 +86150,86200,14707,10456,14707,13255 +86200,86250,14718,10467,14718,13266 +86250,86300,14729,10478,14729,13277 +86300,86350,14740,10489,14740,13288 +86350,86400,14751,10500,14751,13299 +86400,86450,14763,10511,14763,13311 +86450,86500,14775,10522,14775,13323 +86500,86550,14787,10533,14787,13335 +86550,86600,14799,10544,14799,13347 +86600,86650,14811,10555,14811,13359 +86650,86700,14823,10566,14823,13371 +86700,86750,14835,10577,14835,13383 +86750,86800,14847,10588,14847,13395 +86800,86850,14859,10599,14859,13407 +86850,86900,14871,10610,14871,13419 +86900,86950,14883,10621,14883,13431 +86950,87000,14895,10632,14895,13443 +87000,87050,14907,10643,14907,13455 +87050,87100,14919,10654,14919,13467 +87100,87150,14931,10665,14931,13479 +87150,87200,14943,10676,14943,13491 +87200,87250,14955,10687,14955,13503 +87250,87300,14967,10698,14967,13515 +87300,87350,14979,10709,14979,13527 +87350,87400,14991,10720,14991,13539 +87400,87450,15003,10731,15003,13551 +87450,87500,15015,10742,15015,13563 +87500,87550,15027,10753,15027,13575 +87550,87600,15039,10764,15039,13587 +87600,87650,15051,10775,15051,13599 +87650,87700,15063,10786,15063,13611 +87700,87750,15075,10797,15075,13623 +87750,87800,15087,10808,15087,13635 +87800,87850,15099,10819,15099,13647 +87850,87900,15111,10830,15111,13659 +87900,87950,15123,10841,15123,13671 +87950,88000,15135,10852,15135,13683 +88000,88050,15147,10863,15147,13695 +88050,88100,15159,10874,15159,13707 +88100,88150,15171,10885,15171,13719 +88150,88200,15183,10896,15183,13731 +88200,88250,15195,10907,15195,13743 +88250,88300,15207,10918,15207,13755 +88300,88350,15219,10929,15219,13767 +88350,88400,15231,10940,15231,13779 +88400,88450,15243,10951,15243,13791 +88450,88500,15255,10962,15255,13803 +88500,88550,15267,10973,15267,13815 +88550,88600,15279,10984,15279,13827 +88600,88650,15291,10995,15291,13839 +88650,88700,15303,11006,15303,13851 +88700,88750,15315,11017,15315,13863 +88750,88800,15327,11028,15327,13875 +88800,88850,15339,11039,15339,13887 +88850,88900,15351,11050,15351,13899 +88900,88950,15363,11061,15363,13911 +88950,89000,15375,11072,15375,13923 +89000,89050,15387,11083,15387,13935 +89050,89100,15399,11094,15399,13947 +89100,89150,15411,11105,15411,13959 +89150,89200,15423,11116,15423,13971 +89200,89250,15435,11127,15435,13983 +89250,89300,15447,11138,15447,13995 +89300,89350,15459,11149,15459,14007 +89350,89400,15471,11160,15471,14019 +89400,89450,15483,11171,15483,14031 +89450,89500,15495,11182,15495,14043 +89500,89550,15507,11193,15507,14055 +89550,89600,15519,11204,15519,14067 +89600,89650,15531,11215,15531,14079 +89650,89700,15543,11226,15543,14091 +89700,89750,15555,11237,15555,14103 +89750,89800,15567,11248,15567,14115 +89800,89850,15579,11259,15579,14127 +89850,89900,15591,11270,15591,14139 +89900,89950,15603,11281,15603,14151 +89950,90000,15615,11292,15615,14163 +90000,90050,15627,11303,15627,14175 +90050,90100,15639,11314,15639,14187 +90100,90150,15651,11325,15651,14199 +90150,90200,15663,11336,15663,14211 +90200,90250,15675,11347,15675,14223 +90250,90300,15687,11358,15687,14235 +90300,90350,15699,11369,15699,14247 +90350,90400,15711,11380,15711,14259 +90400,90450,15723,11391,15723,14271 +90450,90500,15735,11402,15735,14283 +90500,90550,15747,11413,15747,14295 +90550,90600,15759,11424,15759,14307 +90600,90650,15771,11435,15771,14319 +90650,90700,15783,11446,15783,14331 +90700,90750,15795,11457,15795,14343 +90750,90800,15807,11468,15807,14355 +90800,90850,15819,11479,15819,14367 +90850,90900,15831,11490,15831,14379 +90900,90950,15843,11501,15843,14391 +90950,91000,15855,11512,15855,14403 +91000,91050,15867,11523,15867,14415 +91050,91100,15879,11534,15879,14427 +91100,91150,15891,11545,15891,14439 +91150,91200,15903,11556,15903,14451 +91200,91250,15915,11567,15915,14463 +91250,91300,15927,11578,15927,14475 +91300,91350,15939,11589,15939,14487 +91350,91400,15951,11600,15951,14499 +91400,91450,15963,11611,15963,14511 +91450,91500,15975,11622,15975,14523 +91500,91550,15987,11633,15987,14535 +91550,91600,15999,11644,15999,14547 +91600,91650,16011,11655,16011,14559 +91650,91700,16023,11666,16023,14571 +91700,91750,16035,11677,16035,14583 +91750,91800,16047,11688,16047,14595 +91800,91850,16059,11699,16059,14607 +91850,91900,16071,11710,16071,14619 +91900,91950,16083,11721,16083,14631 +91950,92000,16095,11732,16095,14643 +92000,92050,16107,11743,16107,14655 +92050,92100,16119,11754,16119,14667 +92100,92150,16131,11765,16131,14679 +92150,92200,16143,11776,16143,14691 +92200,92250,16155,11787,16155,14703 +92250,92300,16167,11798,16167,14715 +92300,92350,16179,11809,16179,14727 +92350,92400,16191,11820,16191,14739 +92400,92450,16203,11831,16203,14751 +92450,92500,16215,11842,16215,14763 +92500,92550,16227,11853,16227,14775 +92550,92600,16239,11864,16239,14787 +92600,92650,16251,11875,16251,14799 +92650,92700,16263,11886,16263,14811 +92700,92750,16275,11897,16275,14823 +92750,92800,16287,11908,16287,14835 +92800,92850,16299,11919,16299,14847 +92850,92900,16311,11930,16311,14859 +92900,92950,16323,11941,16323,14871 +92950,93000,16335,11952,16335,14883 +93000,93050,16347,11963,16347,14895 +93050,93100,16359,11974,16359,14907 +93100,93150,16371,11985,16371,14919 +93150,93200,16383,11996,16383,14931 +93200,93250,16395,12007,16395,14943 +93250,93300,16407,12018,16407,14955 +93300,93350,16419,12029,16419,14967 +93350,93400,16431,12040,16431,14979 +93400,93450,16443,12051,16443,14991 +93450,93500,16455,12062,16455,15003 +93500,93550,16467,12073,16467,15015 +93550,93600,16479,12084,16479,15027 +93600,93650,16491,12095,16491,15039 +93650,93700,16503,12106,16503,15051 +93700,93750,16515,12117,16515,15063 +93750,93800,16527,12128,16527,15075 +93800,93850,16539,12139,16539,15087 +93850,93900,16551,12150,16551,15099 +93900,93950,16563,12161,16563,15111 +93950,94000,16575,12172,16575,15123 +94000,94050,16587,12183,16587,15135 +94050,94100,16599,12194,16599,15147 +94100,94150,16611,12205,16611,15159 +94150,94200,16623,12216,16623,15171 +94200,94250,16635,12227,16635,15183 +94250,94300,16647,12238,16647,15195 +94300,94350,16659,12249,16659,15207 +94350,94400,16671,12260,16671,15219 +94400,94450,16683,12271,16683,15231 +94450,94500,16695,12282,16695,15243 +94500,94550,16707,12293,16707,15255 +94550,94600,16719,12304,16719,15267 +94600,94650,16731,12315,16731,15279 +94650,94700,16743,12326,16743,15291 +94700,94750,16755,12337,16755,15303 +94750,94800,16767,12348,16767,15315 +94800,94850,16779,12359,16779,15327 +94850,94900,16791,12370,16791,15339 +94900,94950,16803,12381,16803,15351 +94950,95000,16815,12392,16815,15363 +95000,95050,16827,12403,16827,15375 +95050,95100,16839,12414,16839,15387 +95100,95150,16851,12425,16851,15399 +95150,95200,16863,12436,16863,15411 +95200,95250,16875,12447,16875,15423 +95250,95300,16887,12458,16887,15435 +95300,95350,16899,12469,16899,15447 +95350,95400,16911,12480,16911,15459 +95400,95450,16923,12491,16923,15471 +95450,95500,16935,12502,16935,15483 +95500,95550,16947,12513,16947,15495 +95550,95600,16959,12524,16959,15507 +95600,95650,16971,12535,16971,15519 +95650,95700,16983,12546,16983,15531 +95700,95750,16995,12557,16995,15543 +95750,95800,17007,12568,17007,15555 +95800,95850,17019,12579,17019,15567 +95850,95900,17031,12590,17031,15579 +95900,95950,17043,12601,17043,15591 +95950,96000,17055,12612,17055,15603 +96000,96050,17067,12623,17067,15615 +96050,96100,17079,12634,17079,15627 +96100,96150,17091,12645,17091,15639 +96150,96200,17103,12656,17103,15651 +96200,96250,17115,12667,17115,15663 +96250,96300,17127,12678,17127,15675 +96300,96350,17139,12689,17139,15687 +96350,96400,17151,12700,17151,15699 +96400,96450,17163,12711,17163,15711 +96450,96500,17175,12722,17175,15723 +96500,96550,17187,12733,17187,15735 +96550,96600,17199,12744,17199,15747 +96600,96650,17211,12755,17211,15759 +96650,96700,17223,12766,17223,15771 +96700,96750,17235,12777,17235,15783 +96750,96800,17247,12788,17247,15795 +96800,96850,17259,12799,17259,15807 +96850,96900,17271,12810,17271,15819 +96900,96950,17283,12821,17283,15831 +96950,97000,17295,12832,17295,15843 +97000,97050,17307,12843,17307,15855 +97050,97100,17319,12854,17319,15867 +97100,97150,17331,12865,17331,15879 +97150,97200,17343,12876,17343,15891 +97200,97250,17355,12887,17355,15903 +97250,97300,17367,12898,17367,15915 +97300,97350,17379,12909,17379,15927 +97350,97400,17391,12920,17391,15939 +97400,97450,17403,12931,17403,15951 +97450,97500,17415,12942,17415,15963 +97500,97550,17427,12953,17427,15975 +97550,97600,17439,12964,17439,15987 +97600,97650,17451,12975,17451,15999 +97650,97700,17463,12986,17463,16011 +97700,97750,17475,12997,17475,16023 +97750,97800,17487,13008,17487,16035 +97800,97850,17499,13019,17499,16047 +97850,97900,17511,13030,17511,16059 +97900,97950,17523,13041,17523,16071 +97950,98000,17535,13052,17535,16083 +98000,98050,17547,13063,17547,16095 +98050,98100,17559,13074,17559,16107 +98100,98150,17571,13085,17571,16119 +98150,98200,17583,13096,17583,16131 +98200,98250,17595,13107,17595,16143 +98250,98300,17607,13118,17607,16155 +98300,98350,17619,13129,17619,16167 +98350,98400,17631,13140,17631,16179 +98400,98450,17643,13151,17643,16191 +98450,98500,17655,13162,17655,16203 +98500,98550,17667,13173,17667,16215 +98550,98600,17679,13184,17679,16227 +98600,98650,17691,13195,17691,16239 +98650,98700,17703,13206,17703,16251 +98700,98750,17715,13217,17715,16263 +98750,98800,17727,13228,17727,16275 +98800,98850,17739,13239,17739,16287 +98850,98900,17751,13250,17751,16299 +98900,98950,17763,13261,17763,16311 +98950,99000,17775,13272,17775,16323 +99000,99050,17787,13283,17787,16335 +99050,99100,17799,13294,17799,16347 +99100,99150,17811,13305,17811,16359 +99150,99200,17823,13316,17823,16371 +99200,99250,17835,13327,17835,16383 +99250,99300,17847,13338,17847,16395 +99300,99350,17859,13349,17859,16407 +99350,99400,17871,13360,17871,16419 +99400,99450,17883,13371,17883,16431 +99450,99500,17895,13382,17895,16443 +99500,99550,17907,13393,17907,16455 +99550,99600,17919,13404,17919,16467 +99600,99650,17931,13415,17931,16479 +99650,99700,17943,13426,17943,16491 +99700,99750,17955,13437,17955,16503 +99750,99800,17967,13448,17967,16515 +99800,99850,17979,13459,17979,16527 +99850,99900,17991,13470,17991,16539 +99900,99950,18003,13481,18003,16551 +99950,100000,18015,13492,18015,16563