From e87f5ee2d2524f979ba5e531690032bb61b5ceb8 Mon Sep 17 00:00:00 2001 From: Stephan Schlosser Date: Thu, 30 May 2019 22:27:19 +0200 Subject: [PATCH] Release 1.0.2.5 Added setting to select if the field courses should be smoothed. Limited speed on field to 28 km/h Made sure that the 'exitField' strategies only apply when going to unload and not when parking --- FS19_AutoDrive/gui/settingsGui.lua | 4 + FS19_AutoDrive/gui/settingsGui.xml | 7 + FS19_AutoDrive/modDesc.xml | 2 +- FS19_AutoDrive/scripts/AutoDrive.lua | 2 +- .../scripts/AutoDriveCombineMode.lua | 2 +- .../scripts/AutoDriveDriveFuncs.lua | 27 ++- .../scripts/AutoDrivePathFinder.lua | 167 +++++++++++++++++- FS19_AutoDrive/scripts/AutoDriveSettings.lua | 10 ++ .../translations/translation_de.xml | 2 + .../translations/translation_en.xml | 2 + .../translations/translation_fr.xml | 12 +- .../translations/translation_ru.xml | 6 +- .../AutoDrive_FS19_Dondiego_Map_config.xml} | 0 .../AutoDrive_Multimap_2019_config.xml} | 0 .../Ravenport/AutoDrive_Ravenport_config.xml | 78 ++++++++ courses/Ravenport/AutoDrive_config.xml | 88 --------- releases/1.0.2.5/FS19_AutoDrive.zip | Bin 0 -> 443130 bytes 17 files changed, 297 insertions(+), 112 deletions(-) rename courses/{Dondiegomap => FS19_Dondiego_Map/AutoDrive_FS19_Dondiego_Map_config.xml} (100%) rename courses/{Mutimap => Multimap_2019/AutoDrive_Multimap_2019_config.xml} (100%) create mode 100644 courses/Ravenport/AutoDrive_Ravenport_config.xml delete mode 100644 courses/Ravenport/AutoDrive_config.xml create mode 100644 releases/1.0.2.5/FS19_AutoDrive.zip diff --git a/FS19_AutoDrive/gui/settingsGui.lua b/FS19_AutoDrive/gui/settingsGui.lua index f7e1cb18..845af53d 100644 --- a/FS19_AutoDrive/gui/settingsGui.lua +++ b/FS19_AutoDrive/gui/settingsGui.lua @@ -144,4 +144,8 @@ end; function adSettingsGui:onCreateAutoDriveSettingDriverWages(element) self:onCreateAutoDriveSetting(element, "driverWages"); +end; + +function adSettingsGui:onCreateAutoDriveSettingSmoothField(element) + self:onCreateAutoDriveSetting(element, "smoothField"); end; \ No newline at end of file diff --git a/FS19_AutoDrive/gui/settingsGui.xml b/FS19_AutoDrive/gui/settingsGui.xml index ea9100f4..6bb83a86 100644 --- a/FS19_AutoDrive/gui/settingsGui.xml +++ b/FS19_AutoDrive/gui/settingsGui.xml @@ -131,6 +131,13 @@ + + + + + + + diff --git a/FS19_AutoDrive/modDesc.xml b/FS19_AutoDrive/modDesc.xml index 4de7eb71..7bd08bc0 100644 --- a/FS19_AutoDrive/modDesc.xml +++ b/FS19_AutoDrive/modDesc.xml @@ -31,7 +31,7 @@ Créer, ajouter, modifier, supprimer vos routes ou points de destination à l'ai ]]> - 1.0.2.4 + 1.0.2.5 store.dds diff --git a/FS19_AutoDrive/scripts/AutoDrive.lua b/FS19_AutoDrive/scripts/AutoDrive.lua index 740a581c..39b1d771 100644 --- a/FS19_AutoDrive/scripts/AutoDrive.lua +++ b/FS19_AutoDrive/scripts/AutoDrive.lua @@ -1,5 +1,5 @@ AutoDrive = {}; -AutoDrive.Version = "1.0.2.4"; +AutoDrive.Version = "1.0.2.5"; AutoDrive.config_changed = false; AutoDrive.directory = g_currentModDirectory; diff --git a/FS19_AutoDrive/scripts/AutoDriveCombineMode.lua b/FS19_AutoDrive/scripts/AutoDriveCombineMode.lua index b02ad2bc..b97aaaf7 100644 --- a/FS19_AutoDrive/scripts/AutoDriveCombineMode.lua +++ b/FS19_AutoDrive/scripts/AutoDriveCombineMode.lua @@ -105,7 +105,7 @@ function AutoDrive:handleReachedWayPointCombine(vehicle) vehicle.ad.initialized = false; vehicle.ad.wayPoints = {}; vehicle.ad.isPaused = true; - elseif vehicle.ad.combineState == AutoDrive.DRIVE_TO_PARK_POS then + elseif vehicle.ad.combineState == AutoDrive.DRIVE_TO_PARK_POS then AutoDrive.waitingUnloadDrivers[vehicle] = vehicle; vehicle.ad.combineState = AutoDrive.WAIT_FOR_COMBINE; --vehicle.ad.initialized = false; diff --git a/FS19_AutoDrive/scripts/AutoDriveDriveFuncs.lua b/FS19_AutoDrive/scripts/AutoDriveDriveFuncs.lua index cb5f2c27..a24d42ed 100644 --- a/FS19_AutoDrive/scripts/AutoDriveDriveFuncs.lua +++ b/FS19_AutoDrive/scripts/AutoDriveDriveFuncs.lua @@ -111,11 +111,18 @@ end; function AutoDrive:checkForDeadLock(vehicle, dt) if vehicle.ad.isActive == true and vehicle.isServer and vehicle.ad.isStopping == false then - vehicle.ad.timeTillDeadLock = vehicle.ad.timeTillDeadLock - dt; - if vehicle.ad.timeTillDeadLock < 0 and vehicle.ad.timeTillDeadLock ~= -1 then - --print("Deadlock reached due to timer"); - vehicle.ad.inDeadLock = true; - end; + local x,y,z = getWorldTranslation( vehicle.components[1].node ); + if (AutoDrive:getDistance(x,z, vehicle.ad.targetX, vehicle.ad.targetZ) < 15) then + vehicle.ad.timeTillDeadLock = vehicle.ad.timeTillDeadLock - dt; + if vehicle.ad.timeTillDeadLock < 0 and vehicle.ad.timeTillDeadLock ~= -1 then + --print("Deadlock reached due to timer"); + vehicle.ad.inDeadLock = true; + end; + else + vehicle.ad.inDeadLock = false; + vehicle.ad.timeTillDeadLock = 15000; + vehicle.ad.inDeadLockRepairCounter = 4; + end; else vehicle.ad.inDeadLock = false; vehicle.ad.timeTillDeadLock = 15000; @@ -367,6 +374,16 @@ function AutoDrive:driveToNextWayPoint(vehicle, dt) end; end; end; + + if vehicle.ad.mode == AutoDrive.MODE_UNLOAD + and + ( vehicle.ad.combineState == AutoDrive.DRIVE_TO_COMBINE + or vehicle.ad.combineState == AutoDrive.DRIVE_TO_PARK_POS + or vehicle.ad.combineState == AutoDrive.DRIVE_TO_START_POS ) then + + vehicle.ad.speedOverride = math.min(28, vehicle.ad.speedOverride); + end; + end; local finalSpeed = vehicle.ad.speedOverride; diff --git a/FS19_AutoDrive/scripts/AutoDrivePathFinder.lua b/FS19_AutoDrive/scripts/AutoDrivePathFinder.lua index bc6d2f76..19c11ced 100644 --- a/FS19_AutoDrive/scripts/AutoDrivePathFinder.lua +++ b/FS19_AutoDrive/scripts/AutoDrivePathFinder.lua @@ -95,13 +95,13 @@ function AutoDrivePathFinder:startPathPlanningToStartPosition(driver, combine) local targetVector = {}; local exitStrategy = AutoDrive:getSetting("exitField"); - if exitStrategy == 1 then + if exitStrategy == 1 and driver.ad.combineState ~= AutoDrive.DRIVE_TO_PARK_POS then local waypointsToUnload = AutoDrive:FastShortestPath(AutoDrive.mapWayPoints, AutoDrive.mapMarker[driver.ad.mapMarkerSelected].id, AutoDrive.mapMarker[driver.ad.mapMarkerSelected_Unload].name, AutoDrive.mapMarker[driver.ad.mapMarkerSelected_Unload].id); if waypointsToUnload ~= nil and waypointsToUnload[6] ~= nil then preTargetPoint = AutoDrive.mapWayPoints[waypointsToUnload[5].id]; targetPoint = AutoDrive.mapWayPoints[waypointsToUnload[6].id]; end; - elseif exitStrategy == 2 then + elseif exitStrategy == 2 and driver.ad.combineState ~= AutoDrive.DRIVE_TO_PARK_POS then local closest = AutoDrive:findClosestWayPoint(driver); local waypointsToUnload = AutoDrive:FastShortestPath(AutoDrive.mapWayPoints, closest, AutoDrive.mapMarker[driver.ad.mapMarkerSelected_Unload].name, AutoDrive.mapMarker[driver.ad.mapMarkerSelected_Unload].id); if waypointsToUnload ~= nil and waypointsToUnload[2] ~= nil then @@ -528,7 +528,10 @@ function AutoDrivePathFinder:createWayPoints(pf) --print("Found path!"); --DebugUtil.printTableRecursively(pf.wayPoints, ":::",0,1); - AutoDrivePathFinder:smoothResultingPPPath(pf); + AutoDrivePathFinder:smoothResultingPPPath(pf); + if AutoDrive:getSetting("smoothField") == true then + AutoDrivePathFinder:smoothResultingPPPath_Refined(pf); + end; end; function AutoDrivePathFinder:smoothResultingPPPath(pf) @@ -563,6 +566,164 @@ function AutoDrivePathFinder:smoothResultingPPPath(pf) pf.wayPoints = filteredWPs; end; +function AutoDrivePathFinder:smoothResultingPPPath_Refined(pf) + if pf.fruitToCheck == nil then + return; + end; + + local index = 1; + local filteredIndex = 1; + local filteredWPs = {}; + + --add first few without filtering + while index < ADTableLength(pf.wayPoints) and index < 3 do + filteredWPs[filteredIndex] = pf.wayPoints[index]; + filteredIndex = filteredIndex + 1; + index = index + 1; + end; + + while index < ADTableLength(pf.wayPoints) - 6 do + local node = pf.wayPoints[index]; + local worldPos = pf.wayPoints[index]; + + filteredWPs[filteredIndex] = node; + filteredIndex = filteredIndex + 1; + + local foundCollision = false; + local lookAheadIndex = 1; + while foundCollision == false and ((index+lookAheadIndex) < (ADTableLength(pf.wayPoints) - 6)) do + local nodeAhead = pf.wayPoints[index+lookAheadIndex]; + local nodeTwoAhead = pf.wayPoints[index+lookAheadIndex+1]; + + local angle = AutoDrive:angleBetween( {x= nodeAhead.x - node.x, z = nodeAhead.z - node.z }, + {x= nodeTwoAhead.x- nodeAhead.x, z = nodeTwoAhead.z - nodeAhead.z } ) + angle = math.abs(angle); + + local hasCollision = false; + if angle > 60 then + hasCollision = true; + end; + + local vectorX = nodeAhead.x - node.x; + local vectorZ = nodeAhead.z - node.z; + local angleRad = math.atan2(vectorZ, vectorX); + angleRad = normalizeAngle(angleRad); + local sideLength = 3; + local length = math.sqrt(math.pow(vectorX, 2) + math.pow(vectorZ, 2)); + + local leftAngle = normalizeAngle(angleRad + math.rad(-90)); + local rightAngle = normalizeAngle(angleRad + math.rad(90)); + + local cornerX = node.x + math.cos(leftAngle) * sideLength; + local cornerZ = node.z + math.sin(leftAngle) * sideLength; + + local corner2X = nodeAhead.x + math.cos(leftAngle) * sideLength; + local corner2Z = nodeAhead.z + math.sin(leftAngle) * sideLength; + + local corner3X = node.x + math.cos(rightAngle) * sideLength; + local corner3Z = node.z + math.sin(rightAngle) * sideLength; + + local corner4X = nodeAhead.x + math.cos(rightAngle) * sideLength; + local corner4Z = nodeAhead.z + math.sin(rightAngle) * sideLength; + + local y = worldPos.y; + local shapes = overlapBox(worldPos.x,y,worldPos.z, 0,angleRad,0, AutoDrive.PP_CELL_X,5,length, "collisionTestCallbackIgnore", nil, AIVehicleUtil.COLLISION_MASK, true, true, true) + hasCollision = hasCollision or (shapes > 0); + shapes = overlapBox(worldPos.x,y,worldPos.z, 0,angleRad,0, AutoDrive.PP_CELL_X,5,length, "collisionTestCallbackIgnore", nil, Player.COLLISIONMASK_TRIGGER, true, true, true) + hasCollision = hasCollision or (shapes > 0); + + if (index > 1) then + local worldPosPrevious = pf.wayPoints[index-1] + local length = MathUtil.vector3Length(worldPos.x-worldPosPrevious.x, worldPos.y-worldPosPrevious.y, worldPos.z-worldPosPrevious.z) + local angleBetween = math.atan(math.abs(worldPos.y-worldPosPrevious.y)/length) + + if angleBetween > AITurnStrategy.SLOPE_DETECTION_THRESHOLD then + hasCollision = true; + end + end; + + local fruitValue, _, _, _ = FSDensityMapUtil.getFruitArea(pf.fruitToCheck, cornerX, cornerZ, corner2X, corner2Z, corner3X, corner3Z, nil, false); + if pf.fruitToCheck == 9 then + fruitValue, _, _, _ = FSDensityMapUtil.getFruitArea(pf.fruitToCheck, cornerX, cornerZ, corner2X, corner2Z, corner3X, corner3Z, true, true); + end; + hasCollision = hasCollision or (fruitValue > (0.3 * pf.fieldArea)); + hasCollision = hasCollision or AutoDrivePathFinder:checkForCombineCollision(pf, cornerX, cornerZ, corner2X, corner2Z, corner3X, corner3Z, corner4X, corner4Z); + + foundCollision = hasCollision; + + lookAheadIndex = lookAheadIndex + 1; + end; + + index = index + math.max(1,(lookAheadIndex-2)); + end; + + --add remaining points without filtering + while index <= ADTableLength(pf.wayPoints) do + local node = pf.wayPoints[index]; + filteredWPs[filteredIndex] = node; + filteredIndex = filteredIndex + 1; + index = index + 1; + end; + + pf.wayPoints = filteredWPs; +end; + +function AutoDrivePathFinder:checkForCombineCollision(pf, cornerX, cornerZ, corner2X, corner2Z, corner3X, corner3Z, corner4X, corner4Z) + local boundingBox = {}; + boundingBox[1] ={ x = cornerX, + y = 0, + z = cornerZ; }; + boundingBox[2] ={ x = corner2X, + y = 0, + z = corner2Z; }; + boundingBox[3] ={ x = corner3X, + y = 0, + z = corner3Z; }; + boundingBox[4] ={ x = corner4X, + y = 0, + z = corner4Z; }; + + if pf.combine ~= nil and pf.combine.components ~= nil and pf.combine.sizeWidth ~= nil and pf.combine.sizeLength ~= nil and pf.combine.rootNode ~= nil then + local otherWidth = pf.combine.sizeWidth; + local otherLength = pf.combine.sizeLength; + local otherPos = {}; + otherPos.x,otherPos.y,otherPos.z = getWorldTranslation( pf.combine.components[1].node ); + + local rx,ry,rz = localDirectionToWorld(pf.combine.components[1].node, 0, 0, 1); + + local otherVectorToWp = {}; + otherVectorToWp.x = rx; + otherVectorToWp.z = rz; + + local otherPos2 = {}; + otherPos2.x = otherPos.x + (otherLength/2) * (otherVectorToWp.x/(math.abs(otherVectorToWp.x)+math.abs(otherVectorToWp.z))); + otherPos2.y = 0; + otherPos2.z = otherPos.z + (otherLength/2) * (otherVectorToWp.z/(math.abs(otherVectorToWp.x)+math.abs(otherVectorToWp.z))); + local otherOrtho = { x=-otherVectorToWp.z, z=otherVectorToWp.x }; + + local otherBoundingBox = {}; + otherBoundingBox[1] ={ x = otherPos.x + (otherWidth/2) * ( otherOrtho.x / (math.abs(otherOrtho.x)+math.abs(otherOrtho.z))) + (otherLength/2) * (otherVectorToWp.x/(math.abs(otherVectorToWp.x)+math.abs(otherVectorToWp.z))), + y = 0, + z = otherPos.z + (otherWidth/2) * ( otherOrtho.z / (math.abs(otherOrtho.x)+math.abs(otherOrtho.z))) + (otherLength/2) * (otherVectorToWp.z/(math.abs(otherVectorToWp.x)+math.abs(otherVectorToWp.z)))}; + + otherBoundingBox[2] ={ x = otherPos.x - (otherWidth/2) * ( otherOrtho.x / (math.abs(otherOrtho.x)+math.abs(otherOrtho.z))) + (otherLength/2) * (otherVectorToWp.x/(math.abs(otherVectorToWp.x)+math.abs(otherVectorToWp.z))), + y = 0, + z = otherPos.z - (otherWidth/2) * ( otherOrtho.z / (math.abs(otherOrtho.x)+math.abs(otherOrtho.z))) + (otherLength/2) * (otherVectorToWp.z/(math.abs(otherVectorToWp.x)+math.abs(otherVectorToWp.z)))}; + otherBoundingBox[3] ={ x = otherPos.x - (otherWidth/2) * ( otherOrtho.x / (math.abs(otherOrtho.x)+math.abs(otherOrtho.z))) - (otherLength/2) * (otherVectorToWp.x/(math.abs(otherVectorToWp.x)+math.abs(otherVectorToWp.z))), + y = 0, + z = otherPos.z - (otherWidth/2) * ( otherOrtho.z / (math.abs(otherOrtho.x)+math.abs(otherOrtho.z))) - (otherLength/2) * (otherVectorToWp.z/(math.abs(otherVectorToWp.x)+math.abs(otherVectorToWp.z)))}; + + otherBoundingBox[4] ={ x = otherPos.x + (otherWidth/2) * ( otherOrtho.x / (math.abs(otherOrtho.x)+math.abs(otherOrtho.z))) - (otherLength/2) * (otherVectorToWp.x/(math.abs(otherVectorToWp.x)+math.abs(otherVectorToWp.z))), + y = 0, + z = otherPos.z + (otherWidth/2) * ( otherOrtho.z / (math.abs(otherOrtho.x)+math.abs(otherOrtho.z))) - (otherLength/2) * (otherVectorToWp.z/(math.abs(otherVectorToWp.x)+math.abs(otherVectorToWp.z)))}; + + if AutoDrive:BoxesIntersect(boundingBox, otherBoundingBox) == true then + return true; + end; + end; + return false; +end; + function AutoDrivePathFinder:onFieldDataUpdateFinished(pf, fielddata, cell) local totalFruitPixels = 0; if fielddata ~= nil then diff --git a/FS19_AutoDrive/scripts/AutoDriveSettings.lua b/FS19_AutoDrive/scripts/AutoDriveSettings.lua index 99427136..267cfb44 100644 --- a/FS19_AutoDrive/scripts/AutoDriveSettings.lua +++ b/FS19_AutoDrive/scripts/AutoDriveSettings.lua @@ -160,6 +160,16 @@ AutoDrive.settings.driverWages = { translate= false }; +AutoDrive.settings.smoothField = { + values= {false, true}, + texts= {"gui_ad_no", "gui_ad_yes"}, + default= 2, + current= 2, + text= "gui_ad_smoothField", + tooltip= "gui_ad_smoothField_tooltip", + translate= true +}; + function AutoDrive:getSetting(settingName) if AutoDrive.settings[settingName] ~= nil then local setting = AutoDrive.settings[settingName] diff --git a/FS19_AutoDrive/translations/translation_de.xml b/FS19_AutoDrive/translations/translation_de.xml index 789a431d..420c7a4d 100644 --- a/FS19_AutoDrive/translations/translation_de.xml +++ b/FS19_AutoDrive/translations/translation_de.xml @@ -88,5 +88,7 @@ + + diff --git a/FS19_AutoDrive/translations/translation_en.xml b/FS19_AutoDrive/translations/translation_en.xml index 306efe8b..b09c82da 100644 --- a/FS19_AutoDrive/translations/translation_en.xml +++ b/FS19_AutoDrive/translations/translation_en.xml @@ -88,5 +88,7 @@ + + diff --git a/FS19_AutoDrive/translations/translation_fr.xml b/FS19_AutoDrive/translations/translation_fr.xml index b9f2c64e..8585eaf5 100644 --- a/FS19_AutoDrive/translations/translation_fr.xml +++ b/FS19_AutoDrive/translations/translation_fr.xml @@ -1,6 +1,6 @@ - Anonymous + Anonymous-any @@ -78,15 +78,11 @@ - + - - - - - - + + diff --git a/FS19_AutoDrive/translations/translation_ru.xml b/FS19_AutoDrive/translations/translation_ru.xml index 838f1cff..4d1df2c2 100644 --- a/FS19_AutoDrive/translations/translation_ru.xml +++ b/FS19_AutoDrive/translations/translation_ru.xml @@ -83,10 +83,6 @@ - - - - - + diff --git a/courses/Dondiegomap b/courses/FS19_Dondiego_Map/AutoDrive_FS19_Dondiego_Map_config.xml similarity index 100% rename from courses/Dondiegomap rename to courses/FS19_Dondiego_Map/AutoDrive_FS19_Dondiego_Map_config.xml diff --git a/courses/Mutimap b/courses/Multimap_2019/AutoDrive_Multimap_2019_config.xml similarity index 100% rename from courses/Mutimap rename to courses/Multimap_2019/AutoDrive_Multimap_2019_config.xml diff --git a/courses/Ravenport/AutoDrive_Ravenport_config.xml b/courses/Ravenport/AutoDrive_Ravenport_config.xml new file mode 100644 index 00000000..30e39693 --- /dev/null +++ b/courses/Ravenport/AutoDrive_Ravenport_config.xml @@ -0,0 +1,78 @@ + + + 1.0.0.0 + false + 0.829687 + 0.285926 + false + 50.000000 + + + 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337 + -436.563,-434.106,-429.795,-425.058,-420.284,-415.529,-410.698,-405.741,-402.340,-398.640,-393.254,-389.799,-386.624,-383.563,-381.001,-377.962,-372.007,-366.034,-360.074,-354.062,-348.086,-341.978,-335.815,-329.665,-323.609,-317.434,-311.251,-305.219,-299.069,-292.892,-286.719,-280.664,-274.490,-268.478,-264.278,-258.183,-253.289,-249.299,-245.357,-241.462,-235.795,-230.130,-224.576,-219.169,-215.356,-211.708,-208.155,-203.158,-198.964,-194.199,-189.600,-185.262,-180.889,-176.465,-173.250,-170.620,-168.233,-165.964,-163.648,-161.244,-158.427,-155.823,-152.371,-147.316,-142.387,-139.131,-135.955,-131.204,-126.456,-121.563,-118.175,-114.533,-110.667,-106.823,-102.846,-96.862,-90.965,-84.972,-79.803,-75.750,-71.683,-65.295,-59.192,-53.093,-46.963,-40.881,-34.789,-28.691,-22.672,-16.564,-10.457,-4.311,1.802,8.020,14.154,20.283,26.363,32.532,38.676,44.742,50.848,56.979,62.147,68.182,72.204,78.170,84.117,90.042,96.031,101.995,107.964,113.971,119.961,125.946,131.970,137.990,143.994,150.008,156.038,162.076,168.120,174.337,180.404,185.620,191.452,197.555,203.655,209.755,215.856,221.949,228.046,234.143,240.211,246.291,252.365,258.433,264.490,270.539,276.590,282.629,288.651,294.654,299.210,305.132,310.462,314.897,320.658,324.386,328.015,333.414,338.780,343.537,346.913,350.690,355.300,358.393,362.717,367.131,371.452,375.789,380.258,383.578,386.819,390.189,394.365,398.882,402.540,406.360,410.277,414.252,420.240,426.236,432.255,438.021,442.080,448.175,454.281,460.419,466.520,472.625,478.729,484.833,490.937,497.042,503.135,509.245,515.350,521.456,527.562,533.663,539.868,546.038,552.042,556.181,558.078,559.849,563.205,568.252,571.766,575.024,578.044,582.040,588.081,594.087,598.159,602.177,605.213,608.207,610.971,613.154,614.569,615.585,616.237,616.481,616.333,615.775,614.865,613.492,611.728,609.900,607.970,605.730,602.560,599.074,594.884,588.726,582.698,576.633,570.606,564.405,558.272,552.181,546.132,539.895,533.805,527.611,521.443,515.166,509.041,502.901,496.777,490.762,484.735,478.581,472.314,466.144,460.077,453.804,447.601,441.514,435.489,429.409,423.417,419.473,414.992,411.130,405.218,400.221,396.457,392.824,389.326,385.925,381.692,378.643,375.741,371.460,368.534,365.418,360.866,356.222,351.521,347.815,344.409,339.219,333.944,328.569,323.094,319.253,315.424,311.535,305.929,299.959,293.822,287.751,281.643,275.528,269.555,263.569,257.310,251.275,245.050,238.976,232.936,226.671,220.561,214.437,208.278,202.007,195.729,189.553,183.439,177.187,171.003,165.043,158.883,152.660,146.478,140.346,134.406,128.346,122.357,116.499,110.614,104.589,98.692,92.782,86.711,80.680,74.559,68.609,62.686,56.716,50.448,44.220,38.160,31.917,25.649,19.404,13.390,7.280,1.211,-5.054,-11.101,-17.380,-23.567,-29.735,-35.939,-42.048,-48.266,-54.322,-60.371,-65.811,-71.887,-77.965,-84.012,-89.808,-93.807,-97.704,-101.754,-105.673,-109.438,-114.054,-117.691,-121.183,-124.707,-129.725,-134.785,-137.943,-142.613,-147.317,-152.063,-155.434,-158.396,-161.343,-164.445,-167.236,-170.277,-173.147,-175.818,-178.351,-180.605,-183.388,-187.160,-190.265,-194.810,-199.492,-204.254,-207.656,-211.090,-214.748,-218.420,-223.921,-229.394,-234.874,-240.489,-246.045,-249.919,-253.911,-257.945,-262.019,-266.148,-272.218,-278.369,-284.372,-290.494,-296.537,-302.573,-308.742,-314.927,-321.159,-327.410,-331.609,-335.765,-341.759,-347.853,-354.083,-360.384,-364.419,-368.585,-372.628,-376.767,-382.665,-386.472,-390.137,-393.592,-396.889,-401.980,-406.892,-411.810,-416.687,-421.515,-426.386,-431.215,-435.994,-439.352,-441.963,-443.988,-446.032,-448.692,-451.595,-454.279,-456.776,-458.420,-459.464,-460.172,-460.710,-461.431,-461.416,-461.105,-460.699,-460.288,-459.660,-458.668,-457.410,-456.003,-454.400,-452.541,-450.604,-448.525,-446.523,-444.604,-440.839,-435.228,-429.607,-423.924,-418.243,-412.588,-409.044,-410.835,-409.629,-409.344,-409.426,-409.878,-410.701,-442.010,-444.552,-448.100,-452.052,-455.823,-459.570,-463.523,-467.449,-473.361,-479.238,-485.198,-491.130,-497.100,-503.134,-509.062,-515.082,-521.300,-527.240,-533.303,-539.437,-545.533,-551.735,-557.864,-563.970,-570.082,-576.235,-582.250,-588.367,-594.500,-600.658,-606.807,-612.889,-618.963,-624.994,-631.103,-637.232,-643.349,-649.467,-655.596,-661.681,-667.784,-673.872,-679.954,-686.193,-692.267,-698.422,-704.432,-710.469,-716.657,-722.742,-728.833,-734.865,-740.901,-747.002,-753.033,-758.454,-761.058,-763.131,-765.049,-767.162,-768.781,-769.519,-769.891,-770.199,-770.307,-770.422,-770.467,-770.482,-770.497,-770.481,-770.444,-770.408,-770.372,-770.345,-770.316,-770.289,-770.261,-770.227,-770.091,-769.489,-768.491,-767.311,-765.875,-764.116,-761.769,-758.961,-756.646,-753.677,-749.549,-745.420,-741.345,-737.212,-733.028,-726.881,-720.696,-714.480,-708.463,-702.261,-696.210,-690.013,-683.966,-677.836,-671.551,-665.333,-659.137,-652.900,-646.886,-640.694,-634.512,-628.347,-622.252,-616.163,-610.059,-603.937,-597.769,-591.712,-585.436,-579.332,-573.225,-567.052,-560.821,-554.633,-548.499,-542.392,-536.286,-530.180,-524.074,-517.969,-511.861,-505.763,-499.650,-493.544,-488.317,-484.265,-480.271,-476.093,-471.961,-466.075,-460.256,-454.512,-449.399,-443.871,-440.122,-436.521,-431.364,-426.160,-420.940,-415.731,-410.501,-405.177,-401.540,-397.778,-393.901,-388.937,-384.945,-380.935,-376.855,-370.849,-366.816,-370.904,-373.822,-378.723,-384.632,-390.515,-394.358,-398.206,-403.875,-407.887,-411.598,-415.101,-420.410,-425.657,-430.814,-436.056,-441.320,-445.611,-449.386,-453.874,-457.638,-462.348,-466.274,-470.375,-476.550,-482.492,-487.338,-493.589,-499.831,-505.905,-512.179,-518.475,-524.735,-530.878,-537.068,-543.213,-549.342,-555.480,-561.620,-567.726,-573.854,-579.983,-586.126,-592.256,-598.318,-604.344,-610.435,-616.540,-622.591,-628.667,-634.783,-640.873,-646.960,-653.094,-659.198,-665.292,-671.390,-677.562,-683.669,-689.782,-695.908,-702.024,-708.166,-714.294,-720.435,-726.521,-732.633,-738.681,-744.732,-750.700,-753.677,-756.130,-758.423,-759.982,-761.207,-762.474,-763.178,-763.384,-763.215,-762.721,-762.453,-762.517,-762.760,-762.932,-763.080,-763.201,-763.280,-763.335,-763.355,-763.378,-763.401,-763.442,-763.495,-763.065,-762.155,-761.070,-759.585,-757.587,-755.512,-753.452,-750.715,-746.984,-740.966,-734.866,-728.818,-722.789,-716.691,-710.660,-704.411,-698.229,-692.016,-685.980,-679.733,-673.537,-667.469,-661.434,-655.123,-649.032,-642.976,-636.936,-630.655,-624.551,-618.395,-612.359,-606.122,-600.079,-593.940,-587.681,-581.398,-575.144,-568.991,-562.926,-556.677,-550.477,-544.189,-538.030,-532.036,-525.931,-519.702,-513.511,-507.270,-501.175,-495.252,-489.181,-483.343,-477.440,-471.340,-465.494,-461.654,-457.868,-454.259,-449.467,-444.363,-441.077,-463.999,-461.968,-460.559,-459.620,-459.226,-459.213,-440.701,-442.628,-443.853,-444.409,-444.616,-444.458,-443.945,-442.859,-441.194,-439.236,-435.357,-431.483,-427.499,-423.457,-420.390,-417.628,-414.174,-410.629,-406.608,-402.892,-398.624,-394.693,-388.845,-383.405,-377.879,-372.319,-366.739,-361.399,-356.064,-350.716,-345.341,-339.963,-334.624,-329.268,-323.890,-318.501,-313.120,-307.775,-302.460,-297.169,-291.921,-286.720,-281.552,-276.647,-271.748,-266.898,-262.079,-257.324,-252.610,-248.001,-243.464,-239.190,-234.993,-230.874,-226.769,-222.736,-218.698,-214.658,-210.559,-206.488,-202.449,-198.404,-194.363,-190.293,-186.164,-181.993,-177.745,-173.451,-169.119,-164.762,-160.330,-155.836,-151.317,-146.792,-142.266,-137.689,-133.092,-128.461,-123.782,-119.024,-114.193,-109.322,-104.415,-99.440,-94.431,-89.343,-84.228,-79.075,-73.867,-68.571,-63.277,-57.925,-52.524,-47.046,-41.505,-35.902,-30.263,-24.578,-18.824,-13.007,-7.134,-1.232,4.700,10.657,16.633,22.631,28.661,34.711,40.777,46.858,52.953,59.056,65.160,71.264,77.369,83.474,89.579,95.684,101.789,107.894,113.999,120.104,126.207,132.310,138.414,144.519,150.625,156.729,162.834,168.940,175.043,181.146,187.251,193.343,199.438,205.521,211.605,217.665,223.722,229.774,235.795,241.778,245.709,249.544,255.273,260.244,266.016,271.752,277.429,283.032,288.590,294.115,299.594,305.010,310.369,315.688,321.006,326.325,331.606,336.863,342.124,347.379,352.550,357.685,362.817,367.948,373.061,378.146,383.230,388.305,393.392,398.484,403.575,408.666,413.722,418.820,423.919,429.017,434.135,439.309,444.527,449.800,455.138,460.510,465.922,471.392,476.914,482.505,486.302,491.792,495.689,501.582,507.519,511.512,517.530,523.297,527.352,531.420,535.488,539.540,545.615,550.508,556.520,560.443,564.301,568.123,571.909,577.564,581.177,586.519,591.989,597.519,602.897,608.776,612.634,616.780,620.884,626.815,632.840,638.936,643.758,647.797,654.031,660.268,666.523,672.519,678.527,684.719,690.721,696.857,702.877,708.856,714.790,720.690,726.599,732.503,738.451,744.472,750.400,756.387,762.264,768.206,774.186,780.134,786.023,791.832,797.742,803.246,807.089,812.795,818.452,822.239,826.365,829.986,833.484,838.411,843.303,847.516,852.083,856.617,860.897,863.687,866.373,870.189,872.474,874.599,877.325,879.158,880.721,881.570,881.987,882.688,882.926,882.831,882.549,881.843,880.877,879.746,878.372,876.729,874.984,873.029,870.188,867.151,862.760,857.996,853.167,848.300,843.462,838.646,833.728,828.831,824.001,819.288,814.698,811.812,809.054,806.481,804.036,800.860,798.495,796.495,794.699,793.049,791.201,789.515,787.436,785.517,783.723,782.039,780.452,778.976,777.580,776.288,775.062,773.930,772.797,771.606,770.420,769.223,767.980,766.794,765.656,764.519,763.381,762.211,761.028,759.844,758.660,757.462,756.174,754.864,753.557,752.238,750.770,749.064,747.218,745.298,743.341,741.385,739.496,737.620,735.813,734.059,732.293,730.527,728.761,726.993,725.227,723.461,721.695,719.924,718.156,716.389,714.680,712.996,711.250,709.340,707.302,705.367,703.143,701.299,699.316,696.909,694.628,692.111,689.314,685.235,681.156,676.956,672.609,669.167,665.950,662.254,657.690,652.587,647.475,642.333,637.280,632.311,627.406,622.527,617.697,612.928,608.196,603.544,599.474,595.025,590.659,586.290,581.852,577.301,574.162,569.313,564.789,561.404,557.868,554.183,550.457,546.602,542.599,538.670,533.631,529.636,525.523,521.318,517.320,513.295,507.835,502.573,498.731,494.984,490.778,487.243,483.846,480.556,475.633,470.815,466.087,461.391,456.799,452.183,447.588,442.989,438.390,433.721,428.978,424.190,419.345,414.364,409.292,404.140,399.360,394.010,388.554,383.078,377.537,371.973,366.343,360.645,354.906,349.180,343.374,337.558,331.714,325.913,320.114,314.377,308.796,303.037,297.463,293.919,290.463,287.150,282.143,278.902,274.864,271.889,269.007,264.714,260.347,257.182,252.389,249.009,245.530,241.890,238.231,234.362,230.528,224.688,220.761,216.744,212.651,206.639,200.638,195.683,191.609,186.777,181.006,174.959,170.083,166.091,162.164,158.261,152.920,147.125,141.385,135.543,129.778,123.896,117.972,113.969,109.906,105.900,101.791,97.638,93.599,89.551,85.495,81.544,77.733,71.984,68.275,64.646,61.081,57.715,54.440,50.153,45.400,40.675,36.038,31.365,26.684,22.048,18.064,14.548,9.274,5.658,0.155,-5.379,-10.988,-16.487,-22.122,-27.765,-33.262,-38.929,-44.575,-50.254,-55.921,-61.769,-66.147,-72.003,-77.902,-83.824,-87.834,-93.852,-99.961,-106.043,-112.093,-118.187,-124.218,-130.362,-136.561,-142.598,-148.644,-154.878,-161.030,-167.132,-173.207,-179.205,-185.263,-191.307,-197.329,-203.348,-209.341,-215.289,-221.194,-227.068,-232.938,-238.818,-244.714,-250.625,-256.533,-262.389,-268.148,-274.019,-279.953,-285.932,-292.015,-298.150,-302.225,-306.442,-310.513,-314.747,-320.771,-326.843,-331.734,-337.185,-343.184,-349.137,-355.054,-360.956,-366.820,-372.693,-378.537,-384.405,-390.213,-396.255,-402.209,-408.210,-414.275,-418.935,-424.980,-431.056,-437.060,-443.236,-449.369,-455.509,-461.651,-467.652,-473.749,-479.766,-485.815,-491.841,-497.869,-500.794,-502.103,-503.405,-504.418,-505.057,-507.008,-508.786,-510.520,-512.231,-513.529,-514.352,-514.974,-515.862,-516.494,-516.541,-516.436,-516.136,-515.557,-514.703,-513.627,-512.379,-510.847,-509.218,-507.344,-505.290,-503.004,-500.566,-496.881,-494.163,-490.205,-486.133,-481.918,-477.713,-473.448,-469.156,-464.946,-460.689,-456.344,-451.976,-447.726,-443.456,-439.153,-434.813,-430.448,-426.055,-421.809,-417.544,-413.307,-409.045,-404.700,-400.369,-396.018,-391.804,-387.587,-383.335,-379.016,-374.692,-370.333,-366.133,-361.875,-357.646,-353.402,-349.080,-344.844,-340.553,-336.393,-332.207,-328.036,-323.865,-319.643,-315.477,-311.308,-307.142,-302.918,-298.737,-294.556,-290.332,-286.150,-281.968,-277.787,-273.559,-269.372,-265.199,-260.981,-256.795,-252.610,-248.425,-244.181,-239.996,-235.810,-231.607,-227.348,-223.163,-218.973,-214.722,-210.537,-206.347,-202.139,-198.009,-193.824,-189.639,-185.352,-181.167,-176.982,-172.789,-168.502,-164.312,-160.109,-155.778,-151.589,-147.406,-143.229,-139.124,-134.927,-130.750,-126.596,-122.398,-118.221,-114.007,-109.863,-105.686,-101.488,-97.274,-93.031,-88.731,-84.436,-80.155,-75.938,-71.689,-67.580,-63.573,-60.185,-57.827,-56.008,-54.829,-54.312,-54.273,-54.695,-55.551,-56.891,-58.508,-60.871,-64.259,-67.597,-71.217,-76.489,-81.602,-86.740,-91.926,-97.072,-101.660,-106.551,-111.546,-116.362,-121.097,-125.871,-130.647,-135.382,-140.069,-144.794,-149.436,-154.017,-158.418,-162.975,-167.459,-171.798,-176.164,-180.443,-184.663,-188.746,-192.859,-197.007,-201.037,-205.070,-209.116,-213.227,-217.306,-221.280,-225.274,-229.356,-233.532,-237.722,-241.952,-246.305,-250.723,-255.288,-259.852,-264.535,-269.280,-274.133,-279.048,-284.003,-287.398,-292.514,-297.652,-302.775,-307.886,-313.043,-318.223,-323.437,-328.677,-333.917,-339.177,-344.541,-349.858,-355.188,-360.561,-365.992,-371.380,-376.888,-382.447,-388.074,-393.717,-399.337,-404.894,-410.495,-414.056,-417.379,-422.308,-425.421,-428.324,-431.072,-434.033,-436.561,-440.307,-442.906,-445.067,-448.224,-449.320,-449.719,-449.503,-448.834,-447.744,-450.297,-452.880,-454.852,-456.670,-455.205,-452.184,-450.217,-448.414,-446.109,-49.758,-277.249,-274.750,-273.436,-272.791,-272.408,-272.287,-272.339,-272.809,-273.130,-273.113,-273.247,-273.383,-273.515,-273.645,-273.403,-272.734,-271.658,-270.085,-267.704,-264.911,-261.979,-258.960,-254.904,-248.873,-242.854,-236.783,-230.768,-226.785,-224.522,-222.831,-221.530,-220.622,-220.235,-220.311,-220.147,-219.934,-220.092,-220.382,-220.448,-220.473,-220.502,-220.115,-219.760,-219.669,-219.741,-220.099,-220.605,-221.258,-222.316,-223.349,-224.760,-226.523,-228.488,-230.004,-222.013,-220.520,-268.310,-270.812,-272.195,-272.804,-273.067,-168.845,-167.432,-166.309,-165.548,-164.046,-162.555,-161.043,-159.317,-157.040,-152.788,-149.437,-144.329,-139.168,-134.859,-131.790,-129.001,-126.793,-125.735,-124.251,-123.878,-124.058,-124.430,-123.655,-121.883,-119.417,-116.005,-113.161,-107.423,-103.393,-99.367,-93.361,-87.409,-81.463,-75.583,-71.142,-65.283,-59.596,-55.797,-52.219,-49.392,-46.229,-43.229,-38.812,-34.350,-29.912,-27.330,-24.524,-20.687,-16.662,-12.618,-8.571,-4.466,-0.406,3.742,9.735,15.712,19.817,23.701,27.702,31.538,35.160,38.572,41.539,46.274,50.849,53.628,56.174,59.795,62.438,64.798,67.266,69.973,72.939,76.036,79.070,82.192,85.142,88.006,91.536,96.832,100.560,103.575,106.606,109.674,113.651,119.625,125.640,128.539,131.291,133.341,134.862,137.317,140.009,142.935,145.933,150.444,153.322,157.496,161.657,164.645,169.297,172.553,175.972,179.565,183.234,186.151,189.188,192.246,196.292,202.272,206.315,209.583,212.989,216.711,220.310,223.828,227.227,232.277,237.209,241.915,244.997,249.633,254.131,258.485,262.176,-124.233,-127.197,-133.088,-136.398,-142.025,-145.425,-148.444,-152.547,-155.936,-160.061,-164.043,-169.053,-173.052,-176.907,-179.496,-182.385,-185.527,-188.483,-191.047,-194.740,-198.533,-202.090,-204.367,-207.593,-210.793,-214.137,-216.687,-220.619,-224.228,-228.438,-232.751,-236.765,-238.699,-240.777,-242.072,-242.965,-243.205,-242.996,-242.290,-241.193,-239.688,-237.999,-235.976,-233.208,-231.565,-231.435,-231.682,-232.357,-233.403,-235.000,-236.911,739.378,735.669,732.708,730.662,728.622,725.753,721.825,715.992,710.073,704.179,698.600,692.617,686.637,680.553,674.407,668.362,662.342,658.322,652.263,646.198,640.160,634.120,628.106,622.120,616.161,611.852,607.862,604.042,600.139,596.388,592.698,587.268,581.966,576.574,572.882,567.306,563.154,559.248,555.179,551.072,546.932,542.766,538.744,532.591,528.400,524.242,518.096,514.120,510.069,504.066,499.242,493.496,487.630,481.811,476.056,470.551,465.122,459.773,454.442,449.133,443.954,438.600,433.382,428.222,423.068,417.934,412.867,407.864,402.816,397.707,392.695,387.630,382.632,377.552,372.436,367.282,362.149,357.044,351.987,346.861,341.679,336.378,331.075,325.787,320.459,315.112,309.763,304.415,298.994,293.549,288.132,282.633,277.289,272.722,266.963,261.148,255.401,249.635,243.796,239.249,235.301,231.260,227.216,222.393,216.352,210.328,204.288,198.253,192.160,186.036,179.956,173.865,167.863,161.837,155.726,149.602,143.574,137.485,131.448,125.345,119.311,113.215,107.112,101.006,94.880,88.852,82.766,76.768,70.736,64.639,58.559,52.498,46.378,40.380,34.269,30.224,24.176,18.154,12.147,7.395,1.572,-4.237,-10.081,-15.921,-21.710,-27.407,-33.140,-38.729,-44.252,-49.769,-55.244,-45.633,-46.674,-46.629,-46.125,883.965,885.864,888.637,891.603,896.060,899.570,901.044,903.346,906.313,909.094,910.538,911.753,913.414,914.914,915.787,916.647,917.585,918.322,918.863,919.407,919.948,920.483,920.991,921.404,921.677,921.832,921.791,921.796,921.847,921.903,921.751,921.329,920.631,919.608,918.521,917.433,916.342,915.342,914.348,913.350,912.357,911.297,910.236,909.152,907.737,906.239,904.625,902.882,901.195,899.722,897.395,894.941,892.944,890.884,888.509,886.395,883.466,880.294,877.061,873.637,869.211,865.588,861.816,857.426,853.459,849.420,846.202,843.177,838.999,832.808,826.830,822.828,819.274,815.319,811.513,807.864,804.566,801.882,799.388,796.793,793.754,791.358,789.092,787.003,785.057,783.517,781.244,779.015,776.755,774.487,772.221,769.988,768.891,768.052,767.609,767.557,767.674,768.145,768.777,769.702,770.610,771.629,772.826,774.201,775.589,776.993,778.558,780.203,781.903,783.255,784.767,787.012,789.387,791.388,793.268,795.313,797.544,801.000,803.506,806.102,808.849,812.943,817.354,821.791,826.172,830.678,834.007,838.960,843.918,848.886,853.814,858.694,861.785,864.671,867.411,870.691,873.067,874.936,876.324,877.318,877.964,878.267,878.278,877.954,877.344,876.695,875.786,874.588,873.044,871.124,868.849,866.439,863.870,860.047,856.059,852.937,849.682,846.671,843.504,838.711,833.792,828.750,825.253,821.693,817.703,812.764,808.046,802.338,796.603,792.772,786.991,781.089,775.238,769.370,763.513,757.670,751.839,745.954,740.071,734.130,728.258,-45.111,-43.538,-41.415,-38.757,-36.226,-33.894,-31.745,-28.413,-25.991,-23.446,-19.515,-15.502,-11.384,-7.284,-3.123,1.078,5.268,9.371,13.496,17.442,21.511,25.515,29.598,33.613,37.621,41.744,45.502,48.675,51.715,55.293,59.013,61.992,65.089,69.102,73.168,77.786,81.890,86.338,92.401,98.495,104.617,109.124,114.874,119.021,123.337,127.453,131.527,136.818,142.714,148.482,154.140,159.886,165.532,171.138,176.683,182.201,187.712,193.426,199.163,204.934,210.682,216.527,222.383,228.207,232.174,238.210,242.247,246.377,252.477,258.476,264.525,270.603,274.601,280.717,286.781,290.813,294.750,300.653,306.561,310.369,314.119,317.845,321.441,326.230,331.472,336.548,341.642,346.716,351.777,356.868,362.017,366.740,370.466,374.252,378.075,382.048,387.266,391.329,397.254,402.153,408.142,414.210,420.224,426.323,432.384,436.462,441.924,445.905,451.110,454.970,459.234,463.006,466.739,470.308,473.810,477.250,480.577,485.509,489.234,493.060,497.536,501.978,506.340,510.673,515.038,519.371,523.666,527.933,532.127,536.374,540.708,545.132,549.323,553.905,558.555,563.443,567.469,570.974,574.481,578.127,581.891,585.820,589.692,593.828,597.869,602.018,608.165,614.226,620.384,626.428,632.482,638.549,644.654,650.791,656.876,662.954,668.974,671.377,674.407,680.432,686.523,692.571,698.574,704.599,710.678,716.798,722.856,728.839,733.937,738.183,741.148,744.106,747.595,750.934,753.059,754.275,755.456,756.067,757.294,758.312,758.842,759.122,759.213,759.002,758.533,757.945,757.242,756.191,755.142,754.211,753.303,752.396,751.501,750.615,749.732,748.793,747.797,746.789,745.736,744.627,744.212,744.542,745.321,746.639,748.305,750.954,743.775,742.551,741.344,623.904,626.828,632.133,637.910,641.839,645.835,649.882,655.643,659.694,665.762,671.807,677.839,681.869,685.023,688.303,692.012,697.553,700.760,386.930,389.492,394.637,398.315,402.159,405.124,409.195,415.210,419.297,425.321,431.297,434.271,437.168,442.990,446.945,-449.793,-451.239,-454.138,-457.015,-422.639,-422.276,-422.677,-423.538,-424.756,-426.314,-429.353,-432.135,-435.830,-439.874,-443.697,-449.401,-455.190,-460.850,-466.572,-470.285,-475.829,-480.821,-486.045,-491.323,-496.548,-501.101,-504.350,-509.062,-512.075,-516.608,-521.145,-525.499,-529.954,-534.322,-537.883,-540.478,-544.264,-546.558,-549.800,-552.967,-556.026,-559.073,-562.086,-565.092,-567.095,-569.832,-572.530,-575.139,-577.603,-579.985,-582.274,-584.428,-586.427,-588.357,-590.285,-592.156,-594.007,-595.732,-597.372,-598.873,-600.296,-601.658,-603.015,-604.436,-605.790,-607.094,-608.277,-609.461,-610.647,-611.831,-612.953,-613.928,-614.770,-615.571,-616.357,-617.163,-617.963,-618.721,-619.387,-619.964,-620.531,-621.099,-621.672,-622.245,-622.810,-623.324,-623.789,-624.222,-624.616,-624.978,-625.309,-625.598,-625.841,-625.980,-625.962,-625.888,-625.848,-625.849,-625.869,-625.933,-626.001,-626.024,-626.048,-626.073,-626.097,-626.122,-626.146,-626.171,-626.195,-626.239,-626.303,-626.366,-626.438,-626.523,-626.607,-626.692,-626.778,-626.889,-627.016,-627.188,-627.358,-627.550,-627.869,-628.340,-629.011,-629.681,-630.468,-631.489,-632.665,-634.331,-635.986,-638.113,-640.583,-643.053,-645.621,-648.341,-651.051,-653.772,-656.488,-659.113,-660.940,-662.355,-664.284,-665.375,-666.315,-667.071,-667.599,-667.884,-667.902,-667.607,-666.982,-665.988,-664.611,-662.964,-660.954,-658.145,-655.262,-652.268,-649.295,-646.305,-643.290,-640.383,-638.347,-636.779,-635.374,-633.387,-632.241,-631.254,-629.872,-628.848,-628.272,-627.522,-626.879,-626.404,-626.079,-625.786,-625.495,-625.222,-625.020,-624.888,-624.755,-624.677,-624.623,-624.608,-624.594,-624.627,-624.649,-624.666,-624.645,-624.615,-624.585,-624.567,-624.560,-624.553,-624.547,-624.540,-624.534,-624.527,-624.520,-624.514,-624.508,-624.501,-624.495,-624.488,-624.482,-624.476,-624.469,-624.463,-624.456,-624.450,-624.440,-624.387,-624.336,-624.285,-624.234,-624.184,-624.133,-624.082,-624.032,-623.999,-623.966,-623.933,-623.900,-623.867,-623.833,-623.800,-623.767,-623.734,-623.701,-623.668,-623.635,-623.603,-623.570,-623.538,-623.505,-623.472,-623.439,-623.406,-623.362,-623.096,-622.512,-621.723,-620.572,-619.141,-617.623,-615.756,-613.632,-611.320,-608.732,-605.131,-599.692,-594.320,-588.943,-583.562,-577.967,-572.339,-566.915,-561.130,-555.414,-549.582,-543.839,-537.972,-532.221,-526.356,-520.419,-514.629,-508.742,-502.765,-496.995,-491.158,-485.262,-479.303,-473.289,-467.228,-461.397,-455.513,-449.565,-443.654,-437.740,-431.822,-425.900,-419.978,-414.041,-408.119,-402.198,-396.276,-390.354,-384.434,-378.512,-372.588,-366.665,-360.742,-354.819,-348.897,-342.974,-336.875,-330.932,-325.010,-319.088,-313.159,-307.238,-301.315,-295.393,-289.473,-283.560,-277.642,-271.728,-265.813,-259.890,-253.961,-248.032,-242.103,-236.177,-230.136,-224.254,-218.410,-212.575,-622.812,-621.628,-619.721,-617.175,-616.809,-616.641,-616.495,-616.478,-616.425,-616.377,-616.562,-617.261,-618.302,-620.395,-621.615,-622.579,-210.580,-207.647,-201.729,-195.877,-189.910,-184.043,-178.214,-172.367,-166.388,-160.509,-154.594,-148.672,-142.802,-136.779,-130.820,-124.944,-118.952,-113.068,-107.084,-101.231,-95.291,-89.269,-83.402,-77.465,-71.457,-65.627,-59.736,-53.786,-47.780,-41.718,-35.856,-29.945,-23.984,-17.977,-11.923,-6.090,-0.217,5.698,11.654,17.652,23.689,29.765,35.601,41.471,47.374,53.291,59.211,65.131,71.050,76.986,82.931,88.875,94.820,100.761,106.708,112.635,118.568,124.519,130.469,136.420,142.371,148.342,154.309,160.291,166.268,172.253,178.237,184.225,190.214,196.204,202.190,208.178,214.162,220.143,226.122,232.095,238.075,244.056,250.037,256.018,261.998,267.963,273.950,279.936,285.910,291.877,297.838,303.811,309.778,315.744,321.711,327.677,333.640,339.607,345.531,351.420,357.311,363.480,369.653,375.846,382.014,388.207,394.399,400.596,406.793,412.991,419.189,425.402,431.626,437.853,444.089,450.331,456.579,462.825,469.066,475.303,481.536,487.756,493.967,500.171,506.364,512.543,518.714,524.874,531.023,537.155,543.261,549.345,555.398,559.480,563.390,569.168,573.070,576.847,580.541,584.100,587.562,592.495,597.382,601.543,606.232,609.120,611.758,614.263,618.114,621.936,625.662,629.349,632.986,636.353,638.929,640.873,642.824,645.466,647.947,650.333,652.650,654.833,656.898,658.842,660.704,662.454,664.092,665.735,667.376,669.056,670.736,672.419,674.102,675.786,677.470,679.153,680.837,682.520,684.206,685.951,687.735,689.598,691.502,693.406,695.383,697.381,699.453,701.569,703.739,706.016,708.374,710.829,713.392,716.107,719.044,721.255,723.668,727.374,731.138,733.738,737.373,740.187,743.240,746.623,750.183,755.633,759.469,763.242,767.153,771.567,777.566,783.452,789.488,793.612,797.510,801.315,805.019,808.596,811.190,813.467,815.517,818.002,820.215,821.591,823.124,824.410,825.909,827.711,829.828,832.669,835.307,838.031,840.990,844.037,847.228,851.241,852.231,852.884,853.278,853.221,852.765,851.754,850.111,848.205,845.222,842.193,839.122,835.970,832.811,829.753,826.669,823.590,820.540,817.424,814.357,811.243,808.183,805.065,801.903,798.827,795.709,792.564,789.558,786.515,783.478,780.437,777.438,774.233,771.154,768.071,764.977,761.805,758.826,757.091,755.663,753.682,752.169,751.344,750.784,750.077,749.011,747.945,746.963,746.137,745.519,745.231,745.022,745.015,745.135,745.356,745.673,746.173,746.836,747.741,748.836,750.167,751.508,752.827,754.100,755.373,756.611,757.867,759.093,760.326,761.587,762.807,763.969,765.123,766.268,752.098,751.768,751.187,750.611,750.021,749.593,749.271,749.142,749.244,749.512,750.035,750.909,751.759,752.738,753.826,754.853,755.922,757.363,758.879,760.987,763.246,765.679,768.287,771.055,773.928,776.474,779.580,782.660,785.660,788.755,791.791,794.927,798.027,801.206,804.341,807.498,810.495,813.529,816.592,819.572,822.631,825.686,828.711,831.832,834.849,837.929,841.005,844.096,847.192,850.278,853.404,856.465,859.152,859.536,859.480,859.084,858.333,856.838,855.202,852.867,849.654,846.098,842.810,839.123,836.307,833.988,831.811,829.892,827.761,825.302,823.289,821.322,819.175,817.004,814.645,812.227,808.728,805.034,800.952,796.936,793.600,789.445,783.461,777.619,771.593,767.557,763.747,759.954,756.172,752.494,749.167,745.984,741.339,737.484,734.578,731.823,729.316,727.007,724.927,723.034,720.098,717.272,714.613,712.091,709.746,707.538,705.400,703.359,701.404,699.485,697.567,695.650,693.734,691.901,690.087,688.311,686.598,684.888,683.177,681.470,679.764,678.057,676.351,674.644,672.938,671.234,669.528,667.823,666.118,664.372,662.558,660.700,658.720,656.616,654.417,652.096,649.601,646.942,644.099,641.481,638.259,634.910,631.405,627.737,623.945,620.001,615.936,612.309,609.359,604.806,600.156,596.456,593.152,589.756,585.792,582.167,578.470,574.677,568.977,563.476,559.571,554.501,550.497,546.465,540.356,535.434,529.344,523.245,517.153,511.033,504.938,498.840,492.721,486.616,480.494,474.380,468.269,462.133,456.016,449.880,443.770,437.659,431.523,425.411,419.281,413.169,407.069,400.960,394.850,388.745,382.658,376.585,370.544,364.522,358.515,352.546,346.577,340.607,334.579,328.577,322.570,316.577,310.586,304.597,298.597,292.607,286.618,280.627,274.644,268.660,262.688,256.706,250.714,244.733,238.753,232.759,226.767,220.771,214.737,208.737,202.746,196.754,190.741,184.645,178.559,172.562,166.516,160.510,154.530,148.494,142.522,136.551,130.558,124.598,118.632,112.664,106.754,100.786,94.771,88.813,82.863,76.827,70.825,64.855,58.916,52.978,47.047,41.116,35.153,29.186,23.186,17.117,11.096,5.076,-0.753,-6.806,-12.907,-18.932,-24.938,-30.999,-37.043,-43.124,-49.127,-55.080,-61.083,-67.042,-73.106,-79.050,-85.012,-91.027,-96.990,-102.982,-108.942,-114.883,-120.862,-126.828,-132.817,-138.790,-144.819,-150.752,-156.686,-162.673,-168.600,-174.582,-180.524,-186.464,-192.523,-198.490,-204.505,-210.446,-216.375,-222.319,-228.251,-234.221,-240.156,-246.098,-252.057,-257.983,-263.950,-269.877,-275.817,-281.798,-287.741,-293.714,-299.647,-305.580,-311.540,-317.473,-323.429,-329.376,-335.309,-341.271,-347.205,-353.154,-359.087,-365.020,-370.980,-376.940,-382.935,-388.899,-394.872,-400.840,-406.805,-412.801,-418.737,-424.670,-430.683,-436.621,-442.606,-448.540,-454.508,-460.442,-466.375,-472.364,-478.296,-484.251,-490.155,-496.039,-501.950,-507.789,-513.677,-519.503,-525.327,-531.176,-536.995,-542.797,-548.553,-554.198,-559.896,-565.717,-571.401,-577.113,-582.677,-588.225,-593.806,-599.301,-604.720,-610.016,-615.290,-618.311,-620.069,-621.712,-623.651,-624.896,-626.054,-626.817,-627.475,-627.793,-627.907,-627.881,-627.817,-627.809,-627.816,-627.886,-627.937,-627.957,-627.972,-627.986,-628.000,-628.012,-628.028,-628.074,-628.154,-628.236,-628.319,-628.403,-628.485,-628.568,-628.652,-628.737,-628.822,-628.901,-628.927,-628.910,-628.877,-628.841,-628.806,-628.770,-628.733,-628.697,-628.661,-628.625,-628.589,-628.554,-628.520,-628.549,-628.578,-628.608,-628.640,-628.640,-628.640,-628.638,-628.684,-628.735,-628.776,-628.805,-628.816,-628.824,-628.804,-628.782,-628.757,-628.732,-628.721,-628.747,-628.803,-628.871,-628.965,-629.074,-629.188,-629.342,-629.513,-629.741,-630.079,-630.445,-630.882,-631.438,-632.191,-633.145,-633.951,-634.961,-636.150,-638.046,-640.188,-641.926,-643.946,-646.833,-649.778,-652.773,-655.716,-658.592,-661.435,-664.200,-666.826,-668.974,-670.392,-671.473,-672.131,-672.448,-672.510,-672.412,-671.961,-671.077,-669.885,-668.497,-666.563,-664.426,-662.726,-660.961,-658.310,-655.638,-652.939,-650.303,-647.602,-644.921,-642.275,-639.723,-638.223,-636.860,-635.732,-634.768,-633.967,-633.353,-632.597,-632.033,-631.792,-631.556,-631.321,-631.168,-631.051,-630.900,-630.726,-630.543,-630.426,-630.396,-630.405,-630.345,-630.280,-630.214,-630.146,-630.094,-630.069,-630.032,-629.995,-629.957,-629.918,-629.932,-629.963,-629.990,-629.983,-629.943,-629.902,-629.857,-629.743,-629.656,-629.559,-629.411,-629.135,-628.859,-628.490,-628.058,-627.611,-627.078,-626.488,-625.917,-625.335,-624.734,-624.146,-623.571,-622.910,-622.241,-621.574,-620.823,-620.085,-619.269,-618.378,-617.446,-616.402,-615.267,-614.128,-612.951,-611.724,-610.458,-609.117,-607.818,-606.418,-604.974,-603.479,-601.906,-600.363,-598.764,-597.087,-595.332,-593.459,-591.551,-589.533,-587.415,-585.172,-582.875,-580.473,-577.813,-575.124,-572.377,-569.507,-566.600,-563.554,-560.383,-557.113,-553.988,-550.358,-546.641,-542.754,-538.771,-534.643,-530.551,-526.259,-522.532,-518.026,-513.446,-508.726,-503.732,-498.645,-493.444,-488.241,-484.594,-479.162,-473.659,-468.192,-462.681,-458.815,-453.179,-447.490,-441.815,-436.156,-433.649,-432.248,-431.206,-430.562,-430.261,-430.363,-430.937,-431.948,-623.423,-624.759,-626.223,-627.754,-629.525,-631.636,-634.036,-636.516,-638.968,-641.575,-644.314,-648.604,-651.549,-654.834,-659.579,-664.163,-667.711,-672.027,-676.295,-680.466,-684.576,-688.742,-692.735,-696.678,-700.487,-704.201,-707.829,-711.279,-714.638,-717.996,-721.360,-724.714,-727.940,-731.124,-734.142,-737.025,-739.845,-742.569,-745.166,-747.746,-750.255,-752.652,-755.029,-757.458,-759.846,-762.156,-764.280,-766.254,-768.136,-769.817,-771.431,-772.964,-774.342,-774.774,-774.784,-774.735,-774.624,-774.346,-773.895,-773.181,-772.327,-771.226,-769.787,-768.179,-766.429,-764.403,-762.236,-759.928,-756.349,-753.816,-749.784,-745.657,-741.614,-737.574,-733.726,-731.271,-729.079,-727.055,-724.143,-722.391,-720.919,-719.646,-717.878,-716.949,-716.334,-716.039,-715.968,-716.048,-716.286,-716.669,-717.210,-717.982,-719.037,-720.333,-721.922,-723.752,-726.440,-729.311,-731.916,-735.201,-738.356,-741.627,-744.777,-747.939,-751.118,-754.298,-757.448,-760.571,-763.694,-765.817,-767.524,-768.710,-769.737,-770.761,-771.756,-772.265,-772.678,-773.236,-773.790,-774.294,-774.801,-775.377,-776.104,-776.879,-777.860,-779.047,-780.882,-783.000,-785.119,-787.461,-789.810,-792.177,-794.578,-796.925,-799.195,-801.228,-803.332,-805.281,-807.101,-808.191,-809.353,-810.660,-811.943,-813.064,-813.865,-814.307,-814.584,-814.968,-815.249,-815.426,-815.520,-815.562,-815.585,-815.575,-815.555,-815.511,-815.463,-815.414,-815.370,-815.335,-815.327,-815.332,-815.341,-815.350,-815.359,-815.368,-815.377,-815.386,-815.395,-815.403,-815.411,-815.418,-815.426,-815.433,-815.410,-815.385,-815.367,-815.350,-815.334,-815.318,-815.292,-815.231,-815.169,-815.175,-815.186,-815.201,-815.217,-815.234,-815.251,-815.249,-815.204,-815.147,-815.086,-815.023,-814.961,-814.899,-814.838,-814.796,-814.830,-814.862,-814.896,-814.891,-814.857,-814.747,-814.616,-814.402,-814.113,-813.695,-813.171,-812.536,-811.711,-810.719,-809.785,-808.668,-807.207,-805.210,-803.131,-800.936,-798.575,-796.009,-793.528,-790.931,-788.361,-785.765,-783.285,-781.017,-778.923,-777.393,-775.862,-774.946,-773.816,-773.094,-772.259,-771.501,-770.855,-770.328,-769.872,-769.605,-769.453,-769.417,-769.410,-769.442,-769.527,-769.612,-769.701,-769.881,-770.016,-770.071,-770.112,-770.150,-770.186,-769.333,-767.597,-766.054,-764.247,-762.358,-760.210,-757.963,278.086,280.633,282.594,285.875,288.416,291.248,295.012,299.301,305.033,308.469,312.378,316.456,322.505,325.500,259.775,262.591,265.164,266.234,267.027,267.273,267.024,266.266,265.157,263.773,261.969,259.975,257.924,255.906,253.977,251.281,245.814,240.342,236.437,232.538,228.487,223.392,217.310,211.252,205.246,201.228,197.185,193.181,189.830,187.063,184.943,183.610,182.569,181.892,181.563,181.341,181.576,182.155,183.196,184.588,186.207,188.203,190.480,194.022,197.714,200.676,203.421,207.743,212.001,216.124,220.285,224.487,227.587,230.516,233.278,-580.848,-582.783,-586.670,-590.594,-594.485,-598.399,-602.371,-606.354,-610.294,-614.197,-618.202,-622.253,-626.309,-630.340,-634.347,-638.261,-642.273,-646.140,-650.139,-654.245,-658.281,-662.272,-666.262,-670.270,-674.221,-678.240,-682.246,-686.264,-690.287,-694.141,-698.064,-701.919,-705.773,-709.627,-712.846,-715.766,-719.794,-723.017,-726.077,-728.808,-731.756,-734.791,-737.277,-740.244,-743.176,-746.007,-749.491,-754.738,-758.347,-761.245,-764.257,-767.305,-770.364,-773.382,-776.249,-778.876,-781.246,-783.367,-785.225,-787.610,-790.991,-793.025,-794.844,-797.381,-799.861,-801.468,-802.537,-804.659,-805.919,-807.003,-807.955,-808.697,-809.221,-809.541,-801.801,-804.155,-806.051,-808.051,-810.066,-812.017,-813.745,-815.168,-816.202,-816.813,-816.998,-816.824,-624.001,-622.549,-621.188,-619.479,-617.564,-615.599,-612.696,-608.681,-602.666,-598.118,-591.983,-585.881,-579.734,-573.618,-567.473,-561.321,-555.200,-549.131,-542.931,-536.826,-530.640,-524.579,-518.446,-512.241,-506.179,-500.068,-493.903,-487.696,-481.653,-475.572,-469.425,-463.284,-457.162,-451.018,-444.885,-438.765,-432.641,-426.498,-420.385,-414.271,-408.185,-402.120,-396.059,-390.018,-383.989,-377.976,-371.893,-365.752,-359.655,-353.611,-347.398,-341.254,-335.190,-329.186,-323.030,-316.971,-310.926,-304.723,-298.577,-292.449,-286.345,-280.259,-274.212,-268.024,-261.865,-255.802,-249.623,-243.534,-237.531,-231.517,-225.429,-219.290,-213.192,-207.128,-201.020,-194.894,-188.888,-182.834,-176.710,-170.679,-164.562,-158.531,-152.400,-146.248,-140.984,-134.962,-129.029,-123.049,-118.420,-114.404,-578.806,-576.898,-574.453,-570.932,-597.154,-595.765,-593.473,-591.952,-590.187,-588.261,-586.244,-584.268,-582.474,-580.965,-579.813,-579.075,-578.804,-578.985,-579.591,-567.785,-570.053,-574.545,-577.704,-809.586,-809.613,-809.668,-809.722,-809.778,-809.832,-809.887,-809.943,-809.973,-810.016,-810.073,-810.133,-810.192,-810.249,-810.308,-810.366,-810.384,-810.393,-810.403,-810.412,-810.421,-810.430,-810.439,-810.448,-810.458,-810.468,-810.478,-810.488,-810.498,-810.508,-810.519,-810.529,-810.539,-810.550,-810.560,-810.570,-810.543,-810.312,-809.983,-809.591,-809.024,-808.298,-807.315,-806.200,-804.976,-803.652,-802.206,-800.631,-799.282,-797.810,-795.440,-793.117,-790.732,-788.389,-786.054,-783.691,-781.420,-779.185,-777.103,-775.131,-773.340,-771.860,-771.032,-770.394,-769.629,-769.290,-769.146,-769.067,-768.982,-768.849,-768.556,-768.035,-767.248,-766.256,-765.090,-763.655,-761.894,-759.982,-757.150,-754.209,-751.135,-747.927,-744.850,-741.729,-738.487,-735.024,-731.501,-727.955,-724.383,-721.195,-719.251,-717.497,-715.088,-713.705,-712.579,-711.726,-711.141,-710.783,-710.549,-710.514,-710.659,-710.990,-711.479,-712.165,-713.038,-714.125,-715.310,-716.686,-718.236,-720.004,-721.833,-723.897,-726.141,-728.587,-731.189,-734.570,-738.621,-742.788,-746.890,-750.972,-754.869,-757.274,-759.472,-761.620,-763.524,-765.142,-766.621,-767.857,-768.871,-769.685,-770.252,-770.555,-770.608,-770.400,-769.947,-769.308,-768.481,-767.502,-766.259,-764.372,-762.460,-760.536,-758.515,-756.495,-754.414,-752.208,-749.886,-747.434,-744.979,-742.331,-739.655,-736.901,-734.092,-731.146,-728.100,-724.892,-721.648,-718.420,-715.099,-711.683,-708.223,-704.741,-701.177,-697.547,-693.809,-689.962,-685.982,-681.905,-677.809,-673.544,-669.302,-664.905,-660.389,-655.762,-651.056,-646.254,-641.402,-636.453,-632.328,-627.802,-622.583,-617.304,-611.983,-617.297,-619.904,-625.057,-630.139,-635.211,-640.205,-638.140,-635.165,-633.272,-631.577,-630.189,-629.194,209.726,212.748,215.688,218.468,221.986,227.194,230.523,232.773,237.212,241.704,246.370,250.156,254.895,259.657,264.480,269.262,274.275,279.349,284.657,288.219,293.707,299.087,304.558,309.866,315.266,320.762,326.030,330.462,335.033,339.485,343.585,346.622,349.482,352.211,356.173,360.050,363.840,366.220,368.337,370.147,372.714,375.280,377.966,379.921,382.289,385.505,388.803,391.227,393.817,397.701,400.814,403.763,406.927,410.206,413.659,418.900,424.138,429.495,434.899,440.294,445.705,451.105,456.586,461.948,465.427,468.860,472.076,475.147,478.022,480.777,483.262,485.439,487.335,488.890,490.161,491.144,491.796,492.172,492.344,492.556,492.598,492.631,492.664,492.698,492.731,492.757,492.598,492.128,491.369,490.217,488.698,486.864,484.720,482.319,479.011,474.085,469.046,464.799,461.747,457.301,452.912,448.670,444.461,440.162,435.860,431.663,427.331,423.001,418.740,414.409,410.041,405.615,401.189,396.661,392.128,387.612,383.029,378.520,374.691,371.936,368.006,365.031,361.394,358.308,356.052,352.777,349.334,345.815,342.103,339.355,336.332,333.206,289.550,287.915,286.623,285.721,285.299,285.175,285.409,285.957,286.685,287.548,288.798,290.083,291.365,292.653,294.023,295.515,297.123,298.732,300.415,301.768,303.664,305.450,307.139,308.673,309.645,310.783,311.760,312.713,313.659,314.611,315.627,316.614,317.630,318.645,319.654,320.666,321.659,322.694,323.765,324.821,325.961,327.222,328.540,330.038,331.481,332.956,334.410,335.829,337.239,338.594,339.913,341.232,342.470,343.774,345.101,346.413,347.693,349.001,350.286,351.638,353.077,354.461,355.899,357.323,358.744,360.121,361.504,362.874,364.215,365.520,366.836,368.161,369.475,370.763,372.048,373.359,374.691,376.029,377.381,378.770,380.172,381.640,383.201,384.811,386.467,388.161,389.926,391.618,393.360,395.054,396.912,398.831,400.813,402.863,405.077,407.472,409.903,412.387,414.704,417.340,420.085,421.873,423.806,425.531,427.465,429.824,432.235,434.567,436.638,420.092,420.246,419.900,419.141,417.820,416.006,-111.562,-108.537,-106.584,-103.577,-97.520,-91.785,-87.784,-83.449,-77.476,-71.557,-65.634,-59.769,-53.855,-47.887,-41.905,-35.914,-29.906,-23.887,-17.873,-11.844,-5.811,0.238,6.287,12.346,18.362,24.373,30.371,36.329,42.234,48.082,53.921,59.120,62.937,68.521,74.130,79.740,85.344,90.945,96.567,102.185,107.822,113.440,119.081,124.754,130.435,136.150,141.850,147.510,153.175,158.836,164.435,169.978,174.526,179.818,184.990,190.261,195.421,200.713,204.883,208.652,212.602,214.148,215.980,217.444,217.996,218.198,217.991,217.360,216.435,215.197,213.530,211.576,209.738,207.968,206.312,204.710,203.046,201.338,199.643,197.903,196.155,194.344,192.502,190.655,188.724,186.746,184.718,182.600,180.460,178.288,176.092,173.881,171.684,169.433,167.184,164.934,162.661,160.486,158.441,156.542,154.643,152.813,151.037,149.327,147.753,146.195,144.697,143.213,141.731,140.253,138.839,137.569,136.311,135.026,133.736,132.444,131.147,129.895,128.606,127.244,125.842,124.343,122.947,121.446,119.002,117.113,114.173,110.690,108.273,103.283,125.524,126.576,127.707,129.436,131.224,133.477,136.296,124.193,121.964,120.763,119.884,119.687,119.763,120.279,121.437,122.441,123.840,125.171,126.502,127.760,128.943,130.151,131.430,132.746,134.147,135.592,137.047,138.566,140.096,141.610,143.113,144.650,146.248,147.907,149.780,151.770,153.808,155.937,158.066,160.195,162.333,164.449,166.604,168.738,170.851,172.986,175.139,177.260,179.451,181.594,183.751,185.830,187.656,189.354,191.169,192.931,194.693,196.454,198.220,200.003,201.753,203.391,204.866,206.342,207.865,209.472,211.093,212.262,212.060,211.447,210.491,209.164,207.072,203.870,201.265,197.706,192.368,187.102,181.821,176.585,171.316,166.033,160.723,156.973,153.069,148.735,143.167,137.633,131.974,126.403,120.899,115.211,109.696,104.038,98.375,92.882,87.224,81.738,76.082,70.537,64.914,59.269,53.604,47.912,42.177,36.336,30.457,24.581,19.277,13.334,7.409,1.513,-4.420,-10.374,-16.276,-22.226,-28.309,-34.336,-40.204,-46.066,-51.909,-57.914,-63.765,-69.808,-75.703,-81.802,-87.176,-92.630,-98.625,-104.651,-110.832,-116.874,-121.444,-127.484,-132.830,-138.968,-145.083,-151.116,-157.108,-163.179,-169.195,-175.365,-181.412,-187.477,-193.578,-199.706,-205.758,-211.827,-217.868,-223.924,-229.943,-236.000,-242.080,-248.141,-254.214,-260.282,-266.360,-272.431,-278.506,-284.580,-290.663,-296.729,-302.796,-308.867,-314.936,-320.988,-327.065,-333.138,-339.211,-345.301,-351.371,-357.439,-363.516,-369.581,-375.646,-381.739,-387.794,-393.846,-399.907,-405.946,-412.000,-418.053,-424.102,-430.156,-436.200,-442.245,-448.291,-454.336,-460.370,-466.415,-472.495,-478.580,-484.638,-490.655,-496.733,-502.777,-508.862,-514.905,-520.966,-527.021,-533.042,-539.123,-545.187,-551.308,-557.348,-563.386,-569.390,-575.441,-581.475,-587.533,-593.646,-599.653,-605.666,-611.722,-615.733,-619.100,-620.963,-622.925,-624.402,-625.682,-628.131,-627.913,-627.469,-626.681,-616.790,-619.381,-620.756,-621.831,-622.585,-623.371,-628.244,-627.059,-625.825,-624.253,-622.407,-620.320,-616.395,-144.974,-142.157,-138.648,-135.186,-131.562,-127.904,-124.068,-121.112,-117.066,-113.035,-107.837,-103.193,-99.166,-96.569,-94.066,-91.420,-88.042,-82.860,-79.677,-76.680,-74.054,-71.396,-67.425,-115.435,-113.267,-111.760,-110.551,-109.707,-109.359,-109.158,-109.024,-109.052,-109.227,-109.342,-109.331,-109.264,-109.201,-109.137,-109.070,-109.003,-108.949,-108.991,-109.039,-109.197,-109.290,-109.330,-109.243,-109.194,-109.249,-109.315,-109.605,-110.436,-111.515,-113.027,-115.347,-117.975,-120.659,-96.929,-99.232,-101.227,-102.469,-103.343,-103.959,-104.181,-104.322,-104.542,-104.628,-104.607,-104.561,-104.516,-104.500,-104.541,-104.594,-104.625,-104.650,-104.633,-104.566,-104.504,-104.443,-104.382,-104.355,-104.339,-104.325,-104.227,-103.973,-103.320,-102.150,-100.477,-98.961,-96.814,-104.187,-104.589,-105.385,-106.599,-109.271,-111.373,-114.078,-117.726,-101.454,-103.726,-105.719,-106.859,-107.539,-108.354,-108.596,-109.168,-108.348,-107.247,-105.885,-103.799,-101.270,-98.511,-95.804,-92.744,-89.710,-85.708,-79.758,-73.713,-69.400,-63.592,-58.187,-52.859,-47.077,-41.428,-35.814,-30.064,-24.464,-18.769,-13.025,-7.357,-1.712,3.914,9.462,14.915,18.364,22.213,25.516,30.447,35.079,38.380,42.869,47.388,52.077,55.773,59.252,64.259,67.727,71.380,75.118,79.024,83.053,88.018,92.087,96.204,100.313,104.472,108.593,113.493,117.555,121.587,125.573,129.465,135.192,141.015,146.831,152.742,158.706,162.887,166.915,172.955,177.026,181.883,186.989,193.073,197.168,203.255,209.315,215.303,219.266,224.620,228.636,232.670,236.675,240.478,244.206,247.997,251.534,254.917,258.120,261.239,264.158,266.991,271.204,274.295,277.605,282.113,286.753,291.499,294.947,298.421,301.970,305.738,309.442,313.316,319.164,324.951,330.715,336.532,342.236,348.055,353.774,359.443,342.759,343.278,344.180,345.477,347.104,348.980,350.947,352.962,354.936,357.727,361.324,364.845,368.517,374.060,379.563,385.066,270.889,273.827,275.841,278.061,280.197,282.273,283.759,386.787,389.498,394.814,400.112,405.303,410.524,415.681,420.852,424.133,427.388,432.075,436.747,441.355,446.002,450.498,454.997,459.440,463.918,468.512,471.904,475.384,480.256,485.169,490.220,494.480,498.058,501.887,505.845,509.813,513.834,517.919,521.964,526.039,530.214,534.284,538.302,542.216,546.059,549.881,553.621,557.691,561.248,564.708,568.116,571.419,576.152,579.678,584.220,587.891,592.160,596.496,601.003,605.003,609.832,614.741,619.554,624.488,629.441,634.336,639.317,644.273,649.335,654.513,659.576,662.917,666.194,669.397,672.438,675.294,678.077,682.222,685.444,687.911,691.515,693.947,696.901,698.821,700.593,702.177,704.514,706.656,708.472,710.308,712.079,713.825,715.472,717.127,718.787,720.500,722.254,724.003,725.758,727.509,729.258,731.007,732.780,734.538,736.294,738.013,739.727,741.467,743.257,744.966,746.510,735.808,737.729,739.352,741.162,743.171,745.107,746.980,748.614,749.930,751.256,751.913,752.151,752.014,751.512,750.988,746.255,744.568,742.973,741.087,739.090,737.062,735.182,733.551,732.275,731.457,730.705,-762.881,-762.768,-762.628,-762.672,-762.711,-762.749,-762.813,-762.914,-763.015,-763.116,-763.217,-763.318,-763.422,-763.525,-763.630,-763.824,-764.158,-764.634,-765.267,-766.019,-766.939,-768.034,-769.235,-770.610,-772.149,-773.448,-774.786,-776.897,-779.070,-781.321,-783.274,-785.846,-788.326,-790.939,-793.440,-795.969,-798.546,-800.220,-801.618,-802.881,-804.501,-805.914,-807.024,-807.815,-808.423,-808.872,-809.242,-809.605,-809.971,-810.257,-810.438,-810.516,-810.501,-810.470,-810.424,-810.371,-810.234,-810.138,-810.047,-809.957,-809.928,-809.910,-809.893,-809.875,-809.858,-809.841,-809.740,-810.527,-811.060,-810.901,-810.352,-809.337,-807.881,-806.152,-804.316,-802.525,-800.648,-798.983,-797.701,-796.797,-796.138,-814.537,-813.392,-811.701,-809.874,-807.452,-805.381,-802.336,-433.671,-430.770,-424.861,-421.507,-418.459,-415.439,-412.516,-415.589,-418.641,-421.681,-424.628,-51.415,-49.929,-48.942,-48.495,-48.410,-48.780,-49.546,-50.715,-52.302,-54.559,-58.017,-60.903,-30.421,-33.422,-36.427,-39.474,-42.352,-44.913,-46.739,-53.277,-51.287,-49.005,-46.454,-44.269,-42.021,-39.410,-36.390,-53.702,-52.685,-51.071,-49.462,-47.581,-61.488,-63.545,-66.398,-70.669,-74.841,-78.913,-83.037,-87.180,-91.364,-95.518,-99.660,-103.859,-108.097,-112.361,-116.510,-120.690,-124.844,-129.092,-133.414,-137.661,-141.807,-146.133,-150.332,-154.513,-158.642,-162.905,-167.071,-171.412,-175.558,-179.699,-184.027,-188.376,-192.673,-196.905,-201.237,-205.568,-209.880,-213.994,-218.303,-222.451,-226.769,-230.912,-235.052,-239.360,-243.530,-247.661,-251.974,-256.095,-260.232,-264.381,-268.484,-272.574,-276.772,-281.001,-285.209,-289.413,-293.588,-297.765,-301.976,-306.145,-310.325,-314.548,-318.731,-322.898,-327.098,-331.274,-335.453,-339.654,-343.832,-348.037,-352.244,-356.451,-360.669,-364.981,-369.229,-373.473,-377.719,-381.980,-386.241,-390.526,-394.783,-399.077,-403.411,-407.708,-412.037,-416.404,-420.775,-425.101,-429.454,-433.787,-438.124,-442.495,-446.903,-451.236,-455.555,-459.875,-464.183,-468.492,-472.839,-477.146,-481.386,-485.625,-489.632,-493.605,-497.326,-499.879,-501.999,-503.923,-506.374,-508.023,-509.396,-510.459,-511.163,-511.513,-511.607,-511.510,-511.202,-510.752,-510.228,-509.467,-508.414,-507.155,-505.709,-504.494,-502.878,-501.235,-499.325,-497.024,-494.430,-492.366,-489.359,-486.334,-480.241,-474.230,-468.212,-462.190,-456.157,-450.135,-444.018,-438.000,-431.889,-425.898,-419.865,-413.871,-407.827,-403.524,-399.531,-393.658,-389.352,-385.139,-379.503,-373.829,-368.068,-362.252,-356.363,-351.035,-345.645,-339.622,-333.691,-327.632,-321.659,-316.023,-310.703,-306.511,-302.452,-297.231,-293.165,-289.170,-283.313,-277.410,-271.389,-265.570,-259.613,-253.837,-248.069,-242.102,-236.165,-230.289,-224.416,-218.628,-212.591,-206.664,-200.915,-194.746,-188.609,-182.576,-178.440,-172.240,-166.132,-160.050,-153.794,-147.776,-141.595,-135.407,-129.206,-123.134,-117.111,-111.048,-105.039,-99.041,-113.787,-111.198,-109.765,-108.001,-106.885,-106.016,-105.162,-203.085,-206.128,-210.138,-216.213,-222.338,-228.375,-234.484,-240.646,-246.788,-250.809,-254.983,-261.127,-266.935,-270.966,-274.975,-278.836,-282.816,-286.659,-290.503,-295.987,-301.318,-305.143,-308.664,-311.889,-316.712,-321.574,-326.416,-331.216,-334.207,-337.138,-340.530,-343.238,-347.108,-350.832,-354.483,-357.996,-361.390,-363.617,-365.530,-367.260,-368.799,-370.134,-371.261,-372.192,-372.915,-373.416,-373.696,-373.754,-373.606,-373.287,-372.773,-371.932,-371.011,-369.975,-368.752,-367.326,-366.196,-364.505,-362.473,-360.459,-358.442,-356.407,-354.386,-352.244,-349.948,-347.521,-344.948,-342.217,-339.468,-336.641,-333.743,-330.840,-328.008,-325.110,-322.293,-319.466,-317.808,-316.388,-314.213,-311.669,-308.964,-306.829,-304.437,-307.439,-309.061,-312.218,-315.274,-317.144,-201.559,-198.551,-192.468,-186.439,-180.397,-174.929,-177.928,-181.949,-187.995,-193.958,-199.918,16.816,19.811,22.656,25.004,26.621,28.088,29.394,30.286,30.733,30.864,30.889,30.901,30.915,30.970,31.043,31.113,31.193,31.311,31.446,31.565,31.650,31.738,31.820,31.902,31.986,32.069,32.156,32.243,32.331,32.418,32.506,32.578,32.698,32.846,33.022,33.141,33.226,33.279,33.279,33.205,33.134,33.061,32.948,32.817,32.636,32.389,32.051,31.616,31.113,30.596,30.092,29.606,29.127,28.701,28.310,27.950,27.623,27.373,27.174,26.999,26.892,26.779,26.667,26.555,26.440,26.328,26.216,26.101,25.987,25.876,25.767,25.655,25.541,25.428,25.379,25.372,25.481,25.703,26.025,26.433,26.931,27.547,28.312,29.051,29.732,30.309,30.846,31.271,31.556,31.797,31.945,32.095,32.139,32.085,31.997,31.842,31.731,31.617,31.549,31.528,31.503,31.483,31.462,31.269,30.750,29.720,28.301,26.681,25.013,23.190,31.270,32.068,33.239,34.516,35.972,37.687,39.586,41.846,49.089,46.173,43.440,41.316,39.941,38.915,38.254,37.652,36.977,36.774,25.680,28.289,30.851,33.007,34.681,35.846,36.384,36.666,36.751,36.659,36.617,36.584,36.608,36.670,36.727,36.785,36.844,36.904,36.966,37.030,37.092,37.157,37.218,37.256,37.241,37.142,37.023,36.758,36.492,36.273,36.104,36.043,35.978,35.911,35.896,35.905,35.915,35.932,35.998,36.065,36.132,36.199,36.264,36.331,36.398,36.463,36.529,36.595,36.662,36.728,36.793,36.858,36.921,37.027,37.165,37.413,37.659,37.897,38.143,38.391,38.641,38.890,39.138,39.382,39.611,39.779,39.939,39.946,39.944,39.943,39.927,39.830,39.735,39.639,39.475,39.305,39.135,38.965,38.796,38.627,38.460,38.294,38.175,38.061,37.948,37.864,37.783,37.718,37.666,37.614,37.562,37.510,37.458,37.407,37.355,37.311,37.255,37.120,36.925,36.672,36.270,35.801,34.955,33.889,32.477,32.374,32.614,33.412,34.392,37.205,29.625,27.141,25.029,22.334,19.759,17.673,15.547,29.949,28.751,27.919,27.437,27.295,27.493,28.044,-679.274,-682.054,-685.614,-688.525,-691.629,-694.657,-697.537,-701.336,-705.011,-708.537,-711.882,-714.905,-718.861,-721.775,-724.526,-728.748,-732.842,-736.899,-740.688,-744.396,-748.153,-751.741,-755.230,-758.626,-761.931,-765.138,-768.374,-771.596,-774.799,-778.003,-781.209,-784.432,-787.634,-790.771,-799.855,-802.856,-805.909,-812.072,-821.274,-824.130,-826.889,-828.698,-831.202,-833.647,-836.034,-838.302,-840.580,-842.854,-845.100,-846.289,-847.143,-847.698,-848.069,-848.111,-847.799,-847.119,-846.037,-844.687,-842.972,-840.664,-838.048,-835.371,-831.099,-826.922,-822.639,-819.542,-816.456,-811.777,-807.080,-802.249,-798.220,-793.220,-788.340,-784.336,-780.716,-776.984,-773.156,-769.248,-764.741,-760.479,-754.493,-748.500,-742.494,-736.474,-730.431,-724.370,-718.297,-712.221,-706.139,-700.053,-693.965,-687.875,-681.784,-675.696,-669.612,-663.530,-657.440,-651.356,-645.279,-639.196,-633.111,-627.021,-620.932,-614.844,-608.755,-602.666,-596.579,-590.494,-584.412,-578.329,-572.246,-566.161,-560.072,-553.981,-547.889,-541.800,-535.711,-529.624,-523.536,-517.449,-511.372,-505.189,-499.007,-492.859,-486.786,-480.605,-474.607,-468.453,-462.430,-641.297,-638.414,-634.645,-628.912,-624.881,-621.889,-617.802,-613.731,-607.700,-601.663,-595.631,-589.599,-583.636,-580.961,-578.401,-574.880,-571.245,-460.144,-457.150,-451.113,-445.119,-439.041,-432.982,-426.894,-420.747,-414.636,-408.637,-402.605,-396.572,-390.529,-384.313,-378.202,-372.175,-366.041,-360.030,-353.902,-347.663,-341.548,-335.345,-329.306,-323.166,-316.927,-310.882,-304.787,-298.689,-292.591,-286.490,-280.322,-274.219,-268.116,-261.991,-255.886,-249.782,-243.652,-237.556,-231.473,-225.393,-219.338,-213.252,-207.219,-201.198,-195.201,-189.223,-183.269,-177.328,-171.419,-165.553,-159.733,-153.937,-148.158,-142.413,-136.695,-131.010,-125.346,-119.676,-114.050,-108.403,-102.778,-97.132,-91.436,-85.741,-80.030,-74.297,-69.609,-65.164,-59.038,-52.963,-48.819,-42.766,-36.761,-30.554,-24.392,-18.241,-11.988,-5.838,0.295,6.502,12.621,18.653,24.834,31.006,37.111,43.173,49.179,55.398,61.417,67.511,73.705,79.761,85.921,91.384,97.405,102.956,108.807,114.700,120.634,126.332,130.192,134.039,139.146,144.603,149.999,155.393,160.766,165.996,169.987,173.786,177.252,182.986,188.736,194.521,198.466,204.332,171.137,172.644,173.230,173.459,173.271,172.704,171.811,170.561,169.031,167.244,165.253,163.063,160.752,157.752,153.710,147.695,206.186,203.172,199.133,193.221,188.600,184.648,180.830,175.144,169.456,165.808,162.166,156.896,151.571,146.286,140.937,135.525,129.987,126.155,122.389,116.465,112.587,108.312,102.469,96.373,90.375,84.183,77.982,71.756,65.602,59.563,55.502,49.275,42.992,36.843,30.750,24.734,18.626,12.551,6.364,0.052,-6.156,-12.182,-18.183,-24.338,-30.450,-36.649,-42.736,-48.812,-54.492,-60.221,-66.118,-70.166,-75.022,-80.913,-86.705,-92.458,-98.153,-103.884,-109.537,-115.196,-120.916,-126.600,-132.320,-138.095,-143.864,-149.724,-155.580,-161.483,-167.370,-173.352,-179.308,-185.404,-191.415,-195.740,-201.830,-207.933,-213.170,-219.274,-225.406,-231.514,-237.620,-243.748,-249.877,-256.002,-262.151,-268.270,-274.434,-280.550,-286.719,-292.905,-299.030,-305.130,-311.277,-317.365,-323.567,-329.744,-335.929,-342.026,-348.120,-354.218,-360.340,-366.461,-372.576,-378.681,-384.782,-390.892,-397.053,-403.163,-409.261,-415.382,-421.480,-427.644,-433.829,-440.002,-446.098,-452.230,-458.344,-464.507,-470.609,-476.724,-482.825,-488.925,-495.024,-501.154,-507.254,-513.353,-519.463,-525.565,-531.594,-537.748,-543.848,-549.948,-556.073,-562.173,-568.292,-574.393,-580.492,-586.592,-592.708,-598.808,-604.915,-611.037,-617.134,-623.231,-629.328,-635.426,-641.551,-647.650,-653.748,-659.856,-665.969,-672.058,-678.148,-684.237,-690.327,-696.414,-702.496,-708.650,-714.724,-720.816,-726.889,-732.954,-738.998,-745.079,-751.138,-757.144,-761.396,-767.366,-771.553,-775.445,-779.262,-783.006,-786.698,-790.292,-793.839,-798.768,-802.102,-805.362,-810.145,-814.837,-819.583,-824.232,-828.634,-831.732,-834.426,-836.997,-839.499,-841.879,-843.972,-845.867,-847.486,-848.843,-849.959,-850.702,-851.139,-851.274,-851.115,-850.658,-849.994,-849.113,-847.990,-846.648,-845.126,-842.844,-840.484,-838.185,-835.742,-833.904,-831.089,-828.306,-825.482,-822.433,-819.463,-816.516,-813.490,-810.390,-807.347,-804.170,-801.132,-798.064,-794.906,-791.753,-788.655,-785.466,-782.234,-779.013,-775.789,-772.565,-769.330,-766.109,-762.853,-759.553,-756.108,-752.589,-749.005,-745.469,-741.802,-739.155,-736.374,-732.180,-727.890,-723.405,-718.958,-714.367,-709.714,-706.458,-701.714,-698.159,-694.682,-691.720,-688.705,-685.626,-682.596,-679.784,-677.184,-696.449,-695.270,-694.687,-694.760,-695.231,-696.067,-689.112,-688.554,-688.550,-688.999,-689.825,-690.902,-692.867,-695.121,-99.923,-98.178,-97.156,-96.809,-96.882,-97.369,-98.256,-99.484,-101.048,-102.806,-104.738,-107.716,-113.637,-117.692,-121.671,-124.566,-128.361,-130.016,-132.994,-134.414,-135.467,-136.198,-136.876,-136.703,-136.115,-135.025,-133.325,-131.585,-129.519,-127.547,-125.491,-120.106,-116.385,-112.576,-108.709,-104.775,-101.136,-95.104,-89.117,-83.118,-78.571,-74.127,-70.072,-66.066,-61.131,-57.192,-53.281,-47.513,-41.832,-36.052,-30.297,-24.535,-20.625,-17.007,-13.025,-6.967,-2.912,1.134,5.096,8.988,14.761,21.097,23.975,26.956,32.857,36.710,42.327,45.904,49.401,54.628,59.740,64.608,68.275,71.415,74.409,78.374,51.954,53.444,54.015,54.213,54.053,53.509,52.636,51.465,49.997,48.219,46.206,43.279,-70.565,-73.615,-76.633,-79.555,-83.220,-86.918,-92.498,-98.072,-623.689,-626.634,-630.290,-633.992,-637.548,-640.925,-645.181,-648.067,-650.427,-652.591,-654.639,-656.690,-659.112,-660.935,-662.150,-663.030,-663.481,-663.500,-663.141,-662.387,-661.278,-659.830,-658.131,-656.225,-654.236,-651.719,-647.710,-581.187,-578.466,-573.036,-569.336,-566.406,-563.334,-560.521,-558.428,-556.649,-555.074,-553.915,-553.134,-552.756,-552.794,-553.290,-554.240,-555.505,-557.092,-558.825,-561.110,-563.400,-811.235,-812.890,-814.397,-816.364,-819.074,-822.022,-827.786,-833.633,-839.502,-843.252,-845.879,-848.331,-853.223,-856.007,-858.938,-862.033,-865.156,-868.185,-871.053,-873.676,-876.042,-878.063,-879.574,-880.592,-881.077,-881.050,-880.695,-879.921,-879.139,-878.399,-877.931,-877.758,-877.668,-877.643,-877.618,-877.663,-877.732,-877.802,-877.872,-878.030,-878.315,-878.748,-879.407,-879.988,-880.558,-881.131,-881.702,-882.022,-881.824,-881.344,-880.874,-880.369,-879.790,-878.987,-877.860,-876.496,-874.854,-872.905,-869.915,-866.886,-863.834,-861.105,-859.654,-858.847,-858.390,-858.150,-857.758,-857.252,-856.543,-855.585,-854.032,-851.696,-849.900,-847.940,-845.503,-841.765,-837.894,-834.098,-830.344,-826.578,-822.729,-820.318,-818.414,-816.448,-814.422,-812.445,-810.589,-808.927,-807.503,-806.448,-805.749,-805.440,-805.486,-805.928,-807.096,-814.642,-813.574,-812.766,-812.457,-812.685,-813.265,-814.221,-815.477,-817.030,-818.760,-820.982,-823.192,-825.284,-821.737,-819.741,-816.901,-812.763,-810.234,-807.992,-806.142,175.705,178.129,179.405,180.332,180.918,181.172,181.025,180.500,179.621,178.417,176.869,-485.513,-483.022,-481.141,-480.260,-479.771,-479.374,-478.939,-478.657,-478.773,-479.330,-479.600,-479.826,-479.719,-479.579,-479.435,-479.311,-479.252,-479.189,-479.301,-479.462,-479.626,-479.761,-479.698,-479.643,-479.588,-479.534,-479.479,-479.423,-479.369,-479.314,-479.257,-479.201,-479.147,-479.091,-479.036,-478.981,-479.149,-479.614,-480.368,-481.529,-482.461,-482.257,-481.678,-480.579,-479.190,-477.444,-475.491,-473.460,-471.490,-470.037,-468.643,-467.584,-467.050,-467.090,-467.614,-468.528,-470.978,-472.225,-473.118,-473.663,-474.002,-474.230,-474.157,-473.880,-473.426,-473.033,-472.895,-472.993,-473.117,-473.242,-473.365,-473.477,-473.541,-473.454,-473.308,-473.164,-473.060,-473.012,-472.985,-473.087,-473.246,-473.400,-473.465,-473.510,-473.422,-473.238,-473.056,-472.873,-472.687,-472.501,-472.319,-471.820,-471.015,-469.829,-467.337,-464.985,-463.158,-461.138,-455.263,-472.192,-473.171,-474.331,-476.177,-478.402,-481.042,-482.896,-813.748,-810.852,-806.893,-800.969,-796.982,-792.750,-788.711,-782.603,-776.508,-770.513,-766.508,-757.689,-755.782,-753.840,-752.537,-751.614,-751.072,-750.956,-751.204,-751.993,-753.175,-754.750,-756.765,-758.902,-761.048,-763.954,-766.953,-770.980,210.527,213.212,215.121,217.577,219.545,223.387,225.542,228.522,230.757,233.962,236.646,239.032,241.247,243.485,245.472,247.295,248.913,250.305,251.586,252.777,253.257,253.332,252.981,252.232,251.150,249.780,248.157,246.329,240.898,237.552,235.253,233.238,230.898,227.629,226.360,224.979,223.807,222.929,221.585,220.340,219.590,219.526,219.565,219.800,220.197,220.771,221.643,223.073,224.951,227.226,229.733,232.464,235.438,238.552,241.859,246.716,249.735,251.289,252.064,252.965,253.504,253.487,253.030,252.116,250.708,248.757,246.446,243.894,241.122,238.105,235.075,231.017,225.016,221.031,215.751,212.945,210.330,207.583,204.910,202.110,199.946,198.485,197.618,197.045,196.614,196.356,196.168,196.820,197.753,199.162,200.599,202.282,204.349,208.067,211.065,214.070,215.839,218.857,224.890,228.913,235.004,241.044,247.147,253.185,259.307,265.426,269.454,272.970,276.040,278.908,281.718,284.442,286.941,289.976,294.529,297.733,301.069,304.565,307.425,311.018,315.472,319.468,323.600,327.744,333.913,339.945,345.954,351.975,358.062,364.154,370.370,376.588,382.641,388.813,394.858,399.439,405.428,411.517,417.654,423.728,429.779,436.003,442.085,448.154,454.406,460.693,465.657,469.892,473.928,479.917,485.831,491.912,497.945,503.916,509.885,515.753,521.634,527.518,533.367,539.173,544.816,550.445,556.118,561.674,567.178,572.615,578.036,581.625,586.925,592.252,597.588,601.300,605.837,611.485,617.019,622.627,627.037,630.553,632.968,635.027,636.718,640.071,642.010,643.009,643.977,644.716,644.819,644.361,643.511,642.873,642.420,642.182,642.255,642.521,643.083,643.733,644.387,645.307,646.259,647.775,649.009,650.821,651.763,651.888,651.502,650.655,649.272,647.155,644.719,642.501,639.442,634.836,631.796,629.906,628.275,625.100,623.328,621.888,620.616,618.728,617.697,19.885,22.840,25.842,27.879,29.836,32.179,35.695,40.919,46.120,49.480,51.640,55.967,59.119,61.802,63.961,66.853,72.855,78.984,85.105,91.180,97.242,103.228,107.909,113.732,118.247,124.268,130.291,136.346,139.340,143.238,147.120,149.842,151.886,154.162,156.692,158.349,159.624,160.501,160.999,161.152,161.092,160.998,161.033,161.268,161.502,161.717,161.933,161.765,161.052,160.060,158.712,156.735,154.254,151.676,148.861,144.897,140.904,66.892,66.387,66.579,67.155,68.194,69.543,71.503,73.309,75.917,79.755,82.811,85.871,91.936,97.945,104.005,110.038,116.091,119.280,123.222,126.369,128.402,130.323,132.057,133.403,134.417,134.990,135.193,135.017,134.453,133.553,132.246,130.089,127.728,125.085,122.269 + 83.873,83.896,83.911,83.916,83.918,83.918,83.927,83.995,84.039,84.079,84.176,84.286,84.297,84.271,84.244,84.220,84.192,84.123,84.078,84.028,83.883,83.734,83.494,83.150,82.566,81.968,81.267,80.447,79.603,78.810,78.093,77.436,76.809,76.251,75.905,75.332,74.938,74.657,74.390,74.117,73.663,73.147,72.903,72.643,72.437,72.173,71.880,71.443,71.021,70.529,70.036,69.612,69.201,68.727,68.296,67.872,67.497,67.250,67.032,66.857,66.652,66.474,66.285,66.140,66.125,66.186,66.239,66.319,66.475,66.685,66.843,67.003,67.161,67.303,67.442,67.629,67.796,67.972,68.137,68.264,68.414,68.708,68.982,69.256,69.642,70.128,70.595,71.061,71.523,71.992,72.462,72.936,73.407,73.886,74.356,74.823,75.208,75.572,75.939,76.244,76.434,76.637,76.739,76.801,76.850,76.894,76.900,76.910,76.921,76.931,76.942,76.953,76.964,76.974,76.985,77.025,77.156,77.280,77.402,77.536,77.727,77.920,78.106,78.266,78.476,78.723,78.964,79.206,79.520,79.883,80.232,80.583,81.060,81.558,82.067,82.577,83.087,83.595,84.099,84.601,85.096,85.484,85.752,86.026,86.164,86.206,86.162,86.076,85.950,85.707,85.437,85.202,85.051,84.927,84.849,84.868,84.959,85.221,85.462,85.699,85.935,86.105,86.257,86.382,86.467,86.455,86.376,86.248,86.097,85.926,85.648,85.358,85.062,84.782,84.594,84.318,84.041,83.875,83.792,83.692,83.591,83.491,83.390,83.290,83.123,82.913,82.710,82.506,82.303,82.100,81.893,81.689,81.489,81.351,81.309,81.262,81.133,80.896,80.782,80.726,80.704,80.737,80.869,80.944,80.987,80.981,81.014,81.028,80.899,80.669,80.424,80.111,79.753,79.437,79.201,79.004,78.876,78.786,78.786,78.847,78.957,79.084,79.287,79.561,79.904,80.200,80.406,80.656,80.938,81.075,81.267,81.473,81.675,81.884,82.087,82.294,82.501,82.711,82.915,83.120,83.300,83.393,83.490,83.592,83.695,83.796,83.896,84.039,84.332,84.610,84.888,85.181,85.464,85.645,85.858,86.021,86.249,86.394,86.454,86.467,86.423,86.325,86.145,85.987,85.825,85.584,85.428,85.266,85.030,84.851,84.860,84.927,85.043,85.283,85.562,85.834,86.053,86.155,86.202,86.197,86.093,85.863,85.493,85.094,84.585,84.066,83.561,83.056,82.525,82.013,81.484,80.968,80.525,80.165,79.812,79.454,79.134,78.897,78.647,78.399,78.186,77.998,77.806,77.620,77.443,77.322,77.197,77.072,76.978,76.976,76.967,76.956,76.945,76.933,76.923,76.913,76.902,76.891,76.871,76.799,76.727,76.621,76.405,76.197,75.900,75.519,75.148,74.755,74.290,73.821,73.357,72.878,72.414,71.931,71.453,70.978,70.500,70.030,69.553,69.168,68.921,68.679,68.406,68.180,67.994,67.815,67.702,67.585,67.450,67.293,67.131,66.934,66.753,66.582,66.436,66.290,66.220,66.170,66.114,66.202,66.405,66.608,66.799,67.006,67.222,67.375,67.574,67.887,68.263,68.586,68.848,69.154,69.525,69.816,70.310,70.834,71.340,71.673,71.962,72.246,72.503,72.780,73.034,73.383,73.952,74.374,74.652,74.957,75.277,75.658,76.080,76.566,77.114,77.800,78.504,79.239,80.060,80.909,81.709,82.330,82.932,83.295,83.504,83.746,83.887,84.028,84.077,84.101,84.155,84.199,84.213,84.264,84.267,84.209,84.117,84.072,84.012,83.936,83.916,83.919,83.918,83.913,83.903,83.855,83.821,83.793,83.772,83.751,83.737,83.762,83.858,83.967,84.015,83.997,83.996,83.995,83.998,83.998,83.997,83.997,83.997,83.999,83.998,83.999,83.987,83.982,83.972,83.972,83.998,83.999,83.998,83.997,83.997,83.986,83.989,84.004,83.969,83.999,83.978,83.966,83.944,83.932,83.923,83.920,83.786,83.745,83.703,83.685,83.699,83.721,83.737,83.765,83.758,83.743,83.681,83.599,83.515,83.387,83.264,83.221,83.114,82.841,82.581,82.338,82.102,81.797,81.338,80.893,80.446,79.982,79.527,79.064,78.592,78.104,77.599,77.152,76.704,76.243,75.744,75.238,74.740,74.241,73.782,73.287,72.657,71.901,71.111,70.308,69.529,68.584,67.427,66.341,65.863,65.763,65.782,65.782,65.793,65.853,66.052,66.219,66.259,66.245,66.217,66.161,66.082,66.002,65.897,65.694,65.423,64.999,64.483,63.962,63.424,62.893,62.360,61.844,61.378,60.964,60.639,60.428,60.302,60.159,60.033,59.949,59.886,59.841,59.799,59.763,59.729,59.733,59.768,59.834,59.925,60.006,60.041,60.064,60.063,60.065,60.191,60.447,60.843,61.335,61.918,62.524,63.168,63.816,64.513,65.515,66.540,67.559,68.612,69.799,70.969,72.154,73.440,74.589,75.640,76.530,77.169,77.277,77.252,77.254,77.254,77.251,77.244,77.237,77.231,77.225,77.219,77.213,77.207,77.202,77.205,77.223,77.210,77.224,77.218,77.214,77.209,77.192,77.174,77.098,77.037,77.030,77.408,78.255,78.945,79.637,80.691,81.762,82.854,83.682,83.971,84.030,84.029,84.024,84.097,84.265,84.274,84.226,84.198,84.177,84.131,84.182,84.205,84.227,84.274,84.265,84.150,84.029,84.048,84.052,84.012,83.946,83.443,82.516,81.445,80.280,79.041,78.254,77.620,77.085,76.922,77.003,77.089,77.150,77.193,77.211,77.217,77.221,77.200,77.204,77.210,77.199,77.208,77.214,77.220,77.225,77.231,77.238,77.244,77.251,77.255,77.254,77.254,77.255,77.137,76.491,75.584,74.513,73.379,72.099,70.910,69.769,68.619,67.512,66.533,65.539,64.551,63.818,63.205,62.560,61.945,61.375,60.859,60.454,60.206,60.042,60.064,60.060,60.017,59.967,59.948,59.964,59.972,59.948,59.974,60.033,60.088,60.151,60.227,60.327,60.427,60.526,60.817,61.183,61.625,62.114,62.633,63.175,63.698,64.220,64.762,65.224,65.620,65.870,66.012,66.077,66.113,66.110,66.071,66.015,65.927,65.806,65.767,65.782,65.782,65.782,65.872,66.315,67.384,68.620,69.575,70.340,71.139,71.938,72.694,73.300,73.835,74.272,74.770,75.263,75.818,76.370,76.821,77.273,77.737,78.149,78.639,79.124,79.597,80.070,80.534,80.978,81.436,81.884,82.177,82.410,82.654,82.920,83.174,83.248,83.300,83.444,83.559,83.636,83.715,83.755,83.766,83.752,83.725,83.718,83.686,83.714,83.786,83.826,83.741,83.754,83.798,83.865,83.934,83.977,83.813,83.778,83.741,83.718,83.725,83.760,83.840,83.933,83.963,83.969,83.981,84.059,84.054,83.986,83.973,84.050,84.160,84.298,84.462,84.633,84.793,84.861,85.022,85.336,85.665,86.014,86.521,87.080,87.754,88.423,89.122,89.898,90.671,91.446,92.226,93.078,93.950,94.820,95.691,96.567,97.447,98.325,99.152,99.899,100.638,101.314,101.988,102.636,103.281,103.906,104.498,105.027,105.499,105.963,106.455,106.997,107.536,108.076,108.615,109.154,109.694,110.234,110.626,110.960,111.298,111.551,111.734,111.925,112.085,112.152,112.225,112.298,112.349,112.349,112.354,112.358,112.356,112.349,112.342,112.335,112.340,112.347,112.354,112.360,112.363,112.365,112.368,112.373,112.378,112.386,112.403,112.439,112.470,112.467,112.469,112.469,112.430,112.376,112.378,112.381,112.383,112.384,112.384,112.384,112.382,112.381,112.381,112.380,112.377,112.366,112.356,112.354,112.353,112.351,112.350,112.348,112.347,112.345,112.344,112.342,112.341,112.340,112.338,112.337,112.335,112.334,112.333,112.331,112.333,112.359,112.422,112.490,112.665,112.888,113.183,113.562,113.935,114.430,114.965,115.499,116.102,116.751,117.183,117.611,118.247,118.786,119.406,120.031,120.654,121.278,121.899,122.516,123.134,123.754,124.371,124.984,125.598,126.214,126.825,127.396,127.964,128.535,129.074,129.502,129.937,130.372,130.807,131.243,131.679,132.094,132.412,132.731,133.050,133.370,133.544,133.606,133.680,133.754,133.786,133.779,133.775,133.771,133.772,133.772,133.779,133.792,133.828,133.879,133.922,133.982,134.030,134.113,134.199,134.243,134.272,134.276,134.278,134.280,134.287,134.305,134.368,134.463,134.702,134.856,135.097,135.442,135.823,136.410,136.791,137.306,137.597,137.718,137.748,137.899,138.031,138.070,138.312,138.817,139.373,139.971,140.458,140.882,141.567,142.333,143.101,143.823,144.550,145.292,145.916,146.550,147.175,147.783,148.323,148.860,149.337,149.760,150.196,150.631,151.043,151.527,152.009,152.464,152.910,153.356,153.826,154.304,154.804,155.301,155.728,156.361,157.070,157.615,158.077,158.443,158.834,159.326,159.791,160.153,160.529,160.828,161.082,161.226,161.355,161.512,161.624,161.762,161.916,161.975,162.041,162.119,162.189,162.292,162.330,162.346,162.344,162.330,162.303,162.264,162.213,162.147,162.084,162.019,161.918,161.809,161.638,161.418,161.056,160.687,160.321,159.957,159.560,159.034,158.552,158.125,157.651,157.317,156.994,156.707,156.430,156.050,155.738,155.442,155.130,154.799,154.355,153.890,153.287,152.678,152.052,151.423,150.799,150.249,149.704,149.176,148.663,148.207,147.816,147.504,147.368,147.276,147.279,147.258,147.232,147.208,147.183,147.158,147.130,147.102,147.075,147.047,147.019,146.992,146.950,146.826,146.709,146.586,146.466,146.357,146.252,146.133,146.209,146.302,146.337,146.098,145.842,145.587,145.331,145.075,144.818,144.555,144.280,144.006,143.732,143.459,143.185,142.910,142.605,142.298,141.998,141.731,141.432,141.243,141.074,140.882,140.719,140.600,140.437,140.227,140.172,140.190,140.187,140.183,140.191,140.084,139.771,139.470,139.186,138.999,138.813,138.625,138.438,138.253,138.110,137.974,137.846,137.768,137.699,137.621,137.542,137.464,137.410,137.419,137.389,137.322,137.259,137.203,137.133,137.067,136.992,136.922,136.849,136.773,136.653,136.558,136.449,136.327,136.203,136.068,135.856,135.635,135.458,135.282,135.084,134.908,134.734,134.563,134.298,134.021,133.697,133.365,132.980,132.593,132.208,131.823,131.434,131.018,130.604,130.277,129.980,129.714,129.495,129.322,129.228,129.152,129.170,129.213,129.362,129.564,129.762,129.968,130.169,130.297,130.359,130.394,130.433,130.461,130.469,130.477,130.484,130.512,130.541,130.560,130.582,130.601,130.619,130.611,130.566,130.457,130.278,130.023,129.764,129.528,129.108,128.832,128.561,128.305,128.069,127.840,127.623,127.314,127.132,126.961,126.800,126.582,126.385,126.223,126.094,125.941,125.756,125.559,125.402,125.280,125.175,125.077,124.979,124.942,124.923,124.904,124.886,124.879,124.876,124.873,124.871,124.869,124.868,124.868,124.868,124.868,124.868,124.868,124.869,124.874,124.879,124.886,124.894,124.899,124.902,124.899,124.875,124.833,124.791,124.712,124.606,124.469,124.328,124.198,123.996,123.836,123.571,123.279,122.935,122.568,122.197,121.825,121.467,121.101,120.735,120.366,119.993,119.609,119.332,118.973,118.608,118.278,118.064,117.747,117.428,117.111,116.797,116.468,116.101,115.727,115.350,114.967,114.521,114.061,113.603,113.125,112.626,112.112,111.537,110.949,110.299,109.626,108.917,108.199,107.485,106.812,106.141,105.469,104.797,104.123,103.451,102.782,102.125,101.457,100.784,100.061,99.180,98.242,97.624,96.949,96.259,95.488,94.474,93.518,92.766,91.971,91.121,90.386,89.693,89.059,88.430,87.934,87.557,87.222,86.759,85.831,84.772,83.609,82.362,81.355,79.976,78.573,77.190,75.771,74.363,72.950,71.518,70.120,68.695,67.289,65.874,64.514,63.292,62.771,62.570,62.396,62.354,62.451,63.164,63.985,64.880,65.779,66.411,66.841,67.270,67.968,68.767,69.391,70.215,70.832,71.430,72.028,72.595,73.168,73.729,74.258,74.816,75.342,75.869,76.407,77.210,77.774,78.580,79.403,80.236,81.017,81.808,82.605,83.380,84.165,84.963,85.764,86.543,87.326,88.115,88.910,89.711,90.517,91.295,92.079,92.866,93.657,94.458,95.257,96.060,96.774,97.391,98.020,98.659,99.300,99.946,100.567,101.197,101.827,102.460,103.106,103.716,104.183,104.637,105.099,105.566,106.032,106.529,107.005,107.441,107.794,108.079,108.318,108.552,108.789,109.026,109.272,109.518,109.767,110.013,110.239,110.294,110.339,110.385,110.431,110.478,110.525,110.571,110.617,110.665,110.711,110.757,110.804,110.851,110.897,110.943,110.989,111.035,111.082,111.129,111.175,111.222,111.268,111.316,111.362,111.408,111.456,111.502,111.548,111.595,111.640,111.687,111.733,111.779,111.826,111.872,111.919,111.965,112.011,112.057,112.104,112.150,112.197,112.244,112.292,112.337,112.384,112.430,112.476,112.518,112.554,112.609,112.626,112.596,112.547,112.481,112.423,112.387,112.395,112.417,112.410,112.391,112.385,112.378,112.373,112.369,112.365,112.363,112.361,112.355,112.348,112.341,112.335,112.341,112.348,112.355,112.359,112.354,112.350,112.346,112.311,112.233,112.159,112.087,111.950,111.756,111.568,111.350,111.007,110.667,110.304,109.779,109.239,108.689,108.141,107.608,107.072,106.525,106.016,105.549,105.073,104.528,103.956,103.320,102.677,102.021,101.343,100.656,99.903,99.132,98.608,97.750,96.883,96.021,95.167,94.319,93.469,92.616,91.821,91.054,90.296,89.526,88.781,88.110,87.439,86.789,86.268,85.842,85.499,85.169,84.899,84.796,84.595,84.358,84.219,84.083,83.895,83.922,84.003,84.051,84.065,84.058,84.002,83.991,83.970,83.749,83.704,83.701,83.701,83.713,83.732,83.708,83.702,83.716,83.721,83.693,83.684,83.700,83.703,83.710,112.458,77.072,76.840,76.720,76.664,76.619,76.597,76.623,76.699,76.739,76.746,76.750,76.722,76.722,76.722,76.721,76.721,76.722,76.724,76.746,76.860,76.829,76.776,76.746,76.700,76.653,76.607,76.562,76.530,76.512,76.497,76.484,76.474,76.466,76.463,76.457,76.763,76.732,76.735,76.569,76.409,76.406,76.398,76.391,76.308,75.913,75.253,74.467,73.758,73.211,72.996,72.908,72.916,72.973,73.020,72.900,72.689,76.187,76.391,76.525,76.605,76.658,67.459,67.310,67.287,67.321,67.672,68.201,68.677,69.181,69.828,71.035,71.890,73.160,74.435,75.333,75.933,76.426,76.794,77.029,77.380,77.585,77.747,78.247,78.366,78.309,78.029,77.398,77.117,76.782,76.303,75.764,75.309,74.832,74.570,74.527,74.466,74.853,75.498,76.040,76.745,77.539,78.414,79.181,80.430,81.515,82.465,83.130,83.594,83.915,84.125,84.285,84.402,84.459,84.529,84.550,84.573,84.574,84.564,84.541,84.506,84.457,84.413,84.290,84.188,84.027,83.642,83.484,83.338,83.271,83.201,83.192,83.194,83.194,83.192,83.195,83.198,83.233,83.303,83.501,84.251,85.284,85.872,86.344,86.655,87.031,87.553,88.457,89.053,89.479,90.028,90.493,90.845,91.507,92.047,92.584,93.168,93.966,94.867,95.825,96.287,96.627,97.534,98.073,98.541,99.031,99.587,100.062,100.531,100.790,101.082,101.818,102.372,102.699,103.036,103.515,103.814,104.125,104.419,104.957,105.489,106.028,106.224,106.496,106.800,106.789,106.851,78.533,78.803,79.417,79.849,80.537,80.951,81.306,81.747,82.087,82.467,82.809,83.193,83.439,83.674,83.817,83.950,84.084,84.188,84.256,84.307,84.271,83.976,83.535,82.569,81.347,80.153,79.389,78.708,78.456,78.255,78.073,77.780,77.516,77.141,76.819,76.477,76.143,75.817,75.445,75.035,74.565,74.166,73.806,73.351,73.073,73.046,73.059,73.153,73.280,73.454,73.634,150.205,149.964,149.775,149.650,149.486,149.272,148.964,148.431,147.890,147.315,146.729,146.103,145.480,144.781,144.020,143.281,142.534,142.033,141.287,140.629,139.991,139.398,138.831,138.313,137.926,137.915,137.780,137.671,137.678,137.614,137.510,137.161,136.619,136.075,135.711,135.193,134.876,134.689,134.549,134.377,134.320,134.265,134.235,134.218,134.215,134.213,134.210,134.201,134.174,134.101,134.031,133.954,133.887,133.825,133.770,133.732,133.719,133.709,133.709,133.708,133.710,133.714,133.718,133.714,133.639,133.567,133.493,133.405,133.092,132.773,132.456,132.134,131.762,131.327,130.890,130.450,130.010,129.572,129.140,128.649,128.076,127.500,126.931,126.332,125.713,125.093,124.474,123.854,123.229,122.606,121.988,121.361,120.751,120.241,119.596,118.954,118.322,117.674,117.013,116.499,116.060,115.624,115.250,114.817,114.283,113.798,113.435,113.066,112.786,112.569,112.408,112.344,112.284,112.266,112.268,112.270,112.272,112.273,112.274,112.276,112.277,112.279,112.280,112.281,112.283,112.284,112.286,112.287,112.289,112.290,112.292,112.293,112.303,112.314,112.317,112.318,112.318,112.319,112.320,112.320,112.321,112.320,112.319,112.317,112.314,112.320,112.374,112.394,112.395,112.385,112.380,112.400,112.405,112.405,112.404,162.118,162.160,162.295,162.692,163.621,164.447,164.804,165.300,165.967,166.534,167.038,167.588,168.405,169.245,169.835,170.613,171.670,172.953,174.038,174.911,175.870,177.074,178.083,178.827,178.976,178.970,179.187,179.250,179.262,179.138,178.971,178.953,178.970,178.971,178.970,178.971,178.970,178.968,178.959,178.906,178.745,178.485,178.131,177.724,177.003,176.220,175.283,174.270,173.337,172.542,171.764,171.309,171.061,170.724,170.086,169.648,169.151,168.513,167.827,167.091,166.268,165.576,164.844,164.159,163.589,163.019,162.531,162.081,161.371,160.312,159.801,159.057,158.231,157.418,156.764,156.285,155.815,155.251,154.670,154.017,153.055,152.311,151.732,151.235,150.564,149.890,149.207,148.568,147.922,147.478,147.249,147.233,147.238,147.247,147.252,147.277,147.361,147.470,147.615,148.001,148.399,148.895,149.394,149.932,150.470,151.038,151.662,152.271,152.880,153.273,153.670,154.247,154.779,155.151,155.446,155.730,156.008,156.409,156.676,156.950,157.248,157.719,158.175,158.593,159.058,159.549,159.830,160.194,160.562,160.930,161.295,161.562,161.688,161.811,161.927,162.051,162.133,162.198,162.243,162.275,162.298,162.311,162.313,162.298,162.224,162.121,162.017,161.937,161.873,161.762,161.616,161.489,161.381,161.201,160.971,160.766,160.537,160.296,160.026,159.589,159.097,158.551,158.131,157.697,157.189,156.540,155.940,155.322,154.768,154.450,153.965,153.480,153.033,152.591,152.146,151.681,151.173,150.741,150.322,149.899,149.475,112.453,112.453,112.443,112.385,112.333,112.254,112.099,111.689,111.186,110.522,109.714,109.138,108.565,107.967,107.340,106.708,106.109,105.612,105.157,104.759,104.392,104.362,104.325,104.270,104.494,104.730,104.658,104.549,104.485,104.428,104.419,104.450,104.494,104.624,104.797,105.042,105.314,105.632,106.063,106.498,106.967,107.325,107.717,107.974,108.292,108.604,108.905,109.336,109.957,110.540,111.085,111.630,112.147,112.665,113.180,113.701,114.227,114.767,115.307,115.944,116.609,117.404,118.141,118.753,119.205,119.959,120.456,120.957,121.677,122.390,123.111,123.742,124.083,124.660,125.440,125.973,126.502,127.267,127.954,128.384,128.825,129.305,129.746,130.206,130.708,131.240,131.921,132.590,133.162,133.723,134.278,134.823,135.316,135.810,136.308,136.820,137.480,137.982,138.704,139.301,140.030,140.766,141.492,142.225,142.956,143.456,144.141,144.641,145.275,145.741,146.236,146.654,147.075,147.493,147.911,148.340,148.772,149.416,149.931,150.475,151.126,151.740,152.338,152.934,153.473,153.998,154.498,154.870,155.230,155.592,155.954,156.314,156.626,156.889,157.150,157.411,157.607,157.764,157.901,158.035,158.173,158.311,158.435,158.559,158.669,158.774,158.957,159.159,159.362,159.564,159.766,159.968,160.173,160.379,160.596,160.864,161.130,161.237,161.371,161.636,161.905,162.164,162.395,162.625,162.854,163.029,163.189,163.348,163.355,163.312,163.334,163.349,163.385,163.419,163.437,163.453,163.469,163.458,163.361,163.154,162.943,162.668,162.374,162.006,161.442,160.852,160.346,159.591,158.821,158.059,157.305,156.547,155.792,155.049,154.316,153.587,152.851,152.202,151.582,151.061,150.732,150.667,150.680,150.763,150.876,151.060,150.630,150.477,150.391,159.433,159.532,159.715,159.904,160.032,160.168,160.314,160.520,160.678,160.932,161.208,161.511,161.705,161.859,162.014,162.159,162.316,162.432,137.410,137.761,138.424,138.876,139.334,139.694,140.186,140.892,141.379,142.154,142.890,143.268,143.599,144.310,144.760,83.669,83.662,83.674,83.907,83.927,83.877,83.858,83.861,83.902,83.967,84.081,84.125,84.163,84.183,84.217,84.266,84.330,84.400,84.483,84.542,84.658,84.813,85.000,85.227,85.502,85.776,86.011,86.376,86.651,87.076,87.547,88.012,88.496,88.949,89.321,89.590,89.972,90.203,90.495,90.735,90.931,91.054,91.140,91.188,91.187,91.175,91.132,91.057,90.925,90.698,90.439,90.122,89.804,89.475,89.128,88.792,88.450,88.112,87.728,87.328,86.925,86.534,86.145,85.739,85.358,84.966,84.584,84.201,83.819,83.439,83.107,82.804,82.494,82.183,81.879,81.601,81.349,81.094,80.839,80.581,80.326,80.070,79.812,79.554,79.298,79.042,78.791,78.594,78.421,78.241,78.059,77.879,77.699,77.544,77.439,77.329,77.217,77.106,76.995,76.883,76.771,76.660,76.548,76.437,76.326,76.214,76.102,75.991,75.879,75.768,75.654,75.543,75.431,75.319,75.211,75.119,75.032,74.943,74.854,74.766,74.678,74.590,74.504,74.427,74.357,74.310,74.269,74.227,74.185,74.128,74.067,73.973,73.795,73.595,73.400,73.206,73.012,72.808,72.532,72.240,72.019,71.821,71.522,71.325,71.124,70.922,70.735,70.572,70.432,70.317,70.230,70.164,70.115,70.083,70.064,70.069,70.101,70.124,70.145,70.167,70.189,70.210,70.213,70.209,70.201,70.181,70.165,70.148,70.121,70.098,70.083,70.068,70.060,70.059,70.064,70.072,70.080,70.084,70.085,70.087,70.088,70.090,70.053,70.007,70.012,70.014,70.014,70.014,70.014,70.006,69.918,69.896,69.917,69.926,69.933,69.941,69.949,69.966,70.011,70.055,70.096,70.137,70.178,70.215,70.243,70.259,70.258,70.257,70.258,70.260,70.262,70.265,70.267,70.261,70.236,70.212,70.188,70.165,70.140,70.111,70.044,69.945,69.800,69.557,69.264,68.986,68.710,68.379,68.003,67.583,67.102,66.570,66.048,65.528,65.009,64.484,63.957,63.336,62.771,62.707,62.759,62.848,62.961,63.065,63.157,63.263,63.378,63.495,63.620,63.793,64.052,64.306,64.565,64.840,65.121,65.402,65.663,65.911,66.149,66.393,66.633,66.876,67.113,67.353,67.597,67.835,68.082,68.411,68.754,69.091,69.430,69.762,70.084,70.410,70.724,71.040,71.359,71.677,71.995,72.307,72.605,72.904,73.204,73.504,73.803,74.102,74.402,74.697,74.976,75.255,75.535,75.815,76.094,76.374,76.654,76.943,77.233,77.523,77.812,78.102,78.391,78.681,78.970,79.257,79.525,79.788,80.053,80.318,80.583,80.848,81.113,81.382,81.708,82.069,82.412,82.754,83.097,70.187,70.159,70.061,69.931,69.885,69.842,69.734,69.580,69.403,69.196,69.062,69.004,68.914,68.740,68.592,68.440,83.246,83.417,83.763,84.105,84.423,84.710,84.996,85.284,85.577,85.865,86.155,86.445,86.731,87.023,87.311,87.596,87.886,88.171,88.461,88.744,89.032,89.327,89.614,89.905,90.199,90.484,90.772,91.064,91.357,91.649,91.932,92.217,92.505,92.795,93.087,93.369,93.650,93.922,94.195,94.470,94.746,95.025,95.292,95.561,95.830,96.080,96.326,96.573,96.820,97.067,97.314,97.561,97.806,98.028,98.244,98.426,98.419,98.411,98.397,98.373,98.349,98.419,98.532,98.636,98.691,98.737,98.783,98.841,98.949,99.106,99.291,99.508,99.764,100.058,100.384,100.739,101.087,101.435,101.784,102.133,102.481,102.789,103.031,103.279,103.527,103.802,104.106,104.417,104.775,105.133,105.493,105.867,106.241,106.625,107.159,107.717,108.269,108.844,109.418,109.992,110.514,111.018,111.525,112.037,112.536,113.034,113.486,113.921,114.372,114.830,115.290,115.754,116.223,116.726,117.230,117.731,118.245,118.769,119.289,119.810,120.339,120.866,121.391,121.914,122.435,122.956,123.465,123.952,124.429,124.740,125.031,125.443,125.706,125.954,126.188,126.409,126.616,126.896,127.157,127.371,127.607,127.758,127.907,128.055,128.271,128.483,128.692,128.897,129.097,129.285,129.432,129.552,129.678,129.845,130.010,130.165,130.317,130.460,130.599,130.738,130.879,131.025,131.170,131.315,131.461,131.607,131.752,131.898,132.043,132.188,132.333,132.478,132.622,132.767,132.929,133.150,133.369,133.587,133.805,134.023,134.241,134.457,134.675,134.957,135.279,135.598,135.914,136.249,136.646,137.041,137.487,137.798,138.111,138.594,139.093,139.422,139.867,140.193,140.516,140.838,141.147,141.580,141.842,142.072,142.286,142.510,142.810,143.103,143.412,143.658,143.915,144.199,144.524,144.898,145.226,145.579,145.961,146.481,147.034,147.477,148.041,148.612,149.170,149.729,150.281,150.954,151.357,151.644,151.924,152.022,152.029,152.028,152.028,152.028,152.028,152.028,152.023,151.994,151.892,151.559,151.052,150.534,150.022,149.509,148.994,148.202,147.155,146.306,146.292,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.549,147.158,146.974,146.999,147.002,147.000,147.002,147.002,147.003,147.003,146.990,146.976,146.815,146.788,146.749,146.696,146.610,146.408,146.147,146.133,146.246,146.358,146.471,146.592,146.704,146.824,146.943,146.989,147.015,147.043,147.070,147.098,147.125,147.153,147.177,147.202,147.227,147.252,147.274,147.281,147.354,146.753,146.692,146.567,146.446,146.331,146.218,146.120,146.194,146.399,146.597,146.679,146.731,146.775,146.815,146.909,146.985,147.003,147.002,147.002,147.003,147.002,147.002,147.002,147.000,146.896,146.302,146.292,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.297,146.654,147.776,148.770,149.298,149.820,150.337,150.848,151.355,151.828,151.949,152.030,152.028,152.028,152.028,152.028,152.028,152.024,152.018,152.017,151.973,151.622,151.144,150.671,150.144,149.570,148.972,148.293,147.485,146.905,146.413,145.949,145.583,145.254,144.983,144.640,144.332,144.027,143.766,143.575,143.348,143.053,142.767,142.467,142.250,142.021,141.763,141.465,141.136,140.811,140.474,139.938,139.477,139.124,138.779,138.441,138.112,137.787,137.481,137.031,136.624,136.221,135.879,135.563,135.243,134.920,134.635,134.422,134.203,133.983,133.763,133.544,133.326,133.107,132.892,132.735,132.592,132.446,132.301,132.155,132.009,131.864,131.718,131.573,131.429,131.284,131.139,130.995,130.851,130.711,130.571,130.432,130.289,130.138,129.985,129.823,129.659,129.484,129.332,129.149,128.960,128.766,128.567,128.363,128.158,127.940,127.756,127.610,127.384,127.148,126.957,126.783,126.599,126.377,126.169,125.949,125.716,125.338,124.950,124.663,124.280,123.971,123.655,123.167,122.755,122.241,121.728,121.214,120.697,120.181,119.666,119.156,118.647,118.136,117.637,117.150,116.658,116.170,115.714,115.265,114.810,114.370,113.938,113.512,113.088,112.641,112.146,111.653,111.159,110.662,110.162,109.614,109.050,108.489,107.928,107.367,106.805,106.355,105.992,105.618,105.249,104.892,104.535,104.199,103.901,103.606,103.356,103.108,102.860,102.591,102.240,101.889,101.539,101.189,100.839,100.489,100.139,99.844,99.568,99.343,99.156,98.982,98.869,98.792,98.749,98.703,98.657,98.564,98.452,98.352,98.363,98.391,98.410,98.415,98.421,98.298,98.071,97.851,97.609,97.361,97.112,96.863,96.615,96.368,96.121,95.874,95.607,95.333,95.060,94.785,94.507,94.231,93.956,93.689,93.401,93.106,92.815,92.525,92.233,91.941,91.649,91.359,91.069,90.775,90.484,90.187,89.896,89.605,89.310,89.018,88.727,88.439,88.151,87.862,87.573,87.283,86.994,86.703,86.413,86.122,85.828,85.538,85.244,84.953,84.661,84.364,84.038,83.683,83.335,82.987,82.639,82.291,81.942,81.594,81.285,81.023,80.758,80.491,80.226,79.960,79.693,79.428,79.152,78.861,78.571,78.279,77.990,77.699,77.408,77.118,76.830,76.550,76.269,75.989,75.709,75.428,75.146,74.863,74.577,74.275,73.973,73.671,73.368,73.068,72.768,72.464,72.160,71.839,71.520,71.200,70.881,70.563,70.242,69.923,69.600,69.267,68.932,68.593,68.257,67.969,67.740,67.504,67.269,67.033,66.793,66.553,66.316,66.078,65.832,65.578,65.300,65.028,64.757,64.482,64.227,63.974,63.724,63.481,63.336,63.237,63.134,62.999,62.894,62.783,62.696,62.637,62.694,62.807,63.274,63.916,64.433,64.955,65.474,66.000,66.523,67.050,67.549,67.971,68.362,68.692,68.996,69.238,69.542,69.785,69.959,70.067,70.134,70.166,70.192,70.215,70.239,70.263,70.286,70.300,70.299,70.298,70.294,70.298,70.299,70.295,70.289,70.275,70.249,70.212,70.171,70.128,70.087,70.045,70.005,69.979,69.972,69.965,69.957,69.949,69.941,69.942,70.037,70.047,70.045,70.045,70.045,70.045,70.045,70.076,70.125,70.120,70.118,70.116,70.115,70.111,70.103,70.096,70.090,70.092,70.100,70.116,70.140,70.158,70.176,70.195,70.219,70.236,70.242,70.243,70.226,70.203,70.181,70.159,70.137,70.113,70.099,70.119,70.155,70.201,70.266,70.345,70.443,70.568,70.775,70.949,71.138,71.326,71.529,71.809,72.095,72.297,72.488,72.771,72.994,73.187,73.378,73.569,73.760,73.954,74.082,74.141,74.190,74.236,74.280,74.324,74.368,74.439,74.513,74.578,74.668,74.756,74.843,74.932,75.020,75.108,75.198,75.295,75.409,75.521,75.632,75.747,75.858,75.969,76.082,76.193,76.303,76.415,76.528,76.639,76.751,76.863,76.974,77.085,77.197,77.308,77.423,77.532,77.648,77.825,78.006,78.191,78.368,78.549,78.726,78.941,79.203,79.459,79.707,79.960,80.220,80.475,80.725,80.979,81.236,81.489,81.744,82.025,82.342,82.659,82.969,83.283,83.641,84.034,84.417,84.805,85.199,85.593,85.976,86.379,86.767,87.153,87.554,87.943,88.298,88.634,88.977,89.325,89.661,89.983,90.298,90.597,90.818,91.005,91.109,91.189,91.214,91.214,91.191,91.105,91.000,90.807,90.615,90.319,89.997,89.600,89.188,88.742,88.285,87.809,87.424,86.978,86.572,86.183,85.833,85.523,85.249,85.032,84.896,84.732,84.591,84.509,84.428,84.383,84.320,84.261,84.216,84.171,84.149,84.131,84.107,84.060,84.027,84.014,84.039,84.052,62.785,62.779,62.749,62.712,62.666,62.611,62.538,62.457,62.367,62.266,62.166,62.026,61.923,61.810,61.681,61.560,61.486,61.422,61.357,61.304,61.234,61.242,61.414,61.606,61.787,62.012,62.251,62.486,62.754,63.061,63.369,63.678,64.020,64.419,64.808,65.191,65.577,65.971,66.363,66.758,67.148,67.504,67.861,68.224,68.572,68.841,69.096,69.335,69.508,69.556,69.499,69.319,69.019,68.632,68.179,67.382,66.426,65.718,64.962,64.193,63.455,62.756,62.111,61.572,61.071,60.636,60.236,59.837,59.224,58.715,57.684,56.674,55.687,54.685,53.770,53.354,52.970,52.594,52.053,51.701,51.341,50.976,50.432,50.049,49.637,49.255,48.890,48.487,48.013,47.540,47.115,46.747,46.467,46.230,46.058,45.938,45.739,45.738,45.791,45.844,45.894,45.979,46.118,46.151,46.146,46.146,46.146,46.145,46.145,46.154,46.250,46.468,46.759,47.084,47.502,47.915,48.513,49.627,50.754,51.941,53.203,54.412,55.379,55.951,56.519,57.046,57.568,57.929,58.192,58.476,58.763,58.999,59.206,59.442,59.718,59.953,60.052,60.153,60.210,60.176,60.145,60.170,60.206,60.111,60.065,60.061,60.063,60.050,60.008,59.958,59.957,59.962,59.966,59.971,59.975,59.979,59.983,59.979,59.955,59.932,59.909,59.886,59.863,59.840,59.817,59.814,59.819,59.823,59.827,59.831,59.834,59.838,59.841,59.841,59.842,59.842,59.842,59.842,59.842,59.842,59.844,59.847,59.849,59.852,59.855,59.858,59.860,59.863,59.864,59.865,59.866,59.867,59.868,59.868,59.869,59.871,59.876,59.880,59.885,59.884,59.877,59.871,59.865,59.864,59.869,59.878,59.878,59.877,59.875,59.872,59.876,59.891,59.900,59.907,59.925,59.969,60.062,60.153,60.259,60.375,60.500,60.657,60.778,60.960,61.155,61.352,61.567,61.748,61.975,62.143,62.420,62.649,62.940,63.242,63.550,63.861,64.170,64.453,64.725,64.968,65.203,65.421,65.634,65.796,65.951,66.068,66.172,66.226,66.249,66.270,66.233,66.270,66.258,66.247,66.228,66.213,66.192,66.153,124.369,124.659,124.916,125.386,125.754,126.100,126.621,127.178,127.865,128.280,128.773,129.275,129.907,130.210,106.877,106.905,106.819,106.768,106.686,106.588,106.598,106.751,106.901,107.042,107.225,107.456,107.714,107.983,108.250,108.634,109.397,110.092,110.539,110.972,111.413,111.962,112.612,113.306,114.023,114.498,114.984,115.445,115.776,116.021,116.230,116.397,116.578,116.762,116.962,117.255,117.454,117.599,117.675,117.718,117.741,117.767,117.796,117.831,117.833,117.810,117.791,117.763,117.804,117.851,118.067,118.472,118.781,119.060,119.334,91.096,91.057,90.939,90.444,89.805,89.183,88.559,87.933,87.314,86.701,86.081,85.462,84.854,84.247,83.641,83.040,82.425,81.832,81.222,80.602,79.990,79.382,78.775,78.162,77.554,76.939,76.328,75.716,75.097,74.501,73.898,73.302,72.708,72.118,71.620,71.113,70.407,69.857,69.369,68.962,68.560,68.166,67.861,67.505,67.166,66.839,66.432,65.809,65.377,65.029,64.658,64.273,63.874,63.472,63.075,62.688,62.314,61.952,61.625,61.227,60.798,60.550,60.361,60.083,59.904,59.885,59.870,59.860,59.858,59.857,59.857,59.856,59.854,59.852,59.890,59.870,59.862,59.859,59.861,59.861,59.861,59.861,59.861,59.861,59.861,59.862,70.185,70.217,70.224,70.233,70.189,70.133,70.030,69.993,70.001,70.046,70.144,70.416,70.678,70.982,71.371,71.753,72.129,72.505,72.907,73.336,73.801,74.240,74.670,75.126,75.575,76.049,76.522,76.982,77.413,77.860,78.361,78.973,79.570,80.181,80.810,81.418,82.008,82.625,83.296,83.972,84.653,85.327,85.995,86.668,87.335,88.025,88.814,89.637,90.455,91.267,92.149,93.031,93.918,94.771,95.631,96.411,97.148,97.928,98.665,99.407,100.145,100.939,101.776,102.613,103.460,104.329,105.182,106.020,106.768,107.467,108.124,108.771,109.453,110.084,110.778,111.406,112.047,112.682,113.235,113.692,114.180,114.599,114.997,115.304,115.317,115.392,115.497,115.647,115.614,115.667,91.144,91.185,91.199,91.204,89.453,89.767,90.283,90.474,90.653,90.796,90.894,90.928,90.939,90.940,90.918,90.871,90.807,90.740,90.670,91.214,91.208,91.200,91.151,59.850,59.848,59.845,59.843,59.840,59.837,59.835,59.835,59.835,59.835,59.835,59.835,59.835,59.835,59.832,59.828,59.824,59.821,59.817,59.813,59.809,59.810,59.832,59.855,59.878,59.901,59.924,59.946,59.968,59.980,59.974,59.969,59.965,59.961,59.957,59.953,59.950,59.994,60.041,60.059,60.057,60.074,60.149,60.203,60.142,60.152,60.199,60.154,60.078,60.009,59.882,59.608,59.324,59.107,58.902,58.629,58.344,58.071,57.778,57.375,56.755,56.008,55.474,54.950,53.832,53.015,52.194,50.991,49.863,48.713,47.969,47.525,47.180,46.869,46.573,46.301,46.152,46.129,46.139,46.139,46.139,46.139,46.139,46.132,46.005,45.897,45.847,45.796,45.745,45.725,45.833,45.979,46.170,46.363,46.614,46.902,47.272,47.692,48.172,48.593,48.951,49.301,49.646,50.048,50.435,50.795,51.129,51.473,51.818,52.169,52.501,52.855,53.213,53.601,54.071,54.935,55.980,57.019,58.046,59.059,59.682,60.113,60.516,60.961,61.481,62.031,62.725,63.516,64.317,65.158,65.958,66.688,67.380,67.964,68.464,68.901,69.198,69.376,69.491,69.540,69.489,69.321,69.069,68.815,68.539,68.175,67.803,67.430,67.073,66.670,66.261,65.847,65.438,65.033,64.636,64.234,63.840,63.519,63.209,62.896,62.589,62.341,62.105,61.866,61.661,61.482,61.287,61.202,61.276,61.339,61.401,61.470,61.556,61.686,61.819,61.991,62.169,62.384,62.575,62.783,63.019,63.256,63.493,63.386,63.270,63.039,62.807,62.572,62.340,62.269,62.361,62.422,62.481,62.533,62.595,99.557,99.677,99.816,99.971,100.209,100.835,101.171,101.355,101.721,102.020,102.322,102.560,102.858,103.141,103.295,103.428,103.566,103.703,103.844,103.938,104.080,104.218,104.361,104.499,104.640,104.784,104.923,105.044,105.170,105.293,105.407,105.497,105.591,105.683,105.806,105.928,106.050,106.131,106.210,106.288,106.403,106.518,106.634,106.711,106.800,106.924,107.052,107.138,107.232,107.378,107.493,107.599,107.712,107.825,107.937,108.107,108.285,108.465,108.644,108.821,109.000,109.179,109.361,109.518,109.605,109.696,109.781,109.849,109.904,109.955,109.999,110.033,110.027,109.983,109.895,109.730,109.601,109.523,109.432,109.333,109.334,109.334,109.334,109.334,109.335,109.335,109.347,109.411,109.479,109.621,109.824,110.054,110.370,110.772,111.359,112.237,113.136,113.793,114.236,114.904,115.543,116.127,116.712,117.311,117.904,118.493,119.104,119.712,120.311,120.908,121.516,122.167,122.806,123.445,124.085,124.720,125.361,125.998,126.513,126.899,127.469,127.904,128.428,128.848,129.145,129.576,129.975,130.191,130.268,130.304,130.348,130.404,130.581,130.593,130.602,130.623,130.700,130.822,130.874,130.914,131.079,131.444,132.390,133.206,133.914,134.791,135.641,136.460,137.268,138.003,138.711,139.167,139.825,140.393,140.985,141.547,141.915,142.389,142.835,143.250,143.654,144.054,144.428,144.781,145.166,145.545,145.893,146.232,146.546,146.837,147.108,147.335,147.537,147.737,147.916,148.099,148.273,148.443,148.625,148.793,148.967,149.146,149.304,149.471,149.613,149.735,149.833,149.899,149.920,149.907,149.850,149.752,149.600,149.420,149.172,148.889,148.583,148.226,147.845,147.443,146.996,146.568,146.098,145.604,145.116,144.624,144.134,143.658,143.187,142.715,142.217,141.760,141.326,140.908,140.478,140.041,139.625,139.213,138.802,138.423,138.017,137.621,137.250,136.895,136.562,136.241,135.942,135.640,135.337,135.009,134.709,134.355,134.006,133.856,133.786,133.764,133.760,133.773,133.775,133.773,133.772,133.937,133.802,133.746,133.715,133.672,133.635,115.680,115.770,115.818,115.866,115.948,115.980,116.057,116.105,116.161,116.227,116.305,116.387,116.481,116.564,116.758,116.956,117.157,117.327,117.527,117.833,118.112,118.412,118.844,119.278,119.666,119.965,120.288,120.608,121.030,121.408,121.704,121.817,121.999,122.231,122.458,122.689,122.952,123.247,123.531,123.830,124.130,124.412,124.673,124.902,125.136,125.375,125.633,125.890,126.166,126.460,126.748,127.023,127.282,127.557,127.795,128.045,128.257,128.533,128.770,129.004,129.080,128.992,128.881,128.821,128.747,128.624,128.464,128.286,128.000,127.637,127.160,126.619,126.082,125.539,124.988,124.358,123.741,123.136,122.485,121.822,121.171,120.494,119.819,119.147,118.459,117.794,117.108,116.399,115.682,114.954,114.182,113.401,112.639,111.867,111.116,110.294,109.455,108.626,107.807,106.997,106.189,105.402,104.641,103.871,103.139,102.450,101.772,101.154,100.588,100.116,99.722,99.436,99.316,99.205,99.102,98.982,98.866,98.706,98.681,98.678,98.709,98.604,98.385,98.340,98.348,98.349,98.353,98.334,98.266,98.092,98.663,98.487,98.392,98.333,98.327,98.318,98.307,98.343,98.347,98.346,98.349,98.350,98.358,98.524,98.719,98.686,98.666,98.710,98.778,98.904,99.021,99.141,99.260,99.380,99.601,99.959,100.397,100.936,101.551,102.183,102.877,103.596,104.374,105.109,105.891,106.684,107.474,108.287,109.101,109.927,110.755,111.537,112.304,113.063,113.831,114.602,115.380,116.079,116.789,117.484,118.180,118.870,119.535,120.209,120.882,121.547,122.209,122.869,123.487,124.105,124.744,125.319,125.867,126.430,126.962,127.456,127.934,128.309,128.420,128.602,128.762,128.840,128.782,128.644,128.516,128.320,128.026,127.790,127.561,127.328,127.096,126.859,126.597,126.382,126.181,125.935,125.628,125.367,125.108,124.873,124.645,124.415,124.150,123.874,123.595,123.338,123.068,122.802,122.525,122.256,121.993,121.709,121.446,121.134,120.802,120.438,120.078,119.782,119.507,119.167,118.752,118.336,117.994,117.742,117.447,117.197,117.033,116.845,116.574,116.330,116.203,116.222,116.191,116.154,116.108,116.064,116.032,115.870,115.767,115.639,115.511,115.362,115.202,115.033,114.963,114.919,114.903,114.753,114.320,113.915,113.498,113.028,112.522,111.964,111.335,110.739,110.099,109.463,108.810,108.173,107.447,106.652,105.885,105.081,104.272,103.452,102.646,101.840,101.030,100.224,99.460,98.704,97.926,97.162,96.395,95.581,94.721,93.878,92.997,92.168,91.341,90.517,89.715,88.918,88.121,87.402,86.744,86.077,85.430,84.769,84.113,83.457,82.801,82.164,81.541,80.911,80.284,79.669,79.051,78.408,77.797,77.344,76.881,76.429,75.991,75.467,74.991,74.533,74.106,73.674,73.245,72.805,72.396,72.059,71.727,71.391,71.028,70.667,70.386,70.128,69.883,69.906,69.925,69.948,70.068,70.195,70.196,70.193,70.187,70.178,70.106,70.127,70.154,70.166,70.120,70.181,70.186,70.198,70.215,70.221,70.216,70.208,70.200,70.196,70.196,70.207,70.130,115.167,115.066,114.908,114.856,114.910,115.009,115.132,115.227,115.290,115.335,115.369,115.451,115.515,115.574,115.658,115.780,115.961,116.055,116.086,116.132,116.168,116.201,116.248,115.597,115.708,115.886,116.163,116.489,116.685,116.771,116.774,116.774,116.774,116.774,116.774,116.774,116.774,116.773,116.773,116.773,116.773,116.773,116.773,116.773,116.773,116.772,116.772,116.772,116.772,116.841,116.954,116.973,116.962,116.901,116.702,116.461,116.257,117.487,117.307,117.105,116.917,116.818,116.803,116.786,116.771,116.774,116.774,116.773,116.774,116.773,116.773,116.773,116.773,116.773,116.773,116.773,116.773,116.773,116.773,116.773,116.773,116.772,116.772,116.757,116.599,116.381,116.143,116.002,115.971,115.946,116.417,116.148,115.976,115.882,115.734,115.672,115.565,115.389,115.754,115.795,115.839,115.859,115.949,116.158,116.446,116.980,116.993,116.985,117.038,117.159,117.283,117.420,117.556,117.710,117.866,118.073,118.387,118.737,118.998,119.346,119.691,120.039,120.415,120.783,121.149,121.524,121.890,122.262,122.639,123.013,123.322,123.609,123.863,124.071,124.199,124.334,124.437,124.562,124.661,124.721,124.759,124.801,124.831,124.831,124.829,124.820,124.813,124.806,124.801,124.798,124.797,124.797,124.797,124.797,124.797,124.797,124.799,124.802,124.804,124.808,124.810,124.815,124.836,124.855,124.875,124.919,125.039,125.146,125.254,125.442,125.570,125.722,125.879,126.068,126.195,126.393,126.591,126.813,126.969,127.199,127.400,127.612,127.831,128.046,128.273,128.516,128.771,129.021,129.284,129.546,129.762,129.924,130.178,130.350,130.492,130.539,130.544,130.517,130.496,130.474,130.455,130.436,130.418,130.401,130.381,130.361,130.342,130.302,130.265,130.219,130.135,129.959,130.208,130.256,130.277,130.265,130.233,130.206,130.184,130.162,130.118,130.032,129.909,129.788,129.663,129.472,129.279,129.139,130.105,130.217,130.295,130.385,130.471,130.592,130.723,129.128,129.109,129.076,129.145,129.229,129.401,129.591,129.857,130.037,130.244,130.566,130.981,131.387,131.772,132.150,132.534,132.914,133.297,133.635,133.870,134.093,134.356,134.619,134.882,135.105,135.284,135.472,135.660,135.827,135.988,136.132,136.264,136.389,136.506,136.611,136.707,136.789,136.865,136.940,137.023,137.096,137.168,137.219,137.267,137.312,137.354,137.342,137.399,137.467,137.545,137.623,137.699,137.765,137.885,138.023,138.158,138.341,138.529,138.712,138.898,139.081,139.331,139.636,139.936,140.113,140.094,140.110,140.119,140.117,140.109,140.152,140.269,140.478,140.657,140.853,141.100,141.284,141.504,141.733,142.046,142.346,142.634,142.929,143.205,143.479,143.750,144.022,144.294,144.572,144.834,145.091,145.350,145.607,145.864,146.121,146.283,146.199,146.107,146.114,146.231,146.332,146.431,146.564,146.687,146.147,146.103,146.082,146.063,146.064,146.076,146.061,146.047,146.053,146.112,146.203,146.291,146.367,146.484,146.592,146.660,146.624,146.571,146.454,146.306,146.159,146.056,145.980,145.900,145.817,145.697,66.001,66.114,66.250,66.262,66.232,66.217,66.134,66.030,65.900,65.743,65.574,65.358,65.134,64.901,64.647,64.374,64.091,63.790,63.475,63.180,62.889,62.598,62.308,62.035,61.802,61.641,61.506,61.302,61.107,60.918,60.778,60.652,60.507,60.368,60.259,60.149,60.050,59.979,59.931,59.910,59.894,59.883,59.868,59.865,59.869,59.871,59.872,59.872,59.867,59.859,59.857,59.862,59.869,59.875,59.880,59.876,59.871,59.867,59.863,59.863,59.862,59.861,59.861,59.862,59.858,59.858,59.855,59.862,59.862,59.861,59.861,59.861,59.861,59.863,59.873,59.884,59.904,59.903,59.940,60.007,60.120,59.855,59.856,59.857,59.858,59.860,59.862,59.883,84.145,84.105,83.897,83.905,84.018,84.123,84.229,84.154,84.049,83.951,83.948,112.457,112.452,112.440,112.452,112.502,112.530,112.538,112.561,112.590,112.543,112.494,112.461,112.400,112.422,112.429,112.425,112.420,112.427,112.435,112.563,112.506,112.477,112.454,112.451,112.454,112.459,112.459,112.536,112.471,112.429,112.455,112.458,112.453,112.430,112.399,112.353,112.307,112.261,112.215,112.168,112.121,112.075,112.029,111.983,111.936,111.889,111.844,111.798,111.752,111.706,111.658,111.612,111.566,111.519,111.472,111.426,111.380,111.333,111.287,111.239,111.193,111.147,111.100,111.051,111.004,110.957,110.909,110.861,110.814,110.768,110.720,110.675,110.627,110.581,110.535,110.487,110.441,110.395,110.347,110.302,110.256,110.124,109.869,109.626,109.378,109.128,108.880,108.635,108.394,108.156,107.900,107.573,107.109,106.663,106.219,105.756,105.273,104.810,104.352,103.897,103.392,102.752,102.120,101.489,100.857,100.219,99.587,98.955,98.323,97.693,97.064,96.411,95.631,94.831,94.029,93.238,92.440,91.637,90.836,90.046,89.250,88.458,87.666,86.868,86.061,85.264,84.469,83.674,82.882,82.089,81.291,80.501,79.700,78.857,78.037,77.196,76.377,75.783,75.235,74.665,73.877,73.286,72.702,72.082,71.427,70.795,70.143,69.492,68.533,67.626,67.147,66.669,66.059,65.203,64.241,63.635,63.249,63.091,63.124,63.429,63.925,64.358,65.010,65.698,67.117,68.509,69.902,71.299,72.700,74.085,75.482,76.858,78.254,79.629,81.004,82.288,83.513,84.329,85.058,86.029,86.644,87.066,87.415,87.759,88.210,88.783,89.435,90.023,90.684,91.466,92.344,93.266,94.230,95.183,96.165,96.923,97.608,98.439,99.089,99.700,100.505,101.169,101.853,102.516,103.198,103.862,104.522,105.203,105.879,106.548,107.214,107.894,108.631,109.332,109.990,110.653,111.271,111.836,112.216,112.731,113.225,113.691,114.150,114.587,115.031,115.415,115.788,116.156,116.511,116.832,117.141,117.448,116.690,116.828,116.905,117.005,117.063,117.083,117.006,109.709,109.398,108.992,108.368,107.846,107.658,107.619,107.738,107.911,108.033,108.173,108.381,108.541,108.677,108.822,108.947,108.991,109.002,109.040,109.105,109.177,109.245,109.324,109.410,109.573,109.753,109.939,110.135,110.264,110.388,110.532,110.651,110.795,110.927,111.022,111.087,111.097,111.076,111.031,110.957,110.863,110.749,110.606,110.458,110.336,110.230,110.099,109.923,109.701,109.459,109.185,108.835,108.510,108.228,107.944,107.668,107.485,107.239,106.980,106.723,106.468,106.220,105.978,105.737,105.490,105.169,104.829,104.489,104.277,104.186,104.250,104.506,104.726,104.959,105.339,105.737,105.995,106.200,106.530,106.988,107.452,107.708,107.915,107.379,107.141,106.695,106.283,106.009,109.871,110.200,110.847,111.461,112.032,112.480,112.231,111.872,111.322,110.732,110.064,124.173,124.254,124.319,124.269,124.149,124.041,123.987,123.984,123.978,123.933,123.818,123.636,123.494,123.381,123.312,123.224,123.062,123.010,122.937,122.850,122.764,122.676,122.566,122.448,122.307,122.146,121.960,121.756,121.520,121.255,120.965,120.658,120.326,119.973,119.592,119.177,118.834,118.539,118.224,117.920,117.652,117.402,117.136,116.835,116.509,116.148,115.744,115.304,114.836,114.386,113.976,113.573,113.189,112.818,112.486,112.225,112.084,112.038,112.014,111.990,111.977,111.973,111.973,111.973,111.973,111.973,111.973,111.973,111.973,111.973,111.973,111.973,111.973,111.974,111.974,111.975,111.980,111.981,111.982,111.980,111.990,111.997,111.997,112.000,112.083,112.201,112.276,112.303,112.311,112.336,112.348,112.371,112.395,112.434,112.492,112.503,112.452,112.366,112.379,112.376,112.320,112.348,112.370,112.372,112.372,112.376,112.374,112.370,112.369,112.373,112.373,112.376,112.375,112.371,112.370,112.370,112.370,112.366,112.350,112.355,112.362,112.370,112.376,112.379,112.379,112.378,112.375,112.370,112.371,112.371,112.371,112.370,112.373,112.377,112.379,112.379,112.369,112.368,112.365,112.376,112.366,112.333,112.398,112.449,112.442,112.404,112.384,112.355,112.308,112.201,112.072,112.102,112.083,112.036,111.997,111.996,111.997,112.016,112.018,112.015,112.008,111.999,111.995,111.988,111.988,111.989,111.995,112.007,112.021,112.034,112.042,112.043,112.044,112.048,112.062,112.082,112.098,112.128,112.181,112.258,112.338,112.410,112.506,112.814,113.235,113.641,114.049,114.452,114.859,115.275,115.697,116.093,116.451,116.762,117.048,117.315,117.539,117.739,117.961,118.221,118.515,118.811,119.130,119.502,119.899,120.285,120.645,120.979,121.288,121.571,121.825,122.042,122.234,122.405,122.553,122.687,122.802,122.906,122.997,123.080,123.165,123.236,123.301,123.416,123.533,123.575,123.665,123.808,124.001,124.100,124.148,124.149,124.208,124.308,124.509,124.622,124.660,124.752,124.375,124.461,124.452,124.400,124.341,124.283,124.214,124.662,124.617,124.573,124.523,124.461,124.355,124.179,61.295,61.272,61.228,61.164,61.114,61.126,61.168,61.062,60.791,60.577,60.531,60.534,60.501,60.388,60.196,59.636,59.006,58.380,57.787,57.216,56.641,56.127,55.625,55.215,54.839,54.453,54.094,53.891,53.708,53.512,53.315,53.201,53.256,53.293,53.378,53.407,53.441,53.738,54.206,54.361,54.527,54.662,54.851,55.052,55.268,55.488,55.709,55.916,56.082,56.137,56.166,56.178,56.184,56.189,56.196,56.207,56.219,56.228,56.231,56.226,56.210,56.188,56.155,56.141,56.151,56.175,56.203,56.251,56.297,56.340,56.375,56.414,56.452,56.491,56.534,56.582,56.635,56.692,56.757,56.814,56.891,56.957,57.012,57.051,57.089,57.126,57.156,57.185,57.214,57.243,57.273,57.302,57.331,57.361,57.390,57.419,57.472,57.635,57.813,57.980,58.148,58.316,58.483,58.651,58.819,58.987,59.154,59.322,59.489,59.657,59.826,59.993,60.161,60.329,60.496,60.664,60.832,61.000,61.167,61.335,61.502,61.672,61.842,62.012,62.180,62.350,62.515,62.691,62.848,57.921,57.989,58.055,58.072,58.151,58.264,58.418,58.527,58.644,58.784,58.938,59.098,59.247,59.372,59.548,59.742,59.888,62.914,62.996,63.163,63.328,63.496,63.663,63.831,64.000,64.169,64.335,64.501,64.667,64.834,65.006,65.174,65.340,65.510,65.675,65.844,66.010,66.122,66.223,66.325,66.428,66.532,66.634,66.737,66.839,66.942,67.044,67.150,67.279,67.415,67.550,67.693,67.869,68.045,68.244,68.463,68.690,68.945,69.204,69.500,69.802,70.116,70.435,70.766,71.107,71.454,71.830,72.205,72.586,72.970,73.356,73.745,74.148,74.610,75.074,75.532,75.991,76.448,76.906,77.365,77.892,78.499,79.135,79.666,80.194,81.008,81.872,82.449,83.317,84.200,85.144,86.103,87.077,88.067,89.074,90.081,91.099,92.102,93.091,94.008,94.855,95.703,96.545,97.354,97.977,98.462,98.794,99.047,99.279,99.528,99.751,99.995,100.216,100.432,100.614,100.747,100.828,100.856,100.873,100.883,100.868,100.678,100.280,99.837,99.414,99.159,99.003,98.918,98.878,98.928,99.062,99.173,99.345,99.091,98.990,98.896,98.841,98.725,98.724,98.715,98.703,98.689,98.674,98.657,98.640,98.618,98.581,98.509,98.404,99.446,99.341,99.215,99.036,98.934,98.901,98.904,99.024,99.315,99.584,99.880,100.304,100.696,100.873,100.890,100.870,100.840,100.806,100.752,100.625,100.518,100.376,100.158,99.917,99.673,99.423,99.178,98.943,98.679,98.316,97.984,97.371,96.537,95.668,94.826,93.993,93.109,92.108,91.086,90.049,89.029,88.039,87.078,86.100,85.131,84.179,83.260,82.371,81.556,80.737,79.942,79.459,78.906,78.249,77.645,77.130,76.684,76.220,75.757,75.296,74.830,74.377,73.909,73.532,73.142,72.761,72.379,72.003,71.632,71.263,70.925,70.583,70.261,70.034,69.724,69.427,69.176,68.918,68.672,68.442,68.234,68.031,67.860,67.688,67.539,67.410,67.278,67.147,67.040,66.938,66.836,66.742,66.633,66.526,66.422,66.321,66.217,66.115,66.006,65.847,65.674,65.506,65.337,65.169,65.001,64.833,64.663,64.494,64.326,64.158,63.990,63.819,63.649,63.479,63.311,63.142,62.973,62.803,62.635,62.467,62.299,62.130,61.962,61.793,61.625,61.457,61.289,61.121,60.955,60.785,60.617,60.449,60.280,60.112,59.943,59.775,59.607,59.439,59.270,59.102,58.933,58.765,58.597,58.429,58.261,58.093,57.924,57.756,57.588,57.438,57.398,57.380,57.351,57.321,57.291,57.262,57.234,57.204,57.174,57.147,57.114,57.077,57.037,56.996,56.937,56.871,56.815,56.736,56.678,56.623,56.573,56.528,56.488,56.455,56.428,56.393,56.368,56.339,56.296,56.253,56.206,56.166,56.139,56.140,56.151,56.168,56.189,56.209,56.223,56.229,56.226,56.218,56.206,56.196,56.189,56.185,56.180,56.170,56.149,56.107,56.033,55.916,55.770,55.557,55.318,55.100,54.894,54.766,54.578,54.401,54.249,54.090,53.935,53.781,53.626,53.471,53.398,53.384,53.357,53.328,53.298,53.269,53.241,53.251,53.444,53.656,53.851,54.047,54.312,54.714,55.102,55.480,55.934,56.463,56.999,57.560,58.143,58.545,58.948,59.552,60.107,60.419,60.501,60.498,60.618,60.818,61.175,61.216,61.220,61.206,61.194,61.192,61.211,61.244,61.277,61.243,61.294,61.360,61.417,61.473,61.531,61.394,61.311,61.253,61.224,61.205,61.184,61.166,61.183,76.691,76.896,77.052,77.186,77.330,77.572,77.838,78.148,78.512,78.872,79.219,79.735,80.664,80.852,80.976,81.297,81.780,82.132,82.786,82.936,83.044,83.359,83.987,84.314,84.647,85.155,85.860,86.540,87.166,87.761,88.238,89.544,90.491,91.322,92.273,93.158,94.026,95.449,96.765,97.919,98.558,98.918,98.963,98.946,98.962,98.970,98.972,98.972,98.972,98.972,98.970,98.965,98.971,98.971,98.970,98.972,98.970,99.119,99.662,99.941,99.908,99.505,99.147,98.947,98.974,98.954,98.903,98.789,98.732,98.711,98.675,98.778,98.906,99.025,99.121,99.242,98.692,98.571,98.436,98.271,98.100,97.927,97.770,97.609,97.441,97.240,96.966,96.561,79.441,79.118,78.819,78.548,78.204,77.867,77.703,78.062,58.452,58.404,58.296,58.233,58.185,58.146,58.192,58.285,58.374,58.324,58.235,58.139,58.194,58.184,58.108,57.875,57.658,57.435,57.448,57.421,57.429,57.441,57.466,57.494,57.550,57.610,57.726,59.314,59.361,59.534,59.718,59.828,59.908,59.919,59.884,59.829,59.814,59.871,60.036,60.249,60.391,60.445,60.406,60.322,60.234,60.199,60.140,60.077,59.821,59.820,59.819,59.818,59.838,59.949,59.986,60.000,60.047,60.029,60.035,59.998,60.000,60.002,60.002,60.001,60.001,60.001,60.001,60.001,60.000,59.999,59.999,59.999,59.999,60.001,60.000,60.000,60.000,60.000,60.023,60.266,60.808,60.925,60.926,60.925,60.865,60.391,59.990,60.004,60.009,60.000,60.000,59.999,60.000,60.000,60.001,60.001,60.002,60.000,60.000,60.000,60.001,60.001,59.999,60.004,60.022,59.997,59.999,59.999,59.997,59.993,60.016,60.030,59.957,59.968,59.940,59.804,59.810,59.836,59.803,59.792,59.794,59.795,59.836,59.971,59.957,59.951,59.941,59.927,59.880,59.829,59.828,59.845,59.872,59.893,59.890,59.888,59.886,59.882,59.876,59.872,59.870,59.870,59.872,59.849,59.838,59.826,59.816,59.812,59.811,59.813,59.814,59.814,59.812,59.891,59.895,59.993,59.841,59.795,59.818,59.912,59.920,59.938,59.974,98.724,98.745,98.758,98.768,98.777,98.795,98.823,98.875,98.890,98.918,98.957,62.321,62.477,62.542,62.557,62.505,62.534,62.651,62.873,63.108,63.804,64.124,64.426,64.613,64.862,65.080,65.278,65.470,65.676,65.856,65.985,66.094,66.189,66.280,66.365,66.451,66.536,66.621,66.696,66.768,66.840,66.904,66.966,67.027,67.082,67.132,67.181,67.205,67.189,67.143,67.061,66.966,66.942,66.920,66.922,66.948,66.996,67.082,67.193,67.313,67.421,67.536,67.642,67.710,67.743,67.747,67.730,67.623,67.534,67.458,67.397,67.348,67.297,67.261,67.234,67.193,67.150,67.104,67.059,66.991,66.915,66.834,66.745,66.660,66.580,66.501,66.416,66.308,66.186,66.032,65.826,65.619,65.418,65.212,64.981,64.714,64.420,64.110,63.771,63.416,63.068,62.813,62.769,62.815,62.836,62.860,62.821,62.834,62.887,63.075,62.828,62.857,62.723,62.512,62.438,62.373,62.324,56.209,56.200,56.174,56.095,56.124,56.189,56.252,56.342,56.595,57.046,57.255,57.565,57.596,57.602,57.576,57.522,57.438,57.328,57.173,56.908,56.757,56.754,56.812,56.830,56.821,56.785,56.747,56.694,79.242,79.376,79.500,79.705,79.940,80.366,80.586,80.882,81.046,81.222,81.313,81.360,81.388,81.424,81.491,81.607,81.732,81.840,81.894,81.866,81.857,81.869,81.965,82.063,82.055,81.969,81.787,81.614,81.121,80.840,80.649,80.476,80.384,80.650,80.981,81.518,82.041,82.560,83.352,84.154,84.771,85.168,85.715,86.353,86.752,87.139,87.432,87.793,88.162,88.537,88.920,89.317,89.760,90.214,90.675,91.353,91.798,92.089,92.304,92.627,92.933,93.238,93.504,93.797,94.121,94.481,94.816,95.102,95.350,95.603,95.837,96.132,96.530,96.780,97.076,97.234,97.394,97.616,98.002,98.592,99.016,99.249,99.385,99.485,99.495,99.496,99.495,99.496,99.496,99.495,99.495,99.496,99.496,99.496,99.496,99.496,99.496,99.496,99.496,99.496,99.495,99.496,99.496,99.496,99.496,99.493,99.490,99.485,99.485,99.490,99.496,99.497,99.497,99.496,99.496,99.496,99.493,99.492,99.496,99.515,99.387,99.098,98.751,98.351,98.168,98.554,98.666,98.660,98.668,98.760,98.910,98.914,98.995,98.791,98.801,98.899,98.816,98.988,99.196,99.225,99.233,99.364,99.881,99.803,99.680,99.756,99.758,99.880,99.969,100.053,100.124,99.839,99.395,98.723,98.282,97.719,97.194,96.693,96.393,95.928,95.750,95.488,95.069,94.608,94.131,93.583,92.886,92.423,91.876,91.365,90.875,90.629,90.347,89.967,89.668,89.244,89.258,89.331,89.163,88.924,88.778,88.846,88.829,88.650,88.261,87.779,87.364,86.929,86.317,85.711,85.121,84.509,83.909,83.357,82.668,82.200,82.030,81.939,81.900,81.594,81.062,80.989,80.999,81.000,81.000,80.999,80.998,81.000,81.015,81.057,81.054,80.995,80.991,80.983,80.957,80.827,80.736,80.649,80.575,80.506,80.428,104.595,104.502,104.506,104.598,104.747,104.980,105.275,105.632,105.949,106.157,106.366,106.703,106.843,106.935,106.991,107.055,107.222,107.496,107.972,108.634,109.356,109.956,110.252,110.349,110.352,110.336,110.329,110.427,110.572,110.751,110.943,111.167,111.349,111.579,111.863,112.052,112.224,112.320,112.337,112.349,112.351,112.352,112.337,112.320,112.352,112.501,112.633,112.582,112.464,112.393,112.343,112.322,112.314,112.318,112.318,112.319,112.319,124.852,124.856,124.845,124.818,124.749,124.732,124.703,124.823,124.884,124.963,124.966,124.962,125.583,126.241,126.228,125.562,124.955,124.944,124.968,124.960,124.934,124.938,124.957,124.979,124.951,124.915,124.826,124.908,124.886,124.887,124.866,124.859,124.850,124.849,124.847 + 694.426,696.171,699.412,703.110,706.888,710.736,714.540,718.182,720.334,722.359,725.350,727.595,730.048,731.886,732.787,733.431,734.654,735.714,736.626,737.391,737.980,738.464,738.783,739.020,739.061,738.988,738.821,738.498,738.172,737.876,737.592,737.315,737.032,736.672,736.219,735.490,734.704,733.884,732.768,731.283,728.958,726.506,723.976,721.313,719.219,716.991,714.636,711.188,708.045,704.286,700.395,696.452,692.321,688.224,685.766,684.302,683.535,683.257,683.382,683.939,685.084,686.582,688.737,692.053,695.524,698.061,700.745,704.708,708.516,712.182,714.371,716.298,717.959,719.136,720.141,721.612,722.927,724.087,724.881,725.210,725.356,725.607,725.815,725.913,725.914,725.890,725.866,725.842,725.851,725.845,725.824,725.804,725.772,725.640,725.525,725.484,725.509,725.618,725.831,726.114,726.495,727.061,727.745,728.675,729.495,730.766,732.177,733.656,735.045,736.359,737.657,738.831,740.019,741.304,742.593,743.803,744.970,746.024,746.981,747.899,748.749,749.582,750.268,750.645,750.870,751.039,751.200,751.344,751.324,751.294,751.209,751.081,750.890,750.630,750.270,749.812,749.240,748.587,747.924,747.176,746.324,745.398,744.500,743.167,741.752,740.385,738.406,736.788,734.947,732.095,729.166,726.335,724.049,721.302,717.719,715.072,711.144,706.939,702.631,698.340,694.181,691.358,688.907,686.641,684.024,681.407,679.647,678.267,677.162,676.293,675.079,673.865,672.787,671.973,671.581,671.093,670.762,670.469,670.229,670.003,669.777,669.551,669.325,669.099,668.873,668.638,668.334,668.032,667.732,667.432,667.126,666.822,666.526,666.502,667.217,668.280,670.569,673.911,675.988,677.428,678.375,679.308,680.548,681.605,682.112,682.195,681.863,681.103,679.898,678.380,676.847,675.114,673.148,671.096,669.055,666.972,665.073,663.127,661.371,660.165,659.345,658.822,658.549,658.613,658.837,659.222,659.602,660.044,660.492,660.952,661.409,661.863,662.315,662.781,663.236,663.694,664.114,664.471,664.785,665.073,665.309,665.475,665.583,665.706,665.879,666.064,666.285,666.640,667.064,667.665,668.304,668.949,669.734,670.541,671.622,672.823,674.491,676.113,677.737,679.670,681.900,684.267,687.420,690.129,693.224,697.792,700.624,703.428,707.458,711.485,715.395,718.230,720.500,723.751,726.814,729.696,732.379,733.993,735.361,736.543,738.060,739.482,740.769,741.870,742.805,743.577,744.188,744.672,745.146,745.605,746.078,746.534,746.890,747.043,747.014,746.952,746.888,746.799,746.565,746.191,745.770,745.173,744.442,743.701,742.935,742.147,741.281,740.294,739.180,737.881,736.495,735.141,733.781,732.388,731.024,729.723,728.576,727.438,726.282,725.176,724.202,723.385,722.720,722.287,721.966,721.668,721.522,721.477,721.436,721.394,721.352,721.340,721.399,721.464,721.504,721.525,721.548,721.599,721.623,721.634,721.543,721.249,720.811,720.367,719.841,719.127,718.425,717.511,716.284,714.785,713.160,710.985,709.033,706.901,704.507,700.973,697.255,694.699,690.710,686.707,682.957,680.767,679.316,678.379,677.939,678.097,678.812,680.003,681.562,683.506,685.681,688.712,692.568,695.387,699.463,703.500,707.337,709.817,712.062,714.156,716.087,718.975,721.746,724.296,726.834,729.333,730.802,731.912,732.651,732.986,733.077,733.117,733.189,733.290,733.476,733.665,733.963,734.366,734.763,735.073,735.211,735.055,734.742,734.214,733.655,733.013,732.224,731.522,730.627,729.588,728.363,726.528,725.112,723.376,721.237,718.913,715.313,711.836,708.271,704.588,700.798,696.994,693.240,689.607,687.375,686.370,686.116,686.225,686.792,687.808,689.224,691.015,692.803,694.523,696.425,699.053,703.191,706.236,710.250,716.292,722.309,726.326,729.211,731.360,732.955,734.209,735.139,735.662,735.782,735.472,734.815,733.330,731.200,729.011,726.844,724.696,722.617,721.851,720.965,718.182,716.173,714.157,712.163,710.289,685.352,683.698,681.729,679.710,678.002,676.537,675.303,674.309,672.947,671.564,670.157,668.758,667.378,666.081,664.909,663.869,662.998,662.385,661.974,661.752,661.712,661.725,661.775,661.822,661.810,661.797,661.738,661.681,661.624,661.590,661.586,661.581,661.575,661.570,661.565,661.560,661.555,661.550,661.545,661.540,661.535,661.530,661.525,661.520,661.515,661.509,661.505,661.500,661.503,661.510,661.517,661.523,661.509,661.497,661.408,661.544,662.341,663.447,664.948,667.189,669.691,671.707,673.818,677.274,681.377,687.511,693.654,699.655,705.850,711.944,718.118,724.334,730.550,736.668,742.789,748.843,754.891,760.943,767.068,771.101,773.705,775.483,776.955,778.200,779.335,780.144,780.333,780.113,779.540,779.145,778.919,778.839,778.965,779.179,779.396,779.610,779.787,779.909,779.930,779.933,779.874,779.809,779.742,779.676,779.550,779.429,779.318,779.203,779.134,779.145,779.194,779.282,779.387,779.541,779.702,779.860,779.979,780.034,780.056,780.101,780.178,780.197,780.214,780.231,780.248,780.266,780.335,780.495,780.693,780.818,780.849,780.783,780.522,780.143,779.519,778.705,777.637,775.956,774.110,772.087,770.066,767.688,765.877,763.814,760.670,757.535,754.479,751.450,748.399,745.466,743.684,742.069,740.667,739.059,738.203,737.706,737.367,736.910,736.919,730.966,731.715,732.828,734.199,735.567,736.724,738.186,740.477,742.305,744.188,746.141,749.280,752.467,755.608,758.776,761.807,764.044,765.816,767.734,769.124,770.694,771.776,772.714,773.942,774.910,775.506,776.103,776.501,776.699,776.725,776.665,776.604,776.544,776.483,776.421,776.301,776.180,776.060,775.939,775.819,775.729,775.687,775.717,775.768,775.818,775.870,775.887,775.817,775.747,775.711,775.736,775.821,775.890,775.956,775.989,776.051,776.138,776.289,776.403,776.481,776.551,776.577,776.574,776.570,776.573,776.627,776.685,776.744,776.584,775.897,774.799,773.226,771.622,769.811,767.083,764.272,761.256,758.048,753.846,749.642,745.626,739.398,733.229,727.154,721.036,714.907,708.692,702.685,696.671,690.447,684.422,678.390,674.316,671.523,669.759,668.306,666.908,665.981,665.493,665.292,665.360,665.487,665.561,665.577,665.598,665.619,665.642,665.607,665.465,665.301,665.146,665.063,664.990,664.951,664.924,664.927,665.048,665.235,665.485,665.665,665.724,665.724,665.711,665.699,665.688,665.676,665.665,665.654,665.642,665.632,665.660,665.754,665.909,666.073,666.304,666.578,666.962,667.494,668.161,669.017,669.995,671.087,672.339,673.745,675.257,676.822,678.480,679.787,681.337,683.180,685.814,688.854,691.135,679.404,681.617,683.887,686.278,688.418,690.590,685.901,683.598,681.370,679.426,677.382,675.323,673.359,670.865,668.235,665.860,661.140,656.429,651.811,647.458,644.742,642.820,640.580,638.464,636.244,634.429,632.523,631.135,629.117,627.012,624.668,622.119,619.327,616.524,613.668,610.737,607.745,604.706,601.592,598.460,595.316,592.165,589.018,585.806,582.538,579.226,575.827,572.373,568.875,565.411,561.918,558.285,554.564,550.708,546.745,542.599,538.323,534.102,529.735,525.252,520.760,516.212,511.665,507.119,502.626,498.109,493.562,489.021,484.509,479.968,475.482,471.066,466.683,462.345,458.066,453.789,449.589,445.454,441.360,437.260,433.159,429.117,425.094,421.114,417.189,413.361,409.626,405.942,402.307,398.767,395.274,391.896,388.560,385.283,382.094,378.935,375.887,372.950,370.115,367.417,364.850,362.422,360.092,357.854,355.806,353.949,352.277,350.710,349.260,347.913,346.656,345.513,344.546,343.716,343.016,342.460,342.097,341.869,341.706,341.491,341.343,341.192,341.041,340.891,340.740,340.589,340.438,340.287,340.092,339.886,339.680,339.532,339.426,339.268,339.113,338.930,338.720,338.506,338.209,337.913,337.617,337.321,336.949,336.563,336.074,335.470,334.714,333.750,332.795,331.507,329.505,327.977,326.084,324.088,321.937,319.591,317.148,314.623,312.000,309.251,306.398,303.462,300.529,297.595,294.602,291.559,288.513,285.456,282.294,279.025,275.746,272.466,269.155,265.803,262.451,259.106,255.753,252.396,249.040,245.684,242.350,238.988,235.626,232.265,228.953,225.706,222.535,219.454,216.488,213.582,210.754,208.038,205.433,202.977,201.513,199.593,198.419,196.822,195.395,194.623,193.608,192.855,192.515,192.356,192.451,192.831,193.451,194.145,195.187,196.081,197.180,198.566,200.194,202.747,204.619,207.380,210.001,212.423,214.545,216.651,217.794,218.861,219.618,220.536,221.265,221.799,222.017,222.016,221.856,221.598,221.248,220.741,220.131,219.443,218.719,217.833,216.781,215.569,214.270,212.987,211.713,210.439,209.156,207.859,206.582,205.272,203.955,202.547,201.134,199.613,198.013,196.428,194.771,193.009,191.588,189.409,187.078,185.318,183.230,181.076,178.742,175.237,171.516,168.051,164.036,159.830,155.582,152.484,149.231,144.333,140.966,137.405,132.487,128.772,125.003,121.947,118.928,112.959,108.963,104.913,99.938,95.921,91.982,88.066,84.303,80.589,77.626,75.133,72.137,69.432,65.754,61.861,58.051,54.283,50.540,46.913,43.322,39.672,35.909,32.019,28.004,25.136,22.128,18.974,15.714,11.198,7.534,3.994,0.343,-3.373,-7.956,-12.597,-18.338,-24.132,-29.967,-35.835,-41.736,-47.673,-53.619,-59.595,-65.579,-71.602,-77.603,-83.630,-89.620,-95.624,-101.603,-107.593,-113.593,-119.593,-125.593,-131.589,-137.579,-143.570,-149.561,-155.549,-161.522,-167.486,-173.444,-179.402,-185.027,-190.890,-196.710,-202.506,-208.290,-214.076,-219.896,-225.698,-231.520,-237.326,-243.171,-249.018,-254.865,-260.717,-266.563,-272.407,-278.256,-284.118,-289.966,-295.813,-301.676,-307.547,-313.436,-319.240,-325.002,-329.861,-334.919,-338.559,-342.117,-346.097,-349.471,-352.679,-356.004,-360.665,-365.224,-369.655,-373.944,-377.072,-379.605,-382.318,-385.447,-388.801,-392.166,-395.551,-398.976,-402.524,-406.161,-409.844,-413.589,-417.400,-421.266,-425.224,-428.959,-433.142,-437.412,-441.678,-445.881,-449.947,-452.471,-456.170,-459.351,-461.523,-463.591,-465.437,-467.007,-468.330,-469.405,-470.215,-471.080,-471.467,-471.627,-471.381,-470.804,-469.885,-468.457,-466.869,-465.490,-463.880,-461.894,-459.882,-457.639,-455.240,-451.628,-447.882,-444.017,-440.118,-436.093,-432.050,-428.024,-423.997,-419.980,-416.043,-412.190,-408.367,-404.640,-401.043,-397.616,-394.341,-391.551,-388.608,-385.828,-383.125,-380.542,-378.037,-375.671,-373.490,-371.415,-369.347,-367.417,-365.554,-363.785,-361.884,-359.883,-357.793,-355.583,-353.163,-350.593,-348.705,-346.587,-344.250,-340.604,-338.004,-334.542,-331.683,-328.706,-324.287,-320.066,-317.522,-313.806,-311.581,-309.587,-307.749,-306.121,-304.737,-303.589,-302.015,-301.151,-300.445,-299.886,-299.139,-298.536,-298.232,-298.147,-298.201,-298.453,-298.867,-299.398,-300.026,-300.827,-301.801,-303.310,-305.090,-306.946,-308.875,-310.563,-312.181,-313.707,-314.357,-314.823,-315.078,-315.163,-315.104,-314.829,-314.361,-313.564,-312.485,-311.212,-309.178,-307.562,-305.781,-303.682,-301.452,-299.011,-295.603,-291.782,-287.983,-284.157,-280.303,-276.442,-272.619,-269.593,-267.491,-264.526,-262.801,-260.258,-257.814,-255.332,-252.900,-250.576,-248.257,-246.226,-244.222,-242.159,-240.082,-238.103,-236.271,-235.096,-233.578,-232.257,-231.095,-230.557,-229.888,-229.270,-228.654,-228.077,-227.576,-227.113,-226.768,-226.606,-226.638,-226.730,-226.903,-227.216,-227.619,-228.198,-228.881,-229.654,-230.500,-231.445,-232.474,-233.628,-234.981,-236.524,-238.202,-239.876,-241.515,-243.094,-244.615,-246.154,-247.876,-249.584,-251.284,-252.930,-254.438,-255.771,-256.892,-257.449,-257.760,-257.746,-257.443,-256.940,-256.386,-255.746,-254.842,-253.683,-252.312,-250.757,-249.196,-247.476,-245.717,-243.875,-242.061,-240.341,-238.632,-237.055,-235.660,-234.430,-233.685,-232.838,-232.170,-231.645,-231.268,-230.960,-230.751,-230.539,-230.332,-230.120,-229.913,-229.823,-229.725,-229.628,-228.912,-227.925,-226.322,-224.482,-222.562,-216.860,-211.063,-205.283,-199.518,-194.446,-190.467,-186.414,-180.460,-174.775,-170.632,-165.210,-161.143,-157.146,-153.139,-149.284,-145.351,-141.454,-137.735,-133.829,-130.315,-126.959,-123.640,-118.797,-115.526,-110.989,-106.421,-101.865,-97.518,-93.112,-88.677,-84.387,-80.050,-75.669,-71.281,-67.013,-62.723,-58.401,-54.042,-49.659,-45.246,-40.981,-36.678,-32.315,-27.932,-23.514,-19.114,-14.693,-10.411,-6.084,-1.721,2.710,7.147,11.619,15.929,20.309,24.707,29.145,33.670,38.198,42.775,47.197,51.645,56.079,60.513,65.000,69.427,73.858,78.286,82.775,87.218,91.662,96.151,100.595,105.038,109.482,113.975,118.424,122.859,127.342,131.789,136.236,140.683,145.194,149.641,154.088,158.554,163.080,167.527,171.979,176.497,180.944,185.396,189.867,194.255,198.702,203.149,207.704,212.151,216.598,221.055,225.609,230.062,234.498,239.036,243.481,247.944,252.399,256.779,261.256,265.711,270.142,274.620,279.075,283.571,287.991,292.446,296.924,301.329,305.721,310.171,314.617,319.047,323.412,327.841,332.383,336.859,340.938,344.296,347.615,350.521,353.142,355.793,358.775,361.286,363.720,365.689,367.766,370.564,372.809,375.068,378.330,381.494,384.674,387.983,391.423,394.740,398.354,402.099,405.817,409.527,413.324,417.236,421.165,425.120,429.245,433.380,437.579,441.680,446.007,450.293,454.441,458.818,463.217,467.551,471.992,476.516,481.060,485.507,489.957,494.465,499.079,503.696,508.194,512.715,517.323,521.747,526.094,530.464,534.733,538.797,542.957,546.961,550.872,554.636,558.288,561.875,565.456,567.621,570.908,574.211,577.506,580.788,583.956,587.078,590.221,593.379,596.532,599.491,602.449,605.382,608.272,611.057,613.874,616.570,619.265,621.857,624.312,626.768,629.133,631.431,633.642,635.561,637.834,641.397,643.930,646.847,649.836,653.279,656.452,661.291,664.953,668.342,673.488,676.316,678.690,680.705,682.594,684.281,674.406,676.035,676.563,676.496,681.092,681.118,680.652,679.736,678.081,370.265,738.289,739.980,741.490,742.994,745.010,748.009,752.114,756.006,760.076,764.077,770.122,776.177,782.191,788.212,792.218,794.238,795.730,797.044,798.472,799.557,800.217,800.413,800.415,800.390,800.442,800.498,800.526,800.047,799.200,798.098,796.580,794.745,792.735,790.697,787.018,780.996,776.956,770.896,765.178,761.257,759.230,756.213,752.180,748.161,744.088,740.095,736.032,732.005,728.100,726.335,724.912,723.916,723.225,723.219,725.472,722.867,734.030,735.707,737.160,738.495,740.119,681.846,679.171,676.322,673.370,667.467,662.423,659.742,657.726,655.682,652.079,649.900,646.673,643.531,640.680,638.100,635.224,632.374,630.132,626.401,623.904,621.893,616.198,614.354,612.922,611.165,609.044,607.861,605.562,604.554,603.721,602.394,601.097,599.751,598.359,597.114,595.299,593.355,591.750,589.859,587.915,585.391,582.620,578.541,574.436,570.641,569.090,567.984,566.769,565.940,565.391,565.118,565.109,565.346,565.732,566.282,566.978,567.769,568.764,570.043,571.528,573.313,575.473,577.854,581.829,585.796,588.772,592.009,596.865,599.999,602.197,603.991,605.325,606.175,606.583,606.585,606.115,605.229,603.875,601.788,598.808,597.293,596.609,596.422,596.633,597.102,597.772,598.668,599.598,600.978,602.557,604.277,607.450,610.481,613.308,615.966,619.962,622.808,627.155,631.585,634.254,638.171,640.581,642.786,644.703,646.378,647.184,647.517,647.340,646.959,646.454,645.820,644.901,643.552,641.813,639.925,637.778,635.438,631.940,628.478,624.908,622.179,618.100,613.918,609.664,605.760,612.245,611.681,610.390,609.142,606.936,606.144,605.825,605.643,605.903,606.541,607.356,608.555,609.800,611.477,613.041,615.209,617.972,620.985,624.147,628.915,633.884,638.837,642.419,647.715,652.998,658.148,661.374,666.130,670.174,674.603,679.056,683.521,686.418,689.840,692.690,695.692,698.230,700.579,703.506,706.410,709.438,712.043,714.327,717.260,719.771,721.061,722.656,724.103,725.298,726.365,727.006,208.482,206.826,205.941,205.845,206.260,207.267,208.301,209.738,211.073,212.229,213.113,213.978,214.842,215.709,216.503,217.198,217.751,217.908,218.057,218.005,217.758,217.315,216.677,215.844,214.812,213.870,212.785,211.566,210.077,208.303,206.357,203.486,200.640,197.919,196.371,194.080,192.578,191.390,190.373,189.565,188.986,188.651,188.517,188.390,188.516,188.841,189.469,190.075,190.864,192.222,193.516,195.249,197.151,199.239,201.527,203.934,206.541,209.296,212.138,215.166,218.205,221.359,224.510,227.643,230.910,234.174,237.512,240.840,244.197,247.597,250.933,254.387,257.754,261.032,264.305,267.607,270.962,274.294,277.597,280.838,283.945,286.978,289.860,292.741,295.645,298.559,301.469,304.363,307.088,309.733,312.368,315.037,317.397,319.207,321.287,323.252,325.062,326.750,328.312,329.334,330.065,330.667,331.123,331.510,331.915,332.325,332.736,333.147,333.541,333.754,333.940,334.127,334.312,334.498,334.688,334.850,334.991,335.150,335.310,335.472,335.632,335.795,335.986,336.206,336.394,336.614,336.860,337.073,337.254,337.439,337.628,337.998,338.460,338.913,339.465,340.018,340.966,342.087,343.254,344.378,345.873,347.406,349.090,350.923,352.786,354.759,356.893,359.116,361.483,363.969,366.478,363.198,366.019,367.844,369.782,121.030,118.697,115.755,113.037,108.962,105.493,103.081,99.061,93.750,88.412,84.547,80.651,74.865,68.932,64.731,59.796,53.754,47.685,41.638,35.641,29.653,23.563,17.466,11.377,5.347,-0.672,-6.676,-12.696,-18.713,-24.717,-30.087,-34.106,-38.080,-44.061,-50.062,-56.084,-62.127,-68.117,-74.120,-80.146,-86.153,-92.218,-98.184,-103.155,-109.028,-114.921,-120.878,-126.799,-131.813,-135.622,-141.296,-146.856,-150.892,-154.469,-157.933,-160.320,-163.152,-165.835,-168.307,-170.725,-173.644,-175.571,-177.266,-179.062,-180.336,-181.216,-181.499,-181.426,-181.160,-180.701,-180.159,-179.518,-178.525,-177.164,-175.566,-173.563,-171.237,-168.854,-166.123,-163.078,-159.269,-155.991,-152.599,-149.160,-145.446,-141.738,-136.005,-130.382,-124.682,-119.001,-113.383,-107.734,-103.857,-99.893,-95.835,-91.826,-87.801,-83.720,-79.599,-73.518,-67.562,-61.506,-55.669,-49.694,-43.786,-37.836,-31.957,-26.181,-20.335,-16.526,-12.716,-7.010,-1.359,2.909,6.490,9.970,13.400,18.381,21.605,24.648,27.589,31.718,35.970,40.128,44.235,48.225,50.583,54.093,57.608,61.129,64.644,68.350,70.924,73.727,76.736,80.581,83.836,87.104,90.311,93.510,96.789,100.211,104.254,108.258,114.372,118.934,122.934,126.771,130.533,134.126,137.547,140.784,143.984,148.707,153.348,156.687,159.927,162.673,165.269,168.982,172.571,176.004,178.130,179.990,181.906,184.084,185.963,188.143,190.243,191.398,193.143,194.760,196.259,197.718,199.162,200.601,202.033,203.400,204.689,205.970,207.215,372.959,374.697,376.898,379.962,383.180,386.556,389.934,394.978,398.288,401.491,406.147,410.715,415.205,419.591,424.038,428.518,433.016,437.487,442.056,446.612,451.306,455.902,460.525,465.003,469.473,473.840,477.526,480.404,482.596,484.686,486.490,487.386,487.926,488.285,488.318,488.191,487.843,487.312,486.560,485.944,485.547,485.442,485.492,485.812,486.296,486.910,487.765,489.047,490.677,492.496,494.501,496.635,498.953,501.308,503.752,506.212,508.636,510.965,513.168,515.187,517.027,518.763,520.372,521.753,522.495,523.440,523.752,523.884,524.027,524.167,524.115,523.868,523.523,522.989,522.309,521.542,520.629,519.211,517.610,516.335,514.915,513.144,511.219,508.464,505.293,502.091,498.849,495.610,492.359,489.073,485.763,482.970,481.200,479.721,478.459,477.424,476.238,475.514,474.567,473.983,473.343,472.773,472.299,471.870,471.297,470.703,469.733,468.832,467.482,466.225,464.677,463.107,461.373,459.518,457.478,455.294,452.910,449.297,446.330,443.064,438.991,434.842,430.719,426.491,422.197,417.913,413.646,409.352,404.945,400.548,396.225,392.018,388.318,384.392,380.583,376.855,374.035,371.855,369.908,368.113,366.439,365.034,363.889,362.823,361.957,361.380,360.700,360.227,359.936,359.839,359.838,360.021,360.213,360.396,360.550,360.673,360.781,360.821,360.869,360.958,361.043,361.118,361.089,360.848,360.418,359.903,359.393,358.779,358.057,357.275,356.252,354.865,352.903,350.575,348.333,346.334,343.490,340.644,334.636,328.703,324.534,320.391,316.371,312.316,306.157,301.055,296.962,290.975,284.890,278.861,272.909,266.936,260.974,255.031,249.076,243.141,237.130,231.114,225.106,219.171,215.172,212.890,211.386,209.872,208.755,207.340,213.687,210.919,209.777,359.247,358.443,356.829,354.950,353.968,353.383,353.064,352.783,352.836,352.913,352.929,352.943,353.356,354.063,355.170,356.757,359.126,359.965,475.279,473.655,470.522,468.728,467.328,466.813,466.254,465.386,465.085,464.502,463.924,464.378,465.174,466.782,467.384,676.345,679.027,684.359,689.637,645.969,642.968,640.956,639.103,637.508,636.186,634.008,632.701,631.159,629.636,628.362,626.434,624.408,622.230,619.964,618.224,615.487,612.780,609.740,606.495,603.162,600.005,597.524,593.727,591.067,587.058,582.893,578.752,574.513,570.237,566.471,563.404,558.748,555.367,550.271,545.004,539.805,534.581,529.376,524.182,520.360,514.936,509.559,504.025,498.355,492.731,487.062,481.308,475.555,469.676,463.780,458.024,452.159,446.321,440.350,434.448,428.400,422.522,416.659,410.523,404.629,398.476,392.463,386.451,380.426,374.412,368.358,362.310,356.243,350.165,344.212,338.078,331.928,325.825,319.725,313.562,307.456,301.349,295.185,289.028,282.905,276.760,270.642,264.476,258.371,252.258,246.120,240.009,233.895,227.757,221.640,215.509,209.366,203.266,197.143,190.984,184.849,178.700,172.513,166.388,160.270,154.136,147.963,141.794,135.654,129.498,123.247,117.091,110.888,104.726,98.600,92.455,86.232,80.009,73.803,67.652,61.486,55.297,49.169,43.016,36.890,32.559,28.553,24.590,20.669,15.692,11.304,6.191,0.525,-5.075,-10.684,-16.222,-21.730,-27.263,-32.789,-38.350,-42.689,-46.625,-52.463,-56.424,-60.418,-64.473,-68.528,-72.622,-76.747,-80.857,-84.920,-88.884,-92.765,-96.525,-100.727,-106.171,-111.700,-117.119,-122.455,-127.821,-133.232,-138.604,-142.787,-146.543,-150.363,-156.139,-160.056,-164.008,-170.067,-175.495,-179.529,-185.590,-191.670,-197.772,-203.885,-210.006,-216.106,-222.212,-228.339,-234.445,-240.551,-246.676,-252.857,-259.048,-265.160,-271.268,-277.375,-283.483,-289.590,-295.694,-301.791,-307.918,-314.024,-320.131,-326.239,-332.347,-338.454,-344.562,-350.672,-356.779,-362.886,-368.996,-375.103,-381.230,-387.348,-393.455,-399.562,-405.670,-411.778,-417.885,-423.992,-430.099,-436.206,-442.312,-448.419,-454.533,-460.640,-466.748,-472.855,-478.962,-485.064,-491.174,-497.272,-503.380,-509.486,-515.630,-521.734,-527.857,-533.965,-540.092,-546.197,-552.327,-558.460,-564.573,-570.664,-576.842,-583.046,-589.272,-595.322,-599.436,-603.451,-607.462,-611.415,-614.864,-617.571,-620.052,-622.281,-624.226,-625.963,-627.972,-630.811,-633.503,-636.197,-638.880,-641.518,-643.962,-646.087,-648.280,-650.411,-652.574,-654.629,-656.657,-658.566,-660.503,-662.463,-664.327,-666.147,-667.942,-669.625,-671.266,-672.875,-674.423,-675.973,-677.534,-679.037,-680.502,-681.963,-683.469,-684.956,-686.414,-687.874,-689.333,-690.797,-692.256,-693.716,-695.175,-696.634,-698.094,-699.553,-701.013,-702.473,-703.933,-705.392,-706.852,-708.312,-709.815,-711.280,-712.740,-714.199,-715.661,-717.121,-718.580,-720.040,-721.502,-722.999,-724.495,-725.990,-727.485,-728.944,-730.381,-731.819,-733.256,-734.692,-736.157,-737.582,-738.999,-740.413,-469.204,-471.962,-475.551,-480.723,-483.068,-486.089,-491.374,-497.421,-503.508,-509.560,-513.564,-516.024,-518.085,-521.522,-524.297,-527.297,-740.906,-741.615,-743.042,-744.451,-745.891,-747.352,-748.890,-750.415,-751.909,-753.355,-754.767,-756.232,-757.685,-759.177,-760.655,-762.112,-763.598,-765.058,-766.542,-767.993,-769.466,-770.959,-772.414,-773.886,-775.377,-776.823,-778.284,-779.763,-781.260,-782.772,-784.235,-785.710,-787.197,-788.696,-790.207,-791.663,-793.128,-794.604,-796.091,-797.587,-799.094,-800.610,-802.067,-803.533,-805.006,-806.482,-807.960,-809.437,-810.914,-812.324,-813.698,-815.071,-816.441,-817.810,-819.179,-820.543,-821.909,-823.279,-824.648,-826.018,-827.388,-828.715,-829.998,-831.212,-832.427,-833.642,-834.856,-836.063,-837.249,-838.434,-839.617,-840.799,-841.981,-843.162,-844.343,-845.522,-846.702,-847.883,-849.063,-850.243,-851.422,-852.599,-853.780,-854.961,-856.201,-857.462,-858.741,-859.974,-861.199,-862.437,-863.683,-864.930,-866.177,-867.426,-868.666,-869.889,-871.027,-872.149,-873.158,-874.072,-874.851,-875.440,-875.975,-876.377,-876.664,-876.881,-877.086,-877.289,-877.492,-877.694,-877.867,-877.981,-878.084,-878.123,-878.095,-878.001,-877.800,-877.530,-877.201,-876.840,-876.441,-876.042,-875.642,-875.242,-874.796,-874.218,-873.499,-872.595,-871.524,-870.601,-869.534,-867.776,-866.345,-864.644,-862.754,-860.590,-858.244,-854.743,-851.096,-847.738,-843.682,-840.812,-837.687,-834.424,-829.670,-824.897,-819.982,-814.973,-809.863,-804.836,-800.644,-797.067,-793.169,-787.668,-782.092,-776.474,-770.826,-765.127,-759.382,-753.594,-747.780,-741.932,-736.051,-730.161,-724.281,-718.412,-712.543,-706.675,-700.807,-694.938,-689.065,-683.197,-677.328,-671.460,-665.581,-659.736,-653.901,-648.071,-642.273,-636.476,-630.702,-624.936,-619.160,-613.444,-607.752,-602.037,-596.402,-590.786,-585.282,-579.824,-574.326,-570.696,-567.410,-562.490,-557.595,-554.519,-550.482,-547.612,-545.001,-542.602,-540.537,-537.584,-535.916,-534.554,-533.495,-532.458,-531.155,-529.878,-528.558,-527.466,-526.217,-524.848,-523.241,-521.319,-519.486,-517.370,-514.955,-511.766,-508.247,-505.335,-501.636,-497.837,-494.113,-490.493,-487.031,-482.700,-479.524,-476.577,-473.774,-471.179,-468.692,-465.353,-463.574,-461.662,-459.307,-457.305,-454.966,-452.103,-448.444,-444.923,-439.696,-434.387,-429.162,-423.906,-418.599,-413.326,-408.035,-402.783,-397.581,-392.266,-387.034,-381.723,-376.503,-371.185,-365.782,-360.476,-355.095,-349.659,-344.391,-339.060,-333.734,-328.400,-323.165,-317.783,-312.609,-307.443,-302.285,-297.004,-291.734,-288.015,-284.155,-278.390,-273.359,-269.422,-265.312,-261.287,-255.357,-249.402,-243.411,-237.358,-231.277,-226.542,-220.491,-214.343,-208.286,-202.202,-196.114,-190.076,-184.570,-178.735,-172.800,-166.784,-160.860,-154.790,-148.839,-142.754,-136.826,-130.803,-124.918,-119.000,-112.953,-106.936,-100.976,-95.043,-89.141,-182.730,-185.719,-191.757,-197.741,-203.837,-209.880,-215.929,-222.005,-226.140,-230.302,-234.313,-240.442,-246.475,-252.417,-258.358,-262.925,-266.920,-271.675,-276.088,-281.784,-287.420,-293.068,-298.588,-304.095,-309.525,-313.910,-319.133,-324.421,-329.620,-334.989,-340.260,-345.668,-350.932,-356.324,-361.545,-366.905,-372.136,-377.456,-382.901,-388.142,-393.437,-398.722,-403.951,-409.343,-414.558,-419.884,-425.178,-430.432,-435.692,-440.930,-446.209,-451.455,-456.484,-458.695,-460.776,-463.822,-465.780,-468.378,-470.257,-472.233,-474.620,-477.451,-480.271,-483.651,-486.593,-489.633,-493.070,-496.783,-501.264,-506.837,-510.929,-514.532,-518.008,-520.739,-523.095,-524.891,-527.021,-528.814,-530.617,-531.938,-532.599,-533.231,-534.251,-535.468,-536.918,-538.102,-539.406,-540.931,-542.792,-544.916,-547.179,-549.772,-553.713,-557.261,-560.174,-563.174,-566.382,-569.741,-573.274,-576.886,-582.247,-587.713,-593.214,-598.812,-604.453,-610.149,-615.911,-621.689,-627.504,-633.302,-639.101,-644.903,-650.703,-656.545,-662.377,-668.222,-674.096,-679.957,-685.832,-691.694,-697.556,-703.425,-709.287,-715.150,-721.012,-726.874,-732.739,-738.602,-744.465,-750.315,-756.145,-761.960,-767.738,-773.469,-779.165,-784.811,-790.392,-795.889,-801.291,-805.823,-811.010,-816.135,-821.133,-826.013,-830.798,-835.460,-840.031,-843.801,-846.606,-850.692,-854.647,-857.536,-859.909,-862.154,-864.585,-866.479,-868.174,-869.648,-871.829,-873.707,-874.855,-876.175,-876.896,-877.464,-878.279,-878.738,-879.246,-879.747,-880.246,-880.714,-881.156,-881.595,-882.008,-882.293,-882.490,-882.673,-882.749,-882.760,-882.770,-882.684,-882.567,-882.447,-882.324,-882.200,-882.078,-881.958,-881.838,-881.719,-881.583,-881.256,-880.729,-880.051,-879.213,-878.171,-877.050,-875.744,-874.435,-873.126,-871.856,-870.703,-869.576,-868.367,-867.160,-865.952,-864.740,-863.531,-862.301,-861.068,-859.835,-858.601,-857.371,-856.151,-854.946,-853.691,-852.434,-851.177,-849.962,-848.765,-847.563,-846.370,-845.150,-843.923,-842.690,-841.474,-840.262,-839.062,-837.851,-836.648,-835.450,-834.200,-832.901,-831.575,-830.243,-828.919,-827.563,-826.164,-824.778,-823.384,-822.048,-820.674,-819.291,-817.885,-816.459,-815.018,-813.583,-812.147,-810.670,-809.191,-807.702,-806.211,-804.712,-803.215,-801.741,-800.270,-798.846,-797.363,-795.868,-794.365,-792.864,-791.348,-789.835,-788.376,-786.914,-785.449,-783.971,-782.502,-781.007,-779.541,-778.071,-776.550,-775.038,-773.562,-772.096,-770.635,-769.166,-767.700,-766.229,-764.761,-763.279,-761.821,-760.363,-758.861,-757.374,-755.878,-754.392,-752.907,-751.391,-749.899,-748.394,-746.908,-745.425,-743.938,-742.453,-740.959,-739.474,-737.987,-736.496,-735.012,-733.519,-732.036,-730.609,-729.206,-727.792,-726.348,-724.893,-723.434,-721.968,-720.507,-719.041,-717.576,-716.116,-714.648,-713.187,-711.723,-710.262,-708.802,-707.334,-705.867,-704.391,-702.922,-701.451,-699.981,-698.512,-697.034,-695.572,-694.110,-692.628,-691.165,-689.690,-688.228,-686.758,-685.296,-683.833,-682.353,-680.886,-679.331,-677.761,-676.113,-674.357,-672.559,-670.716,-668.877,-667.036,-665.186,-663.330,-661.323,-659.274,-657.168,-655.026,-652.741,-650.510,-648.212,-645.886,-643.498,-640.884,-638.158,-635.416,-632.534,-629.499,-627.138,-625.037,-622.500,-618.871,-615.686,-611.827,-607.764,-603.429,-599.301,-595.129,-589.982,-583.884,-577.845,-571.695,-565.594,-559.401,-553.256,-547.063,-541.021,-534.810,-528.744,-522.562,-516.510,-510.487,-504.413,-498.303,-492.218,-486.171,-480.092,-474.071,-467.947,-461.691,-455.609,-449.343,-443.282,-437.121,-430.905,-424.900,-418.748,-412.547,-406.258,-400.021,-393.789,-387.750,-381.737,-375.584,-369.283,-363.059,-357.051,-350.771,-344.704,-338.571,-332.285,-326.219,-319.925,-313.900,-307.809,-301.759,-295.472,-289.458,-283.428,-277.145,-270.959,-264.837,-258.837,-252.796,-246.718,-240.688,-234.577,-228.542,-222.430,-216.307,-210.152,-204.059,-197.882,-191.782,-185.585,-179.468,-173.419,-169.459,-165.414,-161.327,-155.435,-149.530,-145.656,-141.830,-136.419,-130.884,-125.528,-120.257,-114.991,-109.667,-104.340,-98.872,-93.921,-90.072,-85.988,-81.955,-77.954,-73.786,-68.129,-64.030,-59.933,-55.905,-51.753,-46.060,-40.327,-36.302,-32.558,-27.039,-21.476,-15.860,-10.378,-4.910,0.554,6.123,11.737,15.588,19.516,23.533,27.597,31.723,35.768,41.839,47.922,52.663,58.841,64.973,71.004,77.210,83.376,89.481,95.757,101.853,108.032,114.246,120.361,126.652,132.778,138.893,145.086,151.237,157.296,163.499,169.680,175.842,181.991,188.157,194.297,200.427,206.642,212.774,219.088,225.149,231.154,237.357,243.461,249.706,255.732,261.859,267.856,273.915,280.130,286.289,292.268,298.340,304.592,310.710,316.684,322.803,328.958,335.052,341.167,347.130,353.271,359.464,365.501,371.596,377.814,383.993,390.051,396.169,402.388,408.585,414.499,420.604,426.446,432.264,438.270,444.092,449.956,455.851,461.819,467.837,473.666,479.566,485.291,491.156,496.855,502.391,508.152,513.786,519.326,524.842,530.110,535.526,540.867,546.105,550.711,555.783,560.683,565.526,570.203,574.838,579.279,583.669,587.195,591.210,595.094,598.923,602.735,606.426,609.920,613.251,615.329,618.310,621.190,623.836,626.325,627.821,629.997,632.056,634.058,636.136,637.795,639.258,641.005,642.927,644.960,646.973,648.905,650.657,-605.340,-608.030,-609.902,-611.199,-612.230,-613.006,-613.438,-613.435,-612.999,-612.067,-610.679,-608.341,-606.226,-603.662,-599.829,-595.878,-592.565,-588.274,-583.915,-579.535,-575.059,-570.483,-565.951,-561.294,-556.520,-551.669,-546.620,-541.501,-536.459,-531.420,-526.250,-521.041,-515.750,-510.486,-505.219,-499.933,-494.621,-489.186,-483.760,-478.238,-472.594,-466.963,-461.368,-455.647,-450.014,-444.255,-438.420,-432.464,-426.686,-420.911,-414.944,-409.119,-403.261,-399.179,-395.160,-389.092,-383.048,-379.051,-374.927,-370.930,-366.961,-363.102,-359.297,-355.518,-351.803,-348.178,-344.642,-341.235,-336.248,-333.145,-328.496,-323.906,-319.412,-314.812,-310.185,-306.856,-303.294,-299.641,-294.318,-290.683,-286.871,-282.911,-277.020,-273.075,-269.068,-264.959,-260.793,-256.535,-252.237,-248.181,-244.133,-240.110,-236.165,-232.287,-228.378,-224.581,-219.198,-213.915,-209.536,-204.191,-199.054,-193.735,-188.614,-183.476,-178.291,-172.994,-167.753,-162.551,-157.306,-153.358,-149.412,-145.571,-141.571,-136.946,-131.622,-127.590,-123.127,-117.102,-110.894,-104.720,-98.519,-92.384,-86.918,-82.507,-78.445,-74.390,-68.620,-62.679,-57.023,-51.311,-45.780,-40.202,-34.405,-28.709,-23.100,-17.512,-11.615,-5.898,0.007,4.170,9.280,15.385,21.533,27.512,32.912,37.084,41.330,47.366,53.454,59.475,65.538,71.558,77.629,83.918,90.183,96.244,102.447,108.669,114.777,121.011,127.260,133.376,139.536,145.777,151.885,158.020,164.150,170.272,176.555,182.706,188.908,195.024,201.169,207.183,213.393,219.406,225.666,231.835,238.087,244.348,250.607,256.848,263.060,269.074,275.082,281.299,287.522,293.701,299.954,306.124,312.141,318.363,324.561,330.818,336.993,343.166,349.297,355.463,361.600,367.753,373.976,380.171,386.330,392.673,398.949,405.149,411.348,417.626,423.822,429.832,436.049,441.834,445.993,449.915,454.477,460.448,466.202,471.790,477.312,483.009,488.523,494.289,499.990,505.771,511.559,517.337,523.207,528.087,533.623,537.615,543.326,547.951,554.099,560.291,566.376,572.434,578.735,584.943,591.172,597.207,603.379,609.396,615.487,621.617,627.727,633.847,639.950,646.064,652.121,658.187,664.243,659.811,662.273,663.586,664.649,665.342,665.734,665.749,520.996,519.331,517.442,514.465,513.024,511.816,510.430,509.011,507.148,506.561,506.291,506.321,506.197,505.658,610.721,609.572,607.988,606.548,604.668,602.632,600.615,598.743,597.055,595.908,594.994,594.537,594.456,594.836,595.586,596.978,599.680,602.234,603.453,604.455,605.297,606.190,607.072,607.951,608.631,608.631,608.206,607.498,606.485,605.203,603.668,602.147,600.366,598.483,596.466,593.425,590.416,587.461,583.975,579.806,576.348,572.803,569.378,564.352,559.439,555.820,552.895,548.509,544.049,539.638,535.138,530.697,528.036,526.057,524.761,511.641,509.312,504.716,500.077,495.477,490.850,486.154,481.443,476.786,472.172,467.556,462.871,458.183,453.493,448.797,444.102,439.285,434.655,429.907,425.109,420.361,415.637,410.912,406.129,401.371,396.567,391.816,387.068,382.225,377.543,372.781,368.099,363.423,358.795,355.231,352.333,348.576,346.053,344.183,342.936,342.126,341.764,341.971,342.664,343.771,345.202,347.238,350.338,352.236,353.172,353.684,353.804,353.531,352.854,351.726,350.203,348.324,346.098,343.648,340.260,335.196,331.602,327.907,322.367,316.893,312.944,310.130,304.436,300.547,296.693,292.756,288.794,284.762,280.758,314.511,312.630,311.889,311.532,311.601,312.169,313.211,314.678,316.442,318.382,320.391,322.410,-375.660,-378.287,-379.829,-380.967,-381.711,-382.093,-382.217,-382.227,-382.099,-381.817,-381.445,-381.202,-381.114,-381.171,-381.288,-381.351,-381.350,-381.312,-381.265,-381.207,-381.151,-381.127,-381.176,-381.277,-381.410,-381.594,-381.800,-382.022,-382.238,-382.456,-382.676,-382.907,-383.136,-383.380,-383.642,-383.903,-384.215,-384.536,-384.862,-385.184,-385.507,-385.799,-386.090,-386.379,-386.665,-386.949,-387.244,-387.531,-387.789,-388.004,-388.193,-388.362,-388.492,-388.562,-388.624,-388.663,-388.672,-388.665,-388.613,-388.530,-388.449,-388.367,-388.286,-388.203,-388.093,-387.957,-387.820,-387.723,-387.661,-387.638,-387.743,-387.856,-388.030,-388.227,-388.403,-388.505,-388.601,-388.696,-388.736,-388.734,-388.683,-388.490,-388.119,-387.557,-386.864,-385.866,-384.686,-383.533,-382.837,-382.507,514.061,516.448,519.723,524.597,493.276,495.973,500.107,501.460,502.450,502.998,503.020,502.512,501.501,500.186,498.533,496.619,494.623,492.591,490.674,522.043,520.032,516.025,513.523,278.242,275.176,269.074,263.015,256.834,250.724,244.530,238.314,232.187,226.161,220.117,213.856,207.641,201.633,195.458,189.406,183.089,176.966,170.709,164.568,158.358,152.263,146.184,140.083,133.921,127.574,121.501,115.440,109.424,103.417,97.266,91.115,85.049,78.734,72.624,66.447,60.383,54.092,47.979,41.911,36.400,31.200,25.090,19.091,13.021,7.027,1.174,-4.344,-8.276,-12.064,-17.815,-23.456,-29.251,-34.944,-40.616,-46.358,-51.912,-57.712,-63.522,-69.466,-75.348,-80.936,-85.105,-89.089,-94.979,-99.242,-103.334,-109.344,-115.432,-121.685,-126.274,-130.382,-134.500,-138.523,-142.510,-146.352,-150.064,-153.675,-159.023,-164.337,-169.574,-174.958,-180.121,-185.248,-190.333,-195.508,-200.639,-205.807,-211.019,-216.072,-219.710,-223.618,-229.385,-233.246,-237.096,-241.020,-245.085,-249.204,-253.621,-257.811,-261.951,-266.154,-270.142,-274.273,-278.392,-282.578,-286.450,-290.370,-294.267,-298.188,-301.764,-305.356,-308.846,-312.264,-315.536,-319.518,-324.180,-328.843,-333.436,-338.028,-342.700,-346.115,-349.486,-353.202,-356.970,-360.649,-364.576,-368.498,-372.463,-376.588,-380.749,-384.768,-388.977,-393.072,-397.139,-401.241,-405.526,-409.422,-413.462,-419.199,-425.015,-430.862,-436.759,-442.490,-448.350,-454.220,-460.031,-465.817,-471.299,-476.944,-482.525,-488.150,-493.715,-499.248,-504.600,-509.917,-515.217,-520.474,-525.707,-530.856,-535.943,-541.028,-546.065,-551.022,-555.930,-560.704,-565.372,-569.964,-574.424,-578.910,-583.220,-587.534,-591.705,-595.719,-599.550,-603.223,-606.762,-610.162,-612.766,-615.413,-618.379,-621.267,-624.053,-628.391,-626.893,-623.813,-620.615,-617.291,-613.957,-607.344,-606.863,-606.079,-604.992,-603.505,-601.755,-840.171,-839.876,-839.120,-837.883,-835.953,-832.972,-830.523,-828.350,-824.206,-820.130,-816.093,-813.075,-809.306,-805.520,-801.798,-798.375,-794.956,-791.728,-788.551,-786.637,-783.776,-780.969,-778.056,-775.162,-772.204,-769.193,-766.164,-763.383,-760.281,-757.014,-753.763,-751.055,-748.161,-745.143,-740.497,-735.781,-730.993,-727.692,-724.219,-720.575,-715.021,-709.480,-703.997,-700.417,-696.412,-691.191,-686.030,-682.763,-679.600,-674.891,-671.415,-668.609,-666.052,-663.645,-661.455,-658.304,-655.171,-652.199,-649.318,-646.460,-643.594,-640.734,-637.828,-634.775,-632.585,-630.242,-627.863,-625.278,-622.481,-619.356,-616.030,-612.554,-608.900,-605.201,-601.350,-597.322,-593.288,-589.176,-585.176,-579.080,-572.882,-566.797,-560.783,-554.586,-548.506,-542.403,-536.390,-532.385,-529.223,-526.318,-523.685,-521.279,-519.089,-517.118,-514.818,-511.370,-507.842,-504.616,-501.951,-497.831,-493.697,-489.414,-485.136,-480.748,-476.464,-472.169,-467.737,-463.307,-458.952,-454.695,-450.410,-446.108,-442.010,-438.020,-434.019,-430.063,-426.082,-422.076,-418.406,-415.358,-410.756,-406.980,-402.182,-397.779,-394.269,-389.196,-384.177,-379.310,-374.539,-371.589,-368.928,-366.384,-344.445,-341.866,-339.084,-336.128,-333.069,-329.640,-326.296,-322.187,-318.050,-314.095,-308.192,-302.169,-296.168,-290.250,-284.384,-278.459,-272.477,-266.648,-260.751,-256.689,-250.898,-245.160,-239.337,-233.339,-228.761,-222.740,-216.726,-210.585,-204.470,-198.346,-192.271,-186.342,-180.245,-174.146,-168.045,-161.976,-155.996,-149.899,-143.778,-137.848,-131.899,-125.773,-119.694,-113.538,-107.646,-101.629,-95.652,-89.717,-83.811,-77.838,-71.838,-65.713,-59.747,-53.599,-47.480,-41.428,-35.527,-29.493,-23.603,-17.508,-11.434,-5.575,0.527,6.367,12.197,18.058,23.984,29.883,35.998,41.950,47.951,53.990,59.983,65.853,71.714,77.694,83.757,89.864,96.040,102.011,107.905,113.758,119.764,125.664,131.440,137.217,143.237,149.013,154.957,160.723,166.454,172.232,177.911,183.564,189.033,194.579,200.108,205.726,210.469,215.860,221.204,223.639,225.421,226.446,227.177,227.646,227.688,227.304,226.560,222.400,225.421,227.565,229.431,231.609,233.709,-382.677,-382.863,-383.074,-383.228,-383.630,-384.220,-384.806,-385.594,-386.754,-388.040,-389.473,-390.936,-392.389,-393.842,-395.266,-396.620,-397.925,-399.213,-400.501,-401.669,-402.803,-403.881,-404.894,-405.945,-407.073,-408.329,-409.685,-411.161,-412.850,-414.651,-416.590,-418.531,-420.203,-422.710,-425.241,-427.769,-430.298,-432.819,-435.293,-437.762,-440.247,-442.723,-445.145,-447.512,-449.864,-452.146,-454.448,-456.839,-459.224,-461.616,-464.126,-466.778,-469.174,-472.152,-475.198,-478.371,-481.480,-484.469,-486.609,-488.051,-489.721,-491.060,-493.225,-495.739,-497.755,-499.996,-502.425,-506.017,-509.926,-514.496,-519.932,-525.719,-531.470,-537.239,-543.056,-548.891,-554.698,-560.528,-566.317,-572.140,-577.939,-583.717,-589.506,-595.275,-601.043,-606.777,-612.502,-618.181,-623.884,-629.572,-635.234,-640.935,-646.591,-652.247,-657.885,-663.525,-669.229,-674.902,-680.654,-686.427,-692.248,-698.051,-703.875,-709.703,-715.595,-721.472,-727.370,-733.261,-739.147,-745.022,-750.900,-756.789,-762.666,-768.681,-774.726,-780.761,-786.786,-792.674,-798.682,-804.590,-810.455,-816.299,-818.662,-820.023,-821.802,-822.574,-823.362,-823.931,-823.799,-823.395,-815.245,-818.068,-819.758,-821.615,-822.926,-824.067,-825.122,-827.923,-825.914,-824.242,-822.399,-820.820,-818.816,-815.776,-809.855,-805.937,-799.998,-794.035,-788.067,-782.093,-776.150,-770.188,-764.218,-758.211,-752.206,-746.234,-740.269,-734.340,-728.407,-722.534,-716.708,-710.750,-704.834,-699.047,-693.163,-687.433,-681.635,-675.944,-670.250,-664.559,-658.846,-653.191,-647.433,-641.739,-636.105,-630.410,-624.674,-619.037,-613.393,-607.700,-601.978,-596.289,-590.684,-584.885,-579.127,-573.320,-567.545,-561.777,-555.996,-550.163,-544.354,-538.521,-532.628,-526.781,-520.938,-515.066,-509.230,-504.280,-502.274,-500.001,-498.229,-496.641,-494.810,-492.274,-490.720,-488.815,-485.825,-482.815,-479.798,-476.816,-473.824,-470.828,-467.828,-466.115,-464.755,-463.082,-460.787,-458.415,-455.907,-453.441,-451.005,-448.488,-446.043,-443.536,-441.026,-438.592,-436.085,-433.653,-431.147,-428.771,-426.589,-424.490,-422.424,-420.484,-418.654,-416.896,-415.255,-413.769,-412.638,-411.428,-410.183,-408.916,-407.645,-406.429,-405.224,-404.097,-402.885,-401.623,-400.292,-398.889,-397.458,-395.962,-394.519,-393.154,-391.969,-390.921,-390.206,-389.673,-389.279,-388.996,-388.909,-389.003,-389.263,-389.690,-390.269,-391.006,-391.731,-392.389,-392.977,-393.485,-393.876,-394.096,-394.146,-394.156,-394.018,-393.831,-393.647,-393.458,-393.268,-393.108,-393.028,-392.965,-392.903,-392.882,-392.899,-393.034,-393.162,-393.276,-393.360,-393.445,-393.531,-393.583,-393.610,-393.641,-393.671,-393.699,-393.655,-393.586,-393.489,-393.312,-393.075,-392.845,-392.583,-392.270,-391.958,-391.711,-391.482,-391.249,-391.013,-390.781,-390.544,-390.247,-389.959,-389.672,-389.385,-389.099,-388.813,-388.528,-388.246,-387.959,-387.673,-387.405,-387.136,-386.871,-386.635,-386.465,-386.335,-386.212,-386.090,-386.018,-385.968,-385.919,-385.962,-386.007,-386.050,-386.093,-386.135,-386.177,-386.221,-386.267,-386.357,-386.468,-386.606,-386.807,-386.699,-386.219,-385.437,-384.200,-382.777,-381.032,-369.811,-372.839,-377.131,-379.024,-387.255,-388.786,-390.265,-391.976,-393.844,-396.747,-390.476,-387.664,-386.079,-384.963,-384.114,-383.556,-382.839,-388.473,-389.550,-391.286,-393.341,-395.320,-396.946,-398.260,-398.857,-399.446,-399.885,-400.282,-400.462,-400.435,-399.822,-398.747,-397.209,-395.054,-391.886,-390.529,-389.632,-389.370,-389.574,-390.102,-381.596,-379.521,-377.389,-374.862,-371.952,-368.929,-364.931,-358.806,-352.703,-346.628,-340.492,-334.414,-328.377,-322.293,-316.218,-310.037,-304.024,-297.928,-291.914,-285.865,-279.826,-273.821,-267.663,-261.635,-255.593,-249.450,-243.337,-239.312,-236.431,-234.738,-233.074,-231.198,-229.628,-228.628,-231.344,-233.310,-235.610,-237.782,-240.197,-243.176,-246.178,-250.261,-256.321,-262.417,-268.566,-274.697,-280.740,-286.836,-292.989,-299.144,-305.298,-311.481,-317.639,-323.807,-330.003,-336.163,-342.350,-348.538,-354.685,-360.813,-366.923,-371.304,-374.234,-377.014,-379.599,-381.030,-382.495,-373.798,-376.776,-379.099,-380.734,-383.787,-385.306,-386.649,-388.055,-387.592,-385.592,-383.309,-381.291,-379.306,-376.026,-373.018,-237.637,-234.688,-232.558,-230.807,-228.850,-227.202,-225.966,-225.326,-225.123,-225.387,-225.973,-226.999,-228.266,-229.366,-231.010,-232.753,-234.683,-236.823,-239.069,-241.294,-243.573,-245.794,-248.055,-250.372,-252.738,-255.202,-257.755,-260.459,-263.356,-265.402,-267.864,-270.201,-273.892,-277.625,-280.517,-284.670,-288.695,-292.603,-295.424,-297.882,-301.203,-303.213,-305.058,-306.755,-308.108,-309.109,-310.176,-310.790,-311.184,-311.422,-311.357,-311.108,-310.647,-309.929,-309.045,-307.949,-306.666,-304.771,-302.885,-301.026,-299.254,-297.585,-296.613,-295.907,-294.943,-294.574,-294.291,-294.170,-294.208,-294.466,-294.918,-295.372,-296.026,-296.643,-297.649,-298.575,-299.665,-300.915,-302.263,-303.747,-305.524,-307.502,-309.715,-312.148,-314.888,-317.853,-320.946,-325.472,-328.295,-330.871,-334.605,-338.465,-342.234,-344.595,-346.684,-348.545,-350.268,-351.783,-353.174,-355.186,-357.174,-359.155,-361.112,-363.099,-365.124,-367.114,-369.089,-373.996,-371.034,-369.223,-367.690,-366.496,-365.691,-365.300,-365.267,-365.778,-366.954,-368.717,-370.626,-372.298,-374.634,-377.056,-379.490,-323.243,-323.949,-323.931,-323.532,-322.744,-321.537,-320.145,-380.178,-381.581,-384.456,-387.401,-390.463,-393.653,-396.835,-400.151,-402.522,-405.133,-409.110,-413.080,-416.999,-420.973,-424.986,-429.139,-433.241,-437.377,-441.499,-444.291,-446.948,-450.456,-453.912,-457.232,-459.796,-461.703,-463.399,-464.791,-465.856,-466.679,-467.349,-467.787,-468.001,-467.899,-467.439,-466.622,-465.461,-464.028,-462.415,-460.649,-458.558,-456.509,-454.297,-451.901,-449.400,-445.675,-442.659,-438.528,-434.922,-430.646,-426.453,-422.296,-418.888,-414.989,-411.152,-407.465,-403.752,-400.088,-396.592,-393.133,-389.727,-386.349,-383.055,-379.781,-377.370,-374.816,-372.125,-369.357,-366.544,-363.533,-358.943,-355.070,-351.727,-346.733,-343.038,-338.208,-334.550,-330.819,-327.104,-321.475,-315.814,-310.417,-304.637,-298.709,-292.861,-287.048,-281.229,-275.401,-269.477,-263.556,-257.662,-251.744,-245.846,-239.953,-234.059,-228.254,-222.333,-216.433,-210.661,-204.904,-199.065,-193.306,-187.549,-181.734,-218.850,-216.529,-215.353,-214.480,-214.142,-214.374,-215.109,-216.302,-217.827,-219.967,-221.870,-223.878,-225.904,-228.870,-232.869,-240.888,-238.398,-237.265,-236.483,-236.153,-236.393,-237.152,-238.350,-239.944,-241.792,-244.547,671.608,668.596,662.498,656.461,650.351,644.285,638.089,632.031,625.911,619.831,613.740,607.689,601.464,595.311,589.064,582.802,576.593,570.445,564.233,558.266,552.146,545.906,539.927,533.945,528.031,523.804,520.012,514.263,508.335,502.455,497.938,492.145,486.589,480.881,475.409,469.875,464.113,459.871,455.850,451.718,445.776,439.841,434.266,429.295,424.364,419.249,413.082,406.929,400.678,394.489,388.418,382.300,375.943,369.827,363.658,357.349,351.273,345.035,338.732,332.535,326.468,320.341,314.192,308.044,301.957,295.949,289.913,326.236,323.279,321.275,319.351,317.611,316.202,315.309,314.962,315.146,315.881,317.076,318.650,320.440,322.558,289.903,292.693,296.429,300.117,304.634,308.119,313.310,637.191,637.976,639.434,639.738,639.616,639.147,638.314,635.764,635.920,635.705,635.097,368.448,365.820,362.982,360.131,357.131,354.081,351.079,348.230,345.536,342.103,337.102,333.269,355.469,355.906,355.916,355.454,354.505,353.118,351.601,354.565,356.855,358.861,360.506,361.344,361.767,361.819,361.523,355.690,358.587,362.771,366.469,370.007,332.810,330.556,327.689,323.348,318.919,314.466,309.950,305.413,300.837,296.352,291.915,287.509,283.058,278.578,274.219,269.828,265.464,261.002,256.462,252.001,247.646,243.102,238.656,234.214,229.827,225.299,220.873,216.262,211.858,207.459,202.861,198.240,193.676,189.181,184.579,179.977,175.396,171.027,166.448,162.042,157.454,153.052,148.653,144.075,139.644,135.204,130.572,126.179,121.793,117.393,112.997,108.590,104.084,99.555,95.058,90.563,86.102,81.637,77.136,72.679,68.217,63.710,59.244,54.782,50.297,45.831,41.365,36.898,32.472,28.037,23.600,19.164,14.719,10.279,5.877,1.445,-2.971,-7.354,-11.738,-16.147,-20.526,-24.943,-29.371,-33.728,-38.115,-42.528,-46.913,-51.227,-55.568,-59.890,-64.214,-68.574,-72.989,-77.343,-81.683,-86.024,-90.353,-94.684,-99.051,-103.379,-107.658,-112.152,-116.672,-121.443,-126.207,-129.776,-133.218,-136.881,-141.923,-145.737,-149.525,-153.527,-157.725,-161.746,-165.833,-169.898,-175.910,-182.165,-186.163,-190.764,-196.055,-202.047,-207.913,-211.781,-215.483,-218.120,-220.437,-222.455,-223.999,-224.691,-225.266,-225.415,-225.632,-225.779,-225.933,-226.233,-226.633,-227.063,-227.500,-227.929,-228.461,-229.118,-229.872,-230.620,-231.458,-232.247,-233.134,-234.516,-235.719,-237.059,-239.044,-241.035,-242.875,-244.696,-246.350,-247.629,-248.719,-249.796,-250.785,-251.628,-252.318,-252.758,-252.972,-252.918,-252.677,-252.202,-251.617,-250.764,-249.344,-247.900,-246.404,-244.876,-243.220,-241.555,-239.892,-238.173,-236.462,-234.768,-233.076,-231.453,-229.940,-228.633,-227.585,-226.577,-225.578,-224.817,-224.484,-224.042,-223.604,-223.223,-222.955,-222.818,-222.781,-222.757,-222.915,-223.229,-223.588,-223.950,-224.309,-224.763,-223.824,-225.430,-226.865,-229.256,-231.609,-234.491,-238.419,-223.210,-222.965,-222.769,-222.478,-222.185,-222.085,-222.080,-222.073,-221.976,-221.707,-221.248,-220.501,-219.574,-218.745,-217.760,-216.643,-215.250,-213.664,-211.850,-209.094,-206.227,-203.955,-201.606,-199.228,-195.458,-191.661,-187.835,-183.796,-180.961,-177.963,-174.261,-171.026,-166.193,-161.305,-156.266,-151.161,-145.870,-142.025,-138.308,-134.476,-130.552,-126.571,-122.548,-118.438,-114.250,-110.045,-105.813,-101.559,-97.294,-93.046,-88.365,-82.180,-76.123,-70.150,-64.039,-58.055,-54.122,-48.858,-43.045,-37.277,-31.504,-25.677,-19.911,-14.189,-8.503,-2.907,2.639,8.166,13.602,18.995,24.446,29.909,35.238,40.691,45.990,51.309,54.430,57.103,61.497,67.020,72.467,75.933,79.535,70.705,68.172,63.046,57.869,54.311,-223.173,-223.332,-223.494,-223.626,-223.618,-227.876,-227.327,-226.807,-226.017,-225.218,-224.409,-262.685,-262.117,-261.122,-259.760,-258.322,-256.484,-254.143,-251.554,-248.756,-245.699,-241.640,-235.538,-229.505,-223.487,-217.259,-211.133,-205.127,-199.117,-193.026,-186.965,-180.943,-174.821,-168.750,-162.613,-156.381,-150.295,-143.993,-137.685,-131.443,-125.266,-119.091,-112.928,-106.782,-100.651,-94.460,-88.255,-82.203,-76.066,-69.758,-63.591,-57.494,-51.309,-45.008,-38.720,-32.569,-26.261,-20.215,-14.175,-8.113,-1.975,4.040,10.192,16.228,22.539,28.751,34.869,40.869,47.031,53.264,59.494,65.530,71.729,77.852,84.016,90.346,96.474,102.647,108.945,115.211,121.309,127.336,133.450,139.714,145.957,152.022,158.072,164.391,170.441,176.593,182.639,188.836,195.007,201.252,207.287,213.371,219.415,225.441,231.666,237.866,244.091,250.172,256.251,262.334,268.473,274.634,280.728,286.800,293.052,299.287,305.479,311.654,317.736,323.768,327.940,330.901,333.744,336.138,337.956,339.122,339.955,330.725,333.633,336.453,338.323,339.722,340.816,341.569,342.053,337.594,336.730,335.466,333.945,332.443,330.696,328.740,325.800,321.827,318.217,344.952,343.402,341.499,339.362,336.956,334.389,332.091,329.046,316.675,313.674,307.631,301.497,295.445,289.348,283.339,277.308,271.124,265.063,258.924,252.683,246.625,240.460,234.319,228.219,222.135,215.863,209.783,203.691,197.690,191.490,185.384,179.353,173.247,166.977,160.904,154.827,148.826,142.774,136.773,130.496,124.221,117.934,111.894,105.654,99.400,93.389,87.171,80.959,74.710,68.504,62.257,56.003,49.926,43.641,37.623,31.485,25.250,19.242,13.049,6.823,0.542,-5.738,-11.991,-18.133,-24.217,-30.344,-36.441,-42.539,-48.636,-54.742,-60.844,-66.945,-73.051,-79.148,-85.244,-91.342,-97.432,-103.519,-109.609,-115.700,-121.793,-127.887,-133.983,-140.080,-146.181,-152.285,-158.404,-164.508,-170.611,-176.718,-182.820,-188.926,-195.061,-201.166,-207.271,-213.408,-219.427,-225.672,-231.893,-237.935,-243.976,-248.023,-251.713,-255.702,-261.579,-264.673,-268.603,-271.463,-273.262,-278.144,-264.685,-266.457,-267.382,-268.070,-268.248,-267.982,-267.326,-278.410,-275.615,-272.681,-269.647,-266.544,-262.816,-259.505,-582.029,-580.866,-579.762,-579.484,-579.696,-580.299,-581.216,-582.811,-584.675,-586.784,-589.285,-591.910,-595.563,-598.492,-601.472,-606.050,-610.594,-615.324,-619.998,-624.729,-629.750,-634.696,-639.741,-644.874,-650.049,-655.270,-660.532,-665.771,-670.979,-676.190,-681.401,-686.643,-691.850,-697.088,-712.998,-718.317,-723.608,-734.155,-749.987,-755.383,-760.830,-764.809,-770.375,-775.969,-781.585,-787.153,-792.736,-798.307,-804.076,-807.916,-811.961,-816.060,-820.211,-824.447,-828.519,-832.624,-836.452,-839.719,-842.862,-846.313,-849.610,-852.589,-857.155,-861.615,-866.143,-869.142,-871.787,-875.712,-879.614,-883.348,-886.213,-889.719,-892.881,-895.253,-897.112,-898.733,-900.110,-901.246,-902.395,-903.319,-904.525,-905.694,-906.795,-907.821,-908.700,-909.442,-910.092,-910.707,-911.259,-911.762,-912.267,-912.716,-913.163,-913.648,-914.181,-914.738,-915.295,-915.826,-916.355,-916.866,-917.350,-917.790,-918.230,-918.669,-919.109,-919.548,-920.012,-920.496,-921.007,-921.519,-922.030,-922.512,-922.949,-923.357,-923.741,-924.171,-924.607,-925.064,-925.521,-925.977,-926.432,-926.896,-927.359,-927.820,-928.275,-928.738,-929.145,-929.561,-929.966,-915.836,-914.961,-913.587,-911.643,-910.782,-910.546,-910.471,-910.559,-910.748,-910.946,-911.303,-911.811,-912.487,-913.565,-915.140,-917.155,-918.829,-929.918,-930.177,-930.699,-931.217,-931.743,-932.267,-932.793,-933.325,-933.853,-934.372,-934.893,-935.415,-935.937,-936.433,-936.895,-937.350,-937.814,-938.268,-938.731,-939.202,-939.664,-940.133,-940.548,-940.936,-941.298,-941.649,-942.003,-942.323,-942.629,-942.886,-943.085,-943.261,-943.403,-943.497,-943.527,-943.490,-943.362,-943.081,-942.611,-941.958,-941.207,-940.393,-939.501,-938.536,-937.433,-936.219,-934.895,-933.533,-932.034,-930.384,-928.576,-926.696,-924.744,-922.690,-920.585,-918.394,-916.172,-913.852,-911.523,-909.186,-906.858,-904.585,-902.336,-900.197,-898.151,-896.278,-894.956,-893.876,-892.582,-891.468,-890.935,-890.329,-889.901,-889.589,-889.360,-889.172,-889.050,-889.008,-889.005,-889.070,-889.134,-889.198,-889.264,-889.330,-889.395,-889.458,-889.418,-889.315,-889.159,-888.856,-888.378,-887.713,-886.871,-885.912,-884.688,-883.338,-881.747,-880.015,-878.083,-875.998,-874.354,-872.549,-869.954,-866.975,-863.912,-860.847,-857.788,-854.639,-852.460,-850.726,-849.602,-847.775,-845.941,-844.156,-843.166,-841.818,-851.200,-848.566,-846.629,-844.610,-842.572,-840.627,-838.822,-837.135,-835.692,-834.518,-833.660,-833.147,-833.034,-833.277,-833.267,-833.220,-846.396,-846.776,-847.416,-848.452,-849.452,-850.595,-852.081,-854.488,-856.989,-858.795,-860.780,-863.773,-866.914,-870.033,-873.087,-876.014,-878.782,-880.439,-881.833,-883.831,-884.932,-885.991,-887.429,-888.817,-890.143,-891.334,-892.364,-893.221,-893.850,-894.332,-894.441,-894.476,-894.383,-894.135,-893.936,-893.824,-893.740,-893.693,-893.644,-893.651,-893.673,-893.694,-893.789,-893.924,-894.151,-894.529,-895.094,-895.787,-896.650,-897.731,-899.041,-900.130,-901.609,-903.597,-905.695,-907.927,-910.214,-912.521,-914.890,-917.262,-919.595,-921.893,-924.112,-926.253,-928.331,-930.304,-932.234,-933.960,-935.657,-937.259,-938.736,-940.250,-941.661,-942.484,-943.556,-944.474,-945.055,-945.733,-946.288,-946.778,-947.198,-947.572,-947.819,-948.002,-948.141,-948.166,-948.179,-948.082,-947.864,-947.570,-947.176,-946.757,-946.281,-945.772,-945.286,-944.821,-944.356,-943.897,-943.439,-943.027,-942.613,-942.200,-941.781,-941.277,-940.786,-940.312,-939.834,-939.360,-938.887,-938.386,-937.888,-937.384,-936.878,-936.373,-935.875,-935.382,-934.930,-934.471,-934.017,-933.563,-933.109,-932.655,-932.201,-931.745,-931.292,-930.838,-930.384,-929.930,-929.481,-929.023,-928.570,-928.116,-927.660,-927.207,-926.752,-926.298,-925.844,-925.391,-924.935,-924.481,-924.027,-923.561,-923.076,-922.592,-922.108,-921.636,-921.166,-920.699,-920.231,-919.763,-919.294,-918.828,-918.362,-917.895,-917.429,-916.933,-916.372,-915.741,-915.099,-914.455,-913.802,-913.030,-912.119,-911.194,-910.246,-909.144,-908.170,-906.668,-905.418,-904.073,-902.595,-900.990,-899.245,-897.330,-895.237,-892.113,-889.756,-887.264,-883.503,-879.733,-875.789,-871.741,-867.622,-864.465,-861.465,-858.386,-855.133,-851.738,-848.313,-844.671,-840.941,-837.107,-833.065,-829.129,-825.064,-821.065,-816.946,-812.828,-808.758,-804.643,-800.508,-796.467,-792.581,-787.020,-781.259,-775.643,-769.995,-766.221,-760.630,-755.162,-749.836,-744.310,-738.975,-733.682,-728.381,-723.078,-717.869,-712.432,-707.233,-701.950,-696.517,-691.136,-685.960,-680.730,-675.535,-670.361,-665.179,-659.997,-654.798,-649.684,-644.563,-639.526,-634.400,-629.321,-624.280,-619.416,-614.533,-611.375,-608.386,-604.007,-599.794,-595.640,-591.537,-587.552,-583.707,-581.362,-578.156,-576.142,-574.650,-573.785,-573.363,-573.457,-574.063,-575.139,-576.641,-574.119,-571.350,-568.689,-566.687,-564.725,-562.906,-562.526,-565.519,-568.318,-570.656,-572.781,-574.511,-576.833,-578.831,-905.262,-902.816,-900.542,-898.563,-896.563,-894.572,-892.713,-891.093,-889.754,-888.769,-888.103,-887.464,-886.179,-885.740,-885.125,-884.216,-882.770,-881.539,-878.928,-876.922,-874.669,-872.018,-868.198,-866.088,-863.839,-860.963,-857.312,-854.800,-852.408,-850.884,-849.825,-847.106,-845.550,-844.243,-843.100,-842.186,-841.754,-841.211,-840.792,-840.578,-840.601,-840.782,-841.146,-841.746,-842.652,-843.707,-844.912,-846.827,-848.768,-850.800,-852.827,-854.827,-855.753,-856.188,-856.259,-856.299,-856.556,-857.151,-858.045,-859.169,-860.962,-862.755,-863.696,-864.216,-865.353,-866.631,-868.683,-870.482,-872.601,-875.805,-878.954,-881.710,-883.405,-884.427,-885.029,-885.607,-874.671,-877.314,-879.288,-881.312,-883.363,-885.455,-887.325,-888.960,-890.370,-891.568,-892.462,-893.272,-899.696,-899.577,-899.080,-898.265,-896.864,-895.247,-892.858,-890.632,-923.818,-924.418,-925.533,-927.088,-929.015,-931.165,-933.682,-934.887,-935.341,-935.342,-934.901,-934.073,-932.620,-930.983,-929.317,-927.461,-925.454,-923.446,-921.464,-919.566,-917.856,-916.368,-915.206,-914.440,-914.072,-914.012,-914.145,-912.381,-911.071,-908.442,-906.920,-906.210,-905.959,-906.251,-906.921,-907.903,-909.327,-911.034,-912.970,-914.967,-916.972,-918.917,-920.727,-922.289,-923.644,-924.645,-925.508,-925.917,172.549,170.025,168.692,167.466,166.317,165.456,163.679,161.879,160.103,158.516,156.970,155.129,151.500,150.164,149.302,148.919,149.055,149.696,150.808,152.348,154.331,156.704,159.309,162.137,165.040,168.022,171.156,177.107,183.188,189.145,194.535,198.619,204.671,210.739,216.797,222.884,228.901,234.914,240.918,247.018,251.025,255.088,261.114,267.246,273.265,279.324,285.529,291.564,295.654,301.820,308.017,314.064,318.598,322.615,326.669,330.496,334.222,337.854,343.059,348.350,353.682,358.879,362.637,365.788,368.943,372.989,379.164,385.271,389.378,392.387,396.159,401.814,405.406,408.401,411.746,416.641,421.408,426.143,430.896,435.665,440.195,442.035,442.924,443.405,443.471,443.114,442.356,441.229,439.739,438.023,436.077,434.085,432.001,429.664,423.778,142.706,145.573,148.687,151.691,154.291,156.223,158.030,159.606,160.956,161.981,162.849,163.278,163.296,441.556,443.870,446.750,451.113,454.234,457.596,461.132,-834.540,-836.310,-837.909,-839.703,-841.718,-843.972,-845.982,-848.027,-849.923,-851.640,-853.183,-925.559,-923.788,-921.826,-919.964,-917.903,-914.895,-910.577,-906.174,-902.105,-889.864,-883.777,-877.590,-873.564,-867.531,-861.391,-855.275,-849.204,-842.953,-836.893,-830.804,-824.590,-818.587,-812.477,-806.278,-800.167,-794.031,-787.874,-781.711,-775.660,-769.580,-763.341,-757.170,-751.163,-745.076,-739.017,-732.964,-727.297,-723.267,-719.310,-716.497,-713.362,-711.537,-709.526,-707.800,-706.622,-705.585,-705.047,-705.013,-705.397,-706.211,-707.571,-709.315,-711.303,-713.315,-715.298,-717.290,-722.769,-726.571,-730.586,-734.656,-738.665,-743.232,-747.391,-751.400,-757.555,-763.617,-768.991,-773.023,-779.079,-785.234,-791.249,-797.303,-803.396,-809.541,-815.773,-821.900,-828.046,-834.139,-840.337,-846.519,-852.759,-858.908,-865.148,-871.193,-877.359,-883.492,-889.577,-895.588,-901.708,-907.856,-913.982,-918.012,-919.863,-921.519,-924.685,-926.684,-927.520,-927.964,-929.239,-920.185,-923.028,-924.980,-927.354,-929.423,-931.423,-932.223,-871.139,-871.975,-872.934,-874.223,-874.777,-875.219,-875.493,-875.846,-876.214,-876.574,-877.016,-878.754,-879.910,-881.589,-883.274,-885.103,-887.092,-889.132,-891.423,-894.375,-896.793,-898.932,-900.845,-902.220,-903.088,-903.759,-903.979,-904.080,750.291,748.910,747.390,745.042,742.668,737.999,734.625,730.278,728.175,725.644,724.148,723.393,723.136,723.279,723.814,724.692,725.871,727.340,729.253,731.872,733.996,736.082,738.068,739.970,741.702,743.188,744.403,745.234,747.803,749.972,751.969,754.299,757.547,762.380,765.254,769.039,772.973,776.880,782.792,788.812,793.405,796.421,800.653,806.795,810.943,814.956,817.885,821.427,824.981,828.429,831.737,834.704,837.413,839.983,842.479,846.068,848.786,850.984,852.856,855.834,858.825,861.649,863.896,866.203,868.495,870.786,872.831,874.464,875.682,876.500,876.912,877.175,877.698,878.419,879.545,880.646,882.211,884.252,886.702,889.719,892.666,895.361,898.050,901.046,905.032,909.079,914.708,917.450,919.469,921.534,922.942,924.098,925.055,926.409,926.874,926.925,926.941,926.977,927.165,927.492,927.950,928.251,928.445,928.606,928.775,928.935,928.845,928.357,927.556,926.464,925.044,923.272,921.225,918.541,914.626,912.166,909.864,907.880,906.823,905.874,904.846,904.243,903.997,904.055,904.051,903.906,903.684,903.409,903.113,903.006,903.117,903.268,903.442,903.632,903.945,904.376,905.040,905.698,906.243,906.735,907.166,907.557,907.875,908.130,908.336,908.482,908.382,907.836,906.952,905.564,904.367,903.053,901.602,900.064,898.380,896.602,894.744,892.828,890.909,888.852,886.708,884.472,882.061,879.538,876.850,874.207,871.457,869.406,866.289,863.152,860.020,858.088,855.911,853.258,850.644,847.989,845.675,843.311,841.199,838.901,836.400,831.416,827.823,824.893,820.862,816.769,813.573,810.500,806.471,802.401,798.392,794.304,790.305,786.243,780.101,774.088,769.992,765.241,761.171,755.057,750.878,745.044,741.013,737.938,735.672,733.321,730.592,727.106,723.742,721.349,718.561,714.534,711.620,709.214,706.592,701.428,697.819,694.015,690.181,684.477,680.577,447.554,448.234,448.525,448.227,447.568,446.335,444.176,440.975,437.770,435.317,433.233,429.000,426.533,425.190,424.650,424.394,423.809,423.026,422.197,421.253,420.316,419.367,418.818,418.324,418.125,417.985,417.995,417.806,417.164,416.171,414.976,413.514,411.836,409.565,406.502,403.847,401.019,398.119,395.140,391.979,387.919,381.837,375.732,369.732,363.726,357.725,351.720,347.671,345.016,343.182,341.544,339.801,338.277,337.274,336.711,336.115,335.741,-305.320,-302.324,-300.320,-298.232,-296.461,-294.913,-293.277,-292.296,-291.370,-290.185,-289.827,-289.797,-289.771,-289.764,-289.777,-289.921,-290.028,-289.584,-288.711,-288.404,-288.753,-289.488,-290.633,-292.147,-293.940,-295.864,-297.907,-299.906,-301.855,-303.649,-305.433,-307.628,-309.496,-310.934,-311.989 + 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,1631;34;35;36;37;38;39;40;41;42;43;44;45;46;47;48;49;50;51;52;53;54;55;56;57,1692;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,7025;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,7053;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,1687;393;394;395;396;397;398;399;400;401;402;403;404;405;406;407;408;409;410,624;411;412;413;414;415;416;417;418;419;420;421;422;423;424;425;426,465,783;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;10;460;461;462;463;464;419;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;19;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,5385;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,777;772;773,1625;774;775;776;1;778;779;780;781;782;434;784;785;786;787;788;789;790;791;792;793;794;795;796;797,2450;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,1630,5484;877;878;879;880;881;882;883;884;885;886;887;888;889,5950;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,2023;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,3084;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,4538;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,7303;1287;1288;1289;1290;1291;1292;1293;1294;1295,6067;1296;1297;1298;1299;1300;1301;1302;1303;1304;1305;1306;1307;1308;1309;1310;1311;1312;1313;1314;1315;1316;1317;1318;1319,5077;1320;1321;1322;1323;1324;1325;1326;1327;1328;1329;1330;1331;1332,5816;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,5503,5511;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,5480;1606;1607;1608;1609;1610;1611;1612;1613;1614;1615;1616,1621,2446;1617;1618;1619;1620;775;1622;1623;1624;471;1626;1627;1628;1629;789;2204;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,1685;1681;1682;1683;1684;384;1686;44;1688;1689;1690;1691;1634;1693;1694;1695;1696;1697;1698;1699;1700;1701;1702;1703;1704;1705;1706;1707;1708;1709;1710;1711;1712;1713;1714,1819;1715;1714,1716;1715,1717,1817;1716,1718;1717,1719;1718,1720;1719,1721;1720,1722;1721,1723;1722,1724;1723,1725;1724,1726;1725,1727;1726,1728;1727,1729;1728,1730;1729,1731;1730,1732;1731,1733;1732,1734;1733,1735;1734,1736;1735,1737;1736,1738;1737,1739;1738,1740;1739,1741;1740,1742;1741,1743;1742,1744;1743,1745;1744,1746;1745,1747;1746,1748;1747,1749;1748,1750;1749,1751;1750,1752;1751,1753;1752,1754;1753,1755;1754,1756;1755,1757;1756,1758;1757,1759;1758,1760;1759,1761;1760,1762;1761,1763;1762,1764;1763,1765;1764,1766;1765,1767;1766,1768;1767,1769;1768,1770;1769,1771;1770,1772;1771,1773;1772,1774;1773,1775;1774,1776;1775,1777;1776,1778;1777,1779;1778,1780;1779,1781;1780,1782;1781,1783;1782,1784;1783,1785;1784,1786;1785,1787;1786,1788;1787,1789;1788,1790;1789,1791;1790,1792;1791,1793;1792,1794;1793,1795;1794,1796;1795,1797;1796,1798;1797,1799;1798,1800;1799,1801;1800,1802;1801,1803;1802,1804;1803,1805;1804,1806;1805,1807;1806,1808;1807,1809;1808,1810;1809,1811;1810,1812;1811,1813;1812,1814;1813,1815,3957;1814,1816;1815;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;386;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,5940;2001;2002;2003;2004;2005;2006;2007;2008;2009;2010;2011;2012;2013;2014,5496;2015;2016;2017,2019;2018;1530;2020;2021;2022;2204;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;1874;2205;2206;2207;2208;2209;2210;2211;2212;2213;2214;2215;2216;2217;2218;2219;2220;2221;2222;2223;2224,7246;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,3943;2278;2279;2280;2281;2282;2283;2284;2285;2286;2287;2288;2289;2290;2291;2292;2293;2294;2295;2296;2297;2298;2299;2300,2431;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,2413;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,2410;2406;2407;2408;2409;1022;2411;2412;1868;2414;2415;2416;2417;2418;2419;2420;2421;2422;2423;2424;2425;2426;2427;2428;2429;2430;2367;2432;2433;2434;2435;2436;2437;2438;2439;2440;2441;2442;2443;2444;2445;2312;2447;2448;2449;434;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,4207;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,4098;2650;2651;2652;2653;2654;2655;2656;2657;2658;2659;2660;2661;2662;2663;2664,2763;2665;2666;2667;2668;2669;2670;2671;2672;2673;2674;2675;2676;2677;2678;2679;2680;2681;2682;2683;2684;2685;2686;2687,3685;2688;2689;2690;2691;2692;2693;2694;2695;2696;2697;2698;2699;2700;2701;2702;2703;2704;2705;2706;2707;2708;2709;2710;2711;2712;2713;2714;2715;2716;2717;2718;2719;2720;2721;2722;2723;2724;2725;2726;2727;2728;2729;2730;2731;2732;2733;2734;2735;2736;2737;2738;2739;2740;2741;2742;2743;2744;2745;2746;2747;2748;2749;2750;2751;2752;2753;2754;2755;2756;2757;2758;2759;2760;2761;2762;2779;2764;2765;2766;2767;2768;2769;2770;2771;2772;2773;2774;2775;2776;2777;2778;2674;2780;2781;2782;2783;2784;2785;2786;2787;2788;2789;2790;2791;2792;2793;2794;2795;2796;2797;2798;2799;2800;2801;2802;2803;2804;2805;2806;2807;2808;2809;2810;2811;2812;2813;2814;2815;2816;2817;2818;2819;2820;2821;2822;2823;2824;2825;2826;2827;2828;2829;2830;2831;2832;2833;2834;2835;2836;2837;2838;2839;2840;2841;2842;2843;2844;2845,6880;2846;2847;2848;2849;2850;2851,4406;2852;2853;2854;2855;2856;2857;2858;2859;2860;2861;2862;2863;2864;2865;2866;2867;2868;2869;2870;2871;2872;2873;2874;2875;2876;2877;2878;2879;2880;2881;2882;2883;2884;2885;2886;2887;2888;2889;2890;2891;2892;2893;2894;2895;2896;2897;2898;2899;2900;2901;2902;2903;2904;2905;2906;2907;2908;2909;2910;2911;2912;2913;2914;2915;2916;2917;2918;2919;2920;2921;2922;2923;2924;2925;2926;2927;2928;2929;2930;2931;2932;2933;2934;2935;2936;2937;2938;2939;2940;2941;2942;2943;2944;2945;2946;2947;2948;2949;2950;2951;2952;2953;2954;2955;2956;2957;2958;2959;2960;2961;2962;2963;2964;2965;2966;2967;2968;2969;2970;2971;2972;2973;2974;2975;2976;2977;2978;2979;2980;2981;2982;2983;2984;2985;2986;2987;2988;2989;2990;2991;2992;2993;2994;2995;2996;2997;2998;2999;3000;3001;3002;3003;3004;3005;3006;3007;3008;3009;3010;3011;3012;3013;3014;3015;3016;3017;3018;3019;3020;3021;3022;3023;3024;3025;3026;3027;3028;3029;3030;3031;3032;3033;3034;3035;3036;3037;3038;3039;3040;3041;3042;3043;3044;3045;3046;3047;3048;3049;3050;3051;3052;3053;3054;3055;3056;3057;3058,5374;3059;3060;3061;3062;3063;3064;3065;3066;3067;3068;3069;3070;3071;3072;3073;3074;3075;3076;3077;3078;3079;3080;3081;3082;3083;2121;3085;3086;3087;3088;3089;3090;3091;3092;3093;3094;3095;3096;3097;3098;3099;3100;3101;3102;3103;3104;3105;3106;3107;3108;3109;3110;3111;3112;3113;3114;3115;3116;3117;3118;3119;3120;3121;3122;3123;3124;3125;3126;3127;3128;3129;3130;3131;3132;3133;3134;3135;3136;3137;3138;3139;3140;3141;3142;3143;3144;3145;3146;3147;3148;3149;3150;3151;3152;3153;3154;3155;3156;3157;3158;3159;3160;3161;3162;3163;3164;3165;3166;3167;3168;3169;3170;3171;3172;3173;3174;3175;3176;3177;3178;3179;3180;3181;3182;3183;3184;3185;3186;3187;3188;3189;3190;3191;3192;3193;3194;3195;3196;3197;3198;3199;3200;3201;3202;3203;3204;3205;3206;3207;3208;3209;3210;3211;3212;3213;3214;3215;3216;3217;3218;3219;3220;3221;3222;3223;3224;3225;3226;3227;3228;3229;3230;3231;3232;3233;3234;3235;3236;3237;3238;3239;3240;3241;3242;3243;3244;3245;3246;3247;3248;3249;3250;3251;3252;3253;3254;3255;3256;3257;3258;3259;3260;3261;3262;3263;3264;3265;3266;3267;3268;3269;3270;3271;3272;3273;3274;3275;3276;3277;3278;3279;3280;3281;3282;3283;3284;3285;3286;3287;3288;3289;3290;3291;3292;3293;3294;3295;3296;3297;3298;3299;3300;3301;3302;3303;3304,6352;3305;3306;3307;3308;3309;3310;3311;3312;3313;3314;3315;3316;3317,4790;3318;3319;3320;3321;3322;3323;3324;3325;3326;3327;3328;3329;3330;3331;3332;3333;3334;3335;3336;3337;3338;3339;3340;3341;3342;3343;3344;3345;3346;3347;3348;3349;3350;3351;3352;3353;3354;3355;3356;3357;3358;3359;3360;3361;3362;3363;3364;3365;3366;3367;3368;3369;3370;3371;3372;3373;3374;3375;3376;3377;3378;3379;3380;3381;3382;3383;3384;3385;3386;3387;3388;3389;3390;3391;3392;3393;3394;3395;3396;3397;3398;3399;3400;3401;3402;3403;3404;3405;3406;3407;3408;3409;3410;3411;3412;3413;3414;3415;3416;3417;3418;3419;3420;3421;3422;3423;3424;3425;3426;3427;3428;3429;3430;3431;3432;3433;3434;3435;3436;3437;3438;3439;3440;3441;3442;3443;3444;3445;3446;3447;3448;3449;3450;3451;3452;3453;3454;3455;3456;3457;3458;3459;3460;3461;3462;3463;3464;3465;3466;3467;3468;3469;3470;3471;3472;3473;3474;3475;3476;3477;3478;3479;3480;3481;3482;3483;3484;3485;3486,5013;3487;3488;3489;3490;3491;3492;3493;3494;3495;3496;3497;3498;3499;3500;3501;3502;3503;3504;3505;3506;3507;3508;3509;3510;3511;3512;3513;3514;3515;3516;3517;3518;3519;3520;3521;3522;3523;3524;3525;3526;3527;3528;3529;3530;3531;3532;3533;3534;3535;3536;3537;3538;3539;3540;3541;3542;3543;3544;3545;3546;3547;3548;3549;3550;3551;3552;3553;3554;3555;3556;3557;3558;3559;3560;3561;3562;3563;3564;3565;3566;3567;3568;3569;3570;3571;3572;3573;3574;3575;3576;3577;3578;3579;3580;3581;3582;3583;3584;3585;3586;3587;3588;3589;3590;3591;3592;3593;3594;3595;3596;3597;3598;3599;3600;3601;3602;3603;3604;3605;3606;3607;3608;3609;3610;3611;3612;3613;3614;3615;3616;3617;3618;3619;3620;3621;3622;3623;3624;3625;3626;3627;3628;3629;3630;3631;3632;3633;3634;3635;3636;3637;3638;3639;3640;3641;3642;3643;3644;3645;3646;3647;3648;3649;3650;3651;3652;3653;3654;3655;3656;3657;3658;3659;3660;3661;3662;3663;3664;3665;3666;3667;3668;3669;3670;3671;3672;3673;3674;3675;3676;3677,5473;3678;3679;3680;3681;3682;3683;3684;1610;3686;3687;3688;3689;3690;3691;3692;3693;3694;3695;3696;3697;3698;3699;3700;3701;3702;3703;3704,6074;3705;3706;3707;3708;3709;3710;3711;3712;3713;3714;3715;3716;3717;3718;3719;3720;3721;3722;3723;3724;3725;3726;3727;3728;3729;3730;3731;3732;3733;3734;3735;3736;3737;3738;3739;3740;3741;3742;3743;3744;3745;3746;3747;3748;3749;3750;3751;3752;3753;3754;3755;3756;3757;3758;3759;3760;3761;3762;3763;3764;3765;3766;3767;3768;3769;3770;3771;3772;3773;3774;3775;3776;3777;3778;3779;3780;3781;3782;3783;3784;3785;3786;3787;3788;3789;3790;3791;3792;3793;3794;3795;3796;3797;3798;3799;3800;3801;3802;3803;3804;3805;3806;3807;3808;3809;3810;3811;3812;3813;3814;3815;3816;3817;3818;3819;3820;3821;3822;3823;3824;3825;3826;3827;3828;3829;3830;3831;3832;3833;3834;3835;3836;3837;3838;3839;3840;3841;3842;3843;3844;3845;3846;3847;3848,6860;3849;3850;3851;3852;3853;3854;3855;3856;3857;3858;3859;3860;3861;3862;3863;3864;3865;3866;3867;3868;3869;3870;3871;3872,5466;3873;3874;3875;3876;3877;3878;3879;3880;3881;3882;3883;3884;3885;3886;3887;3888;3889;3890;3891;3892;3893;3894;3895;3896;3897;3898;3899;3900;3901;3902;3903;3904;3905;3906;3907;3908;3909;3910;3911;3912;3913;3914;3915;3916;3917;3918;3919;3920;3921;3922;3923;3924;3925;3926;3927;3928;3929;3930;3931;3932;3933;3934;3935,3936;528;3937;3938;3939;3940;3941;3942;722;3944;3945;3946;3947;3948;3949;3950;3951;3952;3953;3954;3955;3956;2288;3958;3959;3960;3961;3962;3963;3964;3965;3966;3967;3968;3969;3970;3971;3972;3973;3974;3975;3976;3977;3978;3979;3980;3981;3982;3983;3984;3985;3986;3987;3988;3989;3990;3991;3992;3993;3994;3995;3996;3997;3998;3999;4000;4001;4002;4003;4004;4005;4006;4007;4008;4009;4010;4011;2269;4013,4188;4012,4014;4013,4015;4014,4016;4015,4017;4016,4018,4192;4017,4019;4018,4020;4019,4021;4020,4022;4021,4023;4022,4024;4023,4025;4024,4026;4025,4027;4026,4028;4027,4029;4028,4030;4029,4031;4030,4032;4031,4033;4032,4034;4033,4035;4034,4036;4035,4037;4036,4038;4037,4039;4038,4040;4039,4041;4040,4042;4041,4043;4042,4044;4043,4045;4044,4046;4045,4047;4046,4048;4047,4049;4048,4050;4049,4051;4050,4052;4051,4053;4052,4054;4053,4055;4054,4056;4055,4057;4056,4058;4057,4059;4058,4060;4059,4061;4060,4062;4061,4063;4062,4064;4063,4065;4064,4066;4065,4067;4066,4068;4067,4069;4068,4070;4069,4071;4070,4072;4071,4073;4072,4074;4073,4075;4074,4076;4075,4077,4086;4078;4079;4080;4081;4082;4083;4084;4085;4211;4087;4088;4089;4090;4091;4092;4093;4094;4095;4096;4097;3878;4099;4100;4101;4102;4103;4104;4105;4106;4107;4108;4109;4110;4111;4112;4113;4114;4115;4116;4117;4118;4119;4120;4121;4122;4123;4124;4125;4126;4127;4128;4129;4130;4131;4132;4133;4134;4135;4136;4137;4138;4139;4140;4141;4142;4143;4144;4145;4146;4147;4148;4149;4150;4151;4152;4153;4154;4155;4156;4157;4158;4159;4160;4161;4162;4163;4164;4165;4166;4167;4168;4169;4170;4171;4172;4173;4174;4175;4176;4177;4178;4179;4180;4181,5020;4182;4183;4184;4185;4186;4187,5043;4653;4189;4190;4191;3647;4193;4194;4195;4196;4197;4198;4199;4200;4201;4202;4203;4204;4205;4206;2497;4208;4209;4210;4012;4212;4213;4214;4215;4216;4217;4218;4219;4220;4221;4222;4223;4224;4225;4226;4227;4228;4229,6765;4230;4231;4232;4233;4234;4235;4236;4237;4238;4239;4240;4241;4242;4243;4244;4245;4246;4247;4248;4249;4250;4251;4252;4253;4254;4255;4256;4257;4258;4259;4260;4261;4262;4263;4264;4265;4266;4267;4268;4269;4270;4271;4272;4273;4274;4275;4276;4277;4278;4279;4280;4281;4282;4283;4284;4285;4286;4287;4288;4289;4290;4291;4292;4293;4294;4295;4296;4297;4298;4299;4300;4301;4302;4303;4304;4305;4306;4307;4308;4309;4310;4311;4312;4313;4314;4315;4316;4317;4318;4319;4320;4321;4322;4323;4324;4325;4326;4327;4328;4329;4330;4331;4332;4333;4334;4335;4336;4337;4338;4339;4340;4341;4342;4343;4344;4345;4346;4347;4348;4349;4350;4351;4352;4353;4354;4355;4356;4357;4358;4359;4360;4361;4362;4363;4364;4365;4366;4367;4368;4369;4370;4371;4372;4373;4374;4375;4376;4377,6613;4378;4379;4380;4381;4382;4383;4384;4385;4386;4387;4388,4400;4389;4390;4391;4392;4393;2694;3442,4395;4396;4397;4398;4399;3696;4401;4402;4403;4404;4405;3452;4407;4408;4409;4410;4411;4412;4413;4414;4415;4416;4417;4418;4419;4420;4421;4422;4423;4424;4425;4426;4427;4428;4429;4430;4431;4432;4433;4434;4435;4436;4437;4438;4439;4440;4441;4442;4443;4444;4445;4446;4447;4448;4449;4450;4451;4452;4453;4454;4455;4456;4457;4458;4459;4460;4461;4462;4463;4464;4465;4466;4467;4468;4469;4470;4471;4472;4473;4474;4475;4476;4477;4478;4479;4480;4481;4482;4483;4484;4485;4486;4487;4488;4489;4490;4491;4492;4493;4494;4495;4496;4497;4498;4499;4500;4501;4502;4503;4504;4505;4506;4507;4508;4509;4510;4511;4512;4513;4514;4515;4516;4517;4518;4519;4520;4521;4522;4523;4524;4525;4526;4527;4528;4529;4530;4531;4532;4533;4534,5232;4535;4536;4537;1228;4539;4540;4541;4542;4543;4544;4545;4546;4547;4548;4549;4550;4551;4552;4553;4554;4555;4556;4557;4558;4559;4560;4561;4562;4563;4564;4565;4566;4567;4568;4569;4570;4571;4572;4573;4574;4575;4576;4577;4578;4579;4580;4581;4582;4583;4584;4585;4586;4587;4588;4589;4590;4591;4592;4593;4594;4595;4596;4597;4598;4599;4600;4601;4602;4603;4604;4605;4606;4607;4608;4609;4610;4611;4612;4613;4614;4615;4616;4617;4618;4619;4620;4621;4622;4623;4624;4625;4626;4627;4628;4629;4630;4631;4632;4633;4634;4635;4636;4637;4638;4639,4647;4640;4641;4642;4643;4644;4645;4646;962;4648;4649;4650;4651;4652;1934;4654;4655;4656;4657;4658;4659;4660;4661;4662;4663;4664;4665;4666;4667;4668;4669;4670;4671;4672;4673;4674;4675;4676;4677;4678;4679;4680;4681;4682;4683;4684;4685;4686;4687;4688;4689;4690;4691;4692;4693;4694;4695;4696;4697;4698;4699;4700;4701;4702;4703;4704;4705;4706;4707;4708;4709;4710;4711;4712;4713;4714;4715;4716;4717;4718;4719;4720;4721;4722;4723;4724;4725;4726;4727;4728;4729;4730;4731;4732;4733;4734;4735;4736;4737;4738;4739;4740;4741;4742;4743;4744;4745;4746;4747;4748;4749;4750;4751;4752;4753;4754;4755;4756;4757;4758;4759;4760;4761;4762;4763;4764;4765;4766;4767;4768;4769;4770;4771;4772;4773;4774,4783;4775;4776;4777;4778;4779;4780;4781;4782;3321;4784;4785;4786;4787;4788;4789;2839;4791;4792;4793;4794;4795;4796;4797;4798;4799;4800;4801;4802;4803;4804;4805;4806;4807;4808;4809;4810;4811;4812;4813;4814;4815;4816;4817;4818;4819;4820;4821;4822;4823;4824;4825;4826;4827;4828;4829;4830;4831;4832;4833;4834;4835;4836;4837;4838;4839;4840;4841;4842;4843;4844;4845;4846;4847;4848;4849;4850;4851;4852;4853;4854;4855;4856;4857;4858;4859;4860;4861;4862;4863;4864;4865;4866;4867;4868;4869;4870;4871;4872;4873;4874;4875;4876;4877;4878;4879;4880;4881;4882;4883;4884;4885;4886;4887;4888;4889;4890;4891;4892;4893;4894;4895;4896;4897;4898;4899;4900;4901;4902;4903;4904;4905;4906;4907;4908;4909;4910;4911;4912,5118;4913;4914;4915;4916;4917;4918;4919;4920;4921;4922;4923;4924;4925;4926;4927;4928;4929;4930;4931;4932;4933;4934;4935;4936;4937;4938;4939;4940;4941;4942;4943;4944;4945;4946;4947;4948;4949;4950;4951;4952;4953;4954;4955;4956;4957;4958;4959;4960;4961;4962;4963;4964;4965;4966;4967;4968;4969;4970;4971;4972;4973;4974;4975;4976;4977;4978;4979;4980;4981;4982;4983;4984;4985;4986;4987;4988;4989;4990;4991;4992;4993;4994;4995;4996;4997;4998,5007;4999;5000;5001;5002;5006;3490,5004;5005;5006;-1;5008;5009;5010;5011;5012;2652;5014;5015;5016;5017;5018;5019;4104;5021;5022;5023;5024;5025;5026;5027;5028;5029;5030;5031;5032;5033;5034;5035;5036;5037;5038;5039;5040;5041;5042;4664;5044;5045;5046;5047;5048;5049;5050;5051;5052;5053;5054;5055;5056;5057;5058;5059;5060;5061;5062;5063;5064;5065;5066;5067;5068;5069;5070;5071,5125;5072;5073;5074;5075;5076;1323;5078;5079;5080;5081;5082;5083;5084;5085;5086;5087;5088;5089;5090;5091;5092;5093;5094;5095;5096;5097;5098;5099;5100;5101;5102;5103;5104;5105,5110;5106;5107;5108;5109;4658;5111;5112;5113;5114;5115;5116;5117;4916;5119;5120;5121;5122;5123;5124;5048;5126;5127;5128;5129;5130;5131;5132;5133;5134;5135;5136;5137;5138;5139;5140;5141;5142;5143;5144;5145;5146;5147;5148;5149;5150;5151;5152;5153,5822;5154;5155;5156;5157;5158;5159;5160;5161;5162;5163;5164;5165;5166;5167;5168;5169;5170;5171;5172;5173;5174;5175;5176;5177;5178;5179;5180;5181;5182;5183;5184;5185;5186;5187;5188;5189;5190;5191;5192;5193;5194;5195;5196;5197;5198;5199;5200;5201;5202;5203;5204;5205;5206;5207;5208;5209;5210;5211;5212,5248;5213;5214;5215;5216;5217;5218;5219;5220;5221;5222;5223;5224;5225;5226;5227;5228;5229;5230;5231;5243;5233;5234;5235;5236;5237;5238;5239;5240;5241;5242;5243;5244;5245;5246;5247;5255;5249;5250;5251;5252;5253;5254;4547;5256;5257;5258;5259;5260;5261;5262;5263;5264;5265;5266;5267;5268;5269;5270;5271;5272;5273;5274;5275;5276;5277;5278;5279;5280;5281;5282;5283;5284;5285;5286;5287;5288;5289;5290;5291;5292;5293;5294;5295;5296;5297;5298;5299;5300;5301;5302;5303;5304;5305;5306;5307;5308;5309;5310;5311;5312;5313;5314;5315;5316;5317;5318;5319;5320;5321;5322;5323;5324;5325;5326;5327;5328;5329;5330;5331;5332;5333;5334;5335;5336;5337;5338;5339;5340;5341;5342;5343;5344;5345;5346;5347;5348;5349;5350;5351;5352,5359;5353;5354;5355;5356;5357;5358;3069;5360;5361;5362;5363;5364;5365;5366;5367;5368;5369;5370;5371;5372;5373;3095;5375;5376;5377;5378;5379;5380;5381;5382;5383;5384;1129;5386;5387;5388;5389;5390;5391;5392;5393;5394;5395;5396;5397;5398;5399;5400;5401;5402;5403;5404;5405;5406;5407;5408;5409;5410;5411;5412;5413;5414;5415;5416;5417;5418;5419;5420;5421;5422;5423;5424;5425;5426;5427;5428;5429;5430;5431;5432;5433;5434;5435;5436;5437;5438;5439;5440;5441;5442;5443;5444;5445,5452;5446;5447;5448;5449;5450;5451;4084;5453;5454;5455;5456;5457;5458;5459;5460;5461;5462;5463;5464;5465;4073;5467;5468;5469;5470;5471;5472;4076;5474;5475;5476;5477;5478;5479;801;5481;5482;5483;2456;5485;5486;5487;5488;5489;5490;5491;5492;5493;5494;5495;5516;5497;5498;5499;5500;5501;5502;5492;5504;5505;5506;5507;5508;5509;5510;879;5512;5513;5514;5515;2204;5517;5518;5519;5520;5521;5522;5523;5524;5525;5526;5527;5528;5529;5530;5531;5532;5533;5534;5535;5536;5537;5538;5539;5540;5541;5542;5543;5544;5545;5546;5547;5548;5549;5550;5551;5552;5553;5554;5555;5556;5557;5558;5559;5560;5561;5562;5563;5564;5565;5566;5567;5568;5569;5570;5571;5572;5573;5574;5575;5576,5806;5577;5578;5579;5580;5581;5582;5583;5584;5585;5586;5587;5588;5589;5590;5591;5592;5593;5594;5595;5596;5597;5598;5599;5600;5601;5602;5603;5604;5605;5606;5607;5608;5609;5610;5611;5612;5613;5614;5615;5616;5617;5618;5619;5620;5621;5622;5623;5624;5625;5626;5627;5628;5629;5630;5631;5632;5633;5634;5635;5636;5637;5638;5639;5640;5641;5642;5643;5644;5645;5646;5647;5648;5649;5650;5651;5652;5653;5654;5655;5656;5657;5658;5659;5660;5661;5662;5663;5664;5665;5666;5667;5668;5669;5670;5671;5672;5673;5674;5675;5676;5677;5678;5679;5680;5681;5682;5683;5684;5685;5686;5687;5688;5689;5690;5691;5692;5693;5694;5695;5696;5697;5698;5699;5700;5701;5702;5703;5704;5705;5706;5707;5708;5709;5710;5711;5712;5713,5716;5714;5715;5133;5717;5718;5719;5720;5721;5722;5082;5724,5811;5723,5725;5724,5726;5725,5727;5726,5728;5727,5729;5728,5730;5729,5731;5730,5732;5731,5733;5732,5734;5733,5735;5734,5736;5735,5737;5736,5738;5737,5739;5738,5740;5739,5741;5740,5742;5741,5743;5742,5744;5743,5745;5744,5746;5745,5747;5746,5748;5747,5749;5748,5750;5749,5751;5750,5752;5751,5753;5752,5754;5753,5755;5754,5756;5755,5757;5756,5758;5757,5759;5758,5760;5759,5761;5760,5762;5761,5763;5762,5764;5763,5765;5764,5766;5765,5767;5766,5768;5767,5769;5768,5770;5769,5771;5770,5772;5771,5773;5772,5774;5773,5775;5774,5776;5775,5777;5776,5778;5777,5779;5778,5780;5779,5781;5780,5782;5781,5783;5782,5784;5783,5785;5784,5786;5785,5787;5786,5788;5787,5789;5788,5790;5789,5791;5790,5792;5791,5793;5792,5794;5793,5795;5794,5796;5795,5797;5796,5798;5797,5799;5800;5801;5802;5803;5804;5805;1461;5807;5808;5809;5810;5798;5812;5813;5814;5815;5703;5817;5818;5819;5820;5821;5724;5823;5824;5825;5826;5827;5828;5829;5830;5831;5832;5833;5834;5835;5836;5837;5838;5839;5840;5841;5842;5843;5844;5845;5846;5847;5848;5849;5850;5851;5852;5853;5854;5855;5856;5857;5858;5859;5860;5861;5862;5863;5864;5865;5866;5867;5868;5869;5870;5871;5872;5873;5874;5875;5876;5877;5878;5879;5880;5881;5882;5883;5884;5885;5886;5887;5888;5889;5890;5891;5892;5893;5894;5895;5896;5897;5898;5899;5900;5901;5902;5903;5904;5905;5906;5907;5908;5909;5910;5911;5912;5913;5914;5915;5916;5917;5918;5919;5920;5921;5922;5923;5924;5925;5926,5932;5927;5928;5929;5930;5931;2005;5933;5934;5935;5936;5937;5938;5939;892;5941;5942;5943;5944;5945;5946;5947;5948;5949;5958;5951;5952;5953;5954;5955;5956;5957;5949;5959;5960;5961;5962;5963;5964;5965;5966;5967;5968;5969;5970;5971;5972;5973;5974;5975;5976;5977;5978;5979;5980;5981;5982;5983;5984;5985;5986;5987;5988;5989;5990;5991;5992;5993;5994;5995;5996;5997;5998;5999;6000;6001;6002;6003;6004;6005;6006;6007;6008;6009;6010;6011;6012;6013;6014;6015;6016;6017;6018;6019;6020;6021;6022;6023;6024;6025;6026;6027;6028;6029;6030;6031;6032;6033;6034;6035;6036;6037;6038;6039;6040;6041;6042;6043;6044;6045;6046;6047;6048;6049;6050;6051;6052;6053;6054;6055,6060;6056;6057;6058;6059;5160;6061;6062;6063;6064;6065;6066;1299;6068;6069;6070;6071;6072;6073;5829;6075;6076;6077;6078;6079;6080;6081;6082;6083;6084;6085;6086;6087;6088;6089;6090;6091;6092;6093;6094;6095;6096;6097;6098;6099;6100;6101;6102;6103;6104;6105;6106;6107;6108;6109;6110;6111;6112;6113;6114;6115;6116;6117;6118;6119;6120;6121;6122;6123;6124;6125;6126;6127;6128;6129;6130;6131;6132;6133;6134;6135;6136;6137;6138;6139;6140,6997;6141;6142;6143;6144;6145;6146;6147;6148;6149;6150;6151;6152;6153;6154;6155;6156;6157;6158;6159;6160;6161;6162;6163;6164;6165;6166;6167;6168;6169;6170;6171;6172;6173,6203;6174;6175;6176;6177;6178;6179;6180;6181;6182;6183;6184;6185;6186;6187;6188;6189;6190;6191;6192;6193;6194;6195;6196;6197;6198,6891;6199;6200;6201;6202;6220;6204;6205;6206;6207;6208;6209;6210;6211;6212;6213;6214;6215;6216,6744;6217;6218;6219;6186;6221;6222;6223;6224;6225;6226;6227;6228;6229;6230;6231;6232;6233;6234;6235;6236;6237;6238;6239;6240;6241;6242;6243;6244;6245;6246;6247;6248;6249;6250;6251;6252;6253;6254;6255;6256;6257;6258;6259;6260;6261;6262;6263;6264;6265;6266;6267;6268;6269;6270;6271;6272;6273;6274;6275;6276;6277;6278;6279;6280;6281,6621;6282;6283;6284;6285;6286;6287;6288;6289;6290;6291;6292;6293;6294;6295;6296;6297;6298;6299;6300;6301;6302;6303;6304;6305;6306;6307;6308;6309;6310;6311;6312;6313;6314;6315;6316;6317;6318;6319;6320;6321;6322;6323;6324;6325;6326;6327;6328,6336;6329;6330;6331;6332;6333;6334;6335;2850;6337;6338;6339;6340;6341;6342;6343;6344;6345;6346;6347;6348;6349;6350;6351;3314;6353;6354;6355;6356;6357;6358;6359;6360;6361;6362;6363;6364;6365;6366;6367;6368;6369;6370;6371;6372;6373;6374;6375;6376;6377;6378;6379;6380;6381;6382;6383;6384;6385;6386;6387;6388;6389;6390;6391;6392;6393;6394;6395;6396;6397;6398;6399;6400;6401;6402;6403,6709;6404;6405;6406;6407;6408;6409;6410;6411;6412;6413;6414;6415;6416;6417;6418;6419;6420;6421;6422;6423;6424;6425;6426;6427;6428;6429;6430;6431;6432;6433;6434;6435;6436;6437;6438;6439;6440;6441;6442;6443;6444;6445;6446;6447;6448;6449;6450;6451;6452;6453;6454;6455;6456;6457;6458;6459;6460;6461;6462;6463;6464;6465;6466;6467;6468;6469;6470;6471;6472;6473;6474;6475;6476;6477;6478;6479;6480;6481;6482;6483;6484;6485;6486;6487;6488;6489;6490;6491;6492;6493;6494;6495,6717;6496;6497;6498;6499;6500;6501;6502;6503;6504;6505;6506;6507;6508;6509;6510;6511;6512;6513;6514;6515;6516;6517;6518;6519;6520;6521;6522;6523;6524;6525;6526;6527;6528;6529;6530;6531;6532;6533;6534;6535;6536;6537;6538;6539;6540;6541;6542;6543;6544;6545;6546;6547;6548;6549;6550;6551;6552;6553;6554;6555;6556;6557;6558;6559;6560;6561;6562;6563;6564;6565;6566;6567;6568;6569;6570;6571;6572;6573;6574;6575;6576;6577;6578;6579;6580;6581;6582;6583;6584;6585;6586;6587;6588;6589;6590;6591;6592;6593;6594;6595;6596;6597;6598;6599;6600,6607;6601;6602;6603;6604;6605;6606;4381;6608;6609;6610;6611;6612;3709;6614;6615;6616;6617;6618;6619;6620;6081;6622;6623;6624;6625;6626;6627;6628;6629;6630;6631;6632;6633;6634;6635;6636;6637;6638;6639;6640;6641;6642;6643;6644;6645;6646;6647;6648;6649;6650;6651;6652;6653;6654;6655;6656;6657;6658;6659;6660;6661;6662;6663;6664;6665;6666;6667;6668;6669;6670;6671;6672;6673;6674;6675;6676;6677;6678;6679;6680;6681;6682;6683;6684;6685;6686;6687;6688;6689;6690,6697;6691;6692;6693;6694;6695;6696;6312;6698;6699;6700;6701;6702;6703;6704;6705;6706;6707;6708;6385;6710;6711;6712;6713;6714;6715;6716;6630;6718;6719;6720;6721;6722;6723;6724;6725;6726;6727;6728;6729;6730;6731;6732;6733;6734;6735;6736;6737;6738;6739;6740;6741;6742;6743;6205;6745;6746;6747;6748;6749;6750;6751;6752;6753;6754;6755;6756;6757;6758;6759;6760;6761;6762;6763;6764;6487;6766;6767;6768;6769;6770;6771;6772;6773;6774;6775;6776;6777;6778;6779;6780;6781;6782;6783;6784;6785;6786;6787;6788;6789;6790;6791;6792;6793;6794;6795;6796;6797;6798;6799;6800;6801;6802;6803;6804;6805;6806;6807;6808;6809;6810;6811;6812;6813;6814;6815;6816;6817;6818;6819;6820;6821;6822;6823;6824;6825;6826;6827;6828;6829;6830;6831;6832;6833;6834;6835;6836;6837;6838;6839;6840;6841;6842;6843;6844;6845;6846,6873;6847;6848;6849;6850;6851;6852;6853;6854;6855;6856;6857;6858;6859;5430;6861;6862;6863;6864;6865;6866;6867;6868;6869;6870;6871;6872;6771;6874;6875;6876;6877;6878;6879;3901;6881;6882;6883;6884;6885;6886;6887;6888;6889;6890;6360;6892;6893;6894;6895;6896;6897;6898;6899;6900;6901;6902;6903;6904;6905;6906;6907;6908;6909;6910;6911;6912;6913;6914;6915;6916;6917;6918;6919;6920;6921;6922;6923;6924;6925;6926;6927;6928;6929;6930;6931;6932;6933;6934;6935;6936;6937;6938;6939;6940;6941;6942;6943;6944;6945;6946;6947;6948;6949;6950;6951;6952;6953;6954;6955;6956;6957;6958;6959;6960;6961;6962;6963;6964;6965;6966;6967;6968;6969;6970;6971;6972;6973;6974;6975;6976;6977;6978;6979;6980;6981;6982;6983,6990;6984;6985;6986;6987;6988;6989;6223;6991;6992;6993;6994;6995;6996;6473;6998;6999;7000;7001;7002;7003;7004;7005;7006;7007;7008;7009;7010;7011;7012;7013;7014;7015;7016;7017;7018;7019;7020;7021;7022;7023;7024;6522;7026;7027;7028;7029;7030;7031;7032;7033;7034;7035;7036;7037;7038;7039;7040;7041;7042;7043;7044;7045;7046;7047;7048;7049;7050;7051;7052;7053;7054;7055;7056;7057;7058;7059;7060;7061;7062;7063;7064;7065;7066;7067;7068;7069;7070;7071;7072;7073;7074;7075;7076;7077;7078;7079;7080;7081;7082;7083;7084;7085;7086;7087;7088;7089;7090;7091;7092;7093;7094;7095;7096;7097;7098;7099;7100;7101;7102;7103;7104;7105;7106;7107;7108;7109;7110;7111;7112;7113;7114;7115;7116;7117;7118;7119;7120;7121;7122;7123;7124;7125;7126;7127;7128;7129;7130;7131;7132;7133;7134;7135;7136;7137;7138;7139;7140;7141;7142;7143;7144;7145;7146;7147;7148;7149;7150;7151;7152;7153;7154;7155;7156;7157;7158;7159;7160;7161;7162;7163;7164;7165;7166;7167;7168;7169;7170;7171;7172;7173;7174;7175;7176;7177;7178;7179;7180;7181;7182;7183;7184;7185;7186;7187;7188;7189;7190;7191;7192;7193;7194;7195;7196;7197;7198;7199;7200;7201;7202;7203;7204;7205;7206;7207;7208;7209;7210;7211;7212;7213;7214;7215;7216;7217;7218;7219;7220;7221;7222;7223;7224;7225;7226;7227;7228;7229;7230;7231;7232;7233;7234;7235;7236;7237;7238;7239;7240;7241;7242;7243;7244;7245;213;7247;7248;7249;7250;7251;7252;7253;7254;7255;7256;7257;7258;7259;7260;7261;7262;7263;7264;7265;7266;7267;7268;7269;7270;7271;7272;7273;7274;7275;7276;7277;7278;7279;7280;7281;7282;7283;7284;7285;7286;7287;7288;7289;7290;7291;7292;7293;7294;7295;7296;7297;7298;7299;7300;7301;7302;1986;7304;7305;7306;7307;7308;7309;7310;7311;7312;7313;7314;7315;7316;7317;7318;7319;7320;7321;7322;7323;7324;7325;7326;7327;7328;7329;7330;7331;7332;7333;7334;7335;7336;7337;1273 + 776;1;2;3;4;5;6;7;8;9,458;10;11;12;13;14;15;16;17;18,623;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,1686;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,7245;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,1684;384;385,1867;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,464;419;420;421;422;423;424;425;426;427;428;429;430;431;432;433,782,2449;434;435;436;437;438;439;440;441;442;443;444;445;446;447;448;449;450;451;452;453;454;455;456;457;457;459;460;461;462;463;425;465;466;467;468;469;470,1624;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,3935;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;409;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,3942;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,1620;775;770;777;778;779;780;781;425;783;784;785;786;787;788,1629;789;790;791;792;793;794;795;796;797;798;799;800,5479;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,5510;879;880;881;882;883;884;885;886;887;888;889;890;891,5939;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,4646;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,2409;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,5384;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,4537;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,7337;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,6066;1299;1300;1301;1302;1303;1304;1305;1306;1307;1308;1309;1310;1311;1312;1313;1314;1315;1316;1317;1318;1319;1320;1321;1322,5076;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,5805;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,2018;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,3684;1610;1611;1612;1613;1614;1615;1616;1617;1618;1619;1615;1621;1622;1623;772;1625;1626;1627;1628;875;32;1631;1632;1633,1691;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;1679;1685;391;1687;1688;1689;1690;56;1692;1693;1694;1695;1696;1697;1698;1699;1700;1701;1702;1703;1704;1705;1706;1707;1708;1709;1710;1711;1712;1713,1715;1714,1716;1715,1717;1716,1718;1717,1719;1718,1720;1719,1721;1720,1722;1721,1723;1722,1724;1723,1725;1724,1726;1725,1727;1726,1728;1727,1729;1728,1730;1729,1731;1730,1732;1731,1733;1732,1734;1733,1735;1734,1736;1735,1737;1736,1738;1737,1739;1738,1740;1739,1741;1740,1742;1741,1743;1742,1744;1743,1745;1744,1746;1745,1747;1746,1748;1747,1749;1748,1750;1749,1751;1750,1752;1751,1753;1752,1754;1753,1755;1754,1756;1755,1757;1756,1758;1757,1759;1758,1760;1759,1761;1760,1762;1761,1763;1762,1764;1763,1765;1764,1766;1765,1767;1766,1768;1767,1769;1768,1770;1769,1771;1770,1772;1771,1773;1772,1774;1773,1775;1774,1776;1775,1777;1776,1778;1777,1779;1778,1780;1779,1781;1780,1782;1781,1783;1782,1784;1783,1785;1784,1786;1785,1787;1786,1788;1787,1789;1788,1790;1789,1791;1790,1792;1791,1793;1792,1794;1793,1795;1794,1796;1795,1797;1796,1798;1797,1799;1798,1800;1799,1801;1800,1802;1801,1803;1802,1804;1803,1805;1804,1806;1805,1807;1806,1808;1807,1809;1808,1810;1809,1811;1810,1812;1811,1813;1812,1814;1813,1815;1814,1816;1815;1716;1817;1713,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;2412;1868;1869;1870;1871;1872;1873,2203;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,4652;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,7302;1986;1987;1988;1989;1990;1991;1992;1993;1994;1995;1996;1997;1998;1999;2000;2001;2002;2003;2004,5931;2005;2006;2007;2008;2009;2010;2011;2012;2013;2014;2015;2016;2017;2016;2019;2020;2021;1051;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,3083;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;1630,2022,5515;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,4011;2269;2270;2271;2272;2273;2274;2275;2276;2277;2278;2279;2280;2281;2282;2283;2284;2285;2286;2287,3956;2288;2289;2290;2291;2292;2293;2294;2295;2296;2297;2298;2299;2300;2301;2302;2303;2304;2305;2306;2307;2308;2309;2310;2311,2445;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,2430;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;2404;2410;2411;2352;2413;2414;2415;2416;2417;2418;2419;2420;2421;2422;2423;2424;2425;2426;2427;2428;2429;2299;2431;2432;2433;2434;2435;2436;2437;2438;2439;2440;2441;2442;2443;2444;1615;2446;2447;2448;796;2450;2451;2452;2453;2454;2455,5483;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,4206;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,5012;2652;2653;2654;2655;2656;2657;2658;2659;2660;2661;2662;2663;2664;2665;2666;2667;2668;2669;2670;2671;2672;2673,2778;2674;2675;2676;2677;2678;2679;2680;2681;2682;2683;2684;2685;2686;2687;2688;2689;2690;2691;2692;2693,4393;2694;2695;2696;2697;2698;2699;2700;2701;2702;2703;2704;2705;2706;2707;2708;2709;2710;2711;2712;2713;2714;2715;2716;2717;2718;2719;2720;2721;2722;2723;2724;2725;2726;2727;2728;2729;2730;2731;2732;2733;2734;2735;2736;2737;2738;2739;2740;2741;2742;2743;2744;2745;2746;2747;2748;2749;2750;2751;2752;2753;2754;2755;2756;2757;2758;2759;2760;2761;2663;2763;2764;2765;2766;2767;2768;2769;2770;2771;2772;2773;2774;2775;2776;2777;2762;2779;2780;2781;2782;2783;2784;2785;2786;2787;2788;2789;2790;2791;2792;2793;2794;2795;2796;2797;2798;2799;2800;2801;2802;2803;2804;2805;2806;2807;2808;2809;2810;2811;2812;2813;2814;2815;2816;2817;2818;2819;2820;2821;2822;2823;2824;2825;2826;2827;2828;2829;2830;2831;2832;2833;2834;2835;2836;2837;2838,4789;2839;2840;2841;2842;2843;2844;2845;2846;2847;2848;2849,6335;2850;2851;2852;2853;2854;2855;2856;2857;2858;2859;2860;2861;2862;2863;2864;2865;2866;2867;2868;2869;2870;2871;2872;2873;2874;2875;2876;2877;2878;2879;2880;2881;2882;2883;2884;2885;2886;2887;2888;2889;2890;2891;2892;2893;2894;2895;2896;2897;2898;2899;2900;2901;2902;2903;2904;2905;2906;2907;2908;2909;2910;2911;2912;2913;2914;2915;2916;2917;2918;2919;2920;2921;2922;2923;2924;2925;2926;2927;2928;2929;2930;2931;2932;2933;2934;2935;2936;2937;2938;2939;2940;2941;2942;2943;2944;2945;2946;2947;2948;2949;2950;2951;2952;2953;2954;2955;2956;2957;2958;2959;2960;2961;2962;2963;2964;2965;2966;2967;2968;2969;2970;2971;2972;2973;2974;2975;2976;2977;2978;2979;2980;2981;2982;2983;2984;2985;2986;2987;2988;2989;2990;2991;2992;2993;2994;2995;2996;2997;2998;2999;3000;3001;3002;3003;3004;3005;3006;3007;3008;3009;3010;3011;3012;3013;3014;3015;3016;3017;3018;3019;3020;3021;3022;3023;3024;3025;3026;3027;3028;3029;3030;3031;3032;3033;3034;3035;3036;3037;3038;3039;3040;3041;3042;3043;3044;3045;3046;3047;3048;3049;3050;3051;3052;3053;3054;3055;3056;3057;3058;3059;3060;3061;3062;3063;3064;3065;3066;3067;3068,5358;3069;3070;3071;3072;3073;3074;3075;3076;3077;3078;3079;3080;3081;3082;1116;3084;3085;3086;3087;3088;3089;3090;3091;3092;3093;3094,5373;3095;3096;3097;3098;3099;3100;3101;3102;3103;3104;3105;3106;3107;3108;3109;3110;3111;3112;3113;3114;3115;3116;3117;3118;3119;3120;3121;3122;3123;3124;3125;3126;3127;3128;3129;3130;3131;3132;3133;3134;3135;3136;3137;3138;3139;3140;3141;3142;3143;3144;3145;3146;3147;3148;3149;3150;3151;3152;3153;3154;3155;3156;3157;3158;3159;3160;3161;3162;3163;3164;3165;3166;3167;3168;3169;3170;3171;3172;3173;3174;3175;3176;3177;3178;3179;3180;3181;3182;3183;3184;3185;3186;3187;3188;3189;3190;3191;3192;3193;3194;3195;3196;3197;3198;3199;3200;3201;3202;3203;3204;3205;3206;3207;3208;3209;3210;3211;3212;3213;3214;3215;3216;3217;3218;3219;3220;3221;3222;3223;3224;3225;3226;3227;3228;3229;3230;3231;3232;3233;3234;3235;3236;3237;3238;3239;3240;3241;3242;3243;3244;3245;3246;3247;3248;3249;3250;3251;3252;3253;3254;3255;3256;3257;3258;3259;3260;3261;3262;3263;3264;3265;3266;3267;3268;3269;3270;3271;3272;3273;3274;3275;3276;3277;3278;3279;3280;3281;3282;3283;3284;3285;3286;3287;3288;3289;3290;3291;3292;3293;3294;3295;3296;3297;3298;3299;3300;3301;3302;3303;3304;3305;3306;3307;3308;3309;3310;3311;3312;3313,6351;3314;3315;3316;3317;3318;3319;3320,4782;3321;3322;3323;3324;3325;3326;3327;3328;3329;3330;3331;3332;3333;3334;3335;3336;3337;3338;3339;3340;3341;3342;3343;3344;3345;3346;3347;3348;3349;3350;3351;3352;3353;3354;3355;3356;3357;3358;3359;3360;3361;3362;3363;3364;3365;3366;3367;3368;3369;3370;3371;3372;3373;3374;3375;3376;3377;3378;3379;3380;3381;3382;3383;3384;3385;3386;3387;3388;3389;3390;3391;3392;3393;3394;3395;3396;3397;3398;3399;3400;3401;3402;3403;3404;3405;3406;3407;3408;3409;3410;3411;3412;3413;3414;3415;3416;3417;3418;3419;3420;3421;3422;3423;3424;3425;3426;3427;3428;3429;3430;3431;3432;3433;3434;3435;3436;3437;3438;3439;3440;3441,4394;3442;3443;3444;3445;3446;3447;3448;3449;3450;3451,4405;3452;3453;3454;3455;3456;3457;3458;3459;3460;3461;3462;3463;3464;3465;3466;3467;3468;3469;3470;3471;3472;3473;3474;3475;3476;3477;3478;3479;3480;3481;3482;3483;3484;3485;3486;3487;3488;3489,5003;3490;3491;3492;3493;3494;3495;3496;3497;3498;3499;3500;3501;3502;3503;3504;3505;3506;3507;3508;3509;3510;3511;3512;3513;3514;3515;3516;3517;3518;3519;3520;3521;3522;3523;3524;3525;3526;3527;3528;3529;3530;3531;3532;3533;3534;3535;3536;3537;3538;3539;3540;3541;3542;3543;3544;3545;3546;3547;3548;3549;3550;3551;3552;3553;3554;3555;3556;3557;3558;3559;3560;3561;3562;3563;3564;3565;3566;3567;3568;3569;3570;3571;3572;3573;3574;3575;3576;3577;3578;3579;3580;3581;3582;3583;3584;3585;3586;3587;3588;3589;3590;3591;3592;3593;3594;3595;3596;3597;3598;3599;3600;3601;3602;3603;3604;3605;3606;3607;3608;3609;3610;3611;3612;3613;3614;3615;3616;3617;3618;3619;3620;3621;3622;3623;3624;3625;3626;3627;3628;3629;3630;3631;3632;3633;3634;3635;3636;3637;3638;3639;3640;3641;3642;3643;3644;3645;3646,4191;3647;3648;3649;3650;3651;3652;3653;3654;3655;3656;3657;3658;3659;3660;3661;3662;3663;3664;3665;3666;3667;3668;3669;3670;3671;3672;3673;3674;3675;3676;3677;3678;3679;3680;3681;3682;3683;2686;3685;3686;3687;3688;3689;3690;3691;3692;3693;3694;3695,4399;3696;3697;3698;3699;3700;3701;3702;3703;3704;3705;3706;3707;3708,6612;3709;3710;3711;3712;3713;3714;3715;3716;3717;3718;3719;3720;3721;3722;3723;3724;3725;3726;3727;3728;3729;3730;3731;3732;3733;3734;3735;3736;3737;3738;3739;3740;3741;3742;3743;3744;3745;3746;3747;3748;3749;3750;3751;3752;3753;3754;3755;3756;3757;3758;3759;3760;3761;3762;3763;3764;3765;3766;3767;3768;3769;3770;3771;3772;3773;3774;3775;3776;3777;3778;3779;3780;3781;3782;3783;3784;3785;3786;3787;3788;3789;3790;3791;3792;3793;3794;3795;3796;3797;3798;3799;3800;3801;3802;3803;3804;3805;3806;3807;3808;3809;3810;3811;3812;3813;3814;3815;3816;3817;3818;3819;3820;3821;3822;3823;3824;3825;3826;3827;3828;3829;3830;3831;3832;3833;3834;3835;3836;3837;3838;3839;3840;3841;3842;3843;3844;3845;3846;3847;3848;3849;3850;3851;3852;3853;3854;3855;3856;3857;3858;3859;3860;3861;3862;3863;3864;3865;3866;3867;3868;3869;3870;3871;3872;3873;3874;3875;3876;3877,4097;3878;3879;3880;3881;3882;3883;3884;3885;3886;3887;3888;3889;3890;3891;3892;3893;3894;3895;3896;3897;3898;3899;3900,6879;3901;3902;3903;3904;3905;3906;3907;3908;3909;3910;3911;3912;3913;3914;3915;3916;3917;3918;3919;3920;3921;3922;3923;3924;3925;3926;3927;3928;3929;3930;3931;3932;3933;3934;3934;3936;3937;3938;3939;3940;3941;2276;3943;3944;3945;3946;3947;3948;3949;3950;3951;3952;3953;3954;3955;1814;3957;3958;3959;3960;3961;3962;3963;3964;3965;3966;3967;3968;3969;3970;3971;3972;3973;3974;3975;3976;3977;3978;3979;3980;3981;3982;3983;3984;3985;3986;3987;3988;3989;3990;3991;3992;3993;3994;3995;3996;3997;3998;3999;4000;4001;4002;4003;4004;4005;4006;4007;4008;4009;4010;4013,4210;4012,4014;4013,4015;4014,4016;4015,4017;4016,4018;4017,4019;4018,4020;4019,4021;4020,4022;4021,4023;4022,4024;4023,4025;4024,4026;4025,4027;4026,4028;4027,4029;4028,4030;4029,4031;4030,4032;4031,4033;4032,4034;4033,4035;4034,4036;4035,4037;4036,4038;4037,4039;4038,4040;4039,4041;4040,4042;4041,4043;4042,4044;4043,4045;4044,4046;4045,4047;4046,4048;4047,4049;4048,4050;4049,4051;4050,4052;4051,4053;4052,4054;4053,4055;4054,4056;4055,4057;4056,4058;4057,4059;4058,4060;4059,4061;4060,4062;4061,4063;4062,4064;4063,4065;4064,4066;4065,4067;4066,4068;4067,4069;4068,4070;4069,4071;4070,4072;4071,4073;4072,4074,5465;4073,4075;4074,4076;4075,5472;4076;4077;4078;4079;4080;4081;4082;4083,5451;4084;4076;4086;4087;4088;4089;4090;4091;4092;4093;4094;4095;4096;2648;4098;4099;4100;4101;4102;4103,5019;4104;4105;4106;4107;4108;4109;4110;4111;4112;4113;4114;4115;4116;4117;4118;4119;4120;4121;4122;4123;4124;4125;4126;4127;4128;4129;4130;4131;4132;4133;4134;4135;4136;4137;4138;4139;4140;4141;4142;4143;4144;4145;4146;4147;4148;4149;4150;4151;4152;4153;4154;4155;4156;4157;4158;4159;4160;4161;4162;4163;4164;4165;4166;4167;4168;4169;4170;4171;4172;4173;4174;4175;4176;4177;4178;4179;4180;4181;4182;4183;4184;4185;4186;4012;4188;4189;4190;4017;4192;4193;4194;4195;4196;4197;4198;4199;4200;4201;4202;4203;4204;4205;2489;4207;4208;4209;4085;4211;4212;4213;4214;4215;4216;4217;4218;4219;4220;4221;4222;4223;4224;4225;4226;4227;4228;4229;4230;4231;4232;4233;4234;4235;4236;4237;4238;4239;4240;4241;4242;4243;4244;4245;4246;4247;4248;4249;4250;4251;4252;4253;4254;4255;4256;4257;4258;4259;4260;4261;4262;4263;4264;4265;4266;4267;4268;4269;4270;4271;4272;4273;4274;4275;4276;4277;4278;4279;4280;4281;4282;4283;4284;4285;4286;4287;4288;4289;4290;4291;4292;4293;4294;4295;4296;4297;4298;4299;4300;4301;4302;4303;4304;4305;4306;4307;4308;4309;4310;4311;4312;4313;4314;4315;4316;4317;4318;4319;4320;4321;4322;4323;4324;4325;4326;4327;4328;4329;4330;4331;4332;4333;4334;4335;4336;4337;4338;4339;4340;4341;4342;4343;4344;4345;4346;4347;4348;4349;4350;4351;4352;4353;4354;4355;4356;4357;4358;4359;4360;4361;4362;4363;4364;4365;4366;4367;4368;4369;4370;4371;4372;4373;4374;4375;4376;4377;4378;4379;4380,6606;4381;4382;4383;4384;4385;4386;4387;4388;4389;4390;4391;4392;-1;4394;4395;4396;4397;4398;4387;4400;4401;4402;4403;4404;2850;4406;4407;4408;4409;4410;4411;4412;4413;4414;4415;4416;4417;4418;4419;4420;4421;4422;4423;4424;4425;4426;4427;4428;4429;4430;4431;4432;4433;4434;4435;4436;4437;4438;4439;4440;4441;4442;4443;4444;4445;4446;4447;4448;4449;4450;4451;4452;4453;4454;4455;4456;4457;4458;4459;4460;4461;4462;4463;4464;4465;4466;4467;4468;4469;4470;4471;4472;4473;4474;4475;4476;4477;4478;4479;4480;4481;4482;4483;4484;4485;4486;4487;4488;4489;4490;4491;4492;4493;4494;4495;4496;4497;4498;4499;4500;4501;4502;4503;4504;4505;4506;4507;4508;4509;4510;4511;4512;4513;4514;4515;4516;4517;4518;4519;4520;4521;4522;4523;4524;4525;4526;4527;4528;4529;4530;4531;4532;4533;4534;4535;4536;1235;4538;4539;4540;4541;4542;4543;4544;4545;4546,5254;4547;4548;4549;4550;4551;4552;4553;4554;4555;4556;4557;4558;4559;4560;4561;4562;4563;4564;4565;4566;4567;4568;4569;4570;4571;4572;4573;4574;4575;4576;4577;4578;4579;4580;4581;4582;4583;4584;4585;4586;4587;4588;4589;4590;4591;4592;4593;4594;4595;4596;4597;4598;4599;4600;4601;4602;4603;4604;4605;4606;4607;4608;4609;4610;4611;4612;4613;4614;4615;4616;4617;4618;4619;4620;4621;4622;4623;4624;4625;4626;4627;4628;4629;4630;4631;4632;4633;4634;4635;4636;4637;4638;4639;4640;4641;4642;4643;4644;4645;4638;4647;4648;4649;4650;4651;4187;4653;4654;4655;4656;4657,5109;4658;4659;4660;4661;4662;4663,5042;4664;4665;4666;4667;4668;4669;4670;4671;4672;4673;4674;4675;4676;4677;4678;4679;4680;4681;4682;4683;4684;4685;4686;4687;4688;4689;4690;4691;4692;4693;4694;4695;4696;4697;4698;4699;4700;4701;4702;4703;4704;4705;4706;4707;4708;4709;4710;4711;4712;4713;4714;4715;4716;4717;4718;4719;4720;4721;4722;4723;4724;4725;4726;4727;4728;4729;4730;4731;4732;4733;4734;4735;4736;4737;4738;4739;4740;4741;4742;4743;4744;4745;4746;4747;4748;4749;4750;4751;4752;4753;4754;4755;4756;4757;4758;4759;4760;4761;4762;4763;4764;4765;4766;4767;4768;4769;4770;4771;4772;4773;4774;4775;4776;4777;4778;4779;4780;4781;4773;4783;4784;4785;4786;4787;4788;3316;4790;4791;4792;4793;4794;4795;4796;4797;4798;4799;4800;4801;4802;4803;4804;4805;4806;4807;4808;4809;4810;4811;4812;4813;4814;4815;4816;4817;4818;4819;4820;4821;4822;4823;4824;4825;4826;4827;4828;4829;4830;4831;4832;4833;4834;4835;4836;4837;4838;4839;4840;4841;4842;4843;4844;4845;4846;4847;4848;4849;4850;4851;4852;4853;4854;4855;4856;4857;4858;4859;4860;4861;4862;4863;4864;4865;4866;4867;4868;4869;4870;4871;4872;4873;4874;4875;4876;4877;4878;4879;4880;4881;4882;4883;4884;4885;4886;4887;4888;4889;4890;4891;4892;4893;4894;4895;4896;4897;4898;4899;4900;4901;4902;4903;4904;4905;4906;4907;4908;4909;4910;4911;4912;4913;4914;4915,5117;4916;4917;4918;4919;4920;4921;4922;4923;4924;4925;4926;4927;4928;4929;4930;4931;4932;4933;4934;4935;4936;4937;4938;4939;4940;4941;4942;4943;4944;4945;4946;4947;4948;4949;4950;4951;4952;4953;4954;4955;4956;4957;4958;4959;4960;4961;4962;4963;4964;4965;4966;4967;4968;4969;4970;4971;4972;4973;4974;4975;4976;4977;4978;4979;4980;4981;4982;4983;4984;4985;4986;4987;4988;4989;4990;4991;4992;4993;4994;4995;4996;4997;4998;4999;5000;5001;-1;5003;5004;5002,5005;4997;5007;5008;5009;5010;5011;3485;5013;5014;5015;5016;5017;5018;4180;5020;5021;5022;5023;5024;5025;5026;5027;5028;5029;5030;5031;5032;5033;5034;5035;5036;5037;5038;5039;5040;5041;4186;5043;5044;5045;5046;5047,5124;5048;5049;5050;5051;5052;5053;5054;5055;5056;5057;5058;5059;5060;5061;5062;5063;5064;5065;5066;5067;5068;5069;5070;5071;5072;5073;5074;5075;1318;5077;5078;5079;5080;5081,5722;5082;5083;5084;5085;5086;5087;5088;5089;5090;5091;5092;5093;5094;5095;5096;5097;5098;5099;5100;5101;5102;5103;5104;5105;5106;5107;5108;5104;5110;5111;5112;5113;5114;5115;5116;4911;5118;5119;5120;5121;5122;5123;5070;5125;5126;5127;5128;5129;5130;5131;5132,5715;5133;5134;5135;5136;5137;5138;5139;5140;5141;5142;5143;5144;5145;5146;5147;5148;5149;5150;5151;5152;5153;5154;5155;5156;5157;5158;5159,6059;5160;5161;5162;5163;5164;5165;5166;5167;5168;5169;5170;5171;5172;5173;5174;5175;5176;5177;5178;5179;5180;5181;5182;5183;5184;5185;5186;5187;5188;5189;5190;5191;5192;5193;5194;5195;5196;5197;5198;5199;5200;5201;5202;5203;5204;5205;5206;5207;5208;5209;5210;5211;5212;5213;5214;5215;5216;5217;5218;5219;5220;5221;5222;5223;5224;5225;5226;5227;5228;5229;5230;4533;5232;5233;5234;5235;5236;5237;5238;5239;5240;5241;5231,5242;5243;5244;5245;5246;5211;5248;5249;5250;5251;5252;5253;5247;5255;5256;5257;5258;5259;5260;5261;5262;5263;5264;5265;5266;5267;5268;5269;5270;5271;5272;5273;5274;5275;5276;5277;5278;5279;5280;5281;5282;5283;5284;5285;5286;5287;5288;5289;5290;5291;5292;5293;5294;5295;5296;5297;5298;5299;5300;5301;5302;5303;5304;5305;5306;5307;5308;5309;5310;5311;5312;5313;5314;5315;5316;5317;5318;5319;5320;5321;5322;5323;5324;5325;5326;5327;5328;5329;5330;5331;5332;5333;5334;5335;5336;5337;5338;5339;5340;5341;5342;5343;5344;5345;5346;5347;5348;5349;5350;5351;5352;5353;5354;5355;5356;5357;5351;5359;5360;5361;5362;5363;5364;5365;5366;5367;5368;5369;5370;5371;5372;3057;5374;5375;5376;5377;5378;5379;5380;5381;5382;5383;716;5385;5386;5387;5388;5389;5390;5391;5392;5393;5394;5395;5396;5397;5398;5399;5400;5401;5402;5403;5404;5405;5406;5407;5408;5409;5410;5411;5412;5413;5414;5415;5416;5417;5418;5419;5420;5421;5422;5423;5424;5425;5426;5427;5428;5429,6859;5430;5431;5432;5433;5434;5435;5436;5437;5438;5439;5440;5441;5442;5443;5444;5445;5446;5447;5448;5449;5450;5444;5452;5453;5454;5455;5456;5457;5458;5459;5460;5461;5462;5463;5464;3871;5466;5467;5468;5469;5470;5471;3676;5473;5474;5475;5476;5477;5478;1604;5480;5481;5482;875;5484;5485;5486;5487;5488;5489;5490;5491,5502;5492;5493;5494;2013;5496;5497;5498;5499;5500;5501;1523;5503;5504;5505;5506;5507;5508;5509;1523;5511;5512;5513;5514;5495;5516;5517;5518;5519;5520;5521;5522;5523;5524;5525;5526;5527;5528;5529;5530;5531;5532;5533;5534;5535;5536;5537;5538;5539;5540;5541;5542;5543;5544;5545;5546;5547;5548;5549;5550;5551;5552;5553;5554;5555;5556;5557;5558;5559;5560;5561;5562;5563;5564;5565;5566;5567;5568;5569;5570;5571;5572;5573;5574;5575;5576;5577;5578;5579;5580;5581;5582;5583;5584;5585;5586;5587;5588;5589;5590;5591;5592;5593;5594;5595;5596;5597;5598;5599;5600;5601;5602;5603;5604;5605;5606;5607;5608;5609;5610;5611;5612;5613;5614;5615;5616;5617;5618;5619;5620;5621;5622;5623;5624;5625;5626;5627;5628;5629;5630;5631;5632;5633;5634;5635;5636;5637;5638;5639;5640;5641;5642;5643;5644;5645;5646;5647;5648;5649;5650;5651;5652;5653;5654;5655;5656;5657;5658;5659;5660;5661;5662;5663;5664;5665;5666;5667;5668;5669;5670;5671;5672;5673;5674;5675;5676;5677;5678;5679;5680;5681;5682;5683;5684;5685;5686;5687;5688;5689;5690;5691;5692;5693;5694;5695;5696;5697;5698;5699;5700;5701;5702,5815;5703;5704;5705;5706;5707;5708;5709;5710;5711;5712;5713;5714;5712;5716;5717;5718;5719;5720;5721;5724;5723,5725,5821;5724,5726;5725,5727;5726,5728;5727,5729;5728,5730;5729,5731;5730,5732;5731,5733;5732,5734;5733,5735;5734,5736;5735,5737;5736,5738;5737,5739;5738,5740;5739,5741;5740,5742;5741,5743;5742,5744;5743,5745;5744,5746;5745,5747;5746,5748;5747,5749;5748,5750;5749,5751;5750,5752;5751,5753;5752,5754;5753,5755;5754,5756;5755,5757;5756,5758;5757,5759;5758,5760;5759,5761;5760,5762;5761,5763;5762,5764;5763,5765;5764,5766;5765,5767;5766,5768;5767,5769;5768,5770;5769,5771;5770,5772;5771,5773;5772,5774;5773,5775;5774,5776;5775,5777;5776,5778;5777,5779;5778,5780;5779,5781;5780,5782;5781,5783;5782,5784;5783,5785;5784,5786;5785,5787;5786,5788;5787,5789;5788,5790;5789,5791;5790,5792;5791,5793;5792,5794;5793,5795;5794,5796;5795,5797;5796,5798;5797,5810;5798;5799;5800;5801;5802;5803;5804;5575;5806;5807;5808;5809;5723;5811;5812;5813;5814;1331;5816;5817;5818;5819;5820;5152;5822;5823;5824;5825;5826;5827;5828,6073;5829;5830;5831;5832;5833;5834;5835;5836;5837;5838;5839;5840;5841;5842;5843;5844;5845;5846;5847;5848;5849;5850;5851;5852;5853;5854;5855;5856;5857;5858;5859;5860;5861;5862;5863;5864;5865;5866;5867;5868;5869;5870;5871;5872;5873;5874;5875;5876;5877;5878;5879;5880;5881;5882;5883;5884;5885;5886;5887;5888;5889;5890;5891;5892;5893;5894;5895;5896;5897;5898;5899;5900;5901;5902;5903;5904;5905;5906;5907;5908;5909;5910;5911;5912;5913;5914;5915;5916;5917;5918;5919;5920;5921;5922;5923;5924;5925;5926;5927;5928;5929;5930;5925;5932;5933;5934;5935;5936;5937;5938;1999;5940;5941;5942;5943;5944;5945;5946;5947;5948,5957;888;5950;5951;5952;5953;5954;5955;5956;5949;5958;5959;5960;5961;5962;5963;5964;5965;5966;5967;5968;5969;5970;5971;5972;5973;5974;5975;5976;5977;5978;5979;5980;5981;5982;5983;5984;5985;5986;5987;5988;5989;5990;5991;5992;5993;5994;5995;5996;5997;5998;5999;6000;6001;6002;6003;6004;6005;6006;6007;6008;6009;6010;6011;6012;6013;6014;6015;6016;6017;6018;6019;6020;6021;6022;6023;6024;6025;6026;6027;6028;6029;6030;6031;6032;6033;6034;6035;6036;6037;6038;6039;6040;6041;6042;6043;6044;6045;6046;6047;6048;6049;6050;6051;6052;6053;6054;6055;6056;6057;6058;6054;6060;6061;6062;6063;6064;6065;1294;6067;6068;6069;6070;6071;6072;3703;6074;6075;6076;6077;6078;6079;6080,6620;6081;6082;6083;6084;6085;6086;6087;6088;6089;6090;6091;6092;6093;6094;6095;6096;6097;6098;6099;6100;6101;6102;6103;6104;6105;6106;6107;6108;6109;6110;6111;6112;6113;6114;6115;6116;6117;6118;6119;6120;6121;6122;6123;6124;6125;6126;6127;6128;6129;6130;6131;6132;6133;6134;6135;6136;6137;6138;6139;6140;6141;6142;6143;6144;6145;6146;6147;6148;6149;6150;6151;6152;6153;6154;6155;6156;6157;6158;6159;6160;6161;6162;6163;6164;6165;6166;6167;6168;6169;6170;6171;6172;6173;6174;6175;6176;6177;6178;6179;6180;6181;6182;6183;6184;6185,6219;6186;6187;6188;6189;6190;6191;6192;6193;6194;6195;6196;6197;6198;6199;6200;6201;6172;6203;6204,6743;6205;6206;6207;6208;6209;6210;6211;6212;6213;6214;6215;6216;6217;6218;6202;6220;6221;6222,6989;6223;6224;6225;6226;6227;6228;6229;6230;6231;6232;6233;6234;6235;6236;6237;6238;6239;6240;6241;6242;6243;6244;6245;6246;6247;6248;6249;6250;6251;6252;6253;6254;6255;6256;6257;6258;6259;6260;6261;6262;6263;6264;6265;6266;6267;6268;6269;6270;6271;6272;6273;6274;6275;6276;6277;6278;6279;6280;6281;6282;6283;6284;6285;6286;6287;6288;6289;6290;6291;6292;6293;6294;6295;6296;6297;6298;6299;6300;6301;6302;6303;6304;6305;6306;6307;6308;6309;6310;6311,6696;6312;6313;6314;6315;6316;6317;6318;6319;6320;6321;6322;6323;6324;6325;6326;6327;6328;6329;6330;6331;6332;6333;6334;6327;6336;6337;6338;6339;6340;6341;6342;6343;6344;6345;6346;6347;6348;6349;6350;3303;6352;6353;6354;6355;6356;6357;6358;6359,6890;6360;6361;6362;6363;6364;6365;6366;6367;6368;6369;6370;6371;6372;6373;6374;6375;6376;6377;6378;6379;6380;6381;6382;6383;6384,6708;6385;6386;6387;6388;6389;6390;6391;6392;6393;6394;6395;6396;6397;6398;6399;6400;6401;6402;6403;6404;6405;6406;6407;6408;6409;6410;6411;6412;6413;6414;6415;6416;6417;6418;6419;6420;6421;6422;6423;6424;6425;6426;6427;6428;6429;6430;6431;6432;6433;6434;6435;6436;6437;6438;6439;6440;6441;6442;6443;6444;6445;6446;6447;6448;6449;6450;6451;6452;6453;6454;6455;6456;6457;6458;6459;6460;6461;6462;6463;6464;6465;6466;6467;6468;6469;6470;6471;6472,6996;6473;6474;6475;6476;6477;6478;6479;6480;6481;6482;6483;6484;6485;6486,6764;6487;6488;6489;6490;6491;6492;6493;6494;6495;6496;6497;6498;6499;6500;6501;6502;6503;6504;6505;6506;6507;6508;6509;6510;6511;6512;6513;6514;6515;6516;6517;6518;6519;6520;6521,7024;6522;6523;6524;6525;6526;6527;6528;6529;6530;6531;6532;6533;6534;6535;6536;6537;6538;6539;6540;6541;6542;6543;6544;6545;6546;6547;6548;6549;6550;6551;6552;6553;6554;6555;6556;6557;6558;6559;6560;6561;6562;6563;6564;6565;6566;6567;6568;6569;6570;6571;6572;6573;6574;6575;6576;6577;6578;6579;6580;6581;6582;6583;6584;6585;6586;6587;6588;6589;6590;6591;6592;6593;6594;6595;6596;6597;6598;6599;6600;6601;6602;6603;6604;6605;6599;6607;6608;6609;6610;6611;4376;6613;6614;6615;6616;6617;6618;6619;6280;6621;6622;6623;6624;6625;6626;6627;6628;6629,6716;6630;6631;6632;6633;6634;6635;6636;6637;6638;6639;6640;6641;6642;6643;6644;6645;6646;6647;6648;6649;6650;6651;6652;6653;6654;6655;6656;6657;6658;6659;6660;6661;6662;6663;6664;6665;6666;6667;6668;6669;6670;6671;6672;6673;6674;6675;6676;6677;6678;6679;6680;6681;6682;6683;6684;6685;6686;6687;6688;6689;6690;6691;6692;6693;6694;6695;6689;6697;6698;6699;6700;6701;6702;6703;6704;6705;6706;6707;6402;6709;6710;6711;6712;6713;6714;6715;6494;6717;6718;6719;6720;6721;6722;6723;6724;6725;6726;6727;6728;6729;6730;6731;6732;6733;6734;6735;6736;6737;6738;6739;6740;6741;6742;6215;6744;6745;6746;6747;6748;6749;6750;6751;6752;6753;6754;6755;6756;6757;6758;6759;6760;6761;6762;6763;4228;6765;6766;6767;6768;6769;6770,6872;6771;6772;6773;6774;6775;6776;6777;6778;6779;6780;6781;6782;6783;6784;6785;6786;6787;6788;6789;6790;6791;6792;6793;6794;6795;6796;6797;6798;6799;6800;6801;6802;6803;6804;6805;6806;6807;6808;6809;6810;6811;6812;6813;6814;6815;6816;6817;6818;6819;6820;6821;6822;6823;6824;6825;6826;6827;6828;6829;6830;6831;6832;6833;6834;6835;6836;6837;6838;6839;6840;6841;6842;6843;6844;6845;6846;6847;6848;6849;6850;6851;6852;6853;6854;6855;6856;6857;6858;3847;6860;6861;6862;6863;6864;6865;6866;6867;6868;6869;6870;6871;6845;6873;6874;6875;6876;6877;6878;2844;6880;6881;6882;6883;6884;6885;6886;6887;6888;6889;6197;6891;6892;6893;6894;6895;6896;6897;6898;6899;6900;6901;6902;6903;6904;6905;6906;6907;6908;6909;6910;6911;6912;6913;6914;6915;6916;6917;6918;6919;6920;6921;6922;6923;6924;6925;6926;6927;6928;6929;6930;6931;6932;6933;6934;6935;6936;6937;6938;6939;6940;6941;6942;6943;6944;6945;6946;6947;6948;6949;6950;6951;6952;6953;6954;6955;6956;6957;6958;6959;6960;6961;6962;6963;6964;6965;6966;6967;6968;6969;6970;6971;6972;6973;6974;6975;6976;6977;6978;6979;6980;6981;6982;6983;6984;6985;6986;6987;6988;6982;6990;6991;6992;6993;6994;6995;6139;6997;6998;6999;7000;7001;7002;7003;7004;7005;7006;7007;7008;7009;7010;7011;7012;7013;7014;7015;7016;7017;7018;7019;7020;7021;7022;7023;128;7025;7026;7027;7028;7029;7030;7031;7032;7033;7034;7035;7036;7037;7038;7039;7040;7041;7042;7043;7044;7045;7046;7047;7048;7049;7050;7051;290,7052;7053;7054;7055;7056;7057;7058;7059;7060;7061;7062;7063;7064;7065;7066;7067;7068;7069;7070;7071;7072;7073;7074;7075;7076;7077;7078;7079;7080;7081;7082;7083;7084;7085;7086;7087;7088;7089;7090;7091;7092;7093;7094;7095;7096;7097;7098;7099;7100;7101;7102;7103;7104;7105;7106;7107;7108;7109;7110;7111;7112;7113;7114;7115;7116;7117;7118;7119;7120;7121;7122;7123;7124;7125;7126;7127;7128;7129;7130;7131;7132;7133;7134;7135;7136;7137;7138;7139;7140;7141;7142;7143;7144;7145;7146;7147;7148;7149;7150;7151;7152;7153;7154;7155;7156;7157;7158;7159;7160;7161;7162;7163;7164;7165;7166;7167;7168;7169;7170;7171;7172;7173;7174;7175;7176;7177;7178;7179;7180;7181;7182;7183;7184;7185;7186;7187;7188;7189;7190;7191;7192;7193;7194;7195;7196;7197;7198;7199;7200;7201;7202;7203;7204;7205;7206;7207;7208;7209;7210;7211;7212;7213;7214;7215;7216;7217;7218;7219;7220;7221;7222;7223;7224;7225;7226;7227;7228;7229;7230;7231;7232;7233;7234;7235;7236;7237;7238;7239;7240;7241;7242;7243;7244;2223;7246;7247;7248;7249;7250;7251;7252;7253;7254;7255;7256;7257;7258;7259;7260;7261;7262;7263;7264;7265;7266;7267;7268;7269;7270;7271;7272;7273;7274;7275;7276;7277;7278;7279;7280;7281;7282;7283;7284;7285;7286;7287;7288;7289;7290;7291;7292;7293;7294;7295;7296;7297;7298;7299;7300;7301;1285;7303;7304;7305;7306;7307;7308;7309;7310;7311;7312;7313;7314;7315;7316;7317;7318;7319;7320;7321;7322;7323;7324;7325;7326;7327;7328;7329;7330;7331;7332;7333;7334;7335;7336 + =,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;1631,1631,33,33,33,1631,33,1631,1631,1631,1631,33,1631,33;=,34;=,35;=,36;=,37;=,38;=,39;=,40;=,41;=,42;=,43;=,44;=,45;=,46;=,47;=,48;=,49;=,50;=,51;=,52;=,53;=,54;=,55;=,56;1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,1692,57,1692,1692;=,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,129,129,129,129,129,129,129,129,129,129,7025,129,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,291,291,291,291,291,291,291,291,291,291,7053,291,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,1687,392,1687,1687,392,1687,392,392,392,392,1687,392,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,426,783,783,783,783,783,783,783,783,783,426,783,783;=,427;=,428;=,429;=,430;=,431;=,432;=,433;=,434;=,435;=,436;=,437;=,438;-1,439,439,439,439,439,439,439,439,439,439,439,439,439;=,440;=,441;=,442;=,443;=,444;=,445;=,446;=,447;=,448;=,449;=,450;=,451;=,452;=,453;=,454;=,455;=,456;=,457;459,458,459,459,459,459,459,459,459,459,459,458,459,459;=,10;=,460;=,461;=,462;=,463;=,464;=,419;=,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;=,19;=,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,717,717,717,717,717,717,5385,5385,5385,5385,717,717,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;777,771,771,771,771,771,771,771,771,771,771,771,771,771;=,772;1625,773,1625,1625,1625,1625,1625,1625,1625,1625,1625,773,1625,1625;=,774;=,775;=,776;=,1;=,778;=,779;=,780;=,781;=,782;=,434;=,784;=,785;=,786;=,787;=,788;=,789;=,790;=,791;=,792;=,793;=,794;=,795;=,796;2450,2450,797,797,797,2450,797,2450,797,2450,2450,2450,797,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;1630,1630,876,1630,1630,876,1630,876,876,1630,876,1630,1630,876;=,877;=,878;=,879;=,880;=,881;=,882;=,883;=,884;=,885;=,886;=,887;=,888;5950,5950,889,5950,5950,5950,5950,5950,5950,5950,5950,5950,5950,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;2023,2023,2023,2023,2023,1052,2023,1052,1052,2023,1052,2023,2023,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,1117,1117,1117,1117,1117,1117,3084,3084,1117,1117,1117,1117,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,1236,4538,1236,1236,1236,1236,1236,1236,1236,1236,1236,1236,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,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,1286,7303;=,1287;=,1288;=,1289;=,1290;=,1291;=,1292;=,1293;=,1294;6067,6067,6067,6067,6067,1295,6067,1295,1295,6067,1295,6067,6067,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,1319,1319,1319,1319,5077,1319,5077,5077,5077,5077,1319,1319,5077;=,1320;=,1321;=,1322;=,1323;=,1324;=,1325;=,1326;=,1327;=,1328;=,1329;=,1330;=,1331;=,5816;=,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,1524,5503,5511,5511,5503,5511,5503,5503,1524,5503,1524,5511,5503;=,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,1605,1605,1605,1605,5480,1605,5480,5480,5480,5480,1605,1605,1605;=,1606;=,1607;=,1608;=,1609;=,1610;=,1611;=,1612;=,1613;=,1614;=,1615;2446,1616,2446,2446,2446,2446,2446,2446,2446,2446,2446,1616,2446,2446;=,1617;=,1618;=,1619;=,1620;=,775;=,1622;=,1623;=,1624;=,471;=,1626;=,1627;=,1628;=,1629;=,789;=,2204;=,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,-1,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671,1671;=,1672;=,1673;=,1674;=,1675;=,1676;=,1677;=,1678;=,1679;1680,1680,1685,1685,1685,1680,1685,1680,1680,1680,1680,1685,1680,1685;=,1681;=,1682;=,1683;=,1684;=,384;=,1686;=,44;=,1688;=,1689;=,1690;=,1691;=,1634;=,1693;=,1694;=,1695;=,1696;=,1697;=,1698;=,1699;=,1700;=,1701;=,1702;=,1703;=,1704;=,1705;=,1706;=,1707;=,1708;=,1709;=,1710;=,1711;=,1712;=,1713;1819,1819,1714,1714,1714,1819,1714,1819,1819,1819,1819,1819,1819,1714;=,1715;=,1716;1817,1817,1717,1717,1717,1817,1717,1817,1817,1817,1817,1817,1817,1717;1716,1716,1718,1718,1718,1716,1718,1716,1716,1716,1716,1716,1716,1718;1717,1717,1719,1719,1719,1717,1719,1717,1717,1717,1717,1717,1717,1719;1718,1718,1720,1720,1720,1718,1720,1718,1718,1718,1718,1718,1718,1720;1719,1719,1721,1721,1721,1719,1721,1719,1719,1719,1719,1719,1719,1721;1720,1720,1722,1722,1722,1720,1722,1720,1720,1720,1720,1720,1720,1722;1721,1721,1723,1723,1723,1721,1723,1721,1721,1721,1721,1721,1721,1723;1722,1722,1724,1724,1724,1722,1724,1722,1722,1722,1722,1722,1722,1724;1723,1723,1725,1725,1725,1723,1725,1723,1723,1723,1723,1723,1723,1725;1724,1724,1726,1726,1726,1724,1726,1724,1724,1724,1724,1724,1724,1726;1725,1725,1727,1727,1727,1725,1727,1725,1725,1725,1725,1725,1725,1727;1726,1726,1728,1728,1728,1726,1728,1726,1726,1726,1726,1726,1726,1728;1727,1727,1729,1729,1729,1727,1729,1727,1727,1727,1727,1727,1727,1729;1728,1728,1730,1730,1730,1728,1730,1728,1728,1728,1728,1728,1728,1730;1729,1729,1731,1731,1731,1729,1731,1729,1729,1729,1729,1729,1729,1731;1730,1730,1732,1732,1732,1730,1732,1730,1730,1730,1730,1730,1730,1732;1731,1731,1733,1733,1733,1731,1733,1731,1731,1731,1731,1731,1731,1733;1732,1732,1734,1734,1734,1732,1734,1732,1732,1732,1732,1732,1732,1734;1733,1733,1735,1735,1735,1733,1735,1733,1733,1733,1733,1733,1733,1735;1734,1734,1736,1736,1736,1734,1736,1734,1734,1734,1734,1734,1734,1736;1735,1735,1737,1737,1737,1735,1737,1735,1735,1735,1735,1735,1735,1737;1736,1736,1738,1738,1738,1736,1738,1736,1736,1736,1736,1736,1736,1738;1737,1737,1739,1739,1739,1737,1739,1737,1737,1737,1737,1737,1737,1739;1738,1738,1740,1740,1740,1738,1740,1738,1738,1738,1738,1738,1738,1740;1739,1739,1741,1741,1741,1739,1741,1739,1739,1739,1739,1739,1739,1741;1740,1740,1742,1742,1742,1740,1742,1740,1740,1740,1740,1740,1740,1742;1741,1741,1743,1743,1743,1741,1743,1741,1741,1741,1741,1741,1741,1743;1742,1742,1744,1744,1744,1742,1744,1742,1742,1742,1742,1742,1742,1744;1743,1743,1745,1745,1745,1743,1745,1743,1743,1743,1743,1743,1743,1745;1744,1744,1746,1746,1746,1744,1746,1744,1744,1744,1744,1744,1744,1746;1745,1745,1747,1747,1747,1745,1747,1745,1745,1745,1745,1745,1745,1747;1746,1746,1748,1748,1748,1746,1748,1746,1746,1746,1746,1746,1746,1748;1747,1747,1749,1749,1749,1747,1749,1747,1747,1747,1747,1747,1747,1749;1748,1748,1750,1750,1750,1748,1750,1748,1748,1748,1748,1748,1748,1750;1749,1749,1751,1751,1751,1749,1751,1749,1749,1749,1749,1749,1749,1751;1750,1750,1752,1752,1752,1750,1752,1750,1750,1750,1750,1750,1750,1752;1751,1751,1753,1753,1753,1751,1753,1751,1751,1751,1751,1751,1751,1753;1752,1752,1754,1754,1754,1752,1754,1752,1752,1752,1752,1752,1752,1754;1753,1753,1755,1755,1755,1753,1755,1753,1753,1753,1753,1753,1753,1755;1754,1754,1756,1756,1756,1754,1756,1754,1754,1754,1754,1754,1754,1756;1755,1755,1757,1757,1757,1755,1757,1755,1755,1755,1755,1755,1755,1757;1756,1756,1758,1758,1758,1756,1758,1756,1756,1756,1756,1756,1756,1758;1757,1757,1759,1759,1759,1757,1759,1757,1757,1757,1757,1757,1757,1759;1758,1758,1760,1760,1760,1758,1760,1758,1758,1758,1758,1758,1758,1760;1759,1759,1761,1761,1761,1759,1761,1759,1759,1759,1759,1759,1759,1761;1760,1760,1762,1762,1762,1760,1762,1760,1760,1760,1760,1760,1760,1762;1761,1761,1763,1763,1763,1761,1763,1761,1761,1761,1761,1761,1761,1763;1762,1762,1764,1764,1764,1762,1764,1762,1764,1762,1762,1762,1762,1764;1763,1763,1765,1765,1765,1763,1765,1763,1765,1763,1763,1763,1763,1765;1764,1764,1766,1766,1766,1764,1766,1764,1766,1764,1764,1764,1764,1766;1765,1765,1767,1767,1767,1765,1767,1765,1767,1765,1765,1765,1765,1767;1766,1766,1768,1768,1768,1766,1768,1766,1768,1766,1766,1766,1766,1768;1767,1767,1769,1769,1769,1767,1769,1767,1769,1767,1767,1767,1767,1769;1768,1768,1770,1770,1770,1768,1770,1768,1770,1768,1768,1768,1768,1770;1769,1769,1771,1771,1771,1769,1771,1769,1771,1769,1769,1769,1769,1771;1770,1770,1772,1772,1772,1770,1772,1770,1772,1770,1770,1770,1770,1772;1771,1771,1773,1773,1773,1771,1773,1771,1773,1771,1771,1771,1771,1773;1772,1772,1774,1774,1774,1772,1774,1772,1774,1772,1772,1772,1772,1774;1773,1773,1775,1775,1775,1773,1775,1773,1775,1773,1773,1773,1773,1775;1774,1774,1776,1776,1776,1774,1776,1774,1776,1774,1774,1774,1774,1776;1775,1775,1777,1777,1777,1775,1777,1775,1777,1775,1775,1775,1775,1777;1776,1776,1778,1778,1778,1776,1778,1776,1778,1776,1776,1776,1776,1778;1777,1777,1779,1779,1779,1777,1779,1777,1779,1777,1777,1777,1777,1779;1778,1778,1780,1780,1780,1778,1780,1778,1780,1778,1778,1778,1778,1780;1779,1779,1781,1781,1781,1779,1781,1779,1781,1779,1779,1779,1779,1781;1780,1780,1782,1782,1782,1780,1782,1780,1782,1780,1780,1780,1780,1782;1781,1781,1783,1783,1783,1781,1783,1781,1783,1781,1781,1781,1781,1783;1782,1782,1784,1784,1784,1782,1784,1782,1784,1782,1782,1782,1782,1784;1783,1783,1785,1785,1785,1783,1785,1783,1785,1783,1783,1783,1783,1785;1784,1784,1786,1786,1786,1784,1786,1784,1786,1784,1784,1784,1784,1786;1785,1785,1787,1787,1787,1785,1787,1785,1787,1785,1785,1785,1785,1787;1786,1786,1788,1788,1788,1786,1788,1786,1788,1786,1786,1786,1786,1788;1787,1787,1789,1789,1789,1787,1789,1787,1789,1787,1787,1787,1787,1789;1788,1788,1790,1790,1790,1788,1790,1788,1790,1788,1788,1788,1788,1790;1789,1789,1791,1791,1791,1789,1791,1789,1791,1789,1789,1789,1789,1791;1790,1790,1792,1792,1792,1790,1792,1790,1792,1790,1790,1790,1790,1792;1791,1791,1793,1793,1793,1791,1793,1791,1793,1791,1791,1791,1791,1793;1792,1792,1794,1794,1794,1792,1794,1792,1794,1792,1792,1792,1792,1794;1793,1793,1795,1795,1795,1793,1795,1793,1795,1793,1793,1793,1793,1795;1794,1794,1796,1796,1796,1794,1796,1794,1796,1794,1794,1794,1794,1796;1795,1795,1797,1797,1797,1795,1797,1795,1797,1795,1795,1795,1795,1797;1796,1796,1798,1798,1798,1796,1798,1796,1798,1796,1796,1796,1796,1798;1797,1797,1799,1799,1799,1797,1799,1797,1799,1797,1797,1797,1797,1799;1798,1798,1800,1800,1800,1798,1800,1798,1800,1798,1798,1798,1798,1800;1799,1799,1801,1801,1801,1799,1801,1799,1801,1799,1799,1799,1799,1801;1800,1800,1802,1802,1802,1800,1802,1800,1802,1800,1800,1800,1800,1802;1801,1801,1803,1803,1803,1801,1803,1801,1803,1801,1801,1801,1801,1803;1802,1802,1804,1804,1804,1802,1804,1802,1804,1802,1802,1802,1802,1804;1803,1803,1805,1805,1805,1803,1805,1803,1805,1803,1803,1803,1803,1805;1804,1804,1806,1806,1806,1804,1806,1804,1806,1804,1804,1804,1804,1806;1805,1805,1807,1807,1807,1805,1807,1805,1807,1805,1805,1805,1805,1807;1806,1806,1808,1808,1808,1806,1808,1806,1808,1806,1806,1806,1806,1808;1807,1807,1809,1809,1809,1807,1809,1807,1809,1807,1807,1807,1807,1809;1808,1808,1810,1810,1810,1808,1810,1808,1810,1808,1808,1808,1808,1810;1809,1809,1811,1811,1811,1809,1811,1809,1811,1809,1809,1809,1809,1811;1810,1810,1812,1812,1812,1810,1812,1810,1812,1810,1810,1810,1810,1812;1811,1811,1813,1813,1813,1811,1813,1811,1813,1811,1811,1811,1811,1813;1812,1812,1814,1814,1814,1812,1814,1812,1814,1812,1812,1812,1812,1814;1813,1813,3957,3957,3957,1813,3957,1813,3957,1813,1813,1813,1813,3957;=,1814;=,1815;=,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;=,386;=,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,2000,2000,2000,2000,5940,2000,5940,5940,2000,5940,2000,2000,2000;=,2001;=,2002;=,2003;=,2004;=,2005;=,2006;=,2007;=,2008;=,2009;=,2010;=,2011;=,2012;=,2013;2014,2014,2014,2014,2014,5496,2014,5496,5496,2014,5496,2014,2014,2014;=,2015;=,2016;2017,2017,2019,2019,2019,2017,2019,2017,2019,2017,2017,2017,2019,2019;=,2018;=,1530;=,2020;=,2021;=,2022;=,2204;=,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,2053,-1,2053,2053,2053,2053,2053,2053,2053,2053,2053,2053,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;=,1874;=,2205;=,2206;=,2207;=,2208;=,2209;=,2210;=,2211;=,2212;=,2213;=,2214;=,2215;=,2216;=,2217;=,2218;=,2219;=,2220;=,2221;=,2222;=,2223;7246,7246,2224,2224,2224,7246,2224,7246,7246,7246,7246,7246,7246,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,2277,2277,2277,2277,2277,3943,2277,2277,2277,2277,2277,2277,2277;=,2278;=,2279;=,2280;=,2281;=,2282;=,2283;=,2284;=,2285;=,2286;=,2287;=,2288;=,2289;=,2290;=,2291;=,2292;=,2293;=,2294;=,2295;=,2296;=,2297;=,2298;=,2299;2300,2300,2300,2300,2431,2300,2300,2300,2300,2300,2300,2300,2300,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,2353,2353,2413,2353,2353,2353,2353,2353,2353,2353,2353,2353,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;2410,2410,2405,2410,2410,2410,2410,2405,2405,2410,2410,2410,2410,2405;=,2406;=,2407;=,2408;=,2409;=,1022;=,2411;=,2412;=,1868;=,2414;=,2415;=,2416;=,2417;=,2418;=,2419;=,2420;=,2421;=,2422;=,2423;=,2424;2425,2425,2425,-1,2425,2425,2425,2425,2425,2425,2425,2425,2425,2425;=,2426;=,2427;=,2428;=,2429;=,2430;=,2367;=,2432;=,2433;=,2434;=,2435;=,2436;=,2437;=,2438;=,2439;=,2440;=,2441;2442,2442,2442,2442,-1,2442,2442,2442,2442,2442,2442,2442,2442,2442;=,2443;=,2444;=,2445;=,2312;=,2447;=,2448;=,2449;=,434;=,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;4207,4207,4207,4207,4207,2490,4207,2490,2490,4207,2490,4207,4207,4207;=,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,2649,4098,4098,4098,2649,4098,2649,2649,2649,2649,2649,4098,2649;=,2650;=,2651;=,2652;=,2653;=,2654;=,2655;=,2656;=,2657;=,2658;=,2659;=,2660;=,2661;=,2662;=,2663;2664,2664,2664,2664,2664,2763,2664,2664,2664,2664,2664,2664,2664,2664;=,2665;=,2666;=,2667;=,2668;=,2669;=,2670;=,2671;=,2672;=,2673;=,2674;=,2675;=,2676;=,2677;=,2678;=,2679;=,2680;=,2681;=,2682;=,2683;=,2684;=,2685;=,2686;3685,3685,2687,3685,3685,3685,3685,3685,2687,3685,3685,3685,3685,2687;=,2688;=,2689;=,2690;=,2691;=,2692;=,2693;=,2694;=,2695;=,2696;=,2697;=,2698;=,2699;=,2700;=,2701;=,2702;=,2703;=,2704;=,2705;=,2706;=,2707;=,2708;=,2709;=,2710;=,2711;=,2712;=,2713;=,2714;=,2715;=,2716;=,2717;=,2718;=,2719;=,2720;=,2721;=,2722;=,2723;=,2724;=,2725;=,2726;=,2727;=,2728;=,2729;=,2730;=,2731;=,2732;=,2733;=,2734;=,2735;=,2736;=,2737;=,2738;=,2739;=,2740;=,2741;=,2742;=,2743;=,2744;=,2745;=,2746;=,2747;=,2748;=,2749;=,2750;=,2751;=,2752;=,2753;=,2754;=,2755;=,2756;=,2757;=,2758;=,2759;=,2760;=,2761;=,2762;=,2779;=,2764;=,2765;=,2766;=,2767;=,2768;=,2769;=,2770;=,2771;=,2772;2773,2773,2773,2773,2773,-1,2773,2773,2773,2773,2773,2773,2773,2773;=,2774;=,2775;=,2776;=,2777;=,2778;=,2674;=,2780;=,2781;=,2782;=,2783;=,2784;=,2785;=,2786;=,2787;=,2788;=,2789;=,2790;=,2791;=,2792;=,2793;=,2794;=,2795;=,2796;=,2797;=,2798;=,2799;=,2800;=,2801;=,2802;=,2803;=,2804;=,2805;=,2806;=,2807;=,2808;=,2809;=,2810;=,2811;=,2812;=,2813;=,2814;=,2815;=,2816;=,2817;=,2818;=,2819;=,2820;=,2821;=,2822;=,2823;=,2824;=,2825;=,2826;=,2827;=,2828;=,2829;=,2830;=,2831;=,2832;=,2833;=,2834;=,2835;=,2836;=,2837;=,2838;=,2839;=,2840;=,2841;=,2842;=,2843;=,2844;2845,2845,2845,2845,2845,2845,2845,6880,6880,6880,2845,2845,2845,2845;=,2846;=,2847;=,2848;=,2849;=,2850;=,4406;=,2852;=,2853;=,2854;=,2855;=,2856;=,2857;=,2858;=,2859;=,2860;=,2861;=,2862;=,2863;=,2864;=,2865;=,2866;=,2867;=,2868;=,2869;=,2870;=,2871;=,2872;=,2873;=,2874;=,2875;=,2876;=,2877;=,2878;=,2879;=,2880;=,2881;=,2882;=,2883;=,2884;=,2885;=,2886;=,2887;=,2888;=,2889;=,2890;=,2891;=,2892;=,2893;=,2894;=,2895;=,2896;=,2897;=,2898;=,2899;=,2900;=,2901;=,2902;=,2903;=,2904;=,2905;=,2906;=,2907;=,2908;=,2909;=,2910;=,2911;=,2912;=,2913;=,2914;=,2915;=,2916;=,2917;=,2918;=,2919;=,2920;=,2921;=,2922;=,2923;=,2924;=,2925;=,2926;=,2927;=,2928;=,2929;=,2930;=,2931;=,2932;=,2933;=,2934;=,2935;=,2936;=,2937;=,2938;=,2939;=,2940;=,2941;=,2942;=,2943;=,2944;=,2945;=,2946;=,2947;=,2948;=,2949;=,2950;=,2951;=,2952;=,2953;=,2954;=,2955;=,2956;=,2957;=,2958;=,2959;=,2960;=,2961;=,2962;=,2963;=,2964;=,2965;=,2966;=,2967;=,2968;=,2969;=,2970;=,2971;=,2972;=,2973;=,2974;=,2975;=,2976;=,2977;=,2978;=,2979;=,2980;=,2981;=,2982;=,2983;=,2984;=,2985;=,2986;=,2987;=,2988;=,2989;=,2990;=,2991;=,2992;=,2993;=,2994;=,2995;=,2996;=,2997;=,2998;=,2999;=,3000;=,3001;=,3002;=,3003;=,3004;=,3005;=,3006;=,3007;=,3008;=,3009;=,3010;=,3011;=,3012;=,3013;=,3014;=,3015;=,3016;=,3017;=,3018;=,3019;=,3020;=,3021;=,3022;=,3023;=,3024;=,3025;=,3026;=,3027;=,3028;=,3029;=,3030;=,3031;=,3032;=,3033;=,3034;=,3035;=,3036;=,3037;=,3038;=,3039;=,3040;=,3041;=,3042;=,3043;=,3044;=,3045;=,3046;=,3047;=,3048;=,3049;=,3050;=,3051;=,3052;=,3053;=,3054;=,3055;=,3056;=,3057;3058,3058,5374,3058,3058,5374,3058,5374,5374,3058,5374,3058,3058,5374;=,3059;=,3060;=,3061;=,3062;=,3063;=,3064;=,3065;=,3066;=,3067;=,3068;=,3069;=,3070;=,3071;=,3072;=,3073;=,3074;=,3075;=,3076;=,3077;=,3078;=,3079;=,3080;=,3081;=,3082;=,3083;=,2121;=,3085;=,3086;=,3087;=,3088;=,3089;=,3090;=,3091;=,3092;=,3093;=,3094;=,3095;=,3096;=,3097;=,3098;=,3099;=,3100;=,3101;=,3102;=,3103;=,3104;=,3105;=,3106;=,3107;=,3108;=,3109;=,3110;=,3111;=,3112;=,3113;=,3114;=,3115;=,3116;=,3117;=,3118;=,3119;=,3120;=,3121;=,3122;=,3123;=,3124;=,3125;=,3126;=,3127;=,3128;=,3129;=,3130;=,3131;=,3132;=,3133;=,3134;=,3135;=,3136;=,3137;=,3138;=,3139;=,3140;=,3141;=,3142;=,3143;=,3144;=,3145;=,3146;=,3147;=,3148;=,3149;=,3150;=,3151;=,3152;=,3153;=,3154;=,3155;=,3156;=,3157;=,3158;=,3159;=,3160;=,3161;=,3162;=,3163;=,3164;=,3165;=,3166;=,3167;=,3168;=,3169;=,3170;=,3171;=,3172;=,3173;=,3174;=,3175;=,3176;=,3177;=,3178;=,3179;=,3180;=,3181;=,3182;=,3183;=,3184;=,3185;=,3186;=,3187;=,3188;=,3189;=,3190;=,3191;=,3192;=,3193;=,3194;=,3195;=,3196;=,3197;=,3198;=,3199;=,3200;=,3201;=,3202;=,3203;=,3204;=,3205;=,3206;=,3207;=,3208;=,3209;=,3210;=,3211;=,3212;=,3213;=,3214;=,3215;=,3216;=,3217;=,3218;=,3219;=,3220;=,3221;=,3222;=,3223;=,3224;=,3225;=,3226;=,3227;=,3228;=,3229;=,3230;=,3231;=,3232;=,3233;=,3234;=,3235;=,3236;=,3237;=,3238;=,3239;=,3240;=,3241;=,3242;=,3243;=,3244;=,3245;=,3246;=,3247;=,3248;=,3249;=,3250;=,3251;=,3252;=,3253;=,3254;=,3255;=,3256;=,3257;=,3258;=,3259;=,3260;=,3261;=,3262;=,3263;=,3264;=,3265;=,3266;=,3267;=,3268;=,3269;=,3270;=,3271;=,3272;=,3273;=,3274;=,3275;=,3276;=,3277;=,3278;=,3279;=,3280;=,3281;=,3282;=,3283;=,3284;=,3285;=,3286;=,3287;=,3288;=,3289;=,3290;=,3291;=,3292;=,3293;=,3294;=,3295;=,3296;=,3297;=,3298;=,3299;=,3300;=,3301;=,3302;=,3303;3304,3304,3304,3304,3304,3304,3304,6352,6352,6352,3304,3304,3304,6352;=,3305;=,3306;=,3307;=,3308;=,3309;=,3310;=,3311;=,3312;=,3313;=,3314;=,3315;=,3316;=,4790;=,3318;=,3319;=,3320;=,3321;=,3322;=,3323;=,3324;=,3325;=,3326;=,3327;=,3328;=,3329;=,3330;=,3331;=,3332;=,3333;=,3334;=,3335;=,3336;=,3337;=,3338;=,3339;=,3340;=,3341;=,3342;=,3343;=,3344;=,3345;=,3346;=,3347;=,3348;=,3349;=,3350;=,3351;=,3352;=,3353;=,3354;=,3355;=,3356;=,3357;=,3358;=,3359;=,3360;=,3361;=,3362;=,3363;=,3364;=,3365;=,3366;=,3367;=,3368;=,3369;=,3370;=,3371;=,3372;=,3373;=,3374;=,3375;=,3376;=,3377;=,3378;=,3379;=,3380;=,3381;=,3382;=,3383;=,3384;=,3385;=,3386;=,3387;=,3388;=,3389;=,3390;=,3391;=,3392;=,3393;=,3394;=,3395;=,3396;=,3397;=,3398;=,3399;=,3400;=,3401;=,3402;=,3403;=,3404;=,3405;=,3406;=,3407;=,3408;=,3409;=,3410;=,3411;=,3412;=,3413;=,3414;=,3415;=,3416;=,3417;=,3418;=,3419;=,3420;=,3421;=,3422;=,3423;=,3424;=,3425;=,3426;=,3427;=,3428;=,3429;=,3430;=,3431;=,3432;=,3433;=,3434;=,3435;=,3436;=,3437;=,3438;=,3439;=,3440;=,3441;=,3442;=,3443;=,3444;=,3445;=,3446;=,3447;=,3448;=,3449;=,3450;=,3451;=,3452;=,3453;=,3454;=,3455;=,3456;=,3457;=,3458;=,3459;=,3460;=,3461;=,3462;=,3463;=,3464;=,3465;=,3466;=,3467;=,3468;=,3469;=,3470;=,3471;=,3472;=,3473;=,3474;=,3475;=,3476;=,3477;=,3478;=,3479;=,3480;=,3481;=,3482;=,3483;=,3484;=,3485;3486,3486,5013,5013,5013,5013,5013,5013,5013,3486,5013,3486,5013,5013;=,3487;=,3488;=,3489;=,3490;=,3491;=,3492;=,3493;=,3494;=,3495;=,3496;=,3497;=,3498;=,3499;=,3500;=,3501;=,3502;=,3503;=,3504;=,3505;=,3506;=,3507;=,3508;=,3509;=,3510;=,3511;=,3512;=,3513;=,3514;=,3515;=,3516;=,3517;=,3518;=,3519;=,3520;=,3521;=,3522;=,3523;=,3524;=,3525;=,3526;=,3527;=,3528;=,3529;=,3530;=,3531;=,3532;=,3533;=,3534;=,3535;=,3536;=,3537;=,3538;=,3539;=,3540;=,3541;=,3542;=,3543;=,3544;=,3545;=,3546;=,3547;=,3548;=,3549;=,3550;=,3551;=,3552;=,3553;=,3554;=,3555;=,3556;=,3557;=,3558;=,3559;=,3560;=,3561;=,3562;=,3563;=,3564;=,3565;=,3566;=,3567;=,3568;=,3569;=,3570;=,3571;=,3572;=,3573;=,3574;=,3575;=,3576;=,3577;=,3578;=,3579;=,3580;=,3581;=,3582;=,3583;=,3584;=,3585;=,3586;=,3587;=,3588;=,3589;=,3590;=,3591;=,3592;=,3593;=,3594;=,3595;=,3596;=,3597;=,3598;=,3599;=,3600;=,3601;=,3602;=,3603;=,3604;=,3605;=,3606;=,3607;=,3608;=,3609;=,3610;=,3611;=,3612;=,3613;=,3614;=,3615;=,3616;=,3617;=,3618;=,3619;=,3620;=,3621;=,3622;=,3623;=,3624;=,3625;=,3626;=,3627;=,3628;=,3629;=,3630;=,3631;=,3632;=,3633;=,3634;=,3635;=,3636;=,3637;=,3638;=,3639;=,3640;=,3641;=,3642;=,3643;=,3644;=,3645;=,3646;=,3647;=,3648;=,3649;=,3650;=,3651;=,3652;=,3653;=,3654;=,3655;=,3656;=,3657;=,3658;=,3659;=,3660;=,3661;=,3662;=,3663;=,3664;=,3665;=,3666;=,3667;=,3668;=,3669;=,3670;=,3671;=,3672;=,3673;=,3674;=,3675;=,3676;3677,3677,5473,5473,5473,3677,5473,3677,5473,3677,3677,3677,5473,5473;=,3678;=,3679;=,3680;=,3681;=,3682;=,3683;=,3684;=,1610;=,3686;=,3687;=,3688;=,3689;=,3690;=,3691;=,3692;=,3693;=,3694;=,3695;=,3696;=,3697;=,3698;=,3699;=,3700;=,3701;=,3702;=,3703;3704,3704,3704,3704,3704,3704,3704,6074,6074,3704,6074,3704,3704,6074;=,3705;=,3706;=,3707;=,3708;=,3709;=,3710;=,3711;=,3712;=,3713;=,3714;=,3715;=,3716;=,3717;=,3718;=,3719;=,3720;=,3721;=,3722;=,3723;=,3724;=,3725;=,3726;=,3727;=,3728;=,3729;=,3730;=,3731;=,3732;=,3733;=,3734;=,3735;=,3736;=,3737;=,3738;=,3739;=,3740;=,3741;=,3742;=,3743;=,3744;=,3745;=,3746;=,3747;=,3748;=,3749;=,3750;=,3751;=,3752;=,3753;=,3754;=,3755;=,3756;=,3757;=,3758;=,3759;=,3760;=,3761;=,3762;=,3763;=,3764;=,3765;=,3766;=,3767;=,3768;=,3769;=,3770;=,3771;=,3772;=,3773;=,3774;=,3775;=,3776;=,3777;=,3778;=,3779;=,3780;=,3781;=,3782;=,3783;=,3784;=,3785;=,3786;=,3787;=,3788;=,3789;=,3790;=,3791;=,3792;=,3793;=,3794;=,3795;=,3796;=,3797;=,3798;=,3799;=,3800;=,3801;=,3802;=,3803;=,3804;=,3805;=,3806;=,3807;=,3808;=,3809;=,3810;=,3811;=,3812;=,3813;=,3814;=,3815;=,3816;=,3817;=,3818;=,3819;=,3820;=,3821;=,3822;=,3823;=,3824;=,3825;=,3826;=,3827;=,3828;=,3829;=,3830;=,3831;=,3832;=,3833;=,3834;=,3835;=,3836;=,3837;=,3838;=,3839;=,3840;=,3841;=,3842;=,3843;=,3844;=,3845;=,3846;=,3847;3848,3848,3848,3848,3848,3848,3848,3848,3848,6860,3848,3848,3848,3848;=,3849;=,3850;=,3851;=,3852;=,3853;=,3854;=,3855;=,3856;=,3857;=,3858;=,3859;=,3860;=,3861;=,3862;=,3863;=,3864;=,3865;=,3866;=,3867;=,3868;=,3869;=,3870;=,3871;=,5466;=,3873;=,3874;=,3875;=,3876;=,3877;=,3878;=,3879;=,3880;=,3881;=,3882;=,3883;=,3884;=,3885;=,3886;=,3887;=,3888;=,3889;=,3890;=,3891;=,3892;=,3893;=,3894;=,3895;=,3896;=,3897;=,3898;=,3899;=,3900;=,3901;=,3902;=,3903;=,3904;=,3905;=,3906;=,3907;=,3908;=,3909;=,3910;=,3911;=,3912;=,3913;=,3914;=,3915;=,3916;=,3917;=,3918;=,3919;=,3920;=,3921;=,3922;=,3923;=,3924;=,3925;=,3926;=,3927;=,3928;=,3929;=,3930;=,3931;=,3932;=,3933;=,3934;=,3936;=,528;=,3937;=,3938;=,3939;=,3940;=,3941;=,3942;=,722;=,3944;=,3945;=,3946;=,3947;=,3948;=,3949;=,3950;=,3951;3952,3952,3952,3952,3952,3952,-1,3952,3952,3952,3952,3952,3952,3952;=,3953;=,3954;=,3955;=,3956;=,2288;=,3958;=,3959;=,3960;=,3961;=,3962;=,3963;=,3964;=,3965;=,3966;=,3967;=,3968;=,3969;=,3970;=,3971;=,3972;=,3973;=,3974;=,3975;=,3976;=,3977;=,3978;=,3979;=,3980;=,3981;=,3982;=,3983;=,3984;=,3985;=,3986;=,3987;=,3988;=,3989;=,3990;=,3991;=,3992;=,3993;=,3994;=,3995;=,3996;=,3997;=,3998;=,3999;=,4000;=,4001;=,4002;=,4003;=,4004;=,4005;=,4006;=,4007;=,4008;=,4009;=,4010;=,4011;=,2269;4188,4188,4188,4188,4188,4013,4188,4013,4013,4013,4013,4188,4188,4188;4012,4012,4012,4012,4012,4014,4012,4014,4014,4014,4014,4012,4012,4012;4013,4013,4013,4013,4013,4015,4013,4015,4015,4015,4015,4013,4013,4013;4014,4014,4014,4014,4014,4016,4014,4016,4016,4016,4016,4014,4014,4014;4015,4015,4015,4015,4015,4017,4015,4017,4017,4017,4017,4015,4015,4015;4016,4016,4016,4016,4016,4192,4016,4192,4192,4018,4192,4016,4016,4016;4017,4017,4017,4017,4017,4017,4017,4019,4017,4019,4019,4017,4017,4017;4018,4018,4018,4018,4018,4018,4018,4020,4018,4020,4020,4018,4018,4018;4019,4019,4019,4019,4019,4019,4019,4021,4019,4021,4021,4019,4019,4019;4020,4020,4020,4020,4020,4020,4020,4022,4020,4022,4022,4020,4020,4020;4021,4021,4021,4021,4021,4021,4021,4023,4023,4023,4023,4021,4021,4021;4022,4022,4022,4022,4022,4022,4022,4024,4024,4024,4024,4022,4022,4022;4023,4023,4023,4023,4023,4023,4023,4025,4025,4025,4025,4023,4023,4023;4024,4024,4024,4024,4024,4024,4024,4026,4026,4026,4026,4024,4024,4024;4025,4025,4025,4025,4025,4025,4025,4027,4027,4027,4027,4025,4025,4025;4026,4026,4026,4026,4026,4026,4026,4028,4028,4028,4028,4026,4026,4026;4027,4027,4027,4027,4027,4027,4027,4029,4029,4029,4029,4027,4027,4027;4028,4028,4028,4028,4028,4028,4028,4030,4030,4030,4030,4028,4028,4028;4029,4029,4029,4029,4029,4029,4029,4031,4031,4031,4031,4029,4029,4029;4030,4030,4030,4030,4030,4030,4030,4032,4032,4032,4032,4030,4030,4030;4031,4031,4031,4031,4031,4031,4031,4033,4033,4033,4033,4031,4031,4031;4032,4032,4032,4032,4032,4032,4032,4034,4034,4034,4034,4032,4032,4034;4033,4033,4033,4033,4033,4033,4033,4035,4035,4035,4035,4033,4033,4035;4034,4034,4034,4034,4034,4034,4034,4036,4036,4036,4036,4034,4034,4036;4035,4035,4035,4035,4035,4035,4035,4037,4037,4037,4037,4035,4035,4037;4036,4036,4036,4036,4036,4036,4036,4038,4038,4038,4038,4036,4036,4038;4037,4037,4037,4037,4037,4037,4037,4039,4039,4039,4039,4037,4037,4039;4038,4038,4038,4038,4038,4038,4038,4040,4040,4040,4040,4038,4038,4040;4039,4039,4039,4039,4039,4039,4039,4041,4041,4041,4041,4039,4039,4041;4040,4040,4040,4040,4040,4040,4040,4042,4042,4042,4042,4040,4040,4042;4041,4041,4041,4041,4041,4041,4041,4043,4043,4043,4043,4041,4041,4043;4042,4042,4042,4042,4042,4042,4042,4044,4044,4044,4044,4042,4042,4044;4043,4043,4043,4043,4043,4043,4043,4045,4045,4045,4045,4043,4043,4045;4044,4044,4044,4044,4044,4044,4044,4046,4046,4046,4046,4044,4044,4046;4045,4045,4045,4045,4045,4045,4045,4047,4047,4047,4047,4045,4045,4047;4046,4046,4046,4046,4046,4046,4046,4048,4048,4048,4048,4046,4046,4048;4047,4047,4047,4047,4047,4047,4047,4049,4049,4049,4049,4047,4047,4049;4048,4048,4048,4048,4048,4048,4048,4050,4050,4050,4050,4048,4048,4050;4049,4049,4049,4049,4049,4049,4049,4051,4051,4051,4051,4049,4049,4051;4050,4050,4050,4050,4050,4050,4050,4052,4052,4052,4052,4050,4050,4052;4051,4051,4051,4051,4051,4051,4051,4053,4053,4053,4053,4051,4051,4053;4052,4052,4052,4052,4052,4052,4052,4054,4054,4054,4054,4052,4052,4054;4053,4053,4053,4053,4053,4053,4053,4055,4055,4055,4055,4053,4053,4055;4054,4054,4054,4054,4054,4054,4054,4056,4056,4056,4056,4054,4054,4056;4055,4055,4055,4055,4055,4055,4055,4057,4057,4057,4057,4055,4055,4057;4056,4056,4056,4056,4056,4056,4056,4058,4058,4058,4058,4056,4056,4058;4057,4057,4057,4057,4057,4057,4057,4059,4059,4059,4059,4057,4057,4059;4058,4058,4058,4058,4058,4058,4058,4060,4060,4060,4060,4058,4058,4060;4059,4059,4059,4059,4059,4059,4059,4061,4061,4061,4061,4059,4059,4061;4060,4060,4060,4060,4060,4060,4060,4062,4062,4062,4062,4060,4060,4062;4061,4061,4061,4061,4061,4061,4061,4063,4063,4063,4063,4061,4061,4063;4062,4062,4062,4062,4062,4062,4062,4064,4064,4064,4064,4062,4062,4064;4063,4063,4063,4063,4063,4063,4063,4065,4065,4065,4065,4063,4063,4065;4064,4064,4064,4064,4064,4064,4064,4066,4066,4066,4066,4064,4064,4066;4065,4065,4065,4065,4065,4065,4065,4067,4067,4067,4067,4065,4065,4067;4066,4066,4066,4066,4066,4066,4066,4068,4068,4068,4068,4066,4066,4068;4067,4067,4067,4067,4067,4067,4067,4069,4069,4069,4069,4067,4067,4069;4068,4068,4068,4068,4068,4068,4068,4070,4070,4070,4070,4068,4068,4070;4069,4069,4069,4069,4069,4069,4069,4071,4071,4071,4071,4069,4069,4071;4070,4070,4070,4070,4070,4070,4070,4072,4072,4072,4072,4070,4070,4072;4071,4071,4071,4071,4071,4071,4071,4073,4073,4073,4073,4071,4071,4073;4072,4072,4072,4072,4072,4072,4072,4074,4074,4074,4074,4072,4072,4074;4073,4073,4073,4073,4073,4073,4073,4075,4075,4075,4075,4073,4073,4075;4074,4074,4074,4074,4074,4074,4074,4076,4076,4076,4076,4074,4074,4076;4075,4075,4075,4075,4075,4075,4075,4077,4077,4077,4077,4075,4075,4077;=,4078;=,4079;=,4080;=,4081;=,4082;=,4083;=,4084;=,4085;=,4211;=,4087;=,4088;=,4089;=,4090;=,4091;=,4092;=,4093;=,4094;=,4095;=,4096;=,4097;=,3878;=,4099;=,4100;=,4101;=,4102;=,4103;=,4104;=,4105;=,4106;=,4107;=,4108;=,4109;=,4110;=,4111;=,4112;=,4113;=,4114;=,4115;=,4116;=,4117;=,4118;=,4119;=,4120;=,4121;=,4122;=,4123;=,4124;=,4125;=,4126;=,4127;=,4128;=,4129;=,4130;=,4131;=,4132;=,4133;=,4134;=,4135;=,4136;=,4137;=,4138;=,4139;=,4140;=,4141;=,4142;=,4143;=,4144;=,4145;=,4146;=,4147;=,4148;=,4149;=,4150;=,4151;=,4152;=,4153;=,4154;=,4155;=,4156;=,4157;=,4158;=,4159;=,4160;=,4161;=,4162;=,4163;=,4164;=,4165;=,4166;=,4167;=,4168;=,4169;=,4170;=,4171;=,4172;=,4173;=,4174;=,4175;=,4176;=,4177;=,4178;=,4179;=,4180;=,4181;=,4182;=,4183;=,4184;=,4185;=,4186;5043,5043,5043,5043,5043,5043,5043,4187,4187,5043,5043,5043,5043,4187;=,4653;=,4189;=,4190;=,4191;=,3647;=,4193;=,4194;=,4195;=,4196;=,4197;=,4198;=,4199;=,4200;=,4201;=,4202;=,4203;=,4204;=,4205;=,4206;=,2497;=,4208;=,4209;=,4210;=,4012;=,4212;=,4213;=,4214;=,4215;=,4216;=,4217;=,4218;=,4219;=,4220;=,4221;=,4222;=,4223;=,4224;=,4225;=,4226;=,4227;=,4228;6765,6765,6765,6765,6765,6765,6765,4229,4229,6765,4229,6765,6765,4229;=,4230;=,4231;=,4232;=,4233;=,4234;=,4235;=,4236;=,4237;=,4238;=,4239;=,4240;=,4241;=,4242;=,4243;=,4244;=,4245;=,4246;=,4247;=,4248;=,4249;=,4250;=,4251;=,4252;=,4253;=,4254;=,4255;=,4256;=,4257;=,4258;=,4259;=,4260;=,4261;=,4262;=,4263;=,4264;=,4265;=,4266;=,4267;=,4268;=,4269;=,4270;=,4271;=,4272;=,4273;=,4274;=,4275;=,4276;=,4277;=,4278;=,4279;=,4280;=,4281;=,4282;=,4283;=,4284;=,4285;=,4286;=,4287;=,4288;=,4289;=,4290;=,4291;=,4292;=,4293;=,4294;=,4295;=,4296;=,4297;=,4298;=,4299;=,4300;=,4301;=,4302;=,4303;=,4304;=,4305;=,4306;=,4307;=,4308;=,4309;=,4310;=,4311;=,4312;=,4313;=,4314;=,4315;=,4316;=,4317;=,4318;=,4319;=,4320;=,4321;=,4322;=,4323;=,4324;=,4325;=,4326;=,4327;=,4328;=,4329;=,4330;=,4331;=,4332;=,4333;=,4334;=,4335;=,4336;=,4337;=,4338;=,4339;=,4340;=,4341;=,4342;=,4343;=,4344;=,4345;=,4346;=,4347;=,4348;=,4349;=,4350;=,4351;=,4352;=,4353;=,4354;=,4355;=,4356;=,4357;=,4358;=,4359;=,4360;=,4361;=,4362;=,4363;=,4364;=,4365;=,4366;=,4367;=,4368;=,4369;=,4370;=,4371;=,4372;=,4373;=,4374;=,4375;=,4376;4377,4377,4377,4377,4377,4377,4377,6613,6613,6613,6613,4377,4377,4377;=,4378;=,4379;=,4380;=,4381;=,4382;=,4383;=,4384;=,4385;=,4386;=,4387;4400,4400,4400,4400,4400,4400,4400,4388,4388,4400,4400,4400,4400,4388;=,4389;=,4390;=,4391;=,4392;=,4393;=,2694;3442,3442,3442,3442,3442,3442,3442,4395,4395,4395,4395,3442,3442,4395;=,4396;=,4397;=,4398;=,4399;=,3696;=,4401;=,4402;=,4403;=,4404;=,4405;=,3452;=,4407;=,4408;=,4409;=,4410;=,4411;=,4412;=,4413;=,4414;=,4415;=,4416;=,4417;=,4418;=,4419;=,4420;=,4421;=,4422;=,4423;=,4424;=,4425;=,4426;=,4427;=,4428;=,4429;=,4430;=,4431;=,4432;=,4433;=,4434;=,4435;=,4436;=,4437;=,4438;=,4439;=,4440;=,4441;=,4442;=,4443;=,4444;=,4445;=,4446;=,4447;=,4448;=,4449;=,4450;=,4451;=,4452;=,4453;=,4454;=,4455;=,4456;=,4457;=,4458;=,4459;=,4460;=,4461;=,4462;=,4463;=,4464;=,4465;=,4466;=,4467;=,4468;=,4469;=,4470;=,4471;=,4472;=,4473;=,4474;=,4475;=,4476;=,4477;=,4478;=,4479;=,4480;=,4481;=,4482;=,4483;=,4484;=,4485;=,4486;=,4487;=,4488;=,4489;=,4490;=,4491;=,4492;=,4493;=,4494;=,4495;=,4496;=,4497;=,4498;=,4499;=,4500;=,4501;=,4502;=,4503;=,4504;=,4505;=,4506;=,4507;=,4508;=,4509;=,4510;=,4511;=,4512;=,4513;=,4514;=,4515;=,4516;=,4517;=,4518;=,4519;=,4520;=,4521;=,4522;=,4523;=,4524;=,4525;=,4526;=,4527;=,4528;=,4529;=,4530;=,4531;=,4532;=,4533;=,4534;=,4535;=,4536;=,4537;=,1228;=,4539;=,4540;=,4541;=,4542;=,4543;=,4544;=,4545;=,4546;=,4547;=,4548;=,4549;=,4550;=,4551;=,4552;=,4553;=,4554;=,4555;=,4556;=,4557;=,4558;=,4559;=,4560;=,4561;=,4562;=,4563;=,4564;=,4565;=,4566;=,4567;=,4568;=,4569;=,4570;=,4571;=,4572;=,4573;=,4574;=,4575;=,4576;=,4577;=,4578;=,4579;=,4580;=,4581;=,4582;=,4583;=,4584;=,4585;=,4586;=,4587;=,4588;=,4589;=,4590;=,4591;=,4592;=,4593;=,4594;=,4595;=,4596;=,4597;=,4598;=,4599;=,4600;=,4601;=,4602;=,4603;=,4604;=,4605;=,4606;=,4607;=,4608;=,4609;=,4610;=,4611;=,4612;=,4613;=,4614;=,4615;=,4616;=,4617;=,4618;=,4619;=,4620;=,4621;=,4622;=,4623;=,4624;=,4625;=,4626;=,4627;=,4628;=,4629;=,4630;=,4631;=,4632;=,4633;=,4634;=,4635;=,4636;=,4637;=,4638;4647,4647,4639,4647,4647,4647,4647,4647,4647,4647,4647,4647,4647,4639;=,4640;=,4641;=,4642;=,4643;=,4644;=,4645;=,4646;=,962;=,4648;=,4649;=,4650;=,4651;=,4652;=,1934;=,4654;=,4655;=,4656;=,4657;=,4658;=,4659;=,4660;=,4661;=,4662;=,4663;=,4664;=,4665;=,4666;=,4667;=,4668;=,4669;=,4670;=,4671;=,4672;=,4673;=,4674;=,4675;=,4676;=,4677;=,4678;=,4679;=,4680;=,4681;=,4682;=,4683;=,4684;=,4685;=,4686;=,4687;=,4688;=,4689;=,4690;=,4691;=,4692;=,4693;=,4694;=,4695;=,4696;=,4697;=,4698;=,4699;=,4700;=,4701;=,4702;=,4703;=,4704;=,4705;=,4706;=,4707;=,4708;=,4709;=,4710;=,4711;=,4712;=,4713;=,4714;=,4715;=,4716;=,4717;=,4718;=,4719;=,4720;=,4721;=,4722;=,4723;=,4724;=,4725;=,4726;=,4727;=,4728;=,4729;=,4730;=,4731;=,4732;=,4733;=,4734;=,4735;=,4736;=,4737;=,4738;=,4739;=,4740;=,4741;=,4742;=,4743;=,4744;=,4745;=,4746;=,4747;=,4748;=,4749;=,4750;=,4751;=,4752;=,4753;=,4754;=,4755;=,4756;=,4757;=,4758;=,4759;=,4760;=,4761;=,4762;=,4763;=,4764;=,4765;=,4766;=,4767;=,4768;=,4769;=,4770;=,4771;=,4772;=,4773;4774,4774,4783,4783,4783,4783,4783,4783,4783,4783,4783,4774,4783,4783;=,4775;=,4776;=,4777;=,4778;=,4779;=,4780;=,4781;=,4782;=,3321;=,4784;=,4785;=,4786;=,4787;=,4788;=,4789;=,2839;=,4791;=,4792;=,4793;=,4794;=,4795;=,4796;=,4797;=,4798;=,4799;=,4800;=,4801;=,4802;=,4803;=,4804;=,4805;=,4806;=,4807;=,4808;=,4809;=,4810;=,4811;=,4812;=,4813;=,4814;=,4815;=,4816;=,4817;=,4818;=,4819;=,4820;=,4821;=,4822;=,4823;=,4824;=,4825;=,4826;=,4827;=,4828;=,4829;=,4830;=,4831;=,4832;=,4833;=,4834;=,4835;=,4836;=,4837;=,4838;=,4839;=,4840;=,4841;=,4842;=,4843;=,4844;=,4845;=,4846;=,4847;=,4848;=,4849;=,4850;=,4851;=,4852;=,4853;=,4854;=,4855;=,4856;=,4857;=,4858;=,4859;=,4860;=,4861;=,4862;=,4863;=,4864;=,4865;=,4866;=,4867;=,4868;=,4869;=,4870;=,4871;=,4872;=,4873;=,4874;=,4875;=,4876;=,4877;=,4878;=,4879;=,4880;=,4881;=,4882;=,4883;=,4884;=,4885;=,4886;=,4887;=,4888;=,4889;=,4890;=,4891;=,4892;=,4893;=,4894;=,4895;=,4896;=,4897;=,4898;=,4899;=,4900;=,4901;=,4902;=,4903;=,4904;=,4905;=,4906;=,4907;=,4908;=,4909;=,4910;=,4911;5118,5118,5118,5118,5118,4912,5118,4912,5118,4912,4912,5118,5118,5118;=,4913;=,4914;=,4915;=,4916;=,4917;=,4918;=,4919;=,4920;=,4921;=,4922;=,4923;=,4924;=,4925;=,4926;=,4927;=,4928;=,4929;=,4930;=,4931;=,4932;=,4933;=,4934;=,4935;=,4936;=,4937;=,4938;=,4939;=,4940;=,4941;=,4942;=,4943;=,4944;=,4945;=,4946;=,4947;=,4948;=,4949;=,4950;=,4951;=,4952;=,4953;=,4954;=,4955;=,4956;=,4957;=,4958;=,4959;=,4960;=,4961;=,4962;=,4963;=,4964;=,4965;=,4966;=,4967;=,4968;=,4969;=,4970;=,4971;=,4972;=,4973;=,4974;=,4975;=,4976;=,4977;=,4978;=,4979;=,4980;=,4981;=,4982;=,4983;=,4984;=,4985;=,4986;=,4987;=,4988;=,4989;=,4990;=,4991;=,4992;=,4993;=,4994;=,4995;=,4996;=,4997;=,5007;=,-1;=,-1;=,-1;=,-1;=,-1;=,3490;=,-1;=,-1;=,-1;=,5008;=,5009;=,5010;=,5011;=,5012;=,2652;=,5014;=,5015;=,5016;=,5017;=,5018;=,5019;=,4104;=,5021;=,5022;=,5023;=,5024;=,5025;=,5026;=,5027;=,5028;=,5029;=,5030;=,5031;=,5032;=,5033;=,5034;=,5035;=,5036;=,5037;=,5038;=,5039;=,5040;=,5041;=,5042;=,4664;=,5044;=,5045;=,5046;=,5047;=,5048;=,5049;=,5050;=,5051;=,5052;=,5053;=,5054;=,5055;=,5056;=,5057;=,5058;=,5059;=,5060;=,5061;=,5062;=,5063;=,5064;=,5065;=,5066;=,5067;=,5068;=,5069;=,5070;5125,5125,5125,5125,5125,5071,5125,5071,5071,5071,5071,5125,5125,5071;=,5072;=,5073;=,5074;=,5075;=,5076;=,1323;=,5078;=,5079;=,5080;=,5081;=,5082;=,5083;=,5084;=,5085;=,5086;=,5087;=,5088;=,5089;=,5090;=,5091;=,5092;=,5093;=,5094;=,5095;=,5096;=,5097;=,5098;=,5099;=,5100;=,5101;=,5102;=,5103;=,5104;5110,5110,5105,5105,5105,5110,5105,5110,5105,5110,5110,5110,5105,5105;=,5106;=,5107;=,5108;=,5109;=,4658;=,5111;=,5112;=,5113;=,5114;=,5115;=,5116;=,5117;=,4916;=,5119;=,5120;=,5121;=,5122;=,5123;=,5124;=,5048;=,5126;=,5127;=,5128;=,5129;=,5130;=,5131;=,5132;=,5133;=,5134;=,5135;=,5136;=,5137;=,5138;=,5139;=,5140;=,5141;=,5142;=,5143;=,5144;=,5145;=,5146;=,5147;=,5148;=,5149;=,5150;=,5151;=,5152;5822,5822,5153,5822,5822,5822,5822,5153,5153,5822,5822,5822,5822,5153;=,5154;=,5155;=,5156;=,5157;=,5158;=,5159;=,5160;=,5161;=,5162;=,5163;=,5164;=,5165;=,5166;=,5167;=,5168;=,5169;=,5170;=,5171;=,5172;=,5173;=,5174;=,5175;=,5176;=,5177;=,5178;=,5179;=,5180;=,5181;=,5182;=,5183;=,5184;=,5185;=,5186;=,5187;=,5188;=,5189;=,5190;=,5191;=,5192;=,5193;=,5194;=,5195;=,5196;=,5197;=,5198;=,5199;=,5200;=,5201;=,5202;=,5203;=,5204;=,5205;=,5206;=,5207;=,5208;=,5209;=,5210;=,5211;5248,5248,5248,5248,5248,5248,5248,5212,5212,5248,5248,5248,5248,5248;=,5213;=,5214;=,5215;=,5216;=,5217;=,5218;=,5219;=,5220;=,5221;=,5222;=,5223;=,5224;=,5225;=,5226;=,5227;=,5228;=,5229;=,5230;=,5231;=,5243;=,5233;=,5234;=,5235;=,5236;=,5237;=,5238;=,5239;=,5240;=,5241;=,5242;=,5243;=,5244;=,5245;=,5246;=,5247;=,5255;=,5249;=,5250;=,5251;=,5252;=,5253;=,5254;=,4547;=,5256;=,5257;=,5258;=,5259;=,5260;=,5261;=,5262;=,5263;=,5264;=,5265;=,5266;=,5267;=,5268;=,5269;=,5270;=,5271;=,5272;=,5273;=,5274;=,5275;=,5276;=,5277;=,5278;=,5279;=,5280;=,5281;=,5282;=,5283;=,5284;=,5285;=,5286;=,5287;=,5288;=,5289;=,5290;=,5291;=,5292;=,5293;=,5294;=,5295;=,5296;=,5297;=,5298;=,5299;=,5300;=,5301;=,5302;=,5303;=,5304;=,5305;=,5306;=,5307;=,5308;=,5309;=,5310;=,5311;=,5312;=,5313;=,5314;=,5315;=,5316;=,5317;=,5318;=,5319;=,5320;=,5321;=,5322;=,5323;=,5324;=,5325;=,5326;=,5327;=,5328;=,5329;=,5330;=,5331;=,5332;=,5333;=,5334;=,5335;=,5336;=,5337;=,5338;=,5339;=,5340;=,5341;=,5342;=,5343;=,5344;=,5345;=,5346;=,5347;=,5348;=,5349;=,5350;=,5351;5352,5352,5352,5352,5352,5359,5352,5359,5359,5352,5359,5352,5352,5359;=,5353;=,5354;=,5355;=,5356;=,5357;=,5358;=,3069;=,5360;=,5361;=,5362;=,5363;=,5364;=,5365;=,5366;=,5367;=,5368;=,5369;=,5370;=,5371;=,5372;=,5373;=,3095;=,5375;=,5376;=,5377;=,5378;=,5379;=,5380;=,5381;=,5382;=,5383;=,5384;=,1129;=,5386;=,5387;=,5388;=,5389;=,5390;=,5391;=,5392;=,5393;=,5394;=,5395;=,5396;=,5397;=,5398;=,5399;=,5400;=,5401;=,5402;=,5403;=,5404;=,5405;=,5406;=,5407;=,5408;=,5409;=,5410;=,5411;=,5412;=,5413;=,5414;=,5415;=,5416;=,5417;=,5418;=,5419;=,5420;=,5421;=,5422;=,5423;=,5424;=,5425;=,5426;=,5427;=,5428;=,5429;=,5430;=,5431;=,5432;=,5433;=,5434;=,5435;=,5436;=,5437;=,5438;=,5439;=,5440;=,5441;=,5442;=,5443;=,5444;5452,5452,5452,5452,5452,5452,5452,5445,5445,5445,5445,5452,5452,5445;=,5446;=,5447;=,5448;=,5449;=,5450;=,5451;=,4084;=,5453;=,5454;=,5455;=,5456;=,5457;=,5458;=,5459;=,5460;=,5461;=,5462;=,5463;=,5464;=,5465;=,4073;=,5467;=,5468;=,5469;=,5470;=,5471;=,5472;=,4076;=,5474;=,5475;=,5476;=,5477;=,5478;=,5479;=,801;=,5481;=,5482;=,5483;=,2456;=,5485;=,5486;=,5487;=,5488;=,5489;=,5490;=,5491;=,5492;=,5493;=,5494;=,5495;=,5516;=,5497;=,5498;=,5499;=,5500;=,5501;=,5502;=,5492;=,5504;=,5505;=,5506;=,5507;=,5508;=,5509;=,5510;=,879;=,5512;=,5513;=,5514;=,5515;=,2204;=,5517;=,5518;=,5519;=,5520;=,5521;=,5522;=,5523;=,5524;=,5525;=,5526;=,5527;=,5528;=,5529;=,5530;=,5531;=,5532;=,5533;=,5534;=,5535;=,5536;=,5537;=,5538;=,5539;=,5540;=,5541;=,5542;=,5543;=,5544;=,5545;=,5546;=,5547;=,5548;=,5549;=,5550;=,5551;=,5552;=,5553;=,5554;=,5555;=,5556;=,5557;=,5558;=,5559;=,5560;=,5561;=,5562;=,5563;=,5564;=,5565;=,5566;=,5567;=,5568;=,5569;=,5570;=,5571;=,5572;=,5573;=,5574;=,5575;=,5806;=,5577;=,5578;=,5579;=,5580;=,5581;=,5582;=,5583;=,5584;=,5585;=,5586;=,5587;=,5588;=,5589;=,5590;=,5591;=,5592;=,5593;=,5594;=,5595;=,5596;=,5597;=,5598;=,5599;=,5600;=,5601;=,5602;=,5603;=,5604;=,5605;=,5606;=,5607;=,5608;=,5609;=,5610;=,5611;=,5612;=,5613;=,5614;=,5615;=,5616;=,5617;=,5618;=,5619;=,5620;=,5621;=,5622;=,5623;=,5624;=,5625;=,5626;=,5627;=,5628;=,5629;=,5630;=,5631;=,5632;=,5633;=,5634;=,5635;=,5636;=,5637;=,5638;=,5639;=,5640;=,5641;=,5642;=,5643;=,5644;=,5645;=,5646;=,5647;=,5648;=,5649;=,5650;=,5651;=,5652;=,5653;=,5654;=,5655;=,5656;=,5657;=,5658;=,5659;=,5660;=,5661;=,5662;=,5663;=,5664;=,5665;=,5666;=,5667;=,5668;=,5669;=,5670;=,5671;=,5672;=,5673;=,5674;=,5675;=,5676;=,5677;=,5678;=,5679;=,5680;=,5681;=,5682;=,5683;=,5684;=,5685;=,5686;=,5687;=,5688;=,5689;=,5690;=,5691;=,5692;=,5693;=,5694;=,5695;=,5696;=,5697;=,5698;=,5699;=,5700;=,5701;=,5702;=,5703;=,5704;=,5705;=,5706;=,5707;=,5708;=,5709;=,5710;=,5711;=,5712;5713,5713,5713,5713,5713,5716,5713,5716,5716,5716,5716,5713,5713,5716;=,5714;=,5715;=,5133;=,5717;=,5718;=,5719;=,5720;=,5721;=,5722;=,5082;5724,5724,5811,5724,5724,5811,5724,5811,5811,5811,5811,5724,5724,5811;5725,5725,5723,5725,5725,5723,5725,5723,5723,5723,5723,5725,5725,5723;5726,5726,5724,5726,5726,5724,5726,5724,5724,5724,5724,5726,5726,5724;5727,5727,5725,5727,5727,5725,5727,5725,5725,5725,5725,5727,5727,5725;5728,5728,5726,5728,5728,5726,5728,5726,5726,5726,5726,5728,5728,5726;5729,5729,5727,5729,5729,5727,5729,5727,5727,5727,5727,5729,5729,5727;5730,5730,5728,5730,5730,5728,5730,5728,5728,5728,5728,5730,5730,5728;5731,5731,5729,5731,5731,5729,5731,5729,5729,5729,5729,5731,5731,5729;5732,5732,5730,5732,5732,5730,5732,5730,5730,5730,5730,5732,5732,5730;5733,5733,5731,5733,5733,5731,5733,5731,5731,5733,5731,5733,5733,5731;5734,5734,5732,5734,5734,5732,5734,5732,5732,5734,5732,5734,5734,5732;5735,5735,5733,5735,5735,5733,5735,5733,5733,5735,5733,5735,5735,5733;5736,5736,5734,5736,5736,5734,5736,5734,5734,5736,5734,5736,5736,5734;5737,5737,5735,5737,5737,5735,5737,5735,5735,5737,5735,5737,5737,5735;5738,5738,5736,5738,5738,5736,5738,5736,5736,5738,5736,5738,5738,5736;5739,5739,5737,5739,5739,5737,5739,5737,5737,5739,5737,5739,5739,5737;5740,5740,5738,5740,5740,5738,5740,5738,5738,5740,5738,5740,5740,5738;5741,5741,5739,5741,5741,5739,5741,5739,5739,5741,5739,5741,5741,5739;5742,5742,5740,5742,5742,5740,5742,5740,5740,5742,5740,5742,5742,5740;5743,5743,5741,5743,5743,5741,5743,5741,5741,5743,5741,5743,5743,5741;5744,5744,5742,5744,5744,5742,5744,5742,5742,5744,5742,5744,5744,5742;5745,5745,5743,5745,5745,5743,5745,5743,5743,5745,5743,5745,5745,5743;5746,5746,5744,5746,5746,5744,5746,5744,5744,5746,5744,5746,5746,5744;5747,5747,5747,5747,5747,5745,5747,5745,5745,5747,5745,5747,5747,5745;5748,5748,5748,5748,5748,5746,5748,5746,5746,5748,5746,5748,5748,5746;5749,5749,5749,5749,5749,5747,5749,5747,5747,5749,5747,5749,5749,5747;5750,5750,5750,5750,5750,5748,5750,5748,5748,5750,5748,5750,5750,5748;5751,5751,5751,5751,5751,5749,5751,5749,5749,5751,5749,5751,5751,5749;5752,5752,5752,5752,5752,5750,5752,5750,5750,5752,5750,5752,5752,5750;5753,5753,5753,5753,5753,5751,5753,5751,5751,5753,5751,5753,5753,5751;5754,5754,5754,5754,5754,5752,5754,5752,5752,5754,5752,5754,5754,5752;5755,5755,5755,5755,5755,5753,5755,5753,5753,5755,5753,5755,5755,5753;5756,5756,5756,5756,5756,5754,5756,5754,5754,5756,5754,5756,5756,5754;5757,5757,5757,5757,5757,5755,5757,5755,5755,5757,5755,5757,5757,5755;5758,5758,5758,5758,5758,5756,5758,5756,5756,5758,5756,5758,5758,5756;5759,5759,5759,5759,5759,5757,5759,5757,5757,5759,5757,5759,5759,5757;5760,5760,5760,5760,5760,5758,5760,5758,5758,5760,5758,5760,5760,5758;5761,5761,5761,5761,5761,5759,5761,5759,5759,5761,5759,5761,5761,5759;5762,5762,5762,5762,5762,5760,5762,5760,5760,5762,5760,5762,5762,5760;5763,5763,5763,5763,5763,5761,5763,5761,5761,5763,5761,5763,5763,5761;5764,5764,5764,5764,5764,5762,5764,5762,5762,5764,5762,5764,5764,5762;5765,5765,5765,5765,5765,5763,5765,5763,5763,5765,5763,5765,5765,5763;5766,5766,5766,5766,5766,5764,5766,5764,5764,5766,5764,5766,5766,5764;5767,5767,5767,5767,5767,5765,5767,5765,5765,5767,5765,5767,5767,5765;5768,5768,5768,5768,5768,5766,5768,5766,5766,5768,5766,5768,5768,5766;5769,5769,5769,5769,5769,5767,5769,5767,5767,5769,5767,5769,5769,5767;5770,5770,5770,5770,5770,5768,5770,5768,5768,5770,5768,5770,5770,5768;5771,5771,5771,5771,5771,5769,5771,5769,5769,5771,5769,5771,5771,5769;5772,5772,5772,5772,5772,5770,5772,5770,5770,5772,5770,5772,5772,5770;5773,5773,5773,5773,5773,5771,5773,5771,5771,5773,5771,5773,5773,5771;5774,5774,5774,5774,5774,5772,5774,5772,5772,5774,5772,5774,5774,5772;5775,5775,5775,5775,5775,5773,5775,5773,5773,5775,5773,5775,5775,5773;5776,5776,5776,5776,5776,5774,5776,5774,5774,5776,5774,5776,5776,5774;5777,5777,5777,5777,5777,5775,5777,5775,5775,5777,5775,5777,5777,5775;5778,5778,5778,5778,5778,5776,5778,5776,5776,5778,5776,5778,5778,5776;5779,5779,5779,5779,5779,5777,5779,5777,5777,5779,5777,5779,5779,5777;5780,5780,5780,5780,5780,5778,5780,5778,5778,5780,5778,5780,5780,5778;5781,5781,5781,5781,5781,5779,5781,5779,5779,5781,5779,5781,5781,5779;5782,5782,5782,5782,5782,5780,5782,5780,5780,5782,5780,5782,5782,5780;5783,5783,5783,5783,5783,5781,5783,5781,5781,5783,5781,5783,5783,5781;5784,5784,5784,5784,5784,5782,5784,5782,5782,5784,5782,5784,5784,5782;5785,5785,5785,5785,5785,5783,5785,5783,5783,5785,5783,5785,5785,5783;5786,5786,5786,5786,5786,5784,5786,5784,5784,5786,5784,5786,5786,5784;5787,5787,5787,5787,5787,5785,5787,5785,5785,5787,5785,5787,5787,5785;5788,5788,5788,5788,5788,5786,5788,5786,5786,5788,5786,5788,5788,5786;5789,5789,5789,5789,5789,5787,5789,5787,5787,5789,5787,5789,5789,5787;5790,5790,5790,5790,5790,5788,5790,5788,5788,5790,5788,5790,5790,5788;5791,5791,5791,5791,5791,5789,5791,5789,5789,5791,5789,5791,5791,5789;5792,5792,5792,5792,5792,5790,5792,5790,5790,5792,5790,5792,5792,5790;5793,5793,5793,5793,5793,5791,5793,5791,5791,5793,5791,5793,5793,5791;5794,5794,5794,5794,5794,5792,5794,5792,5792,5794,5792,5794,5794,5792;5795,5795,5795,5795,5795,5793,5795,5793,5793,5795,5793,5795,5795,5793;5796,5796,5796,5796,5796,5794,5796,5794,5794,5796,5794,5796,5796,5794;5797,5797,5797,5797,5797,5795,5797,5795,5795,5797,5795,5797,5797,5795;5798,5798,5798,5798,5798,5796,5798,5796,5796,5798,5796,5798,5798,5796;5799,5799,5799,5799,5799,5797,5799,5797,5797,5799,5797,5799,5799,5797;=,5800;=,5801;=,5802;=,5803;=,5804;=,5805;=,1461;=,5807;=,5808;=,5809;=,5810;=,5798;=,5812;=,5813;=,5814;=,5815;=,5703;=,5817;=,5818;=,5819;=,5820;=,5821;=,5724;=,5823;=,5824;=,5825;=,5826;=,5827;=,5828;=,5829;=,5830;=,5831;=,5832;=,5833;=,5834;=,5835;=,5836;=,5837;=,5838;=,5839;=,5840;=,5841;=,5842;=,5843;=,5844;=,5845;=,5846;=,5847;=,5848;=,5849;=,5850;=,5851;=,5852;=,5853;=,5854;=,5855;=,5856;=,5857;=,5858;=,5859;=,5860;=,5861;=,5862;=,5863;=,5864;=,5865;=,5866;=,5867;=,5868;=,5869;=,5870;=,5871;=,5872;=,5873;=,5874;=,5875;=,5876;=,5877;=,5878;=,5879;=,5880;=,5881;=,5882;=,5883;=,5884;=,5885;=,5886;=,5887;=,5888;=,5889;=,5890;=,5891;=,5892;=,5893;=,5894;=,5895;=,5896;=,5897;=,5898;=,5899;=,5900;=,5901;=,5902;=,5903;=,5904;=,5905;=,5906;=,5907;=,5908;=,5909;=,5910;=,5911;=,5912;=,5913;=,5914;=,5915;=,5916;=,5917;=,5918;=,5919;=,5920;=,5921;=,5922;=,5923;=,5924;=,5925;5926,5926,5932,5926,5926,5926,5926,5926,5926,5926,5926,5926,5926,5932;=,5927;=,5928;=,5929;=,5930;=,5931;=,2005;=,5933;=,5934;=,5935;=,5936;=,5937;=,5938;=,5939;=,892;=,5941;=,5942;=,5943;=,5944;=,5945;=,5946;=,5947;=,5948;=,5949;=,5958;=,5951;=,5952;=,5953;=,5954;=,5955;=,5956;=,5957;=,5949;=,5959;=,5960;=,5961;=,5962;=,5963;=,5964;=,5965;=,5966;=,5967;=,5968;=,5969;=,5970;=,5971;=,5972;=,5973;=,5974;=,5975;=,5976;=,5977;=,5978;=,5979;=,5980;=,5981;=,5982;=,5983;=,5984;=,5985;=,5986;=,5987;=,5988;=,5989;=,5990;=,5991;=,5992;=,5993;=,5994;=,5995;=,5996;=,5997;=,5998;=,5999;=,6000;=,6001;=,6002;=,6003;=,6004;=,6005;=,6006;=,6007;=,6008;=,6009;=,6010;=,6011;=,6012;=,6013;=,6014;=,6015;=,6016;=,6017;=,6018;=,6019;=,6020;=,6021;=,6022;=,6023;=,6024;=,6025;=,6026;=,6027;=,6028;=,6029;=,6030;=,6031;=,6032;=,6033;=,6034;=,6035;=,6036;=,6037;=,6038;=,6039;=,6040;=,6041;=,6042;=,6043;=,6044;=,6045;=,6046;=,6047;=,6048;=,6049;=,6050;=,6051;=,6052;=,6053;=,6054;6060,6060,6055,6060,6060,6060,6060,6060,6060,6060,6060,6060,6060,6060;=,6056;=,6057;=,6058;=,6059;=,5160;=,6061;=,6062;=,6063;=,6064;=,6065;=,6066;=,1299;=,6068;=,6069;=,6070;=,6071;=,6072;=,6073;=,5829;=,6075;=,6076;=,6077;=,6078;=,6079;=,6080;=,6081;=,6082;=,6083;=,6084;=,6085;=,6086;=,6087;=,6088;=,6089;=,6090;=,6091;=,6092;=,6093;=,6094;=,6095;=,6096;=,6097;=,6098;=,6099;=,6100;=,6101;=,6102;=,6103;=,6104;=,6105;=,6106;=,6107;=,6108;=,6109;=,6110;=,6111;=,6112;=,6113;=,6114;=,6115;=,6116;=,6117;=,6118;=,6119;=,6120;=,6121;=,6122;=,6123;=,6124;=,6125;=,6126;=,6127;=,6128;=,6129;=,6130;=,6131;=,6132;=,6133;=,6134;=,6135;=,6136;=,6137;=,6138;=,6139;6997,6997,6140,6997,6997,6140,6997,6140,6140,6997,6997,6997,6997,6140;=,6141;=,6142;=,6143;=,6144;=,6145;=,6146;=,6147;=,6148;=,6149;=,6150;=,6151;=,6152;=,6153;=,6154;=,6155;=,6156;=,6157;=,6158;=,6159;=,6160;=,6161;=,6162;=,6163;=,6164;=,6165;=,6166;=,6167;=,6168;=,6169;=,6170;=,6171;=,6172;6203,6203,6173,6203,6203,6173,6203,6203,6173,6203,6173,6203,6203,6173;=,6174;=,6175;=,6176;=,6177;=,6178;=,6179;=,6180;=,6181;=,6182;=,6183;=,6184;=,6185;=,6186;=,6187;=,6188;=,6189;=,6190;=,6191;=,6192;=,6193;=,6194;=,6195;=,6196;=,6197;6891,6891,6198,6198,6198,6198,6198,6891,6198,6891,6198,6891,6198,6198;=,6199;=,6200;=,6201;=,6202;=,6220;=,6204;=,6205;=,6206;=,6207;=,6208;=,6209;=,6210;=,6211;=,6212;=,6213;=,6214;6215,6215,6215,6215,6215,6215,6215,-1,6215,6215,6215,6215,6215,6215;6744,6744,6216,6744,6744,6216,6744,6744,6216,6744,6216,6744,6744,6216;=,6217;=,6218;=,6219;=,6186;=,6221;=,6222;=,6223;=,6224;=,6225;=,6226;=,6227;=,6228;=,6229;=,6230;=,6231;=,6232;=,6233;=,6234;=,6235;=,6236;=,6237;=,6238;=,6239;=,6240;=,6241;=,6242;=,6243;=,6244;=,6245;=,6246;=,6247;=,6248;=,6249;=,6250;=,6251;=,6252;=,6253;=,6254;=,6255;=,6256;=,6257;=,6258;=,6259;=,6260;=,6261;=,6262;=,6263;=,6264;=,6265;=,6266;=,6267;=,6268;=,6269;=,6270;=,6271;=,6272;=,6273;=,6274;=,6275;=,6276;=,6277;=,6278;=,6279;=,6280;6281,6281,6281,6281,6281,6281,6281,6621,6621,6621,6281,6281,6281,6281;=,6282;=,6283;=,6284;=,6285;=,6286;=,6287;=,6288;=,6289;=,6290;=,6291;=,6292;=,6293;=,6294;=,6295;=,6296;=,6297;=,6298;=,6299;=,6300;=,6301;=,6302;=,6303;=,6304;=,6305;=,6306;=,6307;=,6308;=,6309;=,6310;=,6311;=,6312;=,6313;=,6314;=,6315;=,6316;=,6317;=,6318;=,6319;=,6320;=,6321;=,6322;=,6323;=,6324;=,6325;=,6326;=,6327;6336,6336,6328,6336,6336,6336,6336,6336,6336,6336,6336,6336,6336,6328;=,6329;=,6330;=,6331;=,6332;=,6333;=,6334;=,6335;=,2850;=,6337;=,6338;=,6339;=,6340;=,6341;=,6342;=,6343;=,6344;=,6345;=,6346;=,6347;=,6348;=,6349;=,6350;=,6351;=,3314;=,6353;=,6354;=,6355;=,6356;=,6357;=,6358;=,6359;=,6360;=,6361;=,6362;=,6363;=,6364;=,6365;=,6366;=,6367;=,6368;=,6369;=,6370;=,6371;=,6372;=,6373;=,6374;=,6375;=,6376;=,6377;=,6378;=,6379;=,6380;=,6381;=,6382;=,6383;=,6384;=,6385;=,6386;=,6387;=,6388;=,6389;=,6390;=,6391;=,6392;=,6393;=,6394;=,6395;=,6396;=,6397;=,6398;=,6399;=,6400;=,6401;=,6402;6403,6403,6709,6709,6709,6709,6709,6403,6709,6403,6709,6403,6709,6709;=,6404;=,6405;=,6406;=,6407;=,6408;=,6409;=,6410;=,6411;=,6412;=,6413;=,6414;=,6415;=,6416;=,6417;=,6418;=,6419;=,6420;=,6421;=,6422;=,6423;=,6424;=,6425;=,6426;=,6427;=,6428;=,6429;=,6430;=,6431;=,6432;=,6433;=,6434;=,6435;=,6436;=,6437;=,6438;=,6439;=,6440;=,6441;=,6442;=,6443;=,6444;=,6445;=,6446;=,6447;=,6448;=,6449;=,6450;=,6451;=,6452;=,6453;=,6454;=,6455;=,6456;=,6457;=,6458;=,6459;=,6460;=,6461;=,6462;=,6463;=,6464;=,6465;=,6466;=,6467;=,6468;=,6469;=,6470;=,6471;=,6472;=,6473;=,6474;=,6475;=,6476;=,6477;=,6478;=,6479;=,6480;=,6481;=,6482;=,6483;=,6484;=,6485;=,6486;=,6487;=,6488;=,6489;=,6490;=,6491;=,6492;=,6493;=,6494;6495,6495,6717,6495,6495,6717,6495,6717,6717,6495,6717,6495,6495,6717;=,6496;=,6497;=,6498;=,6499;=,6500;=,6501;=,6502;=,6503;=,6504;=,6505;=,6506;=,6507;=,6508;=,6509;=,6510;=,6511;=,6512;=,6513;=,6514;=,6515;=,6516;=,6517;=,6518;=,6519;=,6520;=,6521;=,6522;=,6523;=,6524;=,6525;=,6526;=,6527;=,6528;=,6529;=,6530;=,6531;=,6532;=,6533;=,6534;=,6535;=,6536;=,6537;=,6538;=,6539;=,6540;=,6541;=,6542;=,6543;=,6544;=,6545;=,6546;=,6547;=,6548;=,6549;=,6550;=,6551;=,6552;=,6553;=,6554;=,6555;=,6556;=,6557;=,6558;=,6559;=,6560;=,6561;=,6562;=,6563;=,6564;=,6565;=,6566;=,6567;=,6568;=,6569;=,6570;=,6571;=,6572;=,6573;=,6574;=,6575;=,6576;=,6577;=,6578;=,6579;=,6580;=,6581;=,6582;=,6583;=,6584;=,6585;=,6586;=,6587;=,6588;=,6589;=,6590;=,6591;=,6592;=,6593;=,6594;=,6595;=,6596;=,6597;=,6598;=,6599;6600,6600,6600,6600,6600,6600,6600,6600,6600,6607,6607,6600,6600,6600;=,6601;=,6602;=,6603;=,6604;=,6605;=,6606;=,4381;=,6608;=,6609;=,6610;=,6611;=,6612;=,3709;=,6614;=,6615;=,6616;=,6617;=,6618;=,6619;=,6620;=,6081;=,6622;=,6623;=,6624;=,6625;=,6626;=,6627;=,6628;=,6629;=,6630;=,6631;=,6632;=,6633;=,6634;=,6635;=,6636;=,6637;=,6638;=,6639;=,6640;=,6641;=,6642;=,6643;=,6644;=,6645;=,6646;=,6647;=,6648;=,6649;=,6650;=,6651;=,6652;=,6653;=,6654;=,6655;=,6656;=,6657;=,6658;=,6659;=,6660;=,6661;=,6662;=,6663;=,6664;=,6665;=,6666;=,6667;=,6668;=,6669;=,6670;=,6671;=,6672;=,6673;=,6674;=,6675;=,6676;=,6677;=,6678;=,6679;=,6680;=,6681;=,6682;6683,6683,6683,6683,6683,6683,6683,6683,-1,6683,6683,6683,6683,6683;=,6684;=,6685;=,6686;=,6687;=,6688;=,6689;6690,6690,6690,6690,6690,6690,6690,6697,6697,6697,6690,6690,6690,6690;=,6691;=,6692;=,6693;=,6694;=,6695;=,6696;=,6312;=,6698;=,6699;=,6700;=,6701;=,6702;=,6703;=,6704;=,6705;=,6706;=,6707;=,6708;=,6385;=,6710;=,6711;=,6712;=,6713;=,6714;=,6715;=,6716;=,6630;=,6718;=,6719;=,6720;=,6721;=,6722;=,6723;=,6724;=,6725;=,6726;=,6727;=,6728;=,6729;=,6730;=,6731;=,6732;=,6733;=,6734;=,6735;=,6736;=,6737;=,6738;=,6739;=,6740;=,6741;=,6742;=,6743;=,6205;=,6745;=,6746;=,6747;=,6748;=,6749;=,6750;=,6751;=,6752;=,6753;=,6754;=,6755;=,6756;=,6757;=,6758;=,6759;=,6760;=,6761;=,6762;=,6763;=,6764;=,6487;=,6766;=,6767;=,6768;=,6769;=,6770;=,6771;=,6772;=,6773;=,6774;=,6775;=,6776;=,6777;=,6778;=,6779;=,6780;=,6781;=,6782;=,6783;=,6784;=,6785;=,6786;=,6787;=,6788;=,6789;=,6790;=,6791;=,6792;=,6793;=,6794;=,6795;=,6796;=,6797;=,6798;=,6799;=,6800;=,6801;6802,6802,6802,6802,6802,6802,6802,6802,6802,-1,6802,6802,6802,6802;=,6803;=,6804;=,6805;=,6806;=,6807;=,6808;=,6809;=,6810;=,6811;=,6812;=,6813;=,6814;=,6815;=,6816;=,6817;=,6818;=,6819;=,6820;=,6821;=,6822;=,6823;=,6824;=,6825;=,6826;=,6827;=,6828;=,6829;=,6830;=,6831;=,6832;=,6833;=,6834;=,6835;=,6836;=,6837;=,6838;=,6839;=,6840;=,6841;=,6842;=,6843;=,6844;=,6845;6873,6873,6873,6873,6873,6846,6873,6846,6846,6846,6846,6873,6873,6846;=,6847;=,6848;=,6849;=,6850;=,6851;=,6852;=,6853;=,6854;=,6855;=,6856;=,6857;=,6858;=,6859;=,5430;=,6861;=,6862;=,6863;=,6864;=,6865;=,6866;=,6867;=,6868;=,6869;=,6870;=,6871;=,6872;=,6771;=,6874;=,6875;=,6876;=,6877;=,6878;=,6879;=,3901;=,6881;=,6882;=,6883;=,6884;=,6885;=,6886;=,6887;=,6888;=,6889;=,6890;=,6360;=,6892;=,6893;=,6894;=,6895;=,6896;=,6897;=,6898;=,6899;=,6900;=,6901;=,6902;=,6903;=,6904;=,6905;=,6906;=,6907;=,6908;=,6909;=,6910;=,6911;=,6912;=,6913;=,6914;=,6915;=,6916;=,6917;=,6918;=,6919;=,6920;=,6921;=,6922;=,6923;=,6924;=,6925;=,6926;=,6927;=,6928;=,6929;=,6930;=,6931;=,6932;=,6933;=,6934;=,6935;=,6936;=,6937;=,6938;=,6939;=,6940;=,6941;=,6942;=,6943;=,6944;=,6945;=,6946;=,6947;=,6948;=,6949;=,6950;=,6951;=,6952;=,6953;=,6954;=,6955;=,6956;=,6957;=,6958;=,6959;=,6960;=,6961;=,6962;=,6963;=,6964;=,6965;=,6966;=,6967;=,6968;=,6969;=,6970;=,6971;=,6972;=,6973;=,6974;=,6975;=,6976;=,6977;=,6978;=,6979;=,6980;=,6981;=,6982;6990,6990,6983,6983,6983,6983,6983,6990,6983,6990,6983,6990,6983,6983;=,6984;=,6985;=,6986;=,6987;=,6988;=,6989;=,6223;=,6991;=,6992;=,6993;=,6994;=,6995;=,6996;=,6473;=,6998;=,6999;=,7000;=,7001;=,7002;=,7003;=,7004;=,7005;=,7006;7007,7007,7007,7007,7007,7007,7007,7007,7007,7007,-1,7007,7007,7007;=,7008;=,7009;=,7010;=,7011;=,7012;=,7013;=,7014;=,7015;=,7016;=,7017;=,7018;=,7019;=,7020;=,7021;=,7022;=,7023;=,7024;=,6522;=,7026;=,7027;=,7028;=,7029;=,7030;=,7031;=,7032;=,7033;=,7034;=,7035;=,7036;=,7037;=,7038;=,7039;=,7040;=,7041;=,7042;=,7043;=,7044;=,7045;=,7046;=,7047;=,7048;=,7049;=,7050;=,7051;=,7052;=,7053;=,7054;=,7055;=,7056;=,7057;=,7058;=,7059;=,7060;=,7061;=,7062;=,7063;=,7064;=,7065;=,7066;=,7067;=,7068;=,7069;=,7070;=,7071;=,7072;=,7073;=,7074;=,7075;=,7076;=,7077;=,7078;=,7079;=,7080;=,7081;=,7082;=,7083;=,7084;=,7085;=,7086;=,7087;=,7088;=,7089;=,7090;=,7091;=,7092;=,7093;=,7094;=,7095;=,7096;=,7097;=,7098;=,7099;=,7100;=,7101;=,7102;=,7103;=,7104;=,7105;=,7106;=,7107;=,7108;=,7109;=,7110;=,7111;=,7112;=,7113;=,7114;=,7115;=,7116;=,7117;=,7118;=,7119;=,7120;7121,7121,7121,7121,7121,7121,7121,7121,7121,7121,7121,-1,7121,7121;=,7122;=,7123;=,7124;=,7125;=,7126;=,7127;=,7128;=,7129;=,7130;=,7131;=,7132;=,7133;=,7134;=,7135;=,7136;=,7137;=,7138;=,7139;=,7140;=,7141;=,7142;=,7143;=,7144;=,7145;=,7146;=,7147;=,7148;=,7149;=,7150;=,7151;=,7152;=,7153;=,7154;=,7155;=,7156;=,7157;=,7158;=,7159;=,7160;=,7161;=,7162;=,7163;=,7164;=,7165;=,7166;=,7167;=,7168;=,7169;=,7170;=,7171;=,7172;=,7173;=,7174;=,7175;=,7176;=,7177;=,7178;=,7179;=,7180;=,7181;=,7182;=,7183;=,7184;=,7185;=,7186;=,7187;=,7188;=,7189;=,7190;=,7191;=,7192;=,7193;=,7194;=,7195;=,7196;=,7197;=,7198;=,7199;=,7200;=,7201;=,7202;=,7203;=,7204;=,7205;=,7206;=,7207;=,7208;=,7209;=,7210;=,7211;=,7212;=,7213;=,7214;=,7215;=,7216;=,7217;=,7218;=,7219;=,7220;=,7221;=,7222;=,7223;=,7224;=,7225;=,7226;=,7227;=,7228;=,7229;=,7230;=,7231;=,7232;=,7233;=,7234;=,7235;=,7236;=,7237;=,7238;=,7239;=,7240;=,7241;=,7242;=,7243;=,7244;=,7245;=,213;=,7247;=,7248;=,7249;=,7250;=,7251;=,7252;=,7253;=,7254;=,7255;=,7256;=,7257;=,7258;=,7259;=,7260;=,7261;=,7262;=,7263;=,7264;=,7265;=,7266;=,7267;=,7268;=,7269;=,7270;=,7271;7272,7272,7272,7272,7272,7272,7272,7272,7272,7272,7272,7272,-1,7272;=,7273;=,7274;=,7275;=,7276;=,7277;=,7278;=,7279;=,7280;=,7281;=,7282;=,7283;=,7284;=,7285;=,7286;=,7287;=,7288;=,7289;=,7290;=,7291;=,7292;=,7293;=,7294;=,7295;=,7296;=,7297;=,7298;=,7299;=,7300;=,7301;=,7302;=,1986;=,7304;=,7305;=,7306;=,7307;=,7308;=,7309;=,7310;=,7311;=,7312;=,7313;=,7314;=,7315;=,7316;=,7317;=,7318;7319,7319,7319,7319,7319,7319,7319,7319,7319,7319,7319,7319,7319,-1;=,7320;=,7321;=,7322;=,7323;=,7324;=,7325;=,7326;=,7327;=,7328;=,7329;=,7330;=,7331;=,7332;=,7333;=,7334;=,7335;=,7336;=,7337;=,1273 + + + + 438.000000 + Shop + + + 1670.000000 + Restaurant + + + 2052.000000 + Ranch + + + 2424.000000 + Field 17 + + + 2441.000000 + Field 16 + + + 2772.000000 + Field 4 + + + 3951.000000 + Field 15 + + + 6214.000000 + Field 2 + + + 6682.000000 + Railroad Silo West + + + 6801.000000 + Port Grain Elevator + + + 7006.000000 + Field 1 + + + 7120.000000 + Barn + + + 7271.000000 + Animal Handler + + + 7318.000000 + Central Grain Elevator + + + + diff --git a/courses/Ravenport/AutoDrive_config.xml b/courses/Ravenport/AutoDrive_config.xml deleted file mode 100644 index 6177397e..00000000 --- a/courses/Ravenport/AutoDrive_config.xml +++ /dev/null @@ -1,88 +0,0 @@ - - 1.0.0.0 - false - 0.832812 - 0.235000 - - - 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 - -286.97244262695,-288.30126953125,-290.83905029297,-293.22583007813,-296.05133056641,-298.63397216797,-302.63278198242,-310.24945068359,-317.8278503418,-335.15274047852,-354.80938720703,-374.47134399414,-394.12573242188,-413.76577758789,-433.50259399414,-453.16000366211,-472.83822631836,-492.51690673828,-512.11102294922,-531.77191162109,-551.51403808594,-571.22430419922,-590.86798095703,-610.58251953125,-630.38543701172,-650.28411865234,-670.00274658203,-690.04577636719,-702.56823730469,-704.84564208984,-707.85266113281,-710.19171142578,-712.10656738281,-713.45935058594,-714.00402832031,-714.19476318359,-713.78924560547,-712.94317626953,-712.04644775391,-710.3740234375,-707.62554931641,-704.88299560547,-702.56817626953,-699.98809814453,-698.00073242188,-694.01519775391,-690.50067138672,-689.31756591797,-688.63372802734,-688.47326660156,-688.97772216797,-690.31292724609,-692.1923828125,-695.06433105469,-698.87921142578,-702.83929443359,-706.90704345703,-710.96087646484,-714.97790527344,-728.28204345703,-731.64495849609,-733.07867431641,-733.58172607422,-733.51068115234,-732.83984375,-731.46807861328,-729.47790527344,-726.91192626953,-723.20220947266,-719.580078125,-716.43878173828,-714.14074707031,-712.8388671875,-712.43286132813,-712.68048095703,-713.46990966797,-717.29858398438,-719.47961425781,-720.74407958984,-726.84039306641,-727.29315185547,-726.62524414063,-725.04815673828,-722.83074951172,-719.89410400391,-716.60516357422,-713.25122070313,-709.15954589844,-689.00024414063,-680.52752685547,-669.53845214844,-652.40032958984,-632.54547119141,-612.68707275391,-593.01422119141,-573.1572265625,-553.35290527344,-533.71044921875,-513.95373535156,-494.33093261719,-474.59503173828,-454.73721313477,-435.03479003906,-415.17327880859,-395.55389404297,-375.77645874023,-356.22521972656,-336.55004882813,-317.04724121094,-297.59506225586,-278.25006103516,-258.91412353516,-239.52224731445,-220.14294433594,-200.75004577637,-181.31988525391,-170.40187072754,-151.38203430176,-132.48733520508,-113.34728240967,-102.72193908691,-83.328048706055,-63.874729156494,-44.536937713623,-25.909482955933,-6.1922807693481,13.529009819031,21.633785247803,31.829439163208,43.076099395752,63.155067443848,83.175422668457,92.454917907715,97.922164916992,101.96848297119,105.9214553833,109.83516693115,115.30433654785,122.34828186035,141.38818359375,160.45918273926,179.24894714355,192.88116455078,211.26829528809,229.14906311035,246.86709594727,264.67364501953,282.43228149414,300.27297973633,318.07727050781,335.84643554688,353.64044189453,371.37112426758,389.05334472656,406.8332824707,424.59997558594,442.50094604492,460.10107421875,472.25546264648,490.97653198242,504.18319702148,514.20031738281,516.91082763672,523.00756835938,526.85388183594,530.80615234375,534.81579589844,542.50946044922,550.89727783203,570.97351074219,591.04443359375,611.13031005859,626.27288818359,634.18353271484,638.1796875,642.10852050781,645.98461914063,649.80450439453,653.57604980469,657.10968017578,659.32666015625,661.03924560547,662.30700683594,663.42517089844,665.57873535156,667.66491699219,670.32141113281,673.22686767578,676.93579101563,681.84503173828,684.57202148438,692.82330322266,696.20581054688,699.43542480469,709.81762695313,713.33850097656,716.90966796875,720.58386230469,725.43310546875,729.26306152344,733.18225097656,737.22540283203,741.16363525391,744.20574951172,746.24542236328,747.31433105469,747.64562988281,747.39831542969,746.29553222656,744.27239990234,741.90698242188,739.60815429688,736.55346679688,730.96221923828,726.98583984375,723.05926513672,719.21429443359,715.43621826172,701.68115234375,698.830078125,694.91979980469,690.92059326172,682.6513671875,678.86029052734,672.30889892578,512.28186035156,509.70910644531,506.27850341797,502.76617431641,498.79641723633,494.96832275391,476.14331054688,462.3928527832,450.72164916992,432.57858276367,414.71481323242,397.04110717773,379.35632324219,361.73059082031,344.00448608398,326.12878417969,308.3671875,290.45205688477,272.64208984375,254.94644165039,237.23777770996,219.27395629883,201.13554382324,188.8072052002,170.0997467041,151.16970825195,132.00907897949,112.76290130615,104.84114837646,100.82710266113,96.783058166504,85.698760986328,76.961502075195,71.392318725586,63.814014434814,48.832679748535,28.667346954346,17.684268951416,6.1853384971619,-13.73895072937,-33.469032287598,-45.265758514404,-64.464302062988,-83.704765319824,-102.98533630371,-122.23403167725,-140.20893859863,-159.19975280762,-178.23258972168,-190.56866455078,-209.86737060547,-229.36299133301,-248.77896118164,-268.06494140625,-287.36138916016,-282.64651489258,-284.58724975586,-285.20333862305,-285.2336730957,-284.47344970703,-282.6969909668,-281.82925415039,-275.65927124023,-272.43576049805,-267.62127685547,-265.11614990234,-261.55310058594,-258.56854248047,-256.55715942383,-255.73936462402,-255.63655090332,-255.24658203125,-255.25270080566,-256.16226196289,-257.55184936523,-259.84191894531,-263.44046020508,-265.90090942383,-267.90728759766,-269.69369506836,-271.56610107422,-272.80184936523,-273.30029296875,-273.09381103516,-272.32061767578,-271.59536743164,-271.12979125977,-270.96224975586,-271.18472290039,-691.58038330078,-688.88500976563,-686.14123535156,-683.86236572266,-682.05969238281,-680.701171875,-679.84765625,-679.54553222656,-679.69439697266,-680.08319091797,-680.91906738281,-682.94934082031,-683.02581787109,-681.9814453125,-680.4560546875,-678.7529296875,-676.76812744141,-674.58392333984,-671.23205566406,-668.38531494141,-665.4111328125,-663.2412109375,-662.16375732422,-662.21502685547,-663.29583740234,-665.66296386719,-665.92846679688,-665.98480224609,-666.36651611328,-666.76940917969,-667.67272949219,-669.13641357422,-671.24261474609,-673.61834716797,-676.33227539063,-679.39904785156,-682.83349609375,-686.54669189453,-690.45574951172,-734.70983886719,-737.71350097656,-740.05108642578,-742.57116699219,-745.92510986328,-750.56567382813,-752.99658203125,-754.48614501953,-754.77313232422,-754.50775146484,-753.20629882813,-751.76165771484,-749.97338867188,-747.96105957031,-745.822265625,-743.84936523438,-742.51483154297,-741.75848388672,-741.24432373047,-741.6845703125,-742.46722412109,-743.50274658203,-743.39508056641,-742.22747802734,-740.45574951172,-737.52178955078,-734.30609130859,-737.89520263672,-740.75469970703,-744.76373291016,-748.81524658203,-768.75842285156,-772.94348144531,-776.82446289063,-792.228515625,-796.20587158203,-800.29840087891,-816.34289550781,-820.34716796875,-824.36755371094,-828.31573486328,-831.69311523438,-834.22192382813,-836.05310058594,-836.93640136719,-836.78094482422,-835.73474121094,-833.81219482422,-831.30548095703,-828.25012207031,-825.01947021484,-821.00115966797,-817.19116210938,-813.54699707031,-809.95806884766,-792.29669189453,-788.53869628906,-783.73522949219,-779.88958740234,-775.60137939453,-770.93060302734,-754.32989501953,-742.71429443359,-738.68524169922,-734.65826416016,-672.68280029297,-675.42602539063,-678.64562988281,-681.11254882813,-683.29632568359,-686.49243164063,-688.88580322266,-690.40051269531,-691.27093505859,-689.74407958984,-688.00750732422,-685.52471923828,-682.42791748047,-678.86785888672,-674.88684082031,-670.88342285156,-667.17443847656,-665.13879394531,-663.93859863281,-663.23822021484,-662.62316894531,-661.95007324219,-662.15942382813,-663.4384765625,-664.92004394531,-666.76409912109,-670.16058349609,-671.28253173828,-672.15148925781,-674.32958984375,-676.3662109375,-679.13226318359,-681.82440185547,-679.49957275391,-690.22253417969,-670.01593017578,-671.99761962891,-672.68865966797,-672.67065429688,-671.96624755859,-670.62072753906,-668.88598632813,-666.87274169922,-664.89898681641,-511.32415771484,-508.46530151367,-505.91702270508,-503.55462646484,-502.72402954102,-501.904296875,-500.7673034668,-499.73922729492,-497.84747314453,-495.14233398438,-491.96109008789,-487.36541748047,-485.09805297852,-483.7341003418,-483.06677246094,-482.61096191406,-482.31195068359,-481.86801147461,-481.96823120117,-482.76531982422,-483.55783081055,-484.66436767578,-486.04083251953,-487.59024047852,-489.43307495117,-491.85287475586,-493.67990112305,-495.09948730469,-496.39376831055,-498.95935058594,-502.81793212891,-505.88525390625,-508.42291259766,-511.021484375,-513.00091552734,-514.86199951172,-516.38189697266,-517.36291503906,-517.77490234375,-517.48065185547,-516.57623291016,-515.13897705078,-513.3291015625,-510.38317871094,-506.35366821289,-502.48669433594,-499.73489379883,-498.04275512695,-494.38717651367,-494.40264892578,-494.25308227539,-493.78375244141,-493.06845092773,-490.40032958984,-487.83569335938,-487.787109375,-488.1650390625,-489.04495239258,-490.58679199219,-493.10974121094,-496.34100341797,-499.71871948242,-502.66073608398,-505.02203369141,-506.39883422852,-506.95953369141,-508.5993347168,-510.83340454102,-512.92297363281,-514.98602294922,-518.94903564453,-507.70739746094,-506.74096679688,-504.79577636719,-501.83538818359,-498.24151611328,-498.83410644531,-500.8662109375,-501.61514282227,-502.10733032227,163.20614624023,164.66543579102,165.76760864258,166.16032409668,166.26611328125,166.8675994873,166.74069213867,166.03852844238,165.7689666748,166.57397460938,168.08764648438,170.2897644043,172.66941833496,174.54460144043,175.48258972168,176.66088867188,178.25923156738,180.63154602051,183.71948242188,187.29992675781,191.33979797363,198.81204223633,203.23529052734,207.2546081543,216.82409667969,220.8072052002,223.49411010742,225.16331481934,226.99978637695,228.66493225098,229.84524536133,230.41184997559,231.19812011719,235.07734680176,238.23890686035,239.63891601563,241.66304016113,243.7508392334,245.83137512207,247.26452636719,247.3779296875,247.07470703125,245.98188781738,244.4691619873,242.26934814453,239.22955322266,236.08862304688,232.61643981934,229.01104736328,222.90225219727,216.22532653809,197.70460510254,179.32434082031,160.70820617676,156.84028625488,152.84870910645,148.79183959961,144.74436950684,140.69956970215,136.6573638916,-273.80224609375,-276.56964111328,-280.23168945313,-284.24905395508,-293.89004516602,-297.88690185547,-304.25549316406,-309.951171875,-313.82974243164,-318.29336547852,-322.22994995117,-325.99993896484,-329.50347900391,-332.81427001953,-335.77233886719,-338.15200805664,-339.94064331055,-341.29751586914,-342.29635620117,-343.03845214844,-345.18521118164,-345.60452270508,-345.59826660156,-345.20718383789,-343.80163574219,-341.99081420898,-340.05880737305,-337.5361328125,-333.24938964844,-329.41384887695,-325.94479370117,-322.93032836914,-320.1559753418,-316.81973266602,-315.37390136719,-314.0758972168,-312.30108642578,-310.275390625,-307.21685791016,-304.912109375,-300.93560791016,-294.86358642578,-289.18109130859,-284.5094909668,-281.55014038086,-278.32174682617,-262.57696533203,-246.61131286621,-230.45690917969,-217.15182495117,-200.7776184082,-195.97602844238,-193.17710876465,-190.47814941406,-187.91906738281,-186.55160522461,-186.17991638184,-186.55746459961,-187.46769714355,-188.44485473633,-187.93908691406,-186.83415222168,-184.0691986084,-182.17880249023,-180.01486206055,-176.18905639648,-173.2152557373,-166.83340454102,-161.52153015137,-150.95771789551,-135.76519775391,-118.81576538086,-101.99799346924,-85.461936950684,-69.055526733398,-52.305023193359,-42.312255859375,-33.260807037354,-22.08561706543,-4.110719203949,13.844912528992,25.111766815186,35.640995025635,41.776641845703,46.812194824219,49.974643707275,52.955272674561,55.833221435547,60.696914672852,63.284770965576,75.7109375,84.848251342773,89.024406433105,92.122467041016,95.323890686035,98.756072998047,102.59024810791,106.52534484863,110.41310119629,114.37564086914,118.72386169434,122.79461669922,126.86304473877,129.87634277344,132.2373046875,135.05564880371,134.81912231445,131.93572998047,127.93659973145,123.92245483398,119.93686676025,115.52672576904,111.42423248291,107.40390777588,103.50894165039,99.677238464355,95.970878601074,92.356559753418,88.957588195801,85.811569213867,82.850883483887,80.279037475586,67.335014343262,57.031269073486,51.492881774902,48.288890838623,43.452819824219,39.887557983398,36.392208099365,32.968101501465,28.950105667114,24.341112136841,12.40979385376,-5.6828346252441,-23.628475189209,-35.824264526367,-47.281112670898,-64.172378540039,-80.787338256836,-97.370750427246,-113.9794921875,-130.79527282715,-147.82388305664,-165.02996826172,-171.76887512207,-175.47485351563,-179.45791625977,-183.48284912109,-187.20663452148,-189.8434753418,-191.48556518555,-192.79786682129,-193.06524658203,-192.42680358887,-191.28961181641,-190.37330627441,-190.60624694824,-191.8572845459,-193.86402893066,-196.46282958984,-199.17015075684,-202.01664733887,-204.98059082031,-208.1558380127,-211.60256958008,-215.31642150879,-225.33428955078,-228.69369506836,-231.88835144043,-235.11288452148,-250.56596374512,-266.01022338867,-281.75155639648,-289.91326904297,-294.29693603516,-297.11276245117,-299.86419677734,-302.44818115234,-308.62734985352,-310.94107055664,-312.9866027832,-314.75885009766,-316.27563476563,-317.40005493164,-321.91641235352,-323.53848266602,-327.1862487793,-330.37542724609,-333.3928527832,-336.86892700195,-340.93054199219,-345.56948852539,-348.77337646484,-349.40319824219,-350.05712890625,-350.50866699219,-350.6100769043,-350.4528503418,-350.11642456055,-349.52233886719,-348.70413208008,-347.67144775391,-346.29193115234,-344.53173828125,-342.27304077148,-339.76916503906,-336.80676269531,-333.6530456543,-330.15643310547,-326.31680297852,-322.44451904297,-314.49365234375,-306.48779296875,-301.65704345703,-297.59982299805,-289.39071655273,-285.53265380859,-281.80172729492,-278.19955444336,-275.9895324707,-273.76010131836 - 35.421962738037,35.419231414795,35.412326812744,35.409343719482,35.414489746094,35.418312072754,35.411960601807,35.411758422852,35.411682128906,35.411682128906,35.411933898926,35.412082672119,35.412605285645,35.412605285645,35.412662506104,35.412635803223,35.412643432617,35.412631988525,35.41340637207,35.413635253906,35.413402557373,35.412208557129,35.412448883057,35.412212371826,35.412693023682,35.41296005249,35.412239074707,35.405372619629,35.414817810059,35.412601470947,35.412483215332,35.372623443604,35.381519317627,35.303619384766,35.191825866699,34.880710601807,34.380577087402,33.8244972229,33.119163513184,31.677570343018,29.350072860718,27.417404174805,25.741220474243,25.443717956543,25.375032424927,25.361658096313,25.362827301025,25.362854003906,25.3625831604,25.363214492798,25.365087509155,25.389583587646,25.383121490479,25.349676132202,25.319807052612,25.31097984314,25.31282043457,25.332042694092,25.355228424072,25.349935531616,25.314609527588,25.311727523804,25.31160736084,25.310474395752,25.304735183716,25.302848815918,25.325674057007,25.399694442749,25.5784740448,25.800071716309,26.076778411865,26.421577453613,26.809810638428,27.18888092041,27.562713623047,27.935747146606,29.970092773438,30.95373916626,31.40887260437,34.045764923096,34.631618499756,35.088863372803,35.321636199951,35.409725189209,35.412631988525,35.408657073975,35.394260406494,35.413257598877,35.411811828613,35.411720275879,35.41174697876,35.412033081055,35.412063598633,35.41259765625,35.412643432617,35.41174697876,35.412452697754,35.411602020264,35.412399291992,35.412322998047,35.412612915039,35.412651062012,35.412635803223,35.413265228271,35.413646697998,35.412372589111,35.41333770752,35.412734985352,35.412403106689,35.411972045898,35.459609985352,35.790748596191,35.668319702148,34.41304397583,33.629280090332,33.610771179199,33.610683441162,33.610710144043,33.610782623291,33.611778259277,33.610271453857,34.080703735352,35.521114349365,36.130596160889,36.126907348633,36.127662658691,36.128170013428,36.12837600708,36.128471374512,36.126811981201,36.127510070801,36.132141113281,36.134506225586,36.133750915527,36.135059356689,36.135726928711,36.134307861328,36.134101867676,36.13402557373,36.133655548096,36.135150909424,36.133686065674,36.133743286133,36.133781433105,36.133934020996,35.917945861816,34.635272979736,33.043807983398,31.990222930908,31.906108856201,31.805946350098,31.460210800171,30.238466262817,28.310754776001,26.906093597412,26.645942687988,26.648422241211,26.648654937744,26.648441314697,26.648315429688,26.591136932373,26.759170532227,26.955373764038,27.278335571289,27.352159500122,27.372495651245,27.370779037476,27.32488822937,27.255056381226,27.091432571411,27.062278747559,27.354244232178,27.83118057251,28.076877593994,28.179956436157,28.267734527588,28.35129737854,28.562963485718,28.761571884155,28.794893264771,28.811212539673,28.839473724365,28.859794616699,28.877855300903,28.900074005127,28.899587631226,28.899103164673,28.899198532104,28.899147033691,28.899366378784,28.898677825928,28.899982452393,28.899480819702,28.899049758911,28.899396896362,28.899930953979,28.899339675903,28.899599075317,28.899690628052,28.899280548096,28.899858474731,28.899385452271,28.899698257446,28.899831771851,28.899993896484,28.900030136108,28.899463653564,28.899513244629,28.89965057373,28.899806976318,28.90008354187,28.899995803833,28.89984703064,28.899082183838,28.899660110474,28.930990219116,28.923141479492,28.928754806519,28.899370193481,28.898687362671,28.898803710938,28.898727416992,28.900667190552,28.899383544922,28.899705886841,26.602964401245,26.562944412231,26.575714111328,26.592155456543,26.614902496338,26.634223937988,26.64741897583,26.647855758667,26.646789550781,26.648378372192,26.663040161133,27.403409957886,29.195978164673,30.943155288696,31.645618438721,31.909448623657,31.905656814575,32.326194763184,33.78063583374,35.352596282959,36.121143341064,36.13452911377,36.134532928467,36.134578704834,36.134471893311,36.134590148926,36.134422302246,36.134326934814,36.146129608154,36.15901184082,36.201332092285,36.133560180664,36.130783081055,36.131729125977,36.13126373291,36.127223968506,36.127388000488,36.127490997314,36.127819061279,36.127342224121,36.1282081604,36.120136260986,35.418678283691,34.019626617432,33.611835479736,33.611618041992,33.611442565918,33.611125946045,33.611694335938,33.611503601074,33.88809967041,35.18904876709,35.89440536499,35.577598571777,35.42603302002,35.441219329834,35.431522369385,35.423400878906,35.424560546875,35.422473907471,35.422428131104,35.421669006348,35.423221588135,35.359497070313,35.098583221436,34.949733734131,34.771648406982,34.589206695557,34.447940826416,34.375469207764,34.362003326416,34.362056732178,34.362651824951,34.357021331787,34.353115081787,34.350513458252,34.351421356201,34.351741790771,34.351135253906,34.350841522217,34.350883483887,34.351512908936,34.351295471191,34.351821899414,34.376655578613,34.480239868164,34.594043731689,34.757270812988,34.963691711426,25.362340927124,25.36199760437,25.36280632019,25.36173248291,25.361833572388,25.361972808838,25.362688064575,25.36337852478,25.361877441406,25.361946105957,25.363653182983,25.362846374512,25.362869262695,25.36305809021,25.363117218018,25.363922119141,25.36311340332,25.36375617981,25.363109588623,25.36318397522,25.36283493042,25.362865447998,25.362638473511,25.362636566162,25.362920761108,25.361967086792,25.361814498901,25.361709594727,25.362298965454,25.363739013672,25.380851745605,25.550296783447,25.737634658813,25.75862121582,25.684886932373,25.588218688965,25.544006347656,25.509155273438,25.401828765869,25.312994003296,25.314805984497,25.315715789795,25.3336353302,25.313663482666,25.315523147583,25.315565109253,25.315906524658,25.315511703491,25.315755844116,25.315015792847,25.315147399902,25.314987182617,25.31529045105,25.316034317017,25.316535949707,25.316045761108,25.31597328186,25.315389633179,25.314556121826,25.315322875977,25.31641960144,25.325592041016,25.30424118042,25.314910888672,25.313146591187,25.303953170776,25.314256668091,25.314193725586,25.314735412598,25.314939498901,25.315711975098,25.316698074341,25.324430465698,25.349153518677,25.351215362549,25.342836380005,25.313411712646,25.312181472778,25.310014724731,25.310285568237,25.312938690186,25.314729690552,25.332136154175,25.350500106812,25.352228164673,25.351909637451,25.352415084839,25.351844787598,25.352191925049,25.351732254028,25.35080909729,25.350914001465,25.350914001465,25.35009765625,25.351640701294,25.351493835449,25.351217269897,25.350797653198,25.351085662842,25.351163864136,25.33904838562,25.323308944702,25.319787979126,25.317356109619,35.412433624268,35.41215133667,35.456077575684,35.610061645508,35.59553527832,35.602401733398,35.591087341309,35.611389160156,35.60071182251,35.619136810303,35.619445800781,35.619205474854,35.619701385498,35.61075592041,35.605068206787,35.620227813721,35.619941711426,35.596015930176,35.612258911133,35.59884262085,35.619815826416,35.607997894287,35.619728088379,35.620491027832,35.620651245117,35.609588623047,35.620597839355,35.619945526123,35.600650787354,35.495220184326,35.438159942627,35.412433624268,35.411987304688,35.568408966064,35.619438171387,35.602500915527,35.610855102539,35.620277404785,35.567741394043,35.454879760742,35.41174697876,35.413558959961,35.412693023682,35.413776397705,35.412635803223,35.412261962891,35.402603149414,35.313621520996,35.275314331055,35.309185028076,35.325531005859,35.217735290527,34.94214630127,34.51664352417,34.0608253479,33.449352264404,33.066802978516,32.716625213623,32.478393554688,32.388069152832,32.219615936279,31.580699920654,31.230041503906,29.590038299561,29.00133895874,28.598382949829,28.155214309692,27.61615562439,27.009864807129,26.487056732178,26.083120346069,25.877439498901,25.855173110962,25.856315612793,25.856128692627,25.856170654297,25.856300354004,25.856042861938,25.856349945068,25.855781555176,25.856216430664,25.856256484985,25.855875015259,25.856067657471,25.856018066406,25.855947494507,25.855180740356,25.855701446533,25.854959487915,25.856025695801,25.856615066528,25.855525970459,26.391263961792,26.750886917114,27.762147903442,28.261924743652,28.736713409424,30.311965942383,31.873735427856,32.161521911621,32.369556427002,32.52124786377,32.804492950439,33.175022125244,33.583606719971,34.007823944092,34.430812835693,34.769317626953,34.992198944092,35.109504699707,35.124431610107,35.256206512451,35.349750518799,35.446334838867,35.42113494873,35.225929260254,35.347049713135,35.412746429443,35.413330078125,35.413261413574,35.412586212158,35.377014160156,35.325283050537,35.292335510254,36.134437561035,36.134433746338,36.14693069458,35.919357299805,35.62512588501,33.351970672607,30.760683059692,30.807048797607,30.807100296021,30.807790756226,30.807916641235,30.806356430054,30.802295684814,30.805318832397,30.80578994751,30.805879592896,30.806299209595,30.796476364136,30.808862686157,30.858636856079,30.903465270996,30.93458366394,30.964771270752,30.966207504272,30.993043899536,30.996870040894,30.948843002319,30.869665145874,30.732955932617,30.517049789429,30.303853988647,30.11944770813,29.927165985107,28.902027130127,28.023740768433,27.533920288086,26.982204437256,26.689867019653,26.693054199219,26.692045211792,26.692384719849,26.642660140991,26.55890083313,26.480373382568,26.426328659058,26.418863296509,26.439184188843,26.455139160156,26.448448181152,26.349542617798,26.085943222046,24.869831085205,24.804126739502,24.991493225098,25.010322570801,25.019689559937,25.053810119629,25.088958740234,25.085475921631,25.048797607422,34.35066986084,34.3503074646,34.347282409668,34.299964904785,33.660419464111,33.012634277344,31.861644744873,31.3453540802,31.295696258545,31.212862014771,31.111473083496,30.994647979736,30.86011505127,30.706010818481,30.531370162964,30.346826553345,30.143869400024,29.92778968811,29.72283744812,29.521802902222,28.859756469727,28.631959915161,28.454807281494,28.281408309937,27.754024505615,27.161323547363,26.650142669678,26.212139129639,25.555316925049,25.121423721313,25.039241790771,25.040416717529,25.039405822754,24.985027313232,25.037685394287,24.952955245972,24.985414505005,25.041164398193,25.038850784302,25.039077758789,25.070013046265,25.158466339111,25.312465667725,25.507936477661,25.672119140625,25.867055892944,27.095151901245,28.683258056641,30.365219116211,31.589113235474,32.884082794189,33.270557403564,33.526008605957,33.781192779541,34.039554595947,34.299411773682,34.565975189209,34.794551849365,34.960220336914,35.098148345947,35.217193603516,35.304424285889,35.466899871826,35.549736022949,35.637577056885,35.755878448486,35.798599243164,35.683963775635,35.37345123291,34.614234924316,33.926490783691,34.163215637207,34.3567237854,34.005786895752,33.226741790771,32.595958709717,32.416934967041,32.287181854248,32.084957122803,31.580659866333,31.212446212769,30.929302215576,30.602855682373,30.339269638062,30.04877281189,29.805541992188,29.51376914978,29.155136108398,28.384973526001,27.85150718689,25.467004776001,25.019987106323,25.027275085449,25.02876663208,25.029079437256,25.029247283936,25.029851913452,25.029462814331,25.030349731445,25.029390335083,25.029209136963,25.029642105103,25.028802871704,25.030307769775,25.029262542725,25.027446746826,25.028137207031,25.023157119751,25.01279258728,25.015336990356,25.027627944946,25.027420043945,25.028234481812,25.027978897095,25.026718139648,25.027639389038,25.027652740479,25.026735305786,25.024784088135,25.040601730347,25.16792678833,25.430278778076,27.849767684937,29.37752532959,29.966257095337,30.220977783203,30.535907745361,30.71876335144,30.868911743164,30.986627578735,31.105041503906,31.224729537964,31.518308639526,31.768201828003,32.382873535156,32.724056243896,32.950458526611,33.452587127686,34.123924255371,34.559715270996,34.375350952148,34.077903747559,34.72038269043,35.771675109863,35.821025848389,35.715824127197,35.5553855896,35.389171600342,35.259983062744,35.14058303833,35.030643463135,34.912921905518,34.847202301025,34.801666259766,34.735366821289,34.608425140381,34.415237426758,34.192428588867,33.919902801514,33.646179199219,33.369388580322,33.097316741943,32.83158493042,32.564304351807,32.306880950928,32.067794799805,31.291351318359,30.981781005859,30.664579391479,30.322650909424,28.615074157715,27.00509262085,25.774530410767,25.326189041138,25.204431533813,25.146966934204,25.099681854248,25.069263458252,25.015470504761,25.017169952393,25.031787872314,25.039312362671,25.015211105347,24.94716835022,24.998676300049,25.039070129395,25.038896560669,25.038892745972,25.041330337524,25.355390548706,25.877130508423,26.620279312134,27.430122375488,27.681133270264,28.019794464111,28.398977279663,28.691558837891,28.881437301636,29.096868515015,29.293663024902,29.492164611816,29.692623138428,29.913583755493,30.141712188721,30.358753204346,30.548608779907,30.72857093811,30.889091491699,31.037654876709,31.168046951294,31.268217086792,31.440155029297,31.72367477417,32.341773986816,33.04114151001,34.07186126709,34.311893463135,34.441757202148,34.487487792969,34.556888580322,34.630619049072 - -211.87466430664,-214.60754394531,-217.60395812988,-218.99180603027,-219.71742248535,-219.58532714844,-218.7448425293,-216.92671203613,-214.83474731445,-210.52101135254,-206.27453613281,-202.08355712891,-197.87092590332,-193.66128540039,-189.45811462402,-185.43293762207,-181.4299621582,-177.47624206543,-173.41648864746,-169.34831237793,-165.32942199707,-161.40351867676,-157.48782348633,-153.78468322754,-150.68016052246,-148.08047485352,-146.20903015137,-144.65051269531,-144.24992370605,-144.56658935547,-144.22380065918,-143.17718505859,-141.54934692383,-139.48718261719,-137.50038146973,-133.7481842041,-129.703125,-125.76234436035,-120.83382415771,-110.09091186523,-90.260681152344,-70.42879486084,-57.923633575439,-55.794563293457,-55.367618560791,-54.90079498291,-53.389266967773,-51.724754333496,-49.781909942627,-47.467105865479,-44.945190429688,-42.223045349121,-40.232681274414,-38.43497467041,-37.15140914917,-36.510215759277,-36.239322662354,-36.22110748291,-36.383110046387,-37.226703643799,-39.399154663086,-41.378978729248,-43.338638305664,-45.352058410645,-47.529563903809,-49.696125030518,-51.488208770752,-52.751003265381,-54.267459869385,-56.033180236816,-58.593212127686,-61.928352355957,-65.749114990234,-69.820281982422,-73.908966064453,-77.965301513672,-97.738929748535,-106.28223419189,-110.20625305176,-129.34536743164,-133.33583068848,-137.10279846191,-140.18592834473,-143.55039978027,-146.35032653809,-148.00370788574,-148.59489440918,-148.47494506836,-148.27169799805,-148.68916320801,-149.57754516602,-151.45991516113,-153.93037414551,-157.08215332031,-160.85925292969,-164.82698059082,-168.78433227539,-172.7093963623,-176.65715026855,-180.61068725586,-184.53514099121,-188.61360168457,-192.65167236328,-196.78410339355,-200.94398498535,-205.14479064941,-209.39402770996,-213.78973388672,-218.46600341797,-223.67260742188,-229.22085571289,-234.72734069824,-240.10008239746,-245.46272277832,-250.59996032715,-255.96299743652,-259.5517578125,-265.83804321289,-272.45330810547,-278.72076416016,-281.62683105469,-287.1452331543,-292.85394287109,-298.52081298828,-303.26077270508,-307.5725402832,-311.3928527832,-312.45568847656,-313.46197509766,-314.19268798828,-315.0700378418,-315.39697265625,-315.03482055664,-314.56338500977,-313.99890136719,-313.24154663086,-312.31402587891,-310.84310913086,-308.71246337891,-302.48107910156,-295.99261474609,-289.01870727539,-283.30770874023,-275.04067993164,-266.22296142578,-256.84735107422,-247.53791809082,-238.1496887207,-228.79135131836,-219.48858642578,-210.11695861816,-200.85946655273,-191.51344299316,-181.99923706055,-172.51643371582,-163.12147521973,-154.04588317871,-145.90307617188,-140.90814208984,-133.75605773926,-129.35125732422,-130.69454956055,-132.02465820313,-134.82347106934,-135.93519592285,-136.60621643066,-137.00987243652,-137.57475280762,-137.90412902832,-138.25840759277,-138.68228149414,-138.76779174805,-139.45001220703,-140.21186828613,-140.83560180664,-141.68006896973,-142.75091552734,-144.01826477051,-145.49984741211,-147.4779510498,-149.87449645996,-153.14248657227,-156.94905090332,-160.80065917969,-167.48477172852,-170.91125488281,-173.90531921387,-176.72346496582,-180.09902954102,-182.88883972168,-184.19709777832,-188.39639282227,-190.56936645508,-193.00120544434,-200.45024108887,-202.60772705078,-204.56845092773,-206.34254455566,-208.49795532227,-209.67205810547,-210.67852783203,-210.77896118164,-210.06524658203,-208.4736328125,-206.40556335449,-204.26141357422,-202.1947479248,-199.50639343262,-196.51739501953,-193.71463012695,-191.94715881348,-191.16929626465,-190.93908691406,-190.36561584473,-189.76081848145,-188.87858581543,-187.63723754883,-186.24221801758,-181.30526733398,-180.32055664063,-179.45524597168,-178.73265075684,-177.01489257813,-175.64102172852,-173.05882263184,-128.56869506836,-126.95812225342,-125.89308166504,-125.84368896484,-126.82461547852,-128.17015075684,-135.21495056152,-141.01559448242,-146.46702575684,-155.26773071289,-164.4832611084,-173.95913696289,-183.51963806152,-193.03100585938,-202.41610717773,-211.52297973633,-220.80448913574,-230.0954284668,-239.4635925293,-248.78547668457,-258.1142578125,-267.34652709961,-276.03103637695,-281.2802734375,-288.64599609375,-295.56610107422,-301.88473510742,-307.80044555664,-309.70980834961,-310.35650634766,-310.81585693359,-311.8069152832,-312.2294921875,-312.23947143555,-312.0234375,-311.19229125977,-309.49334716797,-308.01104736328,-306.05853271484,-302.23876953125,-297.91326904297,-294.74075317383,-289.12902832031,-283.49609375,-278.01416015625,-272.20474243164,-266.06408691406,-259.3864440918,-253.18911743164,-249.77479553223,-244.51342773438,-239.35180664063,-234.10481262207,-228.66506958008,-223.18267822266,-224.0518951416,-221.76306152344,-219.84039306641,-217.80854797363,-214.02899169922,-204.56942749023,-201.69526672363,-182.63653564453,-174.33268737793,-170.52191162109,-168.86251831055,-167.03819274902,-164.3683013916,-161.10406494141,-157.88729858398,-153.88414001465,-146.50532531738,-142.48065185547,-140.13954162598,-138.38291931152,-136.63717651367,-135.08589172363,-134.97903442383,-135.53150939941,-136.6244354248,-138.5619354248,-140.92004394531,-143.42388916016,-146.3518371582,-150.35424804688,-154.92289733887,-158.95288085938,-162.95977783203,-166.98602294922,-55.58381652832,-56.926055908203,-59.321495056152,-62.62300491333,-66.214485168457,-70.071182250977,-74.008323669434,-78.066291809082,-82.079818725586,-86.157409667969,-90.105346679688,-100.96578979492,-104.99981689453,-108.71164703369,-110.8145980835,-111.94183349609,-112.54759979248,-112.59808349609,-111.89358520508,-110.34733581543,-107.57036590576,-104.14527130127,-100.38924407959,-96.808547973633,-93.151245117188,-84.332099914551,-80.310562133789,-76.29566192627,-66.41185760498,-62.387237548828,-58.392841339111,-54.604881286621,-51.186557769775,-47.950508117676,-44.975215911865,-42.352970123291,-40.115726470947,-38.498790740967,-37.592311859131,-41.364330291748,-41.625495910645,-41.07495880127,-39.728481292725,-37.540340423584,-34.307769775391,-31.082279205322,-27.356435775757,-23.807992935181,-19.773368835449,-16.293937683105,-14.737007141113,-13.815408706665,-13.587029457092,-13.927591323853,-14.854827880859,-16.359340667725,-18.249319076538,-21.587875366211,-24.295097351074,-28.251140594482,-34.414321899414,-38.439605712891,-41.93172454834,-44.308822631836,-46.679821014404,-49.096466064453,-43.164596557617,-44.106540679932,-44.917007446289,-45.438877105713,-48.349170684814,-49.405883789063,-50.543930053711,-54.69514465332,-55.166996002197,-55.431266784668,-56.11328125,-55.756362915039,-55.702976226807,-56.388729095459,-58.073936462402,-60.476337432861,-63.580718994141,-67.063545227051,-70.46452331543,-73.443756103516,-76.142379760742,-78.089828491211,-79.30086517334,-79.608978271484,-79.172256469727,-77.945945739746,-76.050064086914,-74.000038146973,-64.414916992188,-62.855461120605,-61.038047790527,-59.789985656738,-58.559024810791,-57.390033721924,-53.630111694336,-51.528099060059,-51.410617828369,-51.617607116699,-146.62666320801,-147.84272766113,-150.22186279297,-155.49719238281,-157.47100830078,-159.93576049805,-163.17274475098,-166.90342712402,-170.83763122559,-176.50679016113,-180.14115905762,-183.34228515625,-185.88795471191,-187.40808105469,-187.98187255859,-187.7682800293,-186.46351623535,-184.78596496582,-182.92202758789,-180.64131164551,-176.681640625,-171.2400970459,-167.22117614746,-163.38345336914,-162.03025817871,-161.21855163574,-159.06814575195,-157.37986755371,-154.91021728516,-151.50941467285,-150.01243591309,-147.95227050781,-146.59059143066,-153.1826171875,-174.06608581543,-160.25671386719,-157.99911499023,-156.11698913574,-154.1067199707,-151.37641906738,-149.84536743164,-148.83688354492,-148.50877380371,-148.85304260254,-176.55316162109,-175.64245605469,-173.94776916504,-171.24513244629,-169.01129150391,-164.96026611328,-158.3812713623,-153.64367675781,-150.05352783203,-147.02899169922,-144.43537902832,-140.45359802246,-137.02815246582,-133.20606994629,-129.26089477539,-125.22143554688,-121.16777801514,-111.95783996582,-107.85940551758,-87.815155029297,-80.204437255859,-76.290267944336,-72.530921936035,-68.755561828613,-65.199600219727,-62.014156341553,-58.451740264893,-54.689746856689,-50.842014312744,-42.505790710449,-31.213844299316,-28.894542694092,-28.108335494995,-28.068508148193,-28.683897018433,-29.882019042969,-31.608364105225,-33.682628631592,-36.117824554443,-38.310264587402,-40.110038757324,-41.547546386719,-42.556079864502,-43.381603240967,-43.78547668457,-44.977394104004,-46.899959564209,-49.122413635254,-62.120429992676,-65.16626739502,-72.589836120605,-76.575187683105,-80.639450073242,-97.997215270996,-117.90139007568,-122.02155303955,-126.12586212158,-130.07627868652,-133.8394317627,-137.0001373291,-139.47323608398,-141.76510620117,-144.60716247559,-147.88117980957,-151.65106201172,-155.68037414551,-165.63485717773,-169.02758789063,-170.5276184082,-171.20341491699,-171.79008483887,-168.87670898438,-171.75686645508,-174.66981506348,-177.39990234375,-179.20463562012,-175.74531555176,-173.513671875,-171.63276672363,-168.40715026855,-293.64212036133,-290.99847412109,-287.07275390625,-283.01058959961,-278.91812133789,-258.81210327148,-240.27110290527,-220.14653015137,-200.05725097656,-196.10986328125,-192.33227539063,-188.98233032227,-185.7466583252,-182.13429260254,-178.18537902832,-173.89454650879,-170.19793701172,-166.93499755859,-164.5691986084,-163.17115783691,-162.55628967285,-161.62725830078,-161.29051208496,-161.19560241699,-161.20875549316,-161.60353088379,-160.92823791504,-159.81454467773,-157.79330444336,-154.66743469238,-150.83880615234,-146.8044128418,-142.8674621582,-123.19249725342,-103.51134490967,-91.204895019531,-71.200798034668,-51.230892181396,-31.322841644287,-11.347951889038,-2.6139538288116,1.4891195297241,5.4205141067505,9.1760749816895,12.559198379517,15.20294380188,17.681991577148,19.824621200562,21.582851409912,24.353700637817,27.114398956299,34.90958404541,42.93021774292,50.317562103271,51.338134765625,52.17484664917,52.633033752441,52.85754776001,52.869834899902,52.403831481934,-139.67701721191,-140.96832275391,-141.63388061523,-141.52789306641,-141.03343200684,-140.43196105957,-139.28346252441,-138.03196716309,-136.98426818848,-135.61946105957,-134.16653442383,-132.4973449707,-130.51928710938,-128.13464355469,-125.20014190674,-121.90904998779,-118.22911071777,-114.26229095459,-110.30966949463,-106.15473175049,-92.251426696777,-87.325546264648,-83.303421020508,-79.145370483398,-67.219635009766,-55.467967987061,-45.46516418457,-34.392639160156,-14.780438423157,4.9237728118896,24.695096969604,44.498523712158,64.39119720459,83.296180725098,88.970672607422,92.839126586914,96.44352722168,100.02458190918,105.06439971924,108.38828277588,113.79288482666,121.55336761475,128.27770996094,133.36906433105,136.18428039551,138.82662963867,151.2244720459,163.63179016113,175.89042663574,185.18542480469,196.72169494629,200.67364501953,203.5513458252,206.53091430664,209.69883728027,213.13555908203,216.91236877441,220.94348144531,224.91624450684,229.91204833984,233.85522460938,235.57400512695,238.49601745605,239.19973754883,239.37490844727,238.83863830566,237.40303039551,234.11656188965,231.11605834961,224.77627563477,215.03883361816,204.1541595459,192.81362915039,181.4603729248,169.90180969238,158.80833435059,152.85615539551,147.92196655273,142.29107666016,133.32266235352,124.07405090332,117.6164855957,111.06600952148,106.83027648926,103.04981994629,100.36882019043,97.617897033691,94.658233642578,89.365013122559,86.050933837891,70.369689941406,59.796615600586,55.504875183105,52.759178161621,50.327777862549,48.220706939697,46.527667999268,45.117839813232,44.140289306641,43.408843994141,42.761554718018,42.723606109619,43.320663452148,44.817291259766,47.0080909729,49.862140655518,53.916049957275,54.80436706543,55.22412109375,54.973617553711,54.432582855225,53.988571166992,54.2783203125,55.246658325195,56.444633483887,58.004615783691,59.916038513184,61.985446929932,64.319854736328,66.870216369629,69.835105895996,72.91429901123,88.294647216797,99.578071594238,105.02317810059,107.82640075684,111.80625152588,114.48899078369,116.92553710938,119.07957458496,121.42069244385,123.90129852295,129.94345092773,138.58695983887,147.53564453125,154.29096984863,161.19509887695,172.01039123535,183.24528503418,194.49446105957,205.75057983398,216.73284912109,227.32727050781,237.58615112305,241.02658081055,242.53845214844,243.44674682617,243.35417175293,242.17539978027,240.28912353516,238.06440734863,234.81631469727,231.67692565918,228.17875671387,224.2972869873,220.35346984863,216.48461914063,213.12391662598,209.58256530762,206.45146179199,203.43588256836,200.52799987793,197.8268737793,195.26849365234,193.03982543945,191.29942321777,186.30531311035,183.97193908691,181.51513671875,178.80467224121,165.95030212402,154.00856018066,141.6153717041,134.48394775391,130.24635314941,127.2724609375,124.14455413818,120.90291595459,112.73878479004,109.26239776611,105.69699859619,102.02864837646,98.249877929688,94.34105682373,77.243263244629,69.309135437012,49.448036193848,29.596025466919,9.7670431137085,-9.9955072402954,-29.646249771118,-49.152839660645,-65.387001037598,-70.574729919434,-77.805130004883,-85.923965454102,-92.311660766602,-96.373603820801,-100.87992858887,-104.87518310547,-108.89290618896,-112.88603973389,-116.74837493896,-120.55924987793,-124.07693481445,-127.22047424316,-130.09428405762,-132.58450317383,-134.78303527832,-136.53887939453,-137.82850646973,-140.24475097656,-142.37496948242,-143.42152404785,-144.04544067383,-145.5415802002,-146.85586547852,-148.3737487793,-150.27459716797,-152.57913208008,-155.9104309082 - 2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19,539;20;21;22;23;24;25;26;27;28,419;29;30;31;32;33;34;35;36;37;38;39;40;41;42;43;44;45;46;47,315;48;49;50;51;52;53;54;55;56;57;58;59;60;61;62,354;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,463;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,543;143;144;145;146;147;148;149;150;151;152;153;154;155;156;157;158;159;160;161;162;163,226;162,164;163,165;164,166;165,167;166,168;167,169;168,170;169,171;170,172;171,173;172,174;173,175;174,176;175,177;176,178;177,179;178,180;179,181;180,182;181,183;182,184;183,185;184,186;185,187;186,188;187,189;188,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;185;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;6;282;283;284;285;286;287,1;286,288;287,289;288,290;291;292;293;294;295;296;297;298;299;300;301;302;303;304;305;306;307,603;308;309;310;311;312;313;314;289;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;55;355,381;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;67;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;69;420;421;452;423;424;425;426;427;453;429;430;431;432;433;434;435;436;437;438;439;440;441;442;443;444;445,454;446;447;448;449;450;451;28;422;428;455;456;457;458;459;460;461;462;92;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,511;489,491;490,492;491,493;492,494;493,495;494,496;495,497;496,498;497,499;498,500;499,501;500,502;501,503;502,504;503,505;504,506;505,507;506,508;507,509;508,510;509,490;512;513;514;515;516;517;518;519;520;521;522;523;524;525;526;527;528;529;530,534;531;532;533;20;535;536;537;538;100;540;541;542;469;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;571,573;572,574;573,575;574,576;575,577;576,578;577,579;578,580;579,581;580,582;581,583;582,584;583,585;584,586;585,587;586,588;587,589;588,590;589,591;590,592;591,593;592,594;593,595;594,596;595,597;596,598;597,599;598,600;599,601;600,602;601,709;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;602;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;313 - 286;1;2;3;4;5,280;6;7;8;9;10;11;12;13;14;15;16;17;18;19,533;20;21;22;23;24;25;26;27,451;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,353;55;56;57;58;59;60;61;62;63;64;65;66,380;67;68,418;69;70;71;72;73;74;75;76;77;78;79;80;81;82;83;84;85;86;87;88;89;90;91,462;92;93;94;95;96;97;98;99,538;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,163;162,164;163,165;164,166;165,167;166,168;167,169;168,170;169,171;170,172;171,173;172,174;173,175;174,176;175,177;176,178;177,179;178,180;179,181;180,182;181,183;182,184;183,185;184,186,225;185,187;186,188;187,189;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;162;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;279;281;282;283;284;285,287;286,288;287,289;288,314;289;290;291;292;293;294;295;296;297;298;299;300;301;302;303;304;305;306;307;308;309;310;311;312,823;313;46;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;61;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;354;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;27;419;420;452;422;423;424;425;426;453;428;429;430;431;432;433;434;435;436;437;438;439;440;441;442;443;444;445;446;447;448;449;450;421;427;444;454;455;456;457;458;459;460;461;99;463;464;465;466;467;468,542;469;470;471;472;473;474;475;476;477;478;479;480;481;482;483;484;485;486;487;488,490;489,491,510;490,492;491,493;492,494;493,495;494,496;495,497;496,498;497,499;498,500;499,501;500,502;501,503;502,504;503,505;504,506;505,507;506,508;507,509;508,510;509;489;511;512;513;514;515;516;517;518;519;520;521;522;523;524;525;526;527;528;529;530;531;532;529;534;535;536;537;18;539;540;541;141;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,572;571,573;572,574;573,575;574,576;575,577;576,578;577,579;578,580;579,581;580,582;581,583;582,584;583,585;584,586;585,587;586,588;587,589;588,590;589,591;590,592;591,593;592,594;593,595;594,596;595,597;596,598;597,599;598,600;599,601;600,602;601,708;306;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;602;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 - 1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1,1;1,1;1,1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1 - 2,2,2,2,2,2,2,2;3,3,3,3,3,3,3,3;4,4,4,4,4,4,4,4;5,5,5,5,5,5,5,5;6,6,6,6,6,6,6,6;7,7,7,7,7,7,7,7;8,8,8,8,8,8,8,8;9,9,9,9,9,9,9,9;10,10,10,10,10,10,10,10;11,11,11,11,11,11,11,11;12,12,12,12,12,12,12,12;13,13,13,13,13,13,13,13;14,14,14,14,14,14,14,14;15,15,15,15,15,15,15,15;16,16,16,16,16,16,16,16;17,17,17,17,17,17,17,17;18,18,18,18,18,18,18,18;19,539,19,539,539,19,19,19;20,20,20,20,20,20,20,20;21,21,21,21,21,21,21,21;22,22,22,22,22,22,22,22;23,23,23,23,23,23,23,23;24,24,24,24,24,24,24,24;25,25,25,25,25,25,25,25;26,26,26,26,26,26,26,26;27,27,27,27,27,27,27,27;28,419,28,419,419,28,28,419;29,29,29,29,29,29,29,29;30,30,30,30,30,30,30,30;31,31,31,31,31,31,31,31;32,32,32,32,32,32,32,32;33,33,33,33,33,33,33,33;34,34,34,34,34,34,34,34;35,35,35,35,35,35,35,35;36,36,36,36,36,36,36,36;37,37,37,37,37,37,37,37;38,38,38,38,38,38,38,38;39,39,39,39,39,39,39,39;40,40,40,40,40,40,40,40;41,41,41,41,41,41,41,41;42,42,42,42,42,42,42,42;43,43,43,43,43,43,43,43;44,44,44,44,44,44,44,44;45,45,45,45,45,45,45,45;46,46,46,46,46,46,46,46;47,47,315,47,47,47,47,47;48,48,48,48,48,48,48,48;49,49,49,49,49,49,49,49;50,50,50,50,50,50,50,50;51,51,51,51,51,51,51,51;52,52,52,52,52,52,52,52;53,53,53,53,53,53,53,53;54,54,54,54,54,54,54,54;55,55,55,55,55,55,55,55;56,56,56,56,56,56,56,56;57,57,57,57,57,57,57,57;58,58,58,58,58,58,58,58;59,59,59,59,59,59,59,59;60,60,60,60,60,60,60,60;61,61,61,61,61,61,61,61;354,62,62,62,62,-1,354,62;63,63,63,63,63,63,63,63;64,64,64,64,64,64,64,64;65,65,65,65,65,65,65,65;66,66,66,66,66,66,66,66;67,67,67,67,67,67,67,67;68,68,68,68,68,68,68,68;69,69,69,69,69,69,69,69;70,70,70,70,70,70,70,70;71,71,71,71,71,71,71,71;72,72,72,72,72,72,72,72;73,73,73,73,73,73,73,73;74,74,74,74,74,74,74,74;75,75,75,75,75,75,75,75;76,76,76,76,76,76,76,76;77,77,77,77,77,77,77,77;78,78,78,78,78,78,78,78;79,79,79,79,79,79,79,79;80,80,80,80,80,80,80,80;81,81,81,81,81,81,81,81;82,82,82,82,82,82,82,82;83,83,83,83,83,83,83,83;84,84,84,84,84,84,84,84;85,85,85,85,85,85,85,85;86,86,86,86,86,86,86,86;87,87,87,87,87,87,87,87;88,88,88,88,88,88,88,88;89,89,89,89,89,89,89,89;90,90,90,90,90,90,90,90;91,91,91,91,91,91,91,91;92,92,92,92,92,92,92,92;93,93,93,93,93,93,93,93;94,94,94,94,94,94,94,94;95,95,95,95,95,95,95,95;96,96,96,96,96,96,96,96;97,97,97,97,97,97,97,97;98,98,98,98,98,98,98,98;99,99,99,99,99,99,99,99;463,100,463,100,463,463,463,463;101,101,101,101,101,101,101,101;102,102,102,102,102,102,102,102;103,103,103,103,103,103,103,103;104,104,104,104,104,104,104,104;105,105,105,105,105,105,105,105;106,106,106,106,106,106,106,106;107,107,107,107,107,107,107,107;108,108,108,108,108,108,108,108;109,109,109,109,109,109,109,109;110,110,110,110,110,110,110,110;111,111,111,111,111,111,111,111;112,112,112,112,112,112,112,112;113,113,113,113,113,113,113,113;114,114,114,114,114,114,114,114;115,115,115,115,115,115,115,115;116,116,116,116,116,116,116,116;117,117,117,117,117,117,117,117;118,118,118,118,118,118,118,118;119,119,119,119,119,119,119,119;120,120,120,120,120,120,120,120;121,121,121,121,121,121,121,121;122,122,122,122,122,122,122,122;123,123,123,123,123,123,123,123;124,124,124,124,124,124,124,124;125,125,125,125,125,125,125,125;126,126,126,126,126,126,126,126;127,127,127,127,127,127,127,127;128,128,128,128,128,128,128,128;129,129,129,129,129,129,129,129;130,130,130,130,130,130,130,130;131,131,131,131,131,131,131,131;132,132,132,132,132,132,132,132;133,133,133,133,133,133,133,133;134,134,134,134,134,134,134,134;135,135,135,135,135,135,135,135;136,136,136,136,136,136,136,136;137,137,137,137,137,137,137,137;138,138,138,138,138,138,138,138;139,139,139,139,139,139,139,139;140,140,140,140,140,140,140,140;141,141,141,141,141,141,141,141;543,543,543,142,543,543,543,543;143,143,143,143,143,143,143,143;144,144,144,144,144,144,144,144;145,145,145,145,145,145,145,145;146,146,146,146,146,146,146,146;147,147,147,147,147,147,147,147;148,148,148,148,148,148,148,148;149,149,149,149,149,149,149,149;150,150,150,150,150,150,150,150;151,151,151,151,151,151,151,151;152,152,152,152,152,152,152,152;153,153,153,153,153,153,153,153;154,154,154,154,154,154,154,154;155,155,155,155,155,155,155,155;156,156,156,156,156,156,156,156;157,157,157,157,157,157,157,157;158,158,158,158,158,158,158,158;159,159,159,159,159,159,159,159;160,160,160,160,160,160,160,160;161,161,161,161,161,161,161,161;162,162,162,162,162,162,162,162;226,226,226,163,226,226,226,226;162,162,162,164,162,162,162,162;163,163,163,165,163,163,163,163;164,164,164,166,164,164,164,164;165,165,165,167,165,165,165,165;166,166,166,168,166,166,166,166;167,167,167,169,167,167,167,167;168,168,168,170,168,168,168,168;169,169,169,171,169,169,169,169;170,170,170,172,170,170,170,170;171,171,171,173,171,171,171,171;172,172,172,174,172,172,172,172;173,173,173,175,173,173,173,173;174,174,174,176,174,174,174,174;175,175,175,177,175,175,175,175;176,176,176,178,176,176,176,176;177,177,177,179,177,177,177,177;178,178,178,180,178,178,178,178;179,179,179,181,179,179,179,179;180,180,180,182,180,180,180,180;181,181,181,183,181,181,181,181;182,182,182,184,182,182,182,182;183,183,183,185,183,183,183,183;184,184,184,186,184,184,184,184;185,185,185,187,185,185,185,185;186,186,186,188,186,186,186,186;187,187,187,189,187,187,187,187;188,188,188,190,188,188,188,188;191,191,191,191,191,191,191,191;192,192,192,192,192,192,192,192;193,193,193,193,193,193,193,193;194,194,194,194,194,194,194,194;195,195,195,195,195,195,195,195;196,196,196,196,196,196,196,196;197,197,197,197,197,197,197,197;198,198,198,198,198,198,198,198;199,199,199,199,199,199,199,199;200,200,200,200,200,200,200,200;201,201,201,201,201,201,201,201;202,202,202,202,202,202,202,202;203,203,203,203,203,203,203,203;204,204,204,204,204,204,204,204;205,205,205,205,205,205,205,205;206,206,206,206,206,206,206,206;207,207,207,207,207,207,207,207;208,208,208,208,208,208,208,208;209,209,209,209,209,209,209,209;210,210,210,210,210,210,210,210;211,211,211,211,211,211,211,211;212,212,212,212,212,212,212,212;213,213,213,213,213,213,213,213;214,214,214,214,214,214,214,214;215,215,215,215,215,215,215,215;216,216,216,216,216,216,216,216;217,217,217,217,217,217,217,217;218,218,218,218,218,218,218,218;219,219,219,219,219,219,219,219;220,220,220,-1,220,220,220,220;221,221,221,221,221,221,221,221;222,222,222,222,222,222,222,222;223,223,223,223,223,223,223,223;224,224,224,224,224,224,224,224;225,225,225,225,225,225,225,225;185,185,185,185,185,185,185,185;227,227,227,227,227,227,227,227;228,228,228,228,228,228,228,228;229,229,229,229,229,229,229,229;230,230,230,230,230,230,230,230;231,231,231,231,231,231,231,231;232,232,232,232,232,232,232,232;233,233,233,233,233,233,233,233;234,234,234,234,234,234,234,234;235,235,235,235,235,235,235,235;236,236,236,236,236,236,236,236;237,237,237,237,237,237,237,237;238,238,238,238,238,238,238,238;239,239,239,239,239,239,239,239;240,240,240,240,240,240,240,240;241,241,241,241,241,241,241,241;242,242,242,242,242,242,242,242;243,243,243,243,243,243,243,243;244,244,244,244,244,244,244,244;245,245,245,245,245,245,245,245;246,246,246,246,246,246,246,246;247,247,247,247,247,247,247,247;248,248,248,248,248,248,248,248;249,249,249,249,249,249,249,249;250,250,250,250,250,250,250,250;251,251,251,251,251,251,251,251;252,252,252,252,252,252,252,252;253,253,253,253,253,253,253,253;254,254,254,254,254,254,254,254;255,255,255,255,255,255,255,255;256,256,256,256,256,256,256,256;257,257,257,257,257,257,257,257;258,258,258,258,258,258,258,258;259,259,259,259,259,259,259,259;260,260,260,260,260,260,260,260;261,261,261,261,261,261,261,261;262,262,262,262,262,262,262,262;263,263,263,263,263,263,263,263;264,264,264,264,264,264,264,264;265,265,265,265,265,265,265,265;266,266,266,266,266,266,266,266;267,267,267,267,267,267,267,267;268,268,268,268,268,268,268,268;269,269,269,269,269,269,269,269;270,270,270,270,270,270,270,270;271,271,271,271,271,271,271,271;272,272,272,272,272,272,272,272;273,273,273,273,273,273,273,273;274,274,274,274,274,274,274,274;275,275,275,275,275,275,275,275;276,276,276,276,276,276,276,276;277,277,277,277,277,277,277,277;278,278,278,278,278,278,278,278;279,279,279,279,279,279,279,279;280,281,280,280,280,280,280,280;6,6,6,6,6,6,6,6;282,282,282,282,282,282,282,282;283,283,283,283,283,283,283,283;284,284,284,284,284,284,284,284;285,285,285,285,285,285,285,285;286,286,286,286,286,286,286,286;1,287,1,1,1,1,1,1;286,288,286,286,286,286,286,286;287,289,287,287,287,287,287,287;288,290,288,288,288,288,288,288;291,291,291,291,291,291,291,291;292,292,292,292,292,292,292,292;293,293,293,293,293,293,293,293;294,294,294,294,294,294,294,294;295,295,295,295,295,295,295,295;296,296,296,296,296,296,296,296;297,-1,297,297,297,297,297,297;298,298,298,298,298,298,298,298;299,299,299,299,299,299,299,299;300,300,300,300,300,300,300,300;301,301,301,301,301,301,301,301;302,302,302,302,302,302,302,302;303,303,303,303,303,303,303,303;304,304,304,304,304,304,304,304;305,305,305,305,305,305,305,305;306,306,306,306,306,306,306,306;307,307,307,307,307,307,307,307;308,308,308,308,308,308,308,308;309,309,309,309,309,309,309,309;310,310,310,310,310,310,310,310;311,311,311,311,311,311,311,311;312,312,312,312,312,312,312,312;313,313,313,313,313,313,313,313;314,314,314,314,314,314,314,314;289,289,289,289,289,289,289,289;316,316,316,316,316,316,316,316;317,317,317,317,317,317,317,317;318,318,318,318,318,318,318,318;319,319,319,319,319,319,319,319;320,320,320,320,320,320,320,320;321,321,321,321,321,321,321,321;322,322,322,322,322,322,322,322;323,323,323,323,323,323,323,323;324,324,324,324,324,324,324,324;325,325,325,325,325,325,325,325;326,326,326,326,326,326,326,326;327,327,327,327,327,327,327,327;328,328,328,328,328,328,328,328;329,329,329,329,329,329,329,329;330,330,330,330,330,330,330,330;331,331,331,331,331,331,331,331;332,332,332,332,332,332,332,332;333,333,333,333,333,333,333,333;334,334,334,334,334,334,334,334;335,335,335,335,335,335,335,335;336,336,336,336,336,336,336,336;337,337,337,337,337,337,337,337;338,338,338,338,338,338,338,338;339,339,339,339,339,339,339,339;340,340,-1,340,340,340,340,340;341,341,341,341,341,341,341,341;342,342,342,342,342,342,342,342;343,343,343,343,343,343,343,343;344,344,344,344,344,344,344,344;345,345,345,345,345,345,345,345;346,346,346,346,346,346,346,346;347,347,347,347,347,347,347,347;348,348,348,348,348,348,348,348;349,349,349,349,349,349,349,349;350,350,350,350,350,350,350,350;351,351,351,351,351,351,351,351;352,352,352,352,352,352,352,352;353,353,353,353,353,353,353,353;55,55,55,55,55,55,55,55;355,355,355,355,355,355,381,355;356,356,356,356,356,356,356,356;357,357,357,357,357,357,357,357;358,358,358,358,358,358,358,358;359,359,359,359,359,359,359,359;360,360,360,360,360,360,360,360;361,361,361,361,361,361,361,361;362,362,362,362,362,362,362,362;363,363,363,363,363,363,363,363;-1,364,364,364,364,364,364,364;365,365,365,365,365,365,365,365;366,366,366,366,366,366,366,366;367,367,367,367,367,367,367,367;368,368,368,368,368,368,368,368;369,369,369,369,369,369,369,369;370,370,370,370,370,370,370,370;371,371,371,371,371,371,371,371;372,372,372,372,372,372,372,372;373,373,373,373,373,373,373,373;374,374,374,374,374,374,374,374;375,375,375,375,375,375,375,375;376,376,376,376,376,376,376,376;377,377,377,377,377,377,377,377;378,378,378,378,378,378,378,378;379,379,379,379,379,379,379,379;380,380,380,380,380,380,380,380;67,67,67,67,67,67,67,67;382,382,382,382,382,382,382,382;383,383,383,383,383,383,383,383;384,384,384,384,384,384,384,384;385,385,385,385,385,385,385,385;386,386,386,386,386,386,386,386;387,387,387,387,387,387,387,387;388,388,388,388,388,388,388,388;389,389,389,389,389,389,389,389;390,390,390,390,390,390,390,390;391,391,391,391,391,391,391,391;392,392,392,392,392,392,-1,392;393,393,393,393,393,393,393,393;394,394,394,394,394,394,394,394;395,395,395,395,395,395,395,395;396,396,396,396,396,396,396,396;397,397,397,397,397,397,397,397;398,398,398,398,398,398,398,398;399,399,399,399,399,399,399,399;400,400,400,400,400,400,400,400;401,401,401,401,401,401,401,401;402,402,402,402,402,402,402,402;403,403,403,403,403,403,403,403;404,404,404,404,404,404,404,404;405,405,405,405,405,405,405,405;406,406,406,406,406,406,406,406;407,407,407,407,407,407,407,407;408,408,408,408,408,408,408,408;409,409,409,409,409,409,409,409;410,410,410,410,410,410,410,410;411,411,411,411,411,411,411,411;412,412,412,412,412,412,412,412;413,413,413,413,413,413,413,413;414,414,414,414,414,414,414,414;415,415,415,415,415,415,415,415;416,416,416,416,416,416,416,416;417,417,417,417,417,417,417,417;418,418,418,418,418,418,418,418;69,69,69,69,69,69,69,69;420,420,420,420,420,420,420,420;421,421,421,421,421,421,421,421;452,452,452,452,452,452,452,452;423,423,423,423,423,423,423,423;424,424,424,424,424,424,424,424;425,425,425,425,425,425,425,425;426,426,426,426,426,426,426,426;427,427,427,427,427,427,427,427;453,453,453,453,453,453,453,453;429,429,429,429,429,429,429,429;430,430,430,430,430,430,430,430;431,431,431,431,431,431,431,431;432,432,432,432,432,432,432,432;433,433,433,433,433,433,433,433;434,434,434,434,434,434,434,-1;435,435,435,435,435,435,435,435;436,436,436,436,436,436,436,436;437,437,437,437,437,437,437,437;438,438,438,438,438,438,438,438;439,439,439,439,439,439,439,439;440,440,440,440,440,440,440,440;441,441,441,441,441,441,441,441;442,442,442,442,442,442,442,442;443,443,443,443,443,443,443,443;444,444,444,444,444,444,444,444;445,454,445,454,454,445,445,454;446,446,446,446,446,446,446,446;447,447,447,447,447,447,447,447;448,448,448,448,448,448,448,448;449,449,449,449,449,449,449,449;450,450,450,450,450,450,450,450;451,451,451,451,451,451,451,451;28,28,28,28,28,28,28,28;422,422,422,422,422,422,422,422;428,428,428,428,428,428,428,428;455,455,455,455,455,455,455,455;456,456,456,456,456,456,456,456;457,457,457,457,457,457,457,457;458,458,458,458,458,458,458,458;459,459,459,459,459,459,459,459;460,460,460,460,460,460,460,460;461,461,461,461,461,461,461,461;462,462,462,462,462,462,462,462;92,92,92,92,92,92,92,92;464,464,464,464,464,464,464,464;465,465,465,465,465,465,465,465;466,466,466,466,466,466,466,466;467,467,467,467,467,467,467,467;468,468,468,468,468,468,468,468;469,469,469,469,469,469,469,469;470,470,470,470,470,470,470,470;471,471,471,471,471,471,471,471;472,472,472,472,472,472,472,472;473,473,473,473,473,473,473,473;474,474,474,474,474,474,474,474;475,475,475,475,475,475,475,475;476,476,476,476,476,476,476,476;477,477,477,477,477,477,477,477;478,478,478,478,478,478,478,478;479,479,479,479,479,479,479,479;480,480,480,480,480,480,480,480;481,481,481,481,481,481,481,481;482,482,482,482,482,482,482,482;483,483,483,483,483,483,483,483;484,484,484,484,484,484,484,484;485,485,485,485,485,485,485,485;486,486,486,486,486,486,486,486;487,487,487,487,487,487,487,487;488,488,488,488,488,488,488,488;489,489,489,489,489,489,489,489;511,511,511,511,490,511,511,511;489,489,489,489,491,489,489,489;490,490,490,490,492,490,490,490;491,491,491,491,493,491,491,491;492,492,492,492,494,492,492,492;493,493,493,493,495,493,493,493;494,494,494,494,496,494,494,494;495,495,495,495,497,495,495,495;496,496,496,496,498,496,496,496;497,497,497,497,499,497,497,497;498,498,498,498,500,498,498,498;499,499,499,499,501,499,499,499;502,502,502,502,502,502,502,502;503,503,503,503,503,503,503,503;504,504,504,504,504,504,504,504;505,505,505,505,-1,505,505,505;506,506,506,506,504,506,506,506;507,507,507,507,505,507,507,507;508,508,508,508,506,508,508,508;509,509,509,509,507,509,509,509;510,510,510,510,508,510,510,510;490,490,490,490,509,490,490,490;512,512,512,512,512,512,512,512;513,513,513,513,513,513,513,513;514,514,514,514,514,514,514,514;515,515,515,515,515,515,515,515;516,516,516,516,516,516,516,516;517,517,517,517,517,517,517,517;518,518,518,518,518,518,518,518;519,519,519,519,519,519,519,519;520,520,520,520,520,520,520,520;521,521,521,521,521,521,521,521;522,522,522,522,522,522,522,522;523,523,523,523,523,523,523,523;524,524,524,524,524,524,524,524;525,525,525,525,525,525,525,525;526,526,526,526,526,526,526,526;527,527,527,527,527,527,527,527;528,528,528,528,528,528,528,528;529,529,529,529,529,529,529,529;530,534,530,534,530,530,530,530;531,531,531,531,531,531,531,531;532,532,532,532,532,532,532,532;533,533,533,533,533,533,533,533;20,20,20,20,20,20,20,20;535,535,535,535,535,535,535,535;536,536,536,536,536,536,536,536;537,537,537,537,537,537,537,537;538,538,538,538,538,538,538,538;100,100,100,100,100,100,100,100;540,540,540,540,540,540,540,540;541,541,541,541,541,541,541,541;542,542,542,542,542,542,542,542;469,469,469,469,469,469,469,469;544,544,544,544,544,544,544,544;545,545,545,545,545,545,545,545;546,546,546,546,546,546,546,546;547,547,547,547,547,547,547,547;548,548,548,548,548,548,548,548;549,549,549,549,549,549,549,549;550,550,550,550,550,550,550,550;551,551,551,551,551,551,551,551;552,552,552,552,552,552,552,552;553,553,553,553,553,553,553,553;554,554,554,554,554,554,554,554;555,555,555,555,555,555,555,555;556,556,556,556,556,556,556,556;557,557,557,557,557,557,557,557;558,558,558,558,558,558,558,558;559,559,559,559,559,559,559,559;560,560,560,560,560,560,560,560;561,561,561,561,561,561,561,561;562,562,562,562,562,562,562,562;563,563,563,563,563,563,563,563;564,564,564,564,564,564,564,564;565,565,565,565,565,565,565,565;566,566,566,566,566,566,566,566;567,567,567,567,567,567,567,567;568,568,568,568,568,568,568,568;569,569,569,569,569,569,569,569;570,570,570,570,570,570,570,570;571,571,571,571,571,571,571,571;572,572,572,572,572,572,572,572;573,573,573,573,573,573,573,573;574,574,574,574,574,574,574,574;575,575,575,575,575,575,575,575;576,576,576,576,576,576,576,576;577,577,577,577,577,577,577,577;578,578,578,578,578,578,578,578;579,579,579,579,579,579,579,579;580,580,580,580,580,580,580,580;581,581,581,581,581,581,581,581;582,582,582,582,582,582,582,582;583,583,583,583,583,583,583,583;584,584,584,584,584,584,584,584;585,585,585,585,585,585,585,585;586,586,586,586,586,586,586,586;587,587,587,587,587,587,587,587;588,588,588,588,588,588,588,588;589,589,589,589,589,589,589,589;590,590,590,590,590,590,590,590;591,591,591,591,591,591,591,591;592,592,592,592,592,592,592,592;593,593,593,593,593,593,593,593;594,594,594,594,594,594,594,594;595,595,595,595,595,595,595,595;596,596,596,596,596,596,596,596;597,597,597,597,597,597,597,597;598,598,598,598,598,598,598,598;599,599,599,599,599,599,599,599;600,600,600,600,600,600,600,600;601,601,601,601,601,601,601,601;602,602,602,602,602,602,602,602;709,709,709,709,709,709,709,709;604,604,604,604,604,604,604,604;605,605,605,605,605,605,605,605;606,606,606,606,606,606,606,606;607,607,607,607,607,607,607,607;608,608,608,608,608,608,608,608;609,609,609,609,609,609,609,609;610,610,610,610,610,610,610,610;611,611,611,611,611,611,611,611;612,612,612,612,612,612,612,612;613,613,613,613,613,613,613,613;614,614,614,614,614,614,614,614;615,615,615,615,615,615,615,615;616,616,616,616,616,616,616,616;617,617,617,617,617,617,617,617;618,618,618,618,618,618,618,618;619,619,619,619,619,619,619,619;620,620,620,620,620,620,620,620;621,621,621,621,621,621,621,621;622,622,622,622,622,622,622,622;623,623,623,623,623,623,623,623;624,624,624,624,624,624,624,624;625,625,625,625,625,625,625,625;626,626,626,626,626,626,626,626;627,627,627,627,627,627,627,627;628,628,628,628,628,628,628,628;629,629,629,629,629,629,629,629;630,630,630,630,630,630,630,630;631,631,631,631,631,631,631,631;632,632,632,632,632,632,632,632;633,633,633,633,633,633,633,633;634,634,634,634,634,634,634,634;635,635,635,635,635,635,635,635;636,636,636,636,636,636,636,636;637,637,637,637,637,637,637,637;638,638,638,638,638,638,638,638;639,639,639,639,639,639,639,639;640,640,640,640,640,640,640,640;641,641,641,641,641,641,641,641;642,642,642,642,642,642,642,642;643,643,643,643,643,643,643,643;644,644,644,644,644,644,644,644;645,645,645,645,645,645,645,645;646,646,646,646,646,646,646,646;647,647,647,647,647,647,647,647;648,648,648,648,648,648,648,648;649,649,649,649,649,649,649,649;650,650,650,650,650,650,650,650;651,651,651,651,651,651,651,651;652,652,652,652,652,652,652,652;653,653,653,653,653,653,653,653;654,654,654,654,654,654,654,654;655,655,655,655,655,655,655,655;656,656,656,656,656,656,656,656;657,657,657,657,657,657,657,657;658,658,658,658,658,658,658,658;659,659,659,659,659,659,659,659;660,660,660,660,660,660,660,660;661,661,661,661,661,661,661,661;662,662,662,662,662,662,662,662;663,663,663,663,663,663,663,663;664,664,664,664,664,664,664,664;665,665,665,665,665,665,665,665;666,666,666,666,666,666,666,666;667,667,667,667,667,667,667,667;668,668,668,668,668,668,668,668;669,669,669,669,669,669,669,669;670,670,670,670,670,670,670,670;671,671,671,671,671,671,671,671;672,672,672,672,672,672,672,672;673,673,673,673,673,673,673,673;674,674,674,674,674,674,674,674;675,675,675,675,675,675,675,675;676,676,676,676,676,676,676,676;677,677,677,677,677,677,677,677;678,678,678,678,678,678,678,678;679,679,679,679,679,679,679,679;680,680,680,680,680,680,680,680;681,681,681,681,681,681,681,681;682,682,682,682,682,682,682,682;683,683,683,683,683,683,683,683;684,684,684,684,684,684,684,684;685,685,685,685,685,685,685,685;686,686,686,686,686,686,686,686;687,687,687,687,687,687,687,687;688,688,688,688,688,688,688,688;689,689,689,689,689,689,689,689;690,690,690,690,690,690,690,690;691,691,691,691,691,691,691,691;692,692,692,692,692,692,692,692;693,693,693,693,693,693,693,693;694,694,694,694,694,694,694,694;695,695,695,695,695,695,695,695;696,696,696,696,696,696,696,696;697,697,697,697,697,697,697,697;698,698,698,698,698,698,698,698;699,699,699,699,699,699,699,699;700,700,700,700,700,700,700,700;701,701,701,701,701,701,701,701;702,702,702,702,702,702,702,702;703,703,703,703,703,703,703,703;704,704,704,704,704,704,704,704;705,705,705,705,705,705,705,705;706,706,706,706,706,706,706,706;707,707,707,707,707,707,707,707;708,708,708,708,708,708,708,708;602,602,602,602,602,602,602,602;710,710,710,710,710,710,710,710;711,711,711,711,711,711,711,711;712,712,712,712,712,712,712,712;713,713,713,713,713,713,713,713;714,714,714,714,714,714,714,714;715,715,715,715,715,715,715,715;716,716,716,716,716,716,716,716;717,717,717,717,717,717,717,717;718,718,718,718,718,718,718,718;719,719,719,719,719,719,719,719;720,720,720,720,720,720,720,720;721,721,721,721,721,721,721,721;722,722,722,722,722,722,722,722;723,723,723,723,723,723,723,723;724,724,724,724,724,724,724,724;725,725,725,725,725,725,725,725;726,726,726,726,726,726,726,726;727,727,727,727,727,727,727,727;728,728,728,728,728,728,728,728;729,729,729,729,729,729,729,729;730,730,730,730,730,730,730,730;731,731,731,731,731,731,731,731;732,732,732,732,732,732,732,732;733,733,733,733,733,733,733,733;734,734,734,734,734,734,734,734;735,735,735,735,735,735,735,735;736,736,736,736,736,736,736,736;737,737,737,737,737,737,737,737;738,738,738,738,738,738,738,738;739,739,739,739,739,739,739,739;740,740,740,740,740,740,740,740;741,741,741,741,741,741,741,741;742,742,742,742,742,742,742,742;743,743,743,743,743,743,743,743;744,744,744,744,744,744,744,744;745,745,745,745,745,745,745,745;746,746,746,746,746,746,746,746;747,747,747,747,747,747,747,747;748,748,748,748,748,748,748,748;749,749,749,749,749,749,749,749;750,750,750,750,750,750,750,750;751,751,751,751,751,751,751,751;752,752,752,752,752,752,752,752;753,753,753,753,753,753,753,753;754,754,754,754,754,754,754,754;755,755,755,755,755,755,755,755;756,756,756,756,756,756,756,756;757,757,757,757,757,757,757,757;758,758,758,758,758,758,758,758;759,759,759,759,759,759,759,759;760,760,760,760,760,760,760,760;761,761,761,761,761,761,761,761;762,762,762,762,762,762,762,762;763,763,763,763,763,763,763,763;764,764,764,764,764,764,764,764;765,765,765,765,765,765,765,765;766,766,766,766,766,766,766,766;767,767,767,767,767,767,767,767;768,768,768,768,768,768,768,768;769,769,769,769,769,769,769,769;770,770,770,770,770,770,770,770;771,771,771,771,771,771,771,771;772,772,772,772,772,772,772,772;773,773,773,773,773,773,773,773;774,774,774,774,774,774,774,774;775,775,775,775,775,775,775,775;776,776,776,776,776,776,776,776;777,777,777,777,777,777,777,777;778,778,778,778,778,778,778,778;779,779,779,779,779,779,779,779;780,780,780,780,780,780,780,780;781,781,781,781,781,781,781,781;782,782,782,782,782,782,782,782;783,783,783,783,783,783,783,783;784,784,784,784,784,784,784,784;785,785,785,785,785,785,785,785;786,786,786,786,786,786,786,786;787,787,787,787,787,787,787,787;788,788,788,788,788,788,788,788;789,789,789,789,789,789,789,789;790,790,790,790,790,790,790,790;791,791,791,791,791,791,791,791;792,792,792,792,792,792,792,792;793,793,793,793,793,793,793,793;794,794,794,794,794,794,794,794;795,795,795,795,795,795,795,795;796,796,796,796,796,796,796,796;797,797,797,797,797,797,797,797;798,798,798,798,798,798,798,798;799,799,799,799,799,799,799,799;800,800,800,800,800,800,800,800;801,801,801,801,801,801,801,801;802,802,802,802,802,802,802,802;803,803,803,803,803,803,803,803;804,804,804,804,804,804,804,804;805,805,805,805,805,805,805,805;806,806,806,806,806,806,806,806;807,807,807,807,807,807,807,807;808,808,808,808,808,808,808,808;809,809,809,809,809,809,809,809;810,810,810,810,810,810,810,810;811,811,811,811,811,811,811,811;812,812,812,812,812,812,812,812;813,813,813,813,813,813,813,813;814,814,814,814,814,814,814,814;815,815,815,815,815,815,815,815;816,816,816,816,816,816,816,816;817,817,817,817,817,817,817,817;818,818,818,818,818,818,818,818;819,819,819,819,819,819,819,819;820,820,820,820,820,820,820,820;821,821,821,821,821,821,821,821;822,822,822,822,822,822,822,822;823,823,823,823,823,823,823,823;313,313,313,313,313,313,313,313 - Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop;Dairy,John Deere Dealership,Animal Dealer,Rainbow Ridge,Horses,Greendale Stores,BGA,Maxwell Loop - - - - 61.000000 - Greendale Stores - - - 219.000000 - Rainbow Ridge - - - 296.000000 - John Deere Dealership - - - 339.000000 - Animal Dealer - - - 363.000000 - Dairy - - - 391.000000 - BGA - - - 433.000000 - Maxwell Loop - - - 504.000000 - Horses - - - - - - 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 - -436.56286621094,-434.10559082031,-429.79525756836,-425.05795288086,-420.28369140625,-415.52880859375,-410.69839477539,-405.74072265625,-402.33990478516,-398.64025878906,-393.25369262695,-389.79940795898,-386.62350463867,-383.56280517578,-381.00137329102,-377.96240234375,-372.00726318359,-366.0339050293,-360.07397460938,-354.06158447266,-348.08624267578,-341.97845458984,-335.81533813477,-329.66491699219,-323.60894775391,-317.43411254883,-311.25140380859,-305.21850585938,-299.06915283203,-292.89233398438,-286.71932983398,-280.66354370117,-274.48968505859,-268.47830200195,-264.27764892578,-258.18270874023,-253.28881835938,-249.298828125,-245.3567199707,-241.46197509766,-235.79516601563,-230.12959289551,-224.5764465332,-219.16940307617,-215.35569763184,-211.7081451416,-208.15498352051,-203.15769958496,-198.96405029297,-194.19943237305,-189.5997467041,-185.26165771484,-180.88928222656,-176.46487426758,-173.2497253418,-170.6202545166,-168.23336791992,-165.96369934082,-163.64762878418,-161.24371337891,-158.4273223877,-155.8231048584,-152.37124633789,-147.31568908691,-142.38737487793,-139.13095092773,-135.95454406738,-131.2039642334,-126.45559692383,-121.56252288818,-118.17534637451,-114.53322601318,-110.66743469238,-106.82331848145,-102.84638977051,-96.861557006836,-90.964775085449,-84.97233581543,-79.802574157715,-75.749771118164,-71.682525634766,-65.295234680176,-59.192314147949,-53.092590332031,-46.962677001953,-40.880512237549,-34.788917541504,-28.690956115723,-22.672252655029,-16.564151763916,-10.457180976868,-4.310742855072,1.8022438287735,8.020055770874,14.153898239136,20.283229827881,26.36307144165,32.531574249268,38.675888061523,44.742149353027,50.848426818848,56.979118347168,62.1471824646,68.181663513184,72.203750610352,78.170249938965,84.117347717285,90.042251586914,96.031066894531,101.9947052002,107.96402740479,113.97062683105,119.96055603027,125.94582366943,131.9700012207,137.98951721191,143.99433898926,150.00798034668,156.03793334961,162.076171875,168.12023925781,174.33692932129,180.40385437012,185.62026977539,191.45152282715,197.55517578125,203.65460205078,209.75491333008,215.85604858398,221.94898986816,228.04632568359,234.1432800293,240.2109375,246.29135131836,252.36526489258,258.43270874023,264.49029541016,270.5393371582,276.58963012695,282.62887573242,288.65121459961,294.65353393555,299.21017456055,305.13208007813,310.4621887207,314.89672851563,320.65814208984,324.38565063477,328.01480102539,333.41430664063,338.77990722656,343.53732299805,346.91339111328,350.69018554688,355.29989624023,358.39334106445,362.71691894531,367.13122558594,371.45162963867,375.78894042969,380.25805664063,383.57754516602,386.81936645508,390.18923950195,394.36532592773,398.88177490234,402.54016113281,406.36044311523,410.27697753906,414.25201416016,420.23989868164,426.23611450195,432.25500488281,438.02072143555,442.08001708984,448.17532348633,454.28106689453,460.41870117188,466.52026367188,472.62460327148,478.72900390625,484.83325195313,490.93737792969,497.04162597656,503.13543701172,509.24499511719,515.35003662109,521.45562744141,527.56207275391,533.6630859375,539.86804199219,546.0380859375,552.04211425781,556.18060302734,558.07836914063,559.84942626953,563.20458984375,568.25158691406,571.76647949219,575.02429199219,578.04425048828,582.04010009766,588.08135986328,594.08685302734,598.15856933594,602.17700195313,605.21295166016,608.20684814453,610.970703125,613.15417480469,614.56909179688,615.58526611328,616.23681640625,616.4814453125,616.33306884766,615.77490234375,614.86450195313,613.49163818359,611.7275390625,609.89953613281,607.96990966797,605.73004150391,602.55993652344,599.07446289063,594.88397216797,588.72576904297,582.69818115234,576.63256835938,570.60559082031,564.40484619141,558.27191162109,552.18121337891,546.13244628906,539.89495849609,533.80511474609,527.61065673828,521.44281005859,515.16619873047,509.04055786133,502.90118408203,496.77722167969,490.76150512695,484.73483276367,478.58114624023,472.31436157227,466.14392089844,460.07650756836,453.80383300781,447.60073852539,441.51351928711,435.48852539063,429.40856933594,423.4169921875,419.47299194336,414.99157714844,411.12963867188,405.21789550781,400.22085571289,396.45690917969,392.82391357422,389.32638549805,385.92462158203,381.69226074219,378.6428527832,375.74084472656,371.4599609375,368.5344543457,365.41787719727,360.86569213867,356.22198486328,351.52093505859,347.81475830078,344.4094543457,339.21881103516,333.94393920898,328.56918334961,323.09417724609,319.2526550293,315.42358398438,311.53530883789,305.92922973633,299.95880126953,293.82220458984,287.75054931641,281.64266967773,275.52828979492,269.55465698242,263.56945800781,257.3098449707,251.27481079102,245.04972839355,238.97648620605,232.93621826172,226.67127990723,220.56143188477,214.43740844727,208.27787780762,202.00680541992,195.72885131836,189.55313110352,183.43856811523,177.18670654297,171.00318908691,165.04325866699,158.88259887695,152.65991210938,146.47790527344,140.34567260742,134.4055480957,128.34577941895,122.35742950439,116.49900817871,110.614402771,104.58911132813,98.691970825195,92.782325744629,86.710571289063,80.68009185791,74.559089660645,68.608978271484,62.68586730957,56.716484069824,50.448348999023,44.219860076904,38.159763336182,31.916597366333,25.648672103882,19.403751373291,13.390463829041,7.280321598053,1.2108888626099,-5.0541491508484,-11.101140022278,-17.379858016968,-23.566585540771,-29.734550476074,-35.939353942871,-42.047958374023,-48.26619720459,-54.322334289551,-60.371295928955,-65.810607910156,-71.886627197266,-77.965141296387,-84.011978149414,-89.808319091797,-93.807472229004,-97.704010009766,-101.75382232666,-105.67269897461,-109.4379119873,-114.05374908447,-117.69086456299,-121.18342590332,-124.7067565918,-129.724609375,-134.78498840332,-137.94273376465,-142.61254882813,-147.31716918945,-152.0627746582,-155.43405151367,-158.39639282227,-161.34278869629,-164.44482421875,-167.23641967773,-170.2770690918,-173.14744567871,-175.81793212891,-178.35139465332,-180.60498046875,-183.3875579834,-187.15953063965,-190.26502990723,-194.81036376953,-199.49230957031,-204.25427246094,-207.65640258789,-211.09030151367,-214.74844360352,-218.4204864502,-223.92057800293,-229.39447021484,-234.8741607666,-240.48922729492,-246.04534912109,-249.9192199707,-253.91114807129,-257.94534301758,-262.01904296875,-266.14752197266,-272.21826171875,-278.36904907227,-284.37246704102,-290.49423217773,-296.53656005859,-302.57315063477,-308.74176025391,-314.92715454102,-321.1591796875,-327.41040039063,-331.60900878906,-335.76498413086,-341.75933837891,-347.85290527344,-354.08285522461,-360.38424682617,-364.41937255859,-368.58502197266,-372.62817382813,-376.76672363281,-382.66522216797,-386.47180175781,-390.13739013672,-393.59225463867,-396.88946533203,-401.98040771484,-406.89221191406,-411.8102722168,-416.68698120117,-421.51489257813,-426.38641357422,-431.21520996094,-435.99371337891,-439.35189819336,-441.96328735352,-443.98843383789,-446.03155517578,-448.69226074219,-451.59494018555,-454.2785949707,-456.77560424805,-458.41986083984,-459.46398925781,-460.17218017578,-460.71029663086,-461.43133544922,-461.41607666016,-461.10537719727,-460.69854736328,-460.28839111328,-459.65966796875,-458.66766357422,-457.41009521484,-456.00332641602,-454.39981079102,-452.541015625,-450.60388183594,-448.52474975586,-446.52279663086,-444.60375976563,-440.83880615234,-435.22805786133,-429.60711669922,-423.92361450195,-418.24340820313,-412.58813476563,-409.04364013672,-410.83505249023,-409.62908935547,-409.34362792969,-409.42556762695,-409.87847900391,-410.70101928711,-442.00952148438,-444.55249023438,-448.10009765625,-452.05191040039,-455.82333374023,-459.57000732422,-463.52255249023,-467.4489440918,-473.36126708984,-479.23791503906,-485.19839477539,-491.13046264648,-497.10000610352,-503.13372802734,-509.06164550781,-515.08172607422,-521.30047607422,-527.23968505859,-533.302734375,-539.43664550781,-545.53277587891,-551.73510742188,-557.86376953125,-563.96997070313,-570.08172607422,-576.23474121094,-582.24987792969,-588.36657714844,-594.49987792969,-600.65802001953,-606.80737304688,-612.88946533203,-618.96319580078,-624.99432373047,-631.10314941406,-637.23236083984,-643.34936523438,-649.46722412109,-655.595703125,-661.68060302734,-667.78375244141,-673.87194824219,-679.95379638672,-686.19293212891,-692.26654052734,-698.42156982422,-704.43188476563,-710.46862792969,-716.65740966797,-722.74188232422,-728.83349609375,-734.86462402344,-740.90142822266,-747.00219726563,-753.03332519531,-758.45385742188,-761.05810546875,-763.13104248047,-765.04876708984,-767.16247558594,-768.78082275391,-769.51916503906,-769.89147949219,-770.19903564453,-770.30676269531,-770.42224121094,-770.46728515625,-770.48217773438,-770.49719238281,-770.48059082031,-770.44427490234,-770.40759277344,-770.37188720703,-770.34454345703,-770.31640625,-770.28894042969,-770.26135253906,-770.22735595703,-770.0908203125,-769.48901367188,-768.49060058594,-767.31091308594,-765.87475585938,-764.11572265625,-761.7685546875,-758.96099853516,-756.646484375,-753.67663574219,-749.54901123047,-745.42041015625,-741.34460449219,-737.21240234375,-733.02770996094,-726.88067626953,-720.69555664063,-714.47973632813,-708.46252441406,-702.26098632813,-696.20977783203,-690.01281738281,-683.96624755859,-677.83557128906,-671.55139160156,-665.33312988281,-659.13665771484,-652.89971923828,-646.88623046875,-640.69421386719,-634.51202392578,-628.34729003906,-622.25244140625,-616.16278076172,-610.05853271484,-603.93676757813,-597.76928710938,-591.71215820313,-585.43579101563,-579.33197021484,-573.22540283203,-567.05200195313,-560.82086181641,-554.63305664063,-548.49853515625,-542.39233398438,-536.28601074219,-530.17962646484,-524.07360839844,-517.96911621094,-511.86141967773,-505.76327514648,-499.64996337891,-493.54373168945,-488.31713867188,-484.26473999023,-480.27099609375,-476.09338378906,-471.96139526367,-466.07540893555,-460.25567626953,-454.51171875,-449.3991394043,-443.87112426758,-440.12237548828,-436.52081298828,-431.36352539063,-426.15979003906,-420.94039916992,-415.73110961914,-410.50051879883,-405.17666625977,-401.54006958008,-397.77816772461,-393.90063476563,-388.93688964844,-384.94488525391,-380.93472290039,-376.85485839844,-370.84881591797,-366.81579589844,-370.90399169922,-373.822265625,-378.72271728516,-384.63153076172,-390.51525878906,-394.3581237793,-398.20553588867,-403.87536621094,-407.88690185547,-411.5979309082,-415.10073852539,-420.40963745117,-425.65658569336,-430.81381225586,-436.05606079102,-441.32043457031,-445.61059570313,-449.38619995117,-453.87390136719,-457.63775634766,-462.34808349609,-466.27368164063,-470.37539672852,-476.5500793457,-482.49200439453,-487.33819580078,-493.58880615234,-499.83071899414,-505.90545654297,-512.17938232422,-518.47528076172,-524.73492431641,-530.87811279297,-537.06842041016,-543.21307373047,-549.34216308594,-555.48028564453,-561.61962890625,-567.72570800781,-573.85406494141,-579.98297119141,-586.12628173828,-592.25622558594,-598.31823730469,-604.34448242188,-610.43518066406,-616.54040527344,-622.59143066406,-628.66717529297,-634.78314208984,-640.87298583984,-646.96038818359,-653.09448242188,-659.19836425781,-665.29229736328,-671.39031982422,-677.56195068359,-683.66925048828,-689.78198242188,-695.90844726563,-702.02355957031,-708.166015625,-714.29376220703,-720.43469238281,-726.52142333984,-732.63348388672,-738.68109130859,-744.732421875,-750.70007324219,-753.67724609375,-756.12957763672,-758.42291259766,-759.98248291016,-761.20660400391,-762.47393798828,-763.17846679688,-763.38360595703,-763.21490478516,-762.72125244141,-762.45294189453,-762.51696777344,-762.76013183594,-762.93218994141,-763.08044433594,-763.20080566406,-763.28021240234,-763.33538818359,-763.35516357422,-763.37786865234,-763.40106201172,-763.44232177734,-763.49481201172,-763.06524658203,-762.15484619141,-761.06964111328,-759.58514404297,-757.5869140625,-755.51208496094,-753.45227050781,-750.71520996094,-746.98413085938,-740.96649169922,-734.86584472656,-728.81811523438,-722.78887939453,-716.69091796875,-710.65997314453,-704.41088867188,-698.22930908203,-692.01568603516,-685.98016357422,-679.7333984375,-673.53729248047,-667.46881103516,-661.43420410156,-655.12292480469,-649.03155517578,-642.97564697266,-636.93579101563,-630.65502929688,-624.55108642578,-618.39532470703,-612.35858154297,-606.12200927734,-600.07855224609,-593.94030761719,-587.68133544922,-581.39849853516,-575.14398193359,-568.99102783203,-562.92565917969,-556.67712402344,-550.47711181641,-544.18896484375,-538.02978515625,-532.03582763672,-525.93115234375,-519.70245361328,-513.51104736328,-507.26974487305,-501.17486572266,-495.25244140625,-489.18130493164,-483.34338378906,-477.44036865234,-471.33984375,-465.49407958984,-461.65420532227,-457.86785888672,-454.25936889648,-449.46719360352,-444.36285400391,-441.07656860352,-463.99914550781,-461.96829223633,-460.55917358398,-459.62030029297,-459.22613525391,-459.21310424805,-440.70101928711,-442.62750244141,-443.85275268555,-444.40927124023,-444.61599731445,-444.45816040039,-443.94549560547,-442.85922241211,-441.19448852539,-439.23608398438,-435.35665893555,-431.48348999023,-427.49914550781,-423.45681762695,-420.39010620117,-417.62768554688,-414.17404174805,-410.62915039063,-406.60763549805,-402.89218139648,-398.62350463867,-394.69296264648,-388.84484863281,-383.40490722656,-377.87890625,-372.31860351563,-366.73931884766,-361.39852905273,-356.06369018555,-350.71591186523,-345.34146118164,-339.9631652832,-334.62405395508,-329.26776123047,-323.89001464844,-318.50112915039,-313.12033081055,-307.77548217773,-302.45999145508,-297.16857910156,-291.92053222656,-286.72009277344,-281.55230712891,-276.64682006836,-271.74792480469,-266.89825439453,-262.07888793945,-257.3239440918,-252.61009216309,-248.00103759766,-243.46374511719,-239.18997192383,-234.99327087402,-230.87350463867,-226.76933288574,-222.73599243164,-218.69766235352,-214.65794372559,-210.55863952637,-206.48805236816,-202.44940185547,-198.40394592285,-194.36349487305,-190.29341125488,-186.16366577148,-181.99313354492,-177.74452209473,-173.45053100586,-169.11940002441,-164.7624206543,-160.32992553711,-155.83609008789,-151.31747436523,-146.79202270508,-142.26638793945,-137.6893157959,-133.0924987793,-128.46084594727,-123.78176879883,-119.02398681641,-114.19271087646,-109.32243347168,-104.41542053223,-99.439727783203,-94.430648803711,-89.342559814453,-84.228164672852,-79.074829101563,-73.86701965332,-68.571090698242,-63.277080535889,-57.925067901611,-52.524311065674,-47.045852661133,-41.504833221436,-35.902011871338,-30.262516021729,-24.578241348267,-18.823722839355,-13.007086753845,-7.1343016624451,-1.2320818901062,4.7002902030945,10.65688419342,16.63260269165,22.631368637085,28.660932540894,34.710922241211,40.777076721191,46.857555389404,52.953498840332,59.055999755859,65.160484313965,71.263725280762,77.368690490723,83.473640441895,89.578948974609,95.684013366699,101.78870391846,107.89363098145,113.99858856201,120.10358428955,126.20722961426,132.31045532227,138.41386413574,144.5186920166,150.62454223633,156.72941589355,162.8343963623,168.94020080566,175.04335021973,181.14593505859,187.25074768066,193.3434753418,199.4383392334,205.521484375,211.60528564453,217.6653137207,223.72160339355,229.77409362793,235.7946472168,241.77822875977,245.70867919922,249.54391479492,255.27284240723,260.24417114258,266.01571655273,271.75189208984,277.42895507813,283.03216552734,288.59027099609,294.11471557617,299.59393310547,305.00973510742,310.36898803711,315.68798828125,321.00607299805,326.32470703125,331.60586547852,336.86294555664,342.12435913086,347.3786315918,352.55017089844,357.68481445313,362.81665039063,367.94793701172,373.06069946289,378.14562988281,383.23043823242,388.30499267578,393.39215087891,398.48379516602,403.5749206543,408.66595458984,413.72219848633,418.82025146484,423.9189453125,429.01678466797,434.1350402832,439.30865478516,444.52740478516,449.79992675781,455.13824462891,460.50961303711,465.92202758789,471.39169311523,476.91409301758,482.50463867188,486.30236816406,491.79153442383,495.68920898438,501.58209228516,507.51879882813,511.51220703125,517.52990722656,523.29663085938,527.35241699219,531.419921875,535.48791503906,539.54034423828,545.61535644531,550.50769042969,556.51995849609,560.443359375,564.30120849609,568.12322998047,571.90942382813,577.56433105469,581.17700195313,586.51879882813,591.98864746094,597.51916503906,602.89709472656,608.77563476563,612.63391113281,616.78039550781,620.88403320313,626.81488037109,632.83953857422,638.93615722656,643.7578125,647.79693603516,654.03076171875,660.26782226563,666.52325439453,672.51910400391,678.52667236328,684.71875,690.72113037109,696.85711669922,702.87670898438,708.85552978516,714.79022216797,720.68963623047,726.59906005859,732.50268554688,738.45074462891,744.47198486328,750.40002441406,756.38671875,762.26391601563,768.20574951172,774.18566894531,780.13409423828,786.02276611328,791.83245849609,797.74194335938,803.24572753906,807.08911132813,812.79473876953,818.45184326172,822.2392578125,826.36456298828,829.98553466797,833.48394775391,838.41131591797,843.30340576172,847.51586914063,852.08319091797,856.61737060547,860.89739990234,863.68682861328,866.37341308594,870.18896484375,872.47436523438,874.59912109375,877.32495117188,879.15826416016,880.72149658203,881.57019042969,881.98651123047,882.68780517578,882.92639160156,882.83099365234,882.54901123047,881.84252929688,880.87652587891,879.74584960938,878.37194824219,876.72930908203,874.98382568359,873.02850341797,870.18774414063,867.15081787109,862.76007080078,857.99578857422,853.16687011719,848.2998046875,843.46179199219,838.64581298828,833.72778320313,828.83099365234,824.00054931641,819.28820800781,814.69836425781,811.81158447266,809.05352783203,806.48083496094,804.03625488281,800.85968017578,798.49468994141,796.49456787109,794.69854736328,793.04913330078,791.20056152344,789.51458740234,787.43640136719,785.51715087891,783.72296142578,782.0390625,780.4521484375,778.97619628906,777.57995605469,776.28826904297,775.0615234375,773.92987060547,772.79718017578,771.60577392578,770.42004394531,769.22290039063,767.98034667969,766.79382324219,765.65631103516,764.51885986328,763.38146972656,762.2109375,761.02758789063,759.84411621094,758.66033935547,757.46185302734,756.17413330078,754.86413574219,753.55700683594,752.23803710938,750.76971435547,749.06414794922,747.21752929688,745.2978515625,743.3408203125,741.38525390625,739.49566650391,737.62042236328,735.81286621094,734.05914306641,732.29333496094,730.52709960938,728.76080322266,726.99285888672,725.22668457031,723.46130371094,721.69464111328,719.92352294922,718.15643310547,716.38934326172,714.68017578125,712.99627685547,711.24981689453,709.34008789063,707.30224609375,705.36706542969,703.14318847656,701.29943847656,699.31573486328,696.90924072266,694.62841796875,692.11126708984,689.31359863281,685.23455810547,681.15625,676.95568847656,672.60900878906,669.16662597656,665.94958496094,662.25372314453,657.69018554688,652.58740234375,647.47454833984,642.33331298828,637.27960205078,632.31091308594,627.40576171875,622.52655029297,617.69677734375,612.92761230469,608.19604492188,603.54412841797,599.47369384766,595.02465820313,590.65881347656,586.28967285156,581.85162353516,577.30120849609,574.16168212891,569.31286621094,564.78894042969,561.40435791016,557.86828613281,554.18310546875,550.45672607422,546.60241699219,542.59875488281,538.67028808594,533.63104248047,529.63586425781,525.52349853516,521.31823730469,517.31982421875,513.29547119141,507.83547973633,502.57260131836,498.73141479492,494.98403930664,490.77774047852,487.24301147461,483.84552001953,480.55599975586,475.63259887695,470.81533813477,466.08706665039,461.39123535156,456.7991027832,452.18341064453,447.58752441406,442.98944091797,438.38989257813,433.72088623047,428.97817993164,424.18991088867,419.34548950195,414.3635559082,409.29217529297,404.13970947266,399.35977172852,394.00961303711,388.55361938477,383.07760620117,377.53652954102,371.97317504883,366.34326171875,360.64450073242,354.90557861328,349.17962646484,343.37390136719,337.55813598633,331.71377563477,325.91348266602,320.11444091797,314.37704467773,308.79614257813,303.03747558594,297.46307373047,293.91897583008,290.46307373047,287.15029907227,282.14266967773,278.9016418457,274.86367797852,271.8889465332,269.00653076172,264.71405029297,260.34689331055,257.181640625,252.3892364502,249.00881958008,245.52996826172,241.8904876709,238.23115539551,234.36166381836,230.52825927734,224.68783569336,220.76094055176,216.74404907227,212.65087890625,206.63916015625,200.63841247559,195.68295288086,191.60935974121,186.77671813965,181.00595092773,174.95889282227,170.08349609375,166.09072875977,162.16435241699,158.26075744629,152.91989135742,147.12503051758,141.38452148438,135.54289245605,129.77786254883,123.89612579346,117.97189331055,113.96854400635,109.90602111816,105.90004730225,101.79061126709,97.638008117676,93.598587036133,89.550628662109,85.494522094727,81.543930053711,77.73316192627,71.984321594238,68.275039672852,64.646438598633,61.081153869629,57.715103149414,54.440124511719,50.152828216553,45.399791717529,40.674945831299,36.03776550293,31.365421295166,26.684217453003,22.048393249512,18.064043045044,14.548073768616,9.2739543914795,5.658362865448,0.1551833152771,-5.3788590431213,-10.987859725952,-16.487386703491,-22.122373580933,-27.764543533325,-33.262027740479,-38.929382324219,-44.57494354248,-50.253932952881,-55.921325683594,-61.769458770752,-66.146919250488,-72.002571105957,-77.901832580566,-83.824485778809,-87.833518981934,-93.85228729248,-99.961044311523,-106.04297637939,-112.09335327148,-118.18727874756,-124.21845245361,-130.36157226563,-136.56103515625,-142.59786987305,-148.64385986328,-154.87754821777,-161.03030395508,-167.1321105957,-173.20707702637,-179.2049407959,-185.26312255859,-191.30717468262,-197.32904052734,-203.34757995605,-209.34111022949,-215.28861999512,-221.1939239502,-227.06788635254,-232.93792724609,-238.81764221191,-244.7137298584,-250.62515258789,-256.53295898438,-262.38851928711,-268.14785766602,-274.01864624023,-279.9528503418,-285.93179321289,-292.0149230957,-298.1496887207,-302.22549438477,-306.4416809082,-310.51293945313,-314.74713134766,-320.771484375,-326.84295654297,-331.73385620117,-337.18548583984,-343.18420410156,-349.13696289063,-355.0537109375,-360.95648193359,-366.81976318359,-372.69290161133,-378.53720092773,-384.40481567383,-390.2126159668,-396.25540161133,-402.20910644531,-408.20950317383,-414.27471923828,-418.93487548828,-424.98004150391,-431.05599975586,-437.06008911133,-443.23590087891,-449.36923217773,-455.50872802734,-461.65118408203,-467.65161132813,-473.74908447266,-479.76608276367,-485.81457519531,-491.84057617188,-497.86889648438,-500.7936706543,-502.10327148438,-503.40472412109,-504.41833496094,-505.05725097656,-507.00756835938,-508.78579711914,-510.52026367188,-512.23089599609,-513.52886962891,-514.35217285156,-514.97351074219,-515.86199951172,-516.49371337891,-516.541015625,-516.435546875,-516.13616943359,-515.55682373047,-514.703125,-513.62731933594,-512.37939453125,-510.84677124023,-509.21823120117,-507.34371948242,-505.29010009766,-503.00390625,-500.56643676758,-496.88082885742,-494.16287231445,-490.20538330078,-486.13272094727,-481.91751098633,-477.71270751953,-473.44848632813,-469.15640258789,-464.94647216797,-460.68872070313,-456.34436035156,-451.9762878418,-447.72637939453,-443.45608520508,-439.15301513672,-434.81280517578,-430.44842529297,-426.05529785156,-421.80911254883,-417.54412841797,-413.30722045898,-409.04516601563,-404.70016479492,-400.36920166016,-396.01809692383,-391.80416870117,-387.58706665039,-383.33483886719,-379.01617431641,-374.69183349609,-370.33343505859,-366.13323974609,-361.87533569336,-357.64624023438,-353.40225219727,-349.08029174805,-344.84350585938,-340.55267333984,-336.39263916016,-332.20748901367,-328.03628540039,-323.8645324707,-319.64318847656,-315.47732543945,-311.30819702148,-307.14178466797,-302.91775512695,-298.73724365234,-294.55557250977,-290.3317565918,-286.14984130859,-281.96844482422,-277.78707885742,-273.55892944336,-269.37203979492,-265.19863891602,-260.98059082031,-256.79522705078,-252.61016845703,-248.42517089844,-244.18055725098,-239.99557495117,-235.8104095459,-231.60733032227,-227.34838867188,-223.16325378418,-218.97302246094,-214.72174072266,-210.53652954102,-206.3468170166,-202.13911437988,-198.0094909668,-193.82444763184,-189.63934326172,-185.3524017334,-181.16734313965,-176.98226928711,-172.78851318359,-168.50199890137,-164.31163024902,-160.10862731934,-155.77754211426,-151.58947753906,-147.40559387207,-143.22923278809,-139.12393188477,-134.9268951416,-130.75025939941,-126.59632110596,-122.39845275879,-118.22107696533,-114.00654602051,-109.8625793457,-105.68628692627,-101.48818206787,-97.274436950684,-93.030952453613,-88.731369018555,-84.435554504395,-80.15478515625,-75.937637329102,-71.689376831055,-67.580360412598,-63.5725440979,-60.185386657715,-57.827144622803,-56.007915496826,-54.829246520996,-54.311996459961,-54.272762298584,-54.694583892822,-55.551322937012,-56.890686035156,-58.507675170898,-60.870723724365,-64.259376525879,-67.597351074219,-71.216903686523,-76.489364624023,-81.601867675781,-86.740180969238,-91.925796508789,-97.071647644043,-101.65953826904,-106.5511932373,-111.54593658447,-116.36180114746,-121.09698486328,-125.87060546875,-130.64723205566,-135.38168334961,-140.06869506836,-144.7936706543,-149.43594360352,-154.01681518555,-158.41821289063,-162.97526550293,-167.45890808105,-171.79795837402,-176.16351318359,-180.44342041016,-184.66282653809,-188.7462310791,-192.85949707031,-197.00653076172,-201.03666687012,-205.06956481934,-209.11601257324,-213.22708129883,-217.3062286377,-221.27998352051,-225.27421569824,-229.35639953613,-233.5323638916,-237.72163391113,-241.95191955566,-246.30458068848,-250.72264099121,-255.28813171387,-259.85217285156,-264.53482055664,-269.27993774414,-274.13348388672,-279.04818725586,-284.00299072266,-287.39822387695,-292.51431274414,-297.65179443359,-302.77505493164,-307.88632202148,-313.04299926758,-318.22283935547,-323.43713378906,-328.67654418945,-333.91729736328,-339.17718505859,-344.54125976563,-349.85830688477,-355.18759155273,-360.56127929688,-365.99157714844,-371.38049316406,-376.88763427734,-382.44738769531,-388.07397460938,-393.71701049805,-399.33721923828,-404.89385986328,-410.4951171875,-414.05587768555,-417.37860107422,-422.3083190918,-425.42098999023,-428.32406616211,-431.07232666016,-434.03271484375,-436.56091308594,-440.30673217773,-442.90582275391,-445.06686401367,-448.22387695313,-449.3196105957,-449.71896362305,-449.50256347656,-448.83395385742,-447.74444580078,-450.29656982422,-452.88021850586,-454.85244750977,-456.66998291016,-455.20495605469,-452.18432617188,-450.21710205078,-448.41357421875,-446.10873413086,-49.757701873779,-46.855617523193,-45.106815338135,-43.618679046631,-42.236637115479,-40.43970489502,-38.747543334961,-36.572288513184,-33.335556030273,-30.026231765747,-27.62477684021,-25.089149475098,-21.134872436523,-17.012519836426,-12.773631095886,-8.562180519104,-4.2748160362244,-0.13316532969475,3.9704506397247,8.1328067779541,12.148483276367,16.118846893311,20.195598602295,24.191940307617,28.296030044556,32.501613616943,36.562034606934,40.764232635498,44.200347900391,47.361103057861,50.573913574219,54.047332763672,57.131523132324,60.27018737793,64.216384887695,68.200408935547,72.376350402832,76.47575378418,80.694297790527,86.701271057129,92.904800415039,99.119255065918,105.28678131104,111.37690734863,115.75190734863,119.78284454346,123.84700012207,127.86423492432,131.91548156738,136.08445739746,141.85479736328,147.63145446777,153.35557556152,159.07171630859,164.75367736816,170.34518432617,176.09884643555,181.73460388184,187.44889831543,193.04428100586,198.80619812012,204.45718383789,210.19177246094,216.03970336914,221.91514587402,226.04078674316,232.07223510742,236.03684997559,240.04454040527,244.11071777344,250.20178222656,256.26162719727,262.44976806641,268.51443481445,274.60760498047,278.76141357422,284.7864074707,288.9455871582,294.41497802734,299.82623291016,305.80654907227,309.72772216797,313.58575439453,317.27597045898,319.7760925293,324.80932617188,327.57949829102,333.16839599609,334.84747314453,336.0966796875,336.38653564453,336.33450317383,335.88845825195,335.06936645508,333.87335205078,332.3551940918,330.57537841797,328.57907104492,326.56420898438,324.61743164063,322.85858154297,319.39395141602,314.16125488281,308.9951171875,303.83215332031,301.11560058594,299.52764892578,297.99063110352,295.0299987793,292.62060546875,290.7688293457,-42.240123748779,-43.78284072876,-45.170440673828,-47.32075881958,-49.208881378174,-51.172340393066,-53.293842315674,-56.295799255371,-59.224487304688,-61.73908996582,-277.24911499023,-274.75030517578,-273.43600463867,-272.79067993164,-272.40835571289,-272.28701782227,-272.33935546875,-272.80941772461,-273.12991333008,-273.11322021484,-273.24740600586,-273.38305664063,-273.51495361328,-273.64477539063,-273.40313720703,-272.73361206055,-271.65835571289,-270.08465576172,-267.70431518555,-264.91122436523,-261.97894287109,-258.96038818359,-254.90357971191,-248.87336730957,-242.85403442383,-236.78314208984,-230.76766967773,-226.78509521484,-224.52156066895,-222.83103942871,-221.52983093262,-220.62236022949,-220.23545837402,-220.31106567383,-220.14747619629,-219.93399047852,-220.09167480469,-220.38160705566,-220.44830322266,-220.47309875488,-220.501953125,-220.11526489258,-219.75982666016,-219.66874694824,-219.74128723145,-220.09893798828,-220.60517883301,-221.25775146484,-222.31625366211,-223.34948730469,-224.76031494141,-226.52255249023,-228.48840332031,-230.00386047363,-222.01315307617,-220.52006530762,-268.30966186523,-270.81164550781,-272.19458007813,-272.80352783203,-273.06726074219,-168.84544372559,-167.4319152832,-166.30947875977,-165.54763793945,-164.04611206055,-162.55506896973,-161.04316711426,-159.31675720215,-157.03999328613,-152.78837585449,-149.43696594238,-144.32901000977,-139.16757202148,-134.85903930664,-131.79020690918,-129.00065612793,-126.79346466064,-125.73516082764,-124.25127410889,-123.87782287598,-124.05847930908,-124.4303817749,-123.65486907959,-121.88276672363,-119.41666412354,-116.00485229492,-113.16123962402,-107.42278289795,-103.39334106445,-99.366874694824,-93.360664367676,-87.408874511719,-81.463317871094,-75.583015441895,-71.14151763916,-65.283164978027,-59.595733642578,-55.797325134277,-52.219409942627,-49.39236831665,-46.228981018066,-43.228580474854,-38.811573028564,-34.349662780762,-29.912212371826,-27.330142974854,-24.524047851563,-20.687086105347,-16.66220664978,-12.618234634399,-8.571328163147,-4.4657764434814,-0.40588533878326,3.7421889305115,9.7345247268677,15.712464332581,19.817310333252,23.700826644897,27.701913833618,31.537599563599,35.159816741943,38.571529388428,41.538906097412,46.273559570313,50.848960876465,53.627704620361,56.174419403076,59.794574737549,62.437572479248,64.798278808594,67.266456604004,69.973434448242,72.938613891602,76.036499023438,79.069694519043,82.192031860352,85.141593933105,88.005836486816,91.535514831543,96.831680297852,100.55992126465,103.57495117188,106.60582733154,109.67401123047,113.65056610107,119.62537384033,125.64044952393,128.53907775879,131.29138183594,133.34115600586,134.86183166504,137.3169708252,140.00927734375,142.93545532227,145.93280029297,150.4440612793,153.32176208496,157.49627685547,161.65731811523,164.64486694336,169.29718017578,172.552734375,175.9715423584,179.56468200684,183.23446655273,186.15089416504,189.18801879883,192.24632263184,196.2917175293,202.27215576172,206.31524658203,209.58348083496,212.98948669434,216.71112060547,220.30987548828,223.82752990723,227.22698974609,232.27703857422,237.20910644531,241.91520690918,244.99716186523,249.63252258301,254.1307220459,258.48486328125,262.1760559082,264.71865844727,266.02932739258,266.04385375977,265.62020874023,264.86962890625,263.68838500977,262.203125,260.61120605469,258.96340942383,257.00299072266,255.15777587891,249.86349487305,245.22094726563,241.48010253906,237.64019775391,234.47319030762,229.59080505371,223.64797973633,217.65893554688,211.5964050293,205.53744506836,200.5655670166,196.48802185059,193.45422363281,190.38775634766,187.58088684082,184.95484924316,183.00137329102,181.82591247559,181.07220458984,180.73320007324,180.73257446289,181.17401123047,181.96899414063,182.95036315918,184.2015838623,185.74354553223,187.55895996094,189.63841247559,191.98277282715,194.49119567871,197.15209960938,201.14080810547,205.23669433594,209.36120605469,213.4845123291,217.64817810059,220.59686279297,225.0166015625,228.33108520508,231.18974304199,-124.23310089111,-127.19715881348,-133.08763122559,-136.39755249023,-142.02474975586,-145.42547607422,-148.44425964355,-152.54734802246,-155.93601989746,-160.06108093262,-164.04313659668,-169.05307006836,-173.05218505859,-176.90655517578,-179.49569702148,-182.38453674316,-185.52665710449,-188.48263549805,-191.04704284668,-194.73968505859,-198.53340148926,-202.09017944336,-204.36712646484,-207.59274291992,-210.79293823242,-214.13702392578,-216.68724060059,-220.61897277832,-224.22813415527,-228.43814086914,-232.7509765625,-236.76528930664,-238.69863891602,-240.77705383301,-242.07188415527,-242.96516418457,-243.20475769043,-242.99630737305,-242.28955078125,-241.19334411621,-239.68812561035,-237.99946594238,-235.97569274902,-233.20756530762,-231.5645904541,-231.43476867676,-231.68202209473,-232.35731506348,-233.40295410156,-234.99960327148,-236.91116333008,334.59579467773,337.03732299805,341.93914794922,346.79312133789,351.59097290039,356.65783691406,361.82135009766,366.10473632813,369.74310302734,373.57086181641,377.48983764648,383.40502929688,388.14862060547,392.10562133789,398.16604614258,404.18838500977,409.01068115234,415.03433227539,421.15258789063,427.2370300293,433.17004394531,437.13720703125,442.01248168945,445.95199584961,449.92880249023,453.79382324219,457.70513916016,461.4401550293,465.18267822266,468.86804199219,472.44436645508,476.06164550781,479.46759033203,482.83459472656,486.06777954102,489.80490112305,494.41076660156,498.88873291016,503.37738037109,507.7575378418,512.05834960938,516.43334960938,520.67791748047,524.92443847656,529.19445800781,533.45703125,537.77642822266,542.0087890625,546.24694824219,550.70135498047,553.88482666016,557.83050537109,562.08929443359,566.5546875,571.10443115234,574.974609375,578.705078125,582.40496826172,586.18432617188,590.09484863281,594.10528564453,598.17877197266,604.23358154297,610.01971435547,615.91143798828,622.09063720703,628.25396728516,634.41412353516,640.59002685547,646.66265869141,652.76873779297,658.93444824219,665.06292724609,671.12805175781,677.29779052734,683.43682861328,689.44366455078,695.50750732422,701.63031005859,707.62432861328,713.63830566406,719.79064941406,725.80755615234,729.79180908203,733.87774658203,737.75354003906,741.56567382813,744.60852050781,747.30517578125,749.62780761719,751.65222167969,753.43731689453,754.76788330078,755.75970458984,756.61413574219,757.35443115234,757.90026855469,758.14807128906,758.20208740234,758.10601806641,757.85815429688,757.43756103516,756.79742431641,756.13726806641,755.42156982422,754.65252685547,753.80725097656,752.91766357422,752.02709960938,751.13336181641,750.16149902344,749.23236083984,748.31121826172,747.39404296875,746.47863769531,745.55804443359,744.56201171875,743.53698730469,743.00115966797,741.00628662109,739.37829589844,735.66937255859,732.70788574219,730.66229248047,728.62225341797,725.75335693359,721.82452392578,715.99182128906,710.07250976563,704.17919921875,698.60003662109,692.61663818359,686.63745117188,680.55340576172,674.40673828125,668.36212158203,662.34216308594,658.32171630859,652.26251220703,646.19793701172,640.16003417969,634.11962890625,628.10614013672,622.11956787109,616.16125488281,611.85198974609,607.86218261719,604.04180908203,600.13946533203,596.3876953125,592.69830322266,587.26763916016,581.96563720703,576.57421875,572.88201904297,567.30645751953,563.15386962891,559.24786376953,555.17883300781,551.07244873047,546.93194580078,542.76574707031,538.74377441406,532.59075927734,528.40002441406,524.24224853516,518.09631347656,514.11993408203,510.06854248047,504.06561279297,499.2421875,493.49603271484,487.62973022461,481.81143188477,476.05642700195,470.55114746094,465.1223449707,459.7734375,454.44158935547,449.13250732422,443.95401000977,438.60000610352,433.38159179688,428.22183227539,423.06790161133,417.93411254883,412.8674621582,407.86364746094,402.81628417969,397.70684814453,392.69470214844,387.63043212891,382.6315612793,377.55151367188,372.43551635742,367.28170776367,362.14935302734,357.04431152344,351.98681640625,346.86126708984,341.67880249023,336.37808227539,331.07476806641,325.78744506836,320.45892333984,315.11245727539,309.76342773438,304.41491699219,298.99404907227,293.5485534668,288.13201904297,282.63284301758,277.28897094727,272.72201538086,266.96347045898,261.14758300781,255.40144348145,249.63465881348,243.7961730957,239.24894714355,235.30094909668,231.26000976563,227.21557617188,222.392578125,216.3524017334,210.32800292969,204.28826904297,198.2529296875,192.16032409668,186.03642272949,179.95552062988,173.86544799805,167.86334228516,161.83694458008,155.72602844238,149.60165405273,143.57434082031,137.48469543457,131.44769287109,125.34484100342,119.3108215332,113.21537017822,107.11154937744,101.00604248047,94.879539489746,88.851821899414,82.766250610352,76.768363952637,70.736335754395,64.639213562012,58.558567047119,52.498371124268,46.378231048584,40.379653930664,34.2692527771,30.223793029785,24.176156997681,18.154499053955,12.147283554077,7.3949790000916,1.5723112821579,-4.2372722625732,-10.080533981323,-15.92076587677,-21.709575653076,-27.407052993774,-33.140026092529,-38.729148864746,-44.251956939697,-49.769496917725,-55.243591308594,-45.633373260498,-46.674339294434,-46.629127502441,-46.124851226807,-45.028728485107,-43.538932800293,-42.388679504395,-41.1162109375,-39.512660980225,735.28668212891,738.18640136719,740.05828857422,741.58020019531,742.83422851563,710.72894287109,708.88427734375,706.9091796875,703.85900878906,699.42980957031,695.39996337891,689.32312011719,683.30078125,677.29919433594,674.68280029297,672.99725341797,672.08068847656,713.61096191406,697.14453125,699.96209716797,701.83349609375,704.31262207031,706.13983154297,707.64996337891,708.70690917969,709.26531982422,709.31243896484,708.82897949219,707.92443847656,706.62121582031,704.95239257813,702.94891357422,700.91455078125,697.94494628906,692.01379394531,745.38409423828,747.26348876953,749.15490722656,883.96472167969,885.86395263672,888.63665771484,891.60272216797,896.06024169922,899.57019042969,901.0439453125,903.34625244141,906.31274414063,909.09368896484,910.53814697266,911.75305175781,913.41375732422,914.91369628906,915.78747558594,916.64739990234,917.58471679688,918.32244873047,918.86285400391,919.40686035156,919.94830322266,920.48297119141,920.99078369141,921.40386962891,921.67700195313,921.83215332031,921.79138183594,921.79602050781,921.84710693359,921.90258789063,921.75061035156,921.32922363281,920.63055419922,919.60797119141,918.52099609375,917.43310546875,916.34197998047,915.34210205078,914.34753417969,913.35021972656,912.35736083984,911.29724121094,910.23626708984,909.15167236328,907.73736572266,906.23907470703,904.625,902.88195800781,901.19537353516,899.72198486328,897.39538574219,894.94134521484,892.94427490234,890.88403320313,888.50872802734,886.39477539063,883.46588134766,880.29370117188,877.06127929688,873.63702392578,869.21136474609,865.58831787109,861.81567382813,857.42559814453,853.45886230469,849.42047119141,846.20208740234,843.17730712891,838.99890136719,832.80804443359,826.83038330078,822.82830810547,819.27435302734,815.3193359375,811.51287841797,807.86395263672,804.56646728516,801.88226318359,799.38818359375,796.79254150391,793.75439453125,791.35797119141,789.09161376953,787.00347900391,785.05712890625,783.51696777344,781.24353027344,779.01452636719,776.75524902344,774.48681640625,772.22106933594,769.98828125,768.89086914063,768.05206298828,767.60931396484,767.55676269531,767.673828125,768.14489746094,768.77697753906,769.70245361328,770.60961914063,771.62878417969,772.82586669922,774.20074462891,775.58850097656,776.99322509766,778.55841064453,780.20336914063,781.90313720703,783.25457763672,784.76672363281,787.01177978516,789.38714599609,791.38812255859,793.26770019531,795.31280517578,797.54443359375,800.99975585938,803.50592041016,806.10247802734,808.84918212891,812.94305419922,817.35424804688,821.79144287109,826.17211914063,830.67803955078,834.00677490234,838.96014404297,843.91833496094,848.88555908203,853.81433105469,858.69354248047,861.78521728516,864.67132568359,867.41137695313,870.69122314453,873.06689453125,874.93615722656,876.32397460938,877.31787109375,877.96374511719,878.26672363281,878.27789306641,877.95367431641,877.34417724609,876.69506835938,875.78607177734,874.58813476563,873.04388427734,871.12445068359,868.84912109375,866.43914794922,863.87030029297,860.04711914063,856.05932617188,852.93701171875,849.68176269531,846.67095947266,843.50421142578,838.71075439453,833.79180908203,828.74969482422,825.25268554688,821.69287109375,817.70251464844,812.76361083984,808.04608154297,802.33782958984,796.60296630859,792.7724609375,786.99078369141,781.08905029297,775.23773193359,769.36981201172,763.5126953125,757.66979980469,751.83947753906,745.95385742188,740.07147216797,734.13049316406,728.25787353516,748.96484375,746.57702636719,745.36944580078,744.23559570313,743.44989013672,743.31890869141 - 83.873344421387,83.895858764648,83.910591125488,83.915634155273,83.918174743652,83.918472290039,83.926559448242,83.994659423828,84.039443969727,84.079299926758,84.175910949707,84.286430358887,84.297424316406,84.270561218262,84.24390411377,84.219841003418,84.191650390625,84.123420715332,84.078216552734,84.028221130371,83.882736206055,83.734336853027,83.493896484375,83.149681091309,82.565635681152,81.96794128418,81.267143249512,80.446838378906,79.603477478027,78.80965423584,78.092597961426,77.436096191406,76.809112548828,76.250640869141,75.905090332031,75.331855773926,74.937995910645,74.657379150391,74.390319824219,74.11661529541,73.663452148438,73.147483825684,72.902694702148,72.642517089844,72.436531066895,72.172821044922,71.879554748535,71.443153381348,71.021369934082,70.52921295166,70.036460876465,69.612106323242,69.201263427734,68.726860046387,68.296325683594,67.871994018555,67.497085571289,67.25025177002,67.031753540039,66.857223510742,66.652397155762,66.474388122559,66.284866333008,66.140319824219,66.125366210938,66.185859680176,66.23917388916,66.319068908691,66.474700927734,66.685455322266,66.842948913574,67.0029296875,67.160591125488,67.303047180176,67.441543579102,67.628540039063,67.795516967773,67.972221374512,68.13671875,68.263801574707,68.413909912109,68.707588195801,68.982421875,69.255935668945,69.642372131348,70.127723693848,70.594970703125,71.061462402344,71.522857666016,71.99161529541,72.462097167969,72.93628692627,73.407104492188,73.885513305664,74.356315612793,74.82258605957,75.207824707031,75.572219848633,75.938682556152,76.243782043457,76.434379577637,76.636795043945,76.738868713379,76.800941467285,76.850067138672,76.893692016602,76.899528503418,76.909774780273,76.920791625977,76.931358337402,76.942108154297,76.953071594238,76.96363067627,76.974433898926,76.985130310059,77.024589538574,77.156135559082,77.27995300293,77.401596069336,77.536499023438,77.727088928223,77.919914245605,78.106407165527,78.266265869141,78.475776672363,78.722831726074,78.964408874512,79.20581817627,79.51993560791,79.882675170898,80.231895446777,80.582717895508,81.060104370117,81.557647705078,82.066902160645,82.576889038086,83.08699798584,83.594818115234,84.098861694336,84.600921630859,85.09635925293,85.484107971191,85.751533508301,86.025634765625,86.163726806641,86.20613861084,86.161949157715,86.075820922852,85.949562072754,85.706855773926,85.436820983887,85.20231628418,85.051475524902,84.927268981934,84.848693847656,84.868354797363,84.958694458008,85.221435546875,85.462203979492,85.698799133301,85.935188293457,86.104652404785,86.257316589355,86.382011413574,86.466911315918,86.455413818359,86.375526428223,86.248161315918,86.096588134766,85.925605773926,85.648315429688,85.357582092285,85.062072753906,84.782363891602,84.594337463379,84.317504882813,84.041061401367,83.875259399414,83.79167175293,83.691772460938,83.59107208252,83.490570068359,83.390144348145,83.28955078125,83.123016357422,82.91284942627,82.70964050293,82.506469726563,82.302894592285,82.099647521973,81.893226623535,81.688659667969,81.488731384277,81.35115814209,81.308959960938,81.262199401855,81.132530212402,80.895706176758,80.781646728516,80.725593566895,80.704010009766,80.737365722656,80.869483947754,80.944053649902,80.986854553223,80.98087310791,81.013565063477,81.027709960938,80.89900970459,80.669319152832,80.42423248291,80.110786437988,79.753089904785,79.436897277832,79.200698852539,79.004379272461,78.875885009766,78.785903930664,78.786491394043,78.846740722656,78.956970214844,79.084434509277,79.286560058594,79.561248779297,79.904090881348,80.199882507324,80.406181335449,80.656265258789,80.937675476074,81.07494354248,81.266777038574,81.47331237793,81.675331115723,81.883613586426,82.087104797363,82.294448852539,82.500755310059,82.710548400879,82.914924621582,83.119506835938,83.299987792969,83.392555236816,83.490303039551,83.591583251953,83.694877624512,83.796401977539,83.896354675293,84.038505554199,84.331901550293,84.610084533691,84.887748718262,85.180923461914,85.4638671875,85.644882202148,85.857902526855,86.021324157715,86.248985290527,86.394256591797,86.454284667969,86.467086791992,86.422927856445,86.324813842773,86.145362854004,85.986663818359,85.824684143066,85.584251403809,85.427917480469,85.265777587891,85.030471801758,84.851387023926,84.859939575195,84.927154541016,85.042823791504,85.283386230469,85.562019348145,85.834121704102,86.052947998047,86.155342102051,86.20240020752,86.197357177734,86.092811584473,85.862861633301,85.492637634277,85.094245910645,84.58519744873,84.065956115723,83.561393737793,83.055679321289,82.52513885498,82.013458251953,81.484489440918,80.96800994873,80.52530670166,80.165397644043,79.812019348145,79.453643798828,79.134384155273,78.897064208984,78.647087097168,78.398773193359,78.186477661133,77.998321533203,77.806129455566,77.620101928711,77.442985534668,77.32194519043,77.197448730469,77.07234954834,76.977798461914,76.975692749023,76.966751098633,76.955825805664,76.945304870605,76.933372497559,76.923355102539,76.913116455078,76.902450561523,76.891471862793,76.870986938477,76.799308776855,76.72664642334,76.621376037598,76.404769897461,76.197334289551,75.900016784668,75.518867492676,75.147644042969,74.75464630127,74.290138244629,73.82145690918,73.357078552246,72.877502441406,72.413589477539,71.930809020996,71.453338623047,70.978248596191,70.500450134277,70.030433654785,69.552780151367,69.167633056641,68.920753479004,68.679267883301,68.405807495117,68.180229187012,67.994453430176,67.815231323242,67.701835632324,67.584999084473,67.450355529785,67.29328918457,67.131309509277,66.93367767334,66.752563476563,66.581596374512,66.43635559082,66.289794921875,66.22013092041,66.170059204102,66.113693237305,66.201736450195,66.405235290527,66.607688903809,66.798873901367,67.006446838379,67.222434997559,67.375305175781,67.574333190918,67.886680603027,68.263069152832,68.586044311523,68.84831237793,69.153587341309,69.525466918945,69.816162109375,70.309867858887,70.83422088623,71.33992767334,71.673126220703,71.961654663086,72.245628356934,72.503273010254,72.780471801758,73.033996582031,73.38264465332,73.95174407959,74.37442779541,74.652084350586,74.956588745117,75.276847839355,75.657836914063,76.079597473145,76.566032409668,77.113616943359,77.799873352051,78.503761291504,79.238632202148,80.060150146484,80.908546447754,81.708885192871,82.330032348633,82.932075500488,83.295333862305,83.503562927246,83.746101379395,83.887397766113,84.028434753418,84.076599121094,84.10124206543,84.154640197754,84.198577880859,84.213157653809,84.263900756836,84.267166137695,84.209037780762,84.116966247559,84.072311401367,84.01229095459,83.936027526855,83.915794372559,83.919151306152,83.917839050293,83.912628173828,83.902969360352,83.854988098145,83.820869445801,83.79345703125,83.772300720215,83.751075744629,83.736968994141,83.762474060059,83.857749938965,83.966621398926,84.01537322998,83.996643066406,83.995872497559,83.994651794434,83.997596740723,83.997703552246,83.9970703125,83.997177124023,83.997161865234,83.998649597168,83.998001098633,83.999145507813,83.987426757813,83.982215881348,83.97191619873,83.972076416016,83.997756958008,83.998970031738,83.998207092285,83.997100830078,83.997009277344,83.986175537109,83.988510131836,84.003540039063,83.968925476074,83.998733520508,83.977561950684,83.966033935547,83.943572998047,83.932235717773,83.922698974609,83.920166015625,83.786109924316,83.744773864746,83.703422546387,83.685325622559,83.698844909668,83.721488952637,83.736938476563,83.764602661133,83.758209228516,83.742904663086,83.681121826172,83.598915100098,83.515159606934,83.386627197266,83.263969421387,83.22087097168,83.113731384277,82.841125488281,82.581283569336,82.338150024414,82.102043151855,81.797218322754,81.33765411377,80.893058776855,80.446319580078,79.98161315918,79.526580810547,79.063865661621,78.591903686523,78.103782653809,77.599067687988,77.151809692383,76.704010009766,76.243240356445,75.744468688965,75.23787689209,74.740295410156,74.241172790527,73.78165435791,73.287391662598,72.656936645508,71.901138305664,71.110549926758,70.30827331543,69.528930664063,68.58447265625,67.427108764648,66.340637207031,65.863296508789,65.76277923584,65.782020568848,65.782341003418,65.792823791504,65.853492736816,66.051635742188,66.219482421875,66.258827209473,66.244735717773,66.21728515625,66.161354064941,66.08235168457,66.002304077148,65.89720916748,65.69361114502,65.423286437988,64.999130249023,64.483154296875,63.961532592773,63.424198150635,62.893013000488,62.359935760498,61.844383239746,61.377853393555,60.96395111084,60.639209747314,60.427947998047,60.302059173584,60.159351348877,60.033248901367,59.949028015137,59.885997772217,59.840515136719,59.798881530762,59.763484954834,59.728664398193,59.732707977295,59.768028259277,59.834190368652,59.924617767334,60.005992889404,60.040908813477,60.063667297363,60.062957763672,60.064945220947,60.190998077393,60.447387695313,60.842807769775,61.334667205811,61.918125152588,62.524215698242,63.168342590332,63.815769195557,64.513244628906,65.51481628418,66.54027557373,67.559211730957,68.611968994141,69.799278259277,70.969413757324,72.154350280762,73.439590454102,74.589263916016,75.640441894531,76.529853820801,77.169334411621,77.277099609375,77.251708984375,77.254341125488,77.254318237305,77.250595092773,77.243644714355,77.23713684082,77.230583190918,77.224624633789,77.21883392334,77.21297454834,77.20728302002,77.201507568359,77.204887390137,77.223190307617,77.210098266602,77.223731994629,77.218139648438,77.214424133301,77.208679199219,77.192123413086,77.174140930176,77.098281860352,77.037376403809,77.029693603516,77.40795135498,78.255317687988,78.945121765137,79.637145996094,80.691055297852,81.761978149414,82.854133605957,83.681953430176,83.970901489258,84.029693603516,84.029029846191,84.024299621582,84.097442626953,84.265098571777,84.274253845215,84.225555419922,84.198204040527,84.176834106445,84.130554199219,84.181678771973,84.205360412598,84.227348327637,84.274490356445,84.26522064209,84.150497436523,84.02857208252,84.047889709473,84.052032470703,84.012298583984,83.946342468262,83.443016052246,82.51587677002,81.445198059082,80.279754638672,79.041007995605,78.254318237305,77.620300292969,77.084831237793,76.922019958496,77.002738952637,77.088539123535,77.149795532227,77.192520141602,77.211387634277,77.217338562012,77.221092224121,77.20036315918,77.203712463379,77.210334777832,77.199241638184,77.207580566406,77.213554382324,77.219528198242,77.225440979004,77.2314453125,77.237724304199,77.244194030762,77.250625610352,77.254844665527,77.254356384277,77.254287719727,77.254508972168,77.136840820313,76.490791320801,75.58381652832,74.512657165527,73.379463195801,72.099449157715,70.909545898438,69.769233703613,68.618522644043,67.512016296387,66.532516479492,65.539367675781,64.551139831543,63.818206787109,63.204803466797,62.560050964355,61.945331573486,61.375255584717,60.858936309814,60.453773498535,60.205677032471,60.041988372803,60.064357757568,60.060108184814,60.017120361328,59.967014312744,59.947967529297,59.964233398438,59.972103118896,59.947597503662,59.973815917969,60.033325195313,60.088264465332,60.150947570801,60.227069854736,60.326652526855,60.427085876465,60.52583694458,60.816654205322,61.182647705078,61.625347137451,62.113582611084,62.632556915283,63.175468444824,63.69845199585,64.220474243164,64.76195526123,65.224075317383,65.62036895752,65.870445251465,66.01244354248,66.076736450195,66.112838745117,66.109550476074,66.07096862793,66.015159606934,65.926979064941,65.806327819824,65.767181396484,65.781951904297,65.781593322754,65.781600952148,65.872039794922,66.31494140625,67.383941650391,68.619552612305,69.574501037598,70.339935302734,71.139419555664,71.93758392334,72.694107055664,73.299613952637,73.834777832031,74.27222442627,74.770149230957,75.263366699219,75.81812286377,76.369812011719,76.821166992188,77.273216247559,77.73690032959,78.148506164551,78.639183044434,79.123626708984,79.59733581543,80.070213317871,80.533767700195,80.97843170166,81.436241149902,81.884460449219,82.177047729492,82.410087585449,82.653755187988,82.919586181641,83.174468994141,83.247787475586,83.300476074219,83.444374084473,83.559226989746,83.635864257813,83.714744567871,83.755233764648,83.766235351563,83.751663208008,83.725479125977,83.717704772949,83.686470031738,83.714385986328,83.785697937012,83.82559967041,83.740875244141,83.754051208496,83.797592163086,83.865203857422,83.934341430664,83.977272033691,83.813117980957,83.777809143066,83.741333007813,83.717681884766,83.724975585938,83.760284423828,83.839950561523,83.93253326416,83.963409423828,83.96915435791,83.980758666992,84.058555603027,84.054473876953,83.986267089844,83.973121643066,84.050132751465,84.160438537598,84.297653198242,84.461669921875,84.633155822754,84.792663574219,84.861259460449,85.021919250488,85.335556030273,85.665092468262,86.013534545898,86.520927429199,87.080474853516,87.754035949707,88.423362731934,89.122131347656,89.898063659668,90.671394348145,91.445960998535,92.225624084473,93.077941894531,93.950408935547,94.820175170898,95.691375732422,96.566879272461,97.447357177734,98.324829101563,99.152473449707,99.898902893066,100.63773345947,101.31400299072,101.9884262085,102.63648986816,103.28112792969,103.90592193604,104.49759674072,105.02727508545,105.49910736084,105.96287536621,106.45506286621,106.99730682373,107.53645324707,108.07562255859,108.61478424072,109.15395355225,109.69383239746,110.2338180542,110.62607574463,110.95963287354,111.2982635498,111.55086517334,111.73449707031,111.92474365234,112.08484649658,112.15166473389,112.22483062744,112.29830169678,112.34887695313,112.34945678711,112.35353088379,112.35775756836,112.35596466064,112.34892272949,112.34208679199,112.3353729248,112.33982086182,112.34713745117,112.35416412354,112.36044311523,112.36279296875,112.36532592773,112.3684463501,112.373046875,112.37796783447,112.38621520996,112.40334320068,112.43909454346,112.46976470947,112.46741485596,112.46875762939,112.46866607666,112.43040466309,112.37609100342,112.37773895264,112.38132476807,112.38324737549,112.38402557373,112.38407897949,112.38375854492,112.38220977783,112.38120269775,112.38126373291,112.3800201416,112.37677001953,112.36586761475,112.35587310791,112.35417938232,112.35261535645,112.35117340088,112.34973907471,112.34827423096,112.34683990479,112.34536743164,112.34390258789,112.34246826172,112.34099578857,112.33959960938,112.33822631836,112.3367767334,112.33534240723,112.33400726318,112.33255004883,112.33140563965,112.3325881958,112.35865783691,112.42211151123,112.48976135254,112.66506195068,112.88754272461,113.18305206299,113.56198883057,113.93543243408,114.43043518066,114.96475982666,115.49941253662,116.10172271729,116.75117492676,117.18330383301,117.61092376709,118.24701690674,118.78611755371,119.40601348877,120.03057861328,120.65432739258,121.27825927734,121.89861297607,122.5160369873,123.1344909668,123.7540512085,124.37087249756,124.98425292969,125.59845733643,126.2138671875,126.82479858398,127.39557647705,127.96444702148,128.5348815918,129.0739440918,129.5020904541,129.93682861328,130.37171936035,130.80699157715,131.24290466309,131.67900085449,132.09432983398,132.41229248047,132.73097229004,133.05041503906,133.37017822266,133.5440826416,133.6060333252,133.68013000488,133.75408935547,133.78639221191,133.77897644043,133.77487182617,133.77119445801,133.77157592773,133.77221679688,133.77897644043,133.79173278809,133.82815551758,133.87922668457,133.92207336426,133.98226928711,134.03001403809,134.11303710938,134.19929504395,134.24299621582,134.27224731445,134.27603149414,134.27755737305,134.28045654297,134.28709411621,134.30450439453,134.36773681641,134.46301269531,134.70195007324,134.85604858398,135.09735107422,135.44158935547,135.82316589355,136.40960693359,136.79055786133,137.30560302734,137.59729003906,137.71792602539,137.74833679199,137.89916992188,138.03128051758,138.0701751709,138.31237792969,138.81698608398,139.37344360352,139.97065734863,140.45805358887,140.88185119629,141.56683349609,142.33265686035,143.10055541992,143.82328796387,144.55023193359,145.29196166992,145.9158782959,146.54954528809,147.17517089844,147.78308105469,148.32250976563,148.8597869873,149.33706665039,149.76040649414,150.19630432129,150.63116455078,151.04330444336,151.52737426758,152.00866699219,152.4642791748,152.90983581543,153.35649108887,153.82550048828,154.3044128418,154.80415344238,155.30052185059,155.72805786133,156.36079406738,157.07037353516,157.61535644531,158.07684326172,158.443359375,158.83418273926,159.32554626465,159.791015625,160.15315246582,160.52882385254,160.82817077637,161.08168029785,161.22616577148,161.35543823242,161.51240539551,161.62353515625,161.76168823242,161.91564941406,161.97459411621,162.0414276123,162.11874389648,162.18948364258,162.29209899902,162.33027648926,162.3455657959,162.34420776367,162.33023071289,162.30317687988,162.26374816895,162.21310424805,162.14691162109,162.083984375,162.0189666748,161.91796875,161.80859375,161.63842773438,161.41777038574,161.05564880371,160.68678283691,160.32144165039,159.95722961426,159.55973815918,159.03446960449,158.55238342285,158.12521362305,157.65127563477,157.31661987305,156.99432373047,156.7066192627,156.42984008789,156.05014038086,155.73849487305,155.44221496582,155.12986755371,154.79893493652,154.35485839844,153.89036560059,153.28692626953,152.67799377441,152.05206298828,151.42277526855,150.79907226563,150.2491607666,149.70350646973,149.1764831543,148.6630859375,148.20664978027,147.81645202637,147.50437927246,147.36750793457,147.2763671875,147.27862548828,147.25785827637,147.23249816895,147.20755004883,147.18263244629,147.15769958496,147.13035583496,147.10249328613,147.07469177246,147.04682922363,147.01921081543,146.99179077148,146.94979858398,146.82620239258,146.70886230469,146.58647155762,146.4663848877,146.35656738281,146.25189208984,146.13336181641,146.20944213867,146.30181884766,146.33708190918,146.09837341309,145.84246826172,145.58680725098,145.33079528809,145.07450866699,144.81848144531,144.55500793457,144.28012084961,144.00559997559,143.73208618164,143.45869445801,143.18542480469,142.91032409668,142.60514831543,142.29782104492,141.99812316895,141.73081970215,141.43209838867,141.24273681641,141.07368469238,140.88185119629,140.71862792969,140.59996032715,140.43739318848,140.22727966309,140.17237854004,140.18957519531,140.18701171875,140.18273925781,140.1905670166,140.0838470459,139.77098083496,139.47006225586,139.1856842041,138.99922180176,138.81257629395,138.62498474121,138.43774414063,138.25274658203,138.10957336426,137.97392272949,137.84625244141,137.76806640625,137.69902038574,137.62054443359,137.54229736328,137.4642791748,137.40953063965,137.41889953613,137.38909912109,137.32246398926,137.25900268555,137.20309448242,137.13340759277,137.06657409668,136.99172973633,136.92193603516,136.8491973877,136.77276611328,136.65272521973,136.55801391602,136.44859313965,136.3271484375,136.20306396484,136.0684967041,135.8564453125,135.63479614258,135.45758056641,135.28244018555,135.08406066895,134.90809631348,134.73448181152,134.56323242188,134.29795837402,134.02111816406,133.69711303711,133.36517333984,132.97993469238,132.59274291992,132.20771789551,131.82276916504,131.43412780762,131.01762390137,130.60415649414,130.27680969238,129.98030090332,129.71415710449,129.49472045898,129.32211303711,129.22805786133,129.15246582031,129.16987609863,129.21287536621,129.36172485352,129.5636138916,129.76245117188,129.96757507324,130.16864013672,130.29739379883,130.35949707031,130.39418029785,130.43287658691,130.46055603027,130.46932983398,130.47734069824,130.48390197754,130.51231384277,130.54057312012,130.56039428711,130.58157348633,130.60064697266,130.6187286377,130.6111907959,130.56590270996,130.4574432373,130.27815246582,130.0225982666,129.76434326172,129.52799987793,129.1078338623,128.83187866211,128.56132507324,128.30548095703,128.06910705566,127.84022521973,127.623046875,127.31365966797,127.13179016113,126.96080780029,126.80015563965,126.58234405518,126.38465118408,126.22295379639,126.09387969971,125.94053649902,125.75621032715,125.55884552002,125.4019317627,125.27965545654,125.1752243042,125.07720184326,124.9792175293,124.94245910645,124.92318725586,124.90361785889,124.88639068604,124.87945556641,124.8757019043,124.87298583984,124.87084960938,124.86882781982,124.86821746826,124.86783599854,124.86783599854,124.86770629883,124.86813354492,124.86805725098,124.86894226074,124.8736114502,124.87905883789,124.88621520996,124.89382171631,124.89948272705,124.90194702148,124.89936828613,124.87549591064,124.83332824707,124.79127502441,124.7116317749,124.60566711426,124.46910858154,124.32810974121,124.19844818115,123.99582672119,123.83582305908,123.57092285156,123.27872467041,122.93531036377,122.56819915771,122.1969909668,121.82521820068,121.46734619141,121.10089111328,120.7345123291,120.36568450928,119.99349212646,119.60890197754,119.33232879639,118.97257232666,118.60839080811,118.27839660645,118.0638961792,117.74739074707,117.42771148682,117.11115264893,116.79651641846,116.46816253662,116.10134887695,115.72702789307,115.34970092773,114.96739196777,114.52088165283,114.06119537354,113.60251617432,113.12480163574,112.62568664551,112.11163330078,111.53731536865,110.94874572754,110.2992401123,109.6255645752,108.91653442383,108.1985244751,107.48458862305,106.81170654297,106.14142608643,105.46897888184,104.79666900635,104.12261962891,103.4513168335,102.78201293945,102.12453460693,101.45671844482,100.7836151123,100.0611114502,99.1796875,98.241546630859,97.624382019043,96.949287414551,96.258781433105,95.48762512207,94.47395324707,93.517501831055,92.765960693359,91.970802307129,91.120941162109,90.386054992676,89.692893981934,89.059211730957,88.430068969727,87.933959960938,87.556755065918,87.222236633301,86.759162902832,85.830543518066,84.772003173828,83.60905456543,82.362205505371,81.355255126953,79.976135253906,78.573059082031,77.189765930176,75.770683288574,74.362678527832,72.95043182373,71.51774597168,70.11994934082,68.694702148438,67.289138793945,65.873626708984,64.51383972168,63.29211807251,62.770896911621,62.570400238037,62.395610809326,62.35400390625,62.451095581055,63.164310455322,63.98543548584,64.879600524902,65.779396057129,66.410636901855,66.841041564941,67.270172119141,67.967552185059,68.767311096191,69.391258239746,70.215347290039,70.831726074219,71.429809570313,72.027610778809,72.595489501953,73.168395996094,73.729454040527,74.257514953613,74.816482543945,75.342330932617,75.868698120117,76.407089233398,77.20964050293,77.774208068848,78.579948425293,79.40283203125,80.236114501953,81.01700592041,81.807952880859,82.604637145996,83.379867553711,84.164710998535,84.962760925293,85.763580322266,86.542900085449,87.325859069824,88.114822387695,88.91040802002,89.711044311523,90.51668548584,91.29532623291,92.079200744629,92.865875244141,93.656585693359,94.45825958252,95.257064819336,96.05965423584,96.773864746094,97.390579223633,98.019958496094,98.659324645996,99.29972076416,99.945785522461,100.56703948975,101.19738006592,101.82681274414,102.46045684814,103.10611724854,103.715965271,104.18256378174,104.63664245605,105.09930419922,105.56562805176,106.03176116943,106.52851867676,107.00524902344,107.4408416748,107.79432678223,108.07867431641,108.31761169434,108.55194091797,108.78923797607,109.02587127686,109.27169799805,109.51780700684,109.76667785645,110.01305389404,110.23866271973,110.29372406006,110.3387298584,110.3850479126,110.43131256104,110.47826385498,110.52459716797,110.57093048096,110.61745452881,110.66454315186,110.71080780029,110.75718688965,110.80415344238,110.85050201416,110.89686584473,110.94343566895,110.9891204834,111.0354385376,111.08172607422,111.12901306152,111.17539215088,111.22171020508,111.26811981201,111.31555175781,111.3618850708,111.40821838379,111.4556427002,111.50210571289,111.54846954346,111.59475708008,111.64030456543,111.68679046631,111.73310852051,111.77911376953,111.82558441162,111.8719329834,111.9186630249,111.96459197998,112.0108795166,112.05739593506,112.10353851318,112.14986419678,112.19692230225,112.24433898926,112.291847229,112.33715057373,112.38373565674,112.42993927002,112.47647094727,112.51847076416,112.55424499512,112.60908508301,112.62580871582,112.59592437744,112.54663085938,112.48062896729,112.42334747314,112.38693237305,112.39492034912,112.41689300537,112.40998840332,112.39083862305,112.38509368896,112.37784576416,112.37313079834,112.36863708496,112.36525726318,112.36267089844,112.36051940918,112.35488128662,112.34762573242,112.34060668945,112.33498382568,112.34079742432,112.34789276123,112.35470581055,112.35903167725,112.35436248779,112.35008239746,112.34600067139,112.3112487793,112.23292541504,112.15892028809,112.08730316162,111.94956970215,111.75564575195,111.56832122803,111.35007476807,111.00741577148,110.66728210449,110.30449676514,109.77880096436,109.23904418945,108.68895721436,108.14138031006,107.60804748535,107.07157897949,106.52496337891,106.01569366455,105.54906463623,105.07265472412,104.52828216553,103.95567321777,103.32000732422,102.67707824707,102.02126312256,101.34281921387,100.65560150146,99.902526855469,99.131622314453,98.608467102051,97.74983215332,96.883392333984,96.020935058594,95.166938781738,94.3193359375,93.469062805176,92.615844726563,91.820976257324,91.053909301758,90.295860290527,89.52596282959,88.781105041504,88.109573364258,87.439437866211,86.789215087891,86.268074035645,85.842292785645,85.499183654785,85.169380187988,84.899299621582,84.795867919922,84.595161437988,84.358245849609,84.218574523926,84.082908630371,83.894737243652,83.922058105469,84.003044128418,84.050514221191,84.065406799316,84.058372497559,84.001922607422,83.991142272949,83.970321655273,83.748764038086,83.703956604004,83.700584411621,83.701377868652,83.712738037109,83.731758117676,83.707962036133,83.702018737793,83.716026306152,83.720985412598,83.692802429199,83.684265136719,83.699668884277,83.702537536621,83.709861755371,112.45803070068,112.45802307129,112.45850372314,112.45875549316,112.45848846436,112.43785095215,112.39141082764,112.33924102783,112.18911743164,111.87289428711,111.49684143066,110.905128479,109.96173858643,109.34334564209,108.76661682129,108.17400360107,107.53018951416,106.90802001953,106.29379272461,105.76393127441,105.28477478027,104.889793396,104.45854949951,104.36238098145,104.3441696167,104.27579498291,104.40928649902,104.71323394775,104.70583343506,104.60041809082,104.51459503174,104.4529876709,104.41796112061,104.41638183594,104.47577667236,104.59432220459,104.76209259033,104.96974945068,105.22999572754,105.66212463379,106.10134124756,106.5447769165,107.02353668213,107.49987792969,107.77554321289,108.02854156494,108.3337097168,108.63754272461,108.93589782715,109.2689666748,109.86669921875,110.46306610107,111.008644104,111.55435180664,112.06771850586,112.57830047607,113.10473632813,113.62861633301,114.1734085083,114.70558929443,115.25048065186,115.86261749268,116.54302978516,117.33017730713,118.11849212646,118.52839660645,119.19912719727,119.68673706055,120.20230102539,120.69635009766,121.41674804688,122.13184356689,122.86894226074,123.55953979492,124.08722686768,124.45373535156,125.18278503418,125.72940063477,126.45567321777,127.16407775879,127.85852050781,128.29943847656,128.74472045898,129.20663452148,129.54440307617,130.08018493652,130.32766723633,130.83428955078,131.0534362793,131.31275939941,131.48143005371,131.64060974121,131.74073791504,131.74531555176,131.59390258789,131.27397155762,130.85757446289,130.50480651855,130.29190063477,130.08149719238,129.90158081055,129.55140686035,129.02494812012,128.47236633301,127.89585876465,127.5983581543,127.39221954346,127.14535522461,126.63962554932,126.29138183594,126.05952453613,112.40319061279,112.40295410156,112.40322113037,112.40322113037,112.40274810791,112.40056610107,112.39614105225,112.38505554199,112.36515045166,112.35703277588,77.071746826172,76.839797973633,76.719535827637,76.663688659668,76.618980407715,76.597114562988,76.623054504395,76.698509216309,76.739418029785,76.745643615723,76.750091552734,76.722480773926,76.722206115723,76.722198486328,76.720947265625,76.720558166504,76.721626281738,76.723709106445,76.746276855469,76.859527587891,76.828506469727,76.775802612305,76.745559692383,76.699600219727,76.653450012207,76.607208251953,76.562385559082,76.530418395996,76.512382507324,76.496742248535,76.483879089355,76.473564147949,76.46614074707,76.463325500488,76.456657409668,76.763229370117,76.732360839844,76.734733581543,76.568572998047,76.409240722656,76.405586242676,76.397811889648,76.39143371582,76.308090209961,75.912544250488,75.253051757813,74.466903686523,73.758193969727,73.210807800293,72.99641418457,72.908325195313,72.916236877441,72.972564697266,73.019889831543,72.900016784668,72.689376831055,76.187469482422,76.390739440918,76.525489807129,76.60546875,76.658432006836,67.459121704102,67.30965423584,67.287223815918,67.321403503418,67.671691894531,68.200645446777,68.677124023438,69.181327819824,69.827713012695,71.035339355469,71.890029907227,73.159873962402,74.435417175293,75.333312988281,75.932739257813,76.425743103027,76.794403076172,77.029289245605,77.379783630371,77.58487701416,77.747093200684,78.247138977051,78.366470336914,78.308517456055,78.028907775879,77.398445129395,77.116722106934,76.782363891602,76.302932739258,75.763687133789,75.309463500977,74.832130432129,74.570053100586,74.527374267578,74.46639251709,74.853080749512,75.498016357422,76.039741516113,76.74454498291,77.539115905762,78.413688659668,79.180847167969,80.429649353027,81.514976501465,82.464630126953,83.130294799805,83.593658447266,83.915435791016,84.125411987305,84.284530639648,84.401542663574,84.458602905273,84.52946472168,84.550018310547,84.572975158691,84.57364654541,84.564468383789,84.540702819824,84.50577545166,84.456611633301,84.412635803223,84.290161132813,84.188293457031,84.026916503906,83.641777038574,83.484146118164,83.337631225586,83.270988464355,83.201431274414,83.191566467285,83.193885803223,83.194442749023,83.192420959473,83.195121765137,83.197792053223,83.23299407959,83.303298950195,83.501365661621,84.250846862793,85.284408569336,85.871948242188,86.343803405762,86.654640197754,87.030784606934,87.553115844727,88.457130432129,89.05298614502,89.478874206543,90.027770996094,90.493141174316,90.844772338867,91.506507873535,92.046501159668,92.584396362305,93.167991638184,93.965690612793,94.867462158203,95.824867248535,96.286911010742,96.627311706543,97.533798217773,98.072845458984,98.540649414063,99.030532836914,99.58699798584,100.06247711182,100.5306930542,100.79029846191,101.0823135376,101.81778717041,102.37188720703,102.69918823242,103.0359954834,103.51496887207,103.81354522705,104.1247253418,104.41882324219,104.95673370361,105.4889755249,106.02769470215,106.22444152832,106.49648284912,106.79967498779,106.78858947754,106.85108947754,106.72305297852,106.70056915283,106.7720489502,106.82858276367,106.87825775146,106.98178863525,107.13270568848,107.32128143311,107.54008483887,107.82137298584,108.0963973999,108.84899139404,109.49355316162,109.96444702148,110.40181732178,110.7512512207,111.28052520752,111.92189025879,112.56293487549,113.24964904785,113.98127746582,114.57110595703,115.05339813232,115.39379882813,115.69483947754,115.9303894043,116.15641784668,116.36331939697,116.53527832031,116.706199646,116.88369750977,117.09526824951,117.35398864746,117.5690612793,117.66389465332,117.70541381836,117.73052978516,117.75569152832,117.7853012085,117.80877685547,117.83136749268,117.82752227783,117.79647064209,117.76759338379,117.76802825928,117.81871032715,117.88345336914,118.11301422119,118.51895904541,118.83993530273,119.10949707031,78.533050537109,78.803344726563,79.417198181152,79.849082946777,80.53687286377,80.951393127441,81.306381225586,81.747314453125,82.087463378906,82.467079162598,82.808685302734,83.193206787109,83.43913269043,83.673614501953,83.816734313965,83.950309753418,84.083587646484,84.18798828125,84.255889892578,84.307182312012,84.270637512207,83.975997924805,83.535026550293,82.569305419922,81.346572875977,80.153160095215,79.389381408691,78.707565307617,78.455665588379,78.254920959473,78.072738647461,77.780456542969,77.516136169434,77.141487121582,76.819351196289,76.47721862793,76.14289855957,75.817222595215,75.444770812988,75.034950256348,74.564781188965,74.166229248047,73.805755615234,73.350982666016,73.073402404785,73.045967102051,73.059173583984,73.152626037598,73.279571533203,73.453750610352,73.633682250977,130.9026184082,131.18594360352,131.8681640625,132.54122924805,133.0867767334,133.64739990234,134.2004699707,134.68434143066,135.14260864258,135.66485595703,136.16410827637,136.93637084961,137.53637695313,138.02673339844,138.76676940918,139.50170898438,140.08757019043,140.81629943848,141.55368041992,142.2850189209,143.0034942627,143.49201965332,144.10990905762,144.60632324219,145.09796142578,145.56802368164,146.03620910645,146.45327758789,146.8733215332,147.3018951416,147.72424316406,148.15965270996,148.59197998047,149.02464294434,149.4581451416,149.98306274414,150.64422607422,151.28436279297,151.89538574219,152.50733947754,153.09112548828,153.62019348145,154.14057922363,154.60055541992,154.94905090332,155.30799865723,155.66972351074,156.02375793457,156.37768554688,156.68383789063,156.8607635498,157.07760620117,157.30351257324,157.51884460449,157.72550964355,157.87309265137,158.01031494141,158.14602661133,158.27743530273,158.40007019043,158.52033996582,158.62782287598,158.78335571289,158.97172546387,159.16567993164,159.3701171875,159.57676696777,159.78230285645,159.98863220215,160.19209289551,160.39706420898,160.63499450684,160.90957641602,161.1774597168,161.44964599609,161.72033691406,161.98542785645,162.23043823242,162.46559143066,162.69526672363,162.90072631836,163.05963134766,163.2194519043,163.32595825195,163.30892944336,163.24879455566,163.29484558105,163.30020141602,163.34049987793,163.36613464355,163.38838195801,163.40441894531,163.42614746094,163.40176391602,163.34436035156,163.24436950684,163.07743835449,162.85649108887,162.56533813477,162.25062561035,161.69201660156,161.32574462891,160.59574890137,159.85693359375,159.0991973877,158.34312438965,157.5856628418,156.82781982422,156.06948852539,155.31686401367,154.57180786133,153.82063293457,153.07627868652,152.39353942871,151.78199768066,151.23492431641,150.73670959473,150.51626586914,150.46385192871,150.31910705566,150.20524597168,149.96424865723,149.77478027344,149.64974975586,149.48631286621,149.27172851563,148.96449279785,148.43067932129,147.88995361328,147.31532287598,146.72937011719,146.1029510498,145.48046875,144.78129577637,144.02027893066,143.28149414063,142.53413391113,142.03260803223,141.28668212891,140.62925720215,139.99127197266,139.39778137207,138.83062744141,138.31315612793,137.9264831543,137.91500854492,137.77981567383,137.67051696777,137.67848205566,137.61399841309,137.50964355469,137.16050720215,136.6194152832,136.07490539551,135.71054077148,135.19346618652,134.87564086914,134.68911743164,134.54866027832,134.37721252441,134.32040405273,134.26527404785,134.23471069336,134.21792602539,134.21452331543,134.21260070801,134.21025085449,134.20083618164,134.17387390137,134.10134887695,134.03135681152,133.95402526855,133.88726806641,133.82530212402,133.77015686035,133.73173522949,133.71879577637,133.70861816406,133.70852661133,133.70776367188,133.71034240723,133.71429443359,133.71792602539,133.71356201172,133.63928222656,133.56706237793,133.49250793457,133.40524291992,133.09164428711,132.77293395996,132.45614624023,132.13438415527,131.76235961914,131.32727050781,130.88966369629,130.44958496094,130.00961303711,129.57241821289,129.13995361328,128.64933776855,128.0764465332,127.5002746582,126.93071746826,126.33219909668,125.71282196045,125.09270477295,124.47352600098,123.85420227051,123.22928619385,122.60619354248,121.98832702637,121.36138153076,120.75068664551,120.24082183838,119.59646606445,118.95405578613,118.32206726074,117.67372894287,117.01257324219,116.49850463867,116.06035614014,115.62371063232,115.25047302246,114.81748199463,114.28257751465,113.79839324951,113.4348526001,113.06579589844,112.78606414795,112.56852722168,112.40843200684,112.34449005127,112.28353118896,112.26554870605,112.26849365234,112.26982116699,112.2716217041,112.27318572998,112.27397155762,112.27561950684,112.27700042725,112.2787322998,112.28025817871,112.28142547607,112.28294372559,112.28366851807,112.28594207764,112.28743743896,112.28874206543,112.29014587402,112.29174041748,112.29339599609,112.30295562744,112.31401062012,112.31694030762,112.31756591797,112.31818389893,112.31866455078,112.32049560547,112.32046508789,112.32148742676,112.32038116455,112.31928253174,112.3166809082,112.31401062012,112.32006835938,112.37412261963,112.39443206787,112.39470672607,112.38511657715,112.38021087646,112.39962768555,112.40476226807,112.4052734375,112.40430450439,112.40394592285,112.40495300293,112.40619659424,112.40539550781,112.40534973145,149.89492797852,150.10856628418,150.25282287598,150.39643859863,150.57943725586,162.96923828125,162.91354370117,162.84812927246,162.72074890137,162.52445983887,162.35313415527,162.09996032715,161.83467102051,161.49401855469,161.35307312012,161.26313781738,161.22004699707,162.93405151367,162.33825683594,162.42239379883,162.48760986328,162.5771484375,162.65872192383,162.7230682373,162.78540039063,162.85699462891,162.92733764648,162.93460083008,162.89758300781,162.82453918457,162.73184204102,162.61578369141,162.54187011719,162.44863891602,162.23115539551,150.71124267578,150.79331970215,150.91191101074,162.11758422852,162.15982055664,162.29544067383,162.69174194336,163.6209564209,164.44697570801,164.8044128418,165.29954528809,165.96740722656,166.53443908691,167.03796386719,167.58843994141,168.40451049805,169.24485778809,169.83500671387,170.61343383789,171.67031860352,172.95288085938,174.03833007813,174.91059875488,175.87037658691,177.07415771484,178.08303833008,178.82682800293,178.9759979248,178.97033691406,179.18656921387,179.25028991699,179.26150512695,179.13801574707,178.97062683105,178.95318603516,178.97009277344,178.97096252441,178.9704284668,178.97116088867,178.96990966797,178.9677734375,178.95860290527,178.90614318848,178.74479675293,178.4850769043,178.13096618652,177.72380065918,177.00285339355,176.21951293945,175.28254699707,174.26974487305,173.33692932129,172.54170227051,171.7639465332,171.30862426758,171.06083679199,170.72415161133,170.08563232422,169.64791870117,169.15138244629,168.51333618164,167.82659912109,167.09074401855,166.26824951172,165.57600402832,164.8444519043,164.1586151123,163.58894348145,163.01918029785,162.53079223633,162.08097839355,161.37117004395,160.31169128418,159.80139160156,159.0569152832,158.23147583008,157.41778564453,156.76364135742,156.28511047363,155.81469726563,155.25137329102,154.67002868652,154.01721191406,153.0553894043,152.31127929688,151.73240661621,151.23466491699,150.56353759766,149.89028930664,149.20707702637,148.56768798828,147.92239379883,147.47807312012,147.24853515625,147.23258972168,147.23838806152,147.24694824219,147.25175476074,147.27709960938,147.36053466797,147.47026062012,147.61497497559,148.00073242188,148.39869689941,148.89476013184,149.39405822754,149.93217468262,150.46997070313,151.0380859375,151.6619720459,152.27099609375,152.87968444824,153.2727355957,153.66973876953,154.24662780762,154.77861022949,155.15087890625,155.44613647461,155.72958374023,156.00820922852,156.40922546387,156.67572021484,156.9497833252,157.24848937988,157.71900939941,158.17506408691,158.59335327148,159.05763244629,159.54940795898,159.83004760742,160.19441223145,160.56234741211,160.92979431152,161.29528808594,161.56233215332,161.68809509277,161.81143188477,161.92668151855,162.05116271973,162.13304138184,162.19757080078,162.24263000488,162.27514648438,162.29791259766,162.31057739258,162.31260681152,162.2982635498,162.2239074707,162.12139892578,162.01728820801,161.9372253418,161.87348937988,161.76249694824,161.61630249023,161.48863220215,161.38116455078,161.20149230957,160.97059631348,160.76617431641,160.53720092773,160.29592895508,160.02600097656,159.58888244629,159.09722900391,158.5511932373,158.13130187988,157.6965637207,157.18939208984,156.53981018066,155.94020080566,155.32174682617,154.76821899414,154.45037841797,153.96516418457,153.48049926758,153.03271484375,152.59080505371,152.146484375,151.68142700195,151.17308044434,150.74055480957,150.32205200195,149.89926147461,149.47499084473,150.94889831543,150.76231384277,150.6657409668,150.57783508301,150.53094482422,150.55892944336 - 694.42608642578,696.17077636719,699.41247558594,703.11041259766,706.88787841797,710.73608398438,714.53991699219,718.18176269531,720.33392333984,722.35852050781,725.35003662109,727.59527587891,730.04846191406,731.88592529297,732.787109375,733.43072509766,734.65356445313,735.71362304688,736.62573242188,737.39068603516,737.98040771484,738.46411132813,738.78271484375,739.01959228516,739.06121826172,738.98754882813,738.8212890625,738.49768066406,738.17248535156,737.87573242188,737.59228515625,737.31457519531,737.0322265625,736.67150878906,736.21862792969,735.49035644531,734.70379638672,733.88385009766,732.76751708984,731.28314208984,728.95758056641,726.50610351563,723.97644042969,721.31304931641,719.21881103516,716.99127197266,714.63586425781,711.18780517578,708.04528808594,704.28552246094,700.39465332031,696.45227050781,692.32098388672,688.22418212891,685.76605224609,684.3017578125,683.53491210938,683.25744628906,683.38201904297,683.93890380859,685.08361816406,686.58245849609,688.73706054688,692.052734375,695.52374267578,698.06134033203,700.74530029297,704.70788574219,708.51635742188,712.18218994141,714.37054443359,716.29791259766,717.95892333984,719.1357421875,720.14086914063,721.61187744141,722.92657470703,724.08679199219,724.88055419922,725.20977783203,725.35638427734,725.60662841797,725.81475830078,725.91290283203,725.91442871094,725.89019775391,725.86602783203,725.84161376953,725.85076904297,725.8447265625,725.82440185547,725.80358886719,725.77221679688,725.64038085938,725.52453613281,725.48376464844,725.50891113281,725.61834716797,725.83099365234,726.11364746094,726.49505615234,727.06146240234,727.74468994141,728.67492675781,729.49517822266,730.76574707031,732.17730712891,733.65631103516,735.04498291016,736.35900878906,737.65679931641,738.83050537109,740.0185546875,741.3037109375,742.59259033203,743.80310058594,744.96997070313,746.02355957031,746.98126220703,747.89910888672,748.74853515625,749.58197021484,750.26837158203,750.64459228516,750.87042236328,751.03857421875,751.19989013672,751.34423828125,751.32360839844,751.29412841797,751.20910644531,751.08068847656,750.88970947266,750.62957763672,750.27001953125,749.81219482422,749.24029541016,748.58721923828,747.92352294922,747.17572021484,746.32366943359,745.39801025391,744.49951171875,743.16717529297,741.75177001953,740.38452148438,738.40631103516,736.78839111328,734.94653320313,732.09515380859,729.16607666016,726.33538818359,724.04925537109,721.30242919922,717.71875,715.07238769531,711.14404296875,706.93884277344,702.63146972656,698.34027099609,694.18096923828,691.35815429688,688.90698242188,686.64105224609,684.02410888672,681.40661621094,679.64660644531,678.26684570313,677.16198730469,676.29321289063,675.07867431641,673.86547851563,672.78674316406,671.97290039063,671.58142089844,671.09307861328,670.76184082031,670.46899414063,670.22912597656,670.00323486328,669.77716064453,669.55096435547,669.32476806641,669.0986328125,668.873046875,668.63781738281,668.33355712891,668.03240966797,667.73199462891,667.43182373047,667.1259765625,666.82189941406,666.52606201172,666.50152587891,667.21740722656,668.28045654297,670.56884765625,673.91094970703,675.98779296875,677.42846679688,678.37475585938,679.30755615234,680.54797363281,681.60528564453,682.11218261719,682.19537353516,681.86309814453,681.10278320313,679.89770507813,678.38012695313,676.84692382813,675.11395263672,673.14764404297,671.09576416016,669.05541992188,666.97210693359,665.07342529297,663.126953125,661.37066650391,660.16497802734,659.34527587891,658.82208251953,658.54888916016,658.61346435547,658.83734130859,659.22216796875,659.60211181641,660.04406738281,660.49206542969,660.95233154297,661.40856933594,661.86340332031,662.31524658203,662.78125,663.23638916016,663.69396972656,664.11364746094,664.47106933594,664.78479003906,665.07257080078,665.30920410156,665.47521972656,665.58312988281,665.70568847656,665.87884521484,666.06359863281,666.28503417969,666.63958740234,667.06396484375,667.66473388672,668.30377197266,668.94927978516,669.73352050781,670.54058837891,671.62152099609,672.82257080078,674.49066162109,676.11285400391,677.73748779297,679.66986083984,681.90002441406,684.26715087891,687.42004394531,690.12860107422,693.22424316406,697.79156494141,700.62359619141,703.42767333984,707.45843505859,711.48480224609,715.39495849609,718.22979736328,720.50024414063,723.75146484375,726.81427001953,729.69567871094,732.37945556641,733.99273681641,735.36065673828,736.54266357422,738.06011962891,739.48217773438,740.76947021484,741.86999511719,742.80548095703,743.57739257813,744.18774414063,744.67211914063,745.14642333984,745.60510253906,746.07806396484,746.53399658203,746.89038085938,747.04309082031,747.01385498047,746.95184326172,746.88848876953,746.79870605469,746.56500244141,746.19146728516,745.76959228516,745.17254638672,744.44201660156,743.70062255859,742.93518066406,742.14727783203,741.28118896484,740.29449462891,739.18005371094,737.88140869141,736.49542236328,735.14080810547,733.78070068359,732.38751220703,731.02404785156,729.72332763672,728.57641601563,727.43829345703,726.28228759766,725.17596435547,724.20227050781,723.38482666016,722.72045898438,722.28717041016,721.96636962891,721.66754150391,721.52178955078,721.47729492188,721.43603515625,721.39422607422,721.35241699219,721.33959960938,721.39929199219,721.46350097656,721.50360107422,721.52514648438,721.54815673828,721.59893798828,721.62286376953,721.63391113281,721.54327392578,721.24908447266,720.81140136719,720.36724853516,719.84136962891,719.12670898438,718.42517089844,717.51055908203,716.28393554688,714.78497314453,713.16046142578,710.98468017578,709.03265380859,706.90063476563,704.50720214844,700.97253417969,697.25457763672,694.69860839844,690.71032714844,686.70709228516,682.95697021484,680.76690673828,679.31591796875,678.37945556641,677.93896484375,678.09674072266,678.81231689453,680.00268554688,681.56219482422,683.50616455078,685.68145751953,688.71228027344,692.56842041016,695.38714599609,699.46319580078,703.49969482422,707.3369140625,709.81689453125,712.06176757813,714.15618896484,716.08679199219,718.97473144531,721.74560546875,724.29595947266,726.83355712891,729.3330078125,730.8017578125,731.91223144531,732.65118408203,732.98614501953,733.07727050781,733.11669921875,733.18914794922,733.29016113281,733.47613525391,733.66510009766,733.96282958984,734.36608886719,734.76293945313,735.07287597656,735.21142578125,735.05456542969,734.74169921875,734.21429443359,733.65490722656,733.01318359375,732.22424316406,731.52203369141,730.62658691406,729.587890625,728.36309814453,726.52819824219,725.11224365234,723.37634277344,721.23712158203,718.91326904297,715.31341552734,711.83618164063,708.27081298828,704.58831787109,700.79809570313,696.99371337891,693.23986816406,689.60693359375,687.37536621094,686.36968994141,686.11596679688,686.22546386719,686.79241943359,687.8076171875,689.22369384766,691.01513671875,692.80261230469,694.52331542969,696.42498779297,699.05340576172,703.19128417969,706.23602294922,710.25048828125,716.29150390625,722.30883789063,726.326171875,729.21148681641,731.36010742188,732.95520019531,734.20916748047,735.13916015625,735.66217041016,735.78228759766,735.47216796875,734.81536865234,733.33032226563,731.19970703125,729.01068115234,726.84442138672,724.69592285156,722.61657714844,721.85101318359,720.96545410156,718.18200683594,716.17309570313,714.15716552734,712.16326904297,710.2890625,685.35174560547,683.69812011719,681.72930908203,679.7099609375,678.00225830078,676.53729248047,675.30303955078,674.30944824219,672.94732666016,671.56384277344,670.15740966797,668.75793457031,667.37756347656,666.08135986328,664.90863037109,663.86859130859,662.99822998047,662.38458251953,661.97412109375,661.75231933594,661.71221923828,661.72479248047,661.77465820313,661.82165527344,661.81024169922,661.79663085938,661.73803710938,661.68115234375,661.62420654297,661.59002685547,661.5859375,661.58056640625,661.57537841797,661.5703125,661.5654296875,661.56018066406,661.55517578125,661.55017089844,661.54504394531,661.5400390625,661.53491210938,661.52984619141,661.52490234375,661.51977539063,661.51458740234,661.50939941406,661.5048828125,661.49981689453,661.50323486328,661.50994873047,661.51715087891,661.52313232422,661.50891113281,661.49670410156,661.408203125,661.54351806641,662.34063720703,663.44671630859,664.9482421875,667.18884277344,669.69140625,671.70697021484,673.81805419922,677.27386474609,681.37652587891,687.51086425781,693.65362548828,699.65478515625,705.85015869141,711.94390869141,718.11773681641,724.33410644531,730.54974365234,736.66809082031,742.78863525391,748.84295654297,754.890625,760.94323730469,767.06799316406,771.10064697266,773.70471191406,775.48327636719,776.95538330078,778.2001953125,779.3349609375,780.14434814453,780.3330078125,780.11267089844,779.54046630859,779.14544677734,778.91851806641,778.8388671875,778.96466064453,779.17944335938,779.39575195313,779.6103515625,779.78747558594,779.90942382813,779.93048095703,779.93310546875,779.87390136719,779.80853271484,779.74163818359,779.67565917969,779.55029296875,779.42901611328,779.31805419922,779.20343017578,779.13433837891,779.14532470703,779.19445800781,779.28204345703,779.38684082031,779.54052734375,779.70245361328,779.86022949219,779.97857666016,780.03405761719,780.05615234375,780.10101318359,780.17840576172,780.19738769531,780.21417236328,780.23083496094,780.24829101563,780.26568603516,780.33520507813,780.49499511719,780.69342041016,780.81756591797,780.84948730469,780.78308105469,780.52160644531,780.14343261719,779.51928710938,778.70544433594,777.63739013672,775.95562744141,774.10980224609,772.08685302734,770.06585693359,767.68786621094,765.87701416016,763.81402587891,760.669921875,757.53509521484,754.47924804688,751.44976806641,748.39868164063,745.46563720703,743.68432617188,742.06860351563,740.66693115234,739.05853271484,738.20306396484,737.70611572266,737.36676025391,736.90991210938,736.91931152344,730.96630859375,731.71520996094,732.82788085938,734.19940185547,735.56726074219,736.72351074219,738.185546875,740.47686767578,742.3046875,744.18841552734,746.14068603516,749.28021240234,752.46691894531,755.60766601563,758.77581787109,761.80712890625,764.04364013672,765.81555175781,767.73382568359,769.12371826172,770.69421386719,771.7763671875,772.71392822266,773.94189453125,774.90960693359,775.50604248047,776.10333251953,776.50061035156,776.69873046875,776.72497558594,776.66534423828,776.60394287109,776.54351806641,776.48266601563,776.42095947266,776.30102539063,776.18048095703,776.0595703125,775.93933105469,775.81872558594,775.72930908203,775.68707275391,775.71734619141,775.76806640625,775.818359375,775.86999511719,775.88739013672,775.81744384766,775.74664306641,775.71130371094,775.73596191406,775.82147216797,775.88995361328,775.95550537109,775.98895263672,776.05126953125,776.13812255859,776.28875732422,776.40295410156,776.48065185547,776.55096435547,776.5771484375,776.57409667969,776.57012939453,776.57299804688,776.62719726563,776.68548583984,776.74377441406,776.58392333984,775.89697265625,774.79852294922,773.22576904297,771.62200927734,769.81072998047,767.08349609375,764.27197265625,761.25628662109,758.04846191406,753.84576416016,749.64233398438,745.62567138672,739.39807128906,733.22930908203,727.15350341797,721.03625488281,714.90679931641,708.69183349609,702.68499755859,696.67114257813,690.44671630859,684.42169189453,678.38958740234,674.31573486328,671.52307128906,669.75885009766,668.30639648438,666.90777587891,665.98059082031,665.49322509766,665.29241943359,665.35986328125,665.48693847656,665.56085205078,665.57727050781,665.59838867188,665.61926269531,665.64190673828,665.60687255859,665.46496582031,665.30102539063,665.14611816406,665.06292724609,664.98980712891,664.95062255859,664.92364501953,664.92700195313,665.04833984375,665.23492431641,665.48504638672,665.66479492188,665.72424316406,665.72393798828,665.71136474609,665.69854736328,665.68762207031,665.67645263672,665.66522216797,665.65362548828,665.64239501953,665.63171386719,665.66040039063,665.75408935547,665.90863037109,666.07318115234,666.30444335938,666.57849121094,666.96160888672,667.49395751953,668.16119384766,669.01672363281,669.99530029297,671.08679199219,672.33917236328,673.74499511719,675.25671386719,676.82177734375,678.48046875,679.787109375,681.33721923828,683.17974853516,685.81433105469,688.85406494141,691.13549804688,679.40356445313,681.61712646484,683.88696289063,686.27838134766,688.41809082031,690.58972167969,685.90112304688,683.59802246094,681.36999511719,679.42645263672,677.38208007813,675.32318115234,673.35925292969,670.86541748047,668.23468017578,665.86041259766,661.14044189453,656.42919921875,651.810546875,647.45788574219,644.74243164063,642.82049560547,640.58038330078,638.46398925781,636.24432373047,634.42883300781,632.52325439453,631.13482666016,629.11694335938,627.01226806641,624.66802978516,622.11944580078,619.32708740234,616.52447509766,613.66845703125,610.73651123047,607.74542236328,604.70629882813,601.59185791016,598.46020507813,595.31573486328,592.16485595703,589.01824951172,585.80584716797,582.53790283203,579.22564697266,575.82684326172,572.373046875,568.87475585938,565.41058349609,561.91802978516,558.28515625,554.56396484375,550.70831298828,546.74517822266,542.59918212891,538.32257080078,534.10180664063,529.73486328125,525.25177001953,520.75964355469,516.21215820313,511.66519165039,507.11898803711,502.62640380859,498.10876464844,493.56164550781,489.02053833008,484.50891113281,479.96795654297,475.48239135742,471.06579589844,466.6833190918,462.34545898438,458.0661315918,453.78924560547,449.58895874023,445.45413208008,441.35977172852,437.25955200195,433.15921020508,429.11663818359,425.09353637695,421.11358642578,417.18927001953,413.36080932617,409.62582397461,405.94204711914,402.30676269531,398.76666259766,395.27377319336,391.89636230469,388.55953979492,385.28283691406,382.09381103516,378.9345703125,375.88708496094,372.95010375977,370.11450195313,367.41653442383,364.84976196289,362.42193603516,360.09234619141,357.85363769531,355.80563354492,353.94854736328,352.27658081055,350.70974731445,349.25967407227,347.9128112793,346.65573120117,345.5129699707,344.54608154297,343.71578979492,343.01556396484,342.46041870117,342.0969543457,341.86904907227,341.70642089844,341.49066162109,341.34252929688,341.19207763672,341.04132080078,340.89053344727,340.73971557617,340.58889770508,340.43814086914,340.28735351563,340.09158325195,339.88583374023,339.68008422852,339.53237915039,339.42614746094,339.26818847656,339.1130065918,338.92950439453,338.72009277344,338.50570678711,338.20928955078,337.91333007813,337.61737060547,337.32138061523,336.94882202148,336.56295776367,336.07376098633,335.46960449219,334.71441650391,333.74975585938,332.79537963867,331.50653076172,329.50479125977,327.9768371582,326.08383178711,324.0876159668,321.93673706055,319.59097290039,317.14758300781,314.62301635742,312.00018310547,309.25100708008,306.39849853516,303.46185302734,300.52886962891,297.59527587891,294.6018371582,291.55926513672,288.51345825195,285.45623779297,282.29409790039,279.02542114258,275.74554443359,272.46615600586,269.15524291992,265.80328369141,262.4514465332,259.10635375977,255.75289916992,252.39642333984,249.04013061523,245.68360900879,242.34968566895,238.98826599121,235.62637329102,232.26510620117,228.95252990723,225.7057800293,222.53489685059,219.45379638672,216.48825073242,213.58245849609,210.75401306152,208.03825378418,205.43281555176,202.97663879395,201.51280212402,199.59300231934,198.41940307617,196.82159423828,195.39479064941,194.62284851074,193.60758972168,192.85466003418,192.51483154297,192.3563079834,192.45118713379,192.83108520508,193.45126342773,194.14515686035,195.18688964844,196.0807800293,197.1803894043,198.56564331055,200.1936340332,202.74737548828,204.61892700195,207.38003540039,210.00108337402,212.42309570313,214.54496765137,216.65074157715,217.79362487793,218.86068725586,219.6180267334,220.53611755371,221.2654876709,221.79890441895,222.01727294922,222.01557922363,221.85646057129,221.59754943848,221.24816894531,220.74119567871,220.13116455078,219.44288635254,218.71894836426,217.83280944824,216.78059387207,215.56857299805,214.27044677734,212.98663330078,211.7126159668,210.43928527832,209.15567016602,207.85859680176,206.58186340332,205.27163696289,203.95523071289,202.54670715332,201.1335144043,199.61253356934,198.01289367676,196.42784118652,194.77127075195,193.00923156738,191.5876159668,189.40850830078,187.07754516602,185.31834411621,183.22972106934,181.07614135742,178.74154663086,175.23701477051,171.51617431641,168.0514831543,164.03608703613,159.82955932617,155.58207702637,152.4842376709,149.23098754883,144.33294677734,140.96566772461,137.40516662598,132.48707580566,128.77243041992,125.00286102295,121.94694519043,118.9280166626,112.95852661133,108.96253967285,104.9126739502,99.938461303711,95.921463012695,91.981781005859,88.066139221191,84.302513122559,80.589492797852,77.625778198242,75.13338470459,72.137397766113,69.432479858398,65.754470825195,61.860824584961,58.051403045654,54.282600402832,50.539722442627,46.912944793701,43.321708679199,39.672409057617,35.908813476563,32.019329071045,28.004329681396,25.135824203491,22.128232955933,18.973999023438,15.713950157166,11.198471069336,7.5339121818542,3.9936494827271,0.3429981470108,-3.3734560012817,-7.9563660621643,-12.597102165222,-18.338327407837,-24.132276535034,-29.966711044312,-35.835140228271,-41.736129760742,-47.672706604004,-53.618839263916,-59.594974517822,-65.579124450684,-71.601570129395,-77.602684020996,-83.629753112793,-89.620239257813,-95.62434387207,-101.60333251953,-107.59282684326,-113.59281921387,-119.59303283691,-125.59309387207,-131.58860778809,-137.57916259766,-143.57026672363,-149.56134033203,-155.5493927002,-161.52159118652,-167.48625183105,-173.44367980957,-179.40179443359,-185.02722167969,-190.88970947266,-196.70980834961,-202.50593566895,-208.29034423828,-214.07600402832,-219.89553833008,-225.69775390625,-231.51977539063,-237.32594299316,-243.17120361328,-249.01786804199,-254.86463928223,-260.7165222168,-266.56311035156,-272.40716552734,-278.25576782227,-284.11828613281,-289.96557617188,-295.81262207031,-301.67636108398,-307.54730224609,-313.43585205078,-319.23980712891,-325.00177001953,-329.86135864258,-334.91940307617,-338.55880737305,-342.11712646484,-346.09725952148,-349.47064208984,-352.67901611328,-356.00415039063,-360.66485595703,-365.22418212891,-369.65466308594,-373.94354248047,-377.07214355469,-379.60464477539,-382.31842041016,-385.44711303711,-388.80123901367,-392.16589355469,-395.55093383789,-398.97607421875,-402.52410888672,-406.16143798828,-409.84384155273,-413.58895874023,-417.40045166016,-421.26571655273,-425.22384643555,-428.95874023438,-433.14242553711,-437.41186523438,-441.67791748047,-445.88095092773,-449.94720458984,-452.47122192383,-456.16958618164,-459.35116577148,-461.52334594727,-463.59094238281,-465.43710327148,-467.00723266602,-468.33004760742,-469.40530395508,-470.21459960938,-471.0798034668,-471.46740722656,-471.62734985352,-471.38079833984,-470.80355834961,-469.8850402832,-468.45709228516,-466.86907958984,-465.49035644531,-463.88043212891,-461.89407348633,-459.88229370117,-457.63876342773,-455.24047851563,-451.6282043457,-447.88159179688,-444.01666259766,-440.11758422852,-436.09271240234,-432.04989624023,-428.02438354492,-423.99731445313,-419.97994995117,-416.04287719727,-412.19030761719,-408.36679077148,-404.64007568359,-401.04296875,-397.61630249023,-394.34121704102,-391.55130004883,-388.60830688477,-385.82766723633,-383.12530517578,-380.54217529297,-378.037109375,-375.67102050781,-373.49008178711,-371.41455078125,-369.34664916992,-367.41717529297,-365.55447387695,-363.78482055664,-361.88385009766,-359.88293457031,-357.79296875,-355.58288574219,-353.16284179688,-350.59265136719,-348.70471191406,-346.58694458008,-344.24951171875,-340.60430908203,-338.00445556641,-334.54177856445,-331.6826171875,-328.7060546875,-324.28662109375,-320.06634521484,-317.52209472656,-313.8056640625,-311.58114624023,-309.58709716797,-307.74896240234,-306.12130737305,-304.73712158203,-303.58892822266,-302.01531982422,-301.15051269531,-300.44491577148,-299.88632202148,-299.13922119141,-298.5364074707,-298.23239135742,-298.14666748047,-298.20074462891,-298.45257568359,-298.86697387695,-299.39776611328,-300.0256652832,-300.8271484375,-301.80075073242,-303.30963134766,-305.08963012695,-306.94635009766,-308.87460327148,-310.56256103516,-312.1813659668,-313.70666503906,-314.35684204102,-314.82312011719,-315.07797241211,-315.16333007813,-315.10412597656,-314.82919311523,-314.361328125,-313.56362915039,-312.48544311523,-311.21240234375,-309.17837524414,-307.5617980957,-305.78060913086,-303.68200683594,-301.45236206055,-299.01092529297,-295.6028137207,-291.78155517578,-287.98309326172,-284.15731811523,-280.3034362793,-276.44232177734,-272.61877441406,-269.5934753418,-267.49133300781,-264.52593994141,-262.80142211914,-260.25833129883,-257.81420898438,-255.3324432373,-252.900390625,-250.57615661621,-248.25712585449,-246.22636413574,-244.22222900391,-242.15870666504,-240.0816192627,-238.10250854492,-236.27087402344,-235.09591674805,-233.57766723633,-232.25680541992,-231.09527587891,-230.55746459961,-229.8875579834,-229.26953125,-228.65431213379,-228.07650756836,-227.57580566406,-227.11256408691,-226.76786804199,-226.60623168945,-226.63790893555,-226.72956848145,-226.9030456543,-227.21643066406,-227.61854553223,-228.19847106934,-228.88139343262,-229.65438842773,-230.50009155273,-231.44529724121,-232.47428894043,-233.62788391113,-234.98080444336,-236.52436828613,-238.20190429688,-239.87635803223,-241.51483154297,-243.09423828125,-244.61494445801,-246.15435791016,-247.87551879883,-249.58352661133,-251.28439331055,-252.93022155762,-254.43838500977,-255.77061462402,-256.89248657227,-257.44915771484,-257.75982666016,-257.74633789063,-257.4426574707,-256.93981933594,-256.38629150391,-255.74597167969,-254.84159851074,-253.68310546875,-252.31217956543,-250.75747680664,-249.19598388672,-247.47570800781,-245.7170715332,-243.87518310547,-242.06088256836,-240.34111022949,-238.63195800781,-237.05479431152,-235.66023254395,-234.43019104004,-233.68537902832,-232.83839416504,-232.16986083984,-231.64521789551,-231.26817321777,-230.95977783203,-230.75122070313,-230.53895568848,-230.33155822754,-230.12046813965,-229.91250610352,-229.82257080078,-229.72521972656,-229.62759399414,-228.91217041016,-227.9250793457,-226.32246398926,-224.48202514648,-222.56172180176,-216.85977172852,-211.06292724609,-205.28274536133,-199.51846313477,-194.44551086426,-190.46659851074,-186.41404724121,-180.45964050293,-174.77543640137,-170.63220214844,-165.20985412598,-161.14303588867,-157.14604187012,-153.1392364502,-149.28370666504,-145.35147094727,-141.45442199707,-137.73512268066,-133.82919311523,-130.3150177002,-126.95875549316,-123.63988494873,-118.79749298096,-115.52648925781,-110.98876953125,-106.42115020752,-101.86540222168,-97.517921447754,-93.111785888672,-88.676803588867,-84.387001037598,-80.050048828125,-75.668586730957,-71.281211853027,-67.012588500977,-62.723415374756,-58.401477813721,-54.042163848877,-49.658569335938,-45.246185302734,-40.981342315674,-36.677879333496,-32.315196990967,-27.931577682495,-23.514444351196,-19.11376953125,-14.692617416382,-10.410536766052,-6.0842885971069,-1.7213799953461,2.709860086441,7.1469669342041,11.618960380554,15.928541183472,20.309328079224,24.706798553467,29.145090103149,33.669586181641,38.19815826416,42.774841308594,47.196807861328,51.645172119141,56.07878112793,60.512958526611,64.999771118164,69.427352905273,73.858215332031,78.286003112793,82.774978637695,87.217636108398,91.66178894043,96.150512695313,100.59454345703,105.03796386719,109.48157501221,113.9748840332,118.42432403564,122.85939025879,127.34150695801,131.78874206543,136.23588562012,140.68305969238,145.19367980957,149.64065551758,154.08781433105,158.55400085449,163.07957458496,167.52673339844,171.97940063477,176.4969329834,180.94421386719,185.39619445801,189.86729431152,194.25540161133,198.7024230957,203.14932250977,207.70448303223,212.15144348145,216.59841918945,221.0546875,225.60934448242,230.06187438965,234.4976348877,239.03645324707,243.48072814941,247.94395446777,252.39924621582,256.77856445313,261.25555419922,265.71075439453,270.14172363281,274.61953735352,279.07540893555,283.57089233398,287.99114990234,292.44583129883,296.92388916016,301.32904052734,305.7209777832,310.17095947266,314.6169128418,319.04736328125,323.41195678711,327.84091186523,332.38333129883,336.85873413086,340.93762207031,344.29638671875,347.61514282227,350.52069091797,353.14212036133,355.79251098633,358.77496337891,361.28649902344,363.71969604492,365.68887329102,367.76559448242,370.56369018555,372.80902099609,375.06774902344,378.33041381836,381.49392700195,384.67367553711,387.9833984375,391.42282104492,394.740234375,398.35418701172,402.09912109375,405.81677246094,409.52749633789,413.32382202148,417.2356262207,421.16546630859,425.11950683594,429.24520874023,433.38018798828,437.57864379883,441.67984008789,446.00744628906,450.29278564453,454.44122314453,458.81756591797,463.21661376953,467.5514831543,471.99185180664,476.51629638672,481.06045532227,485.50732421875,489.95709228516,494.46453857422,499.07913208008,503.69580078125,508.19357299805,512.71478271484,517.32330322266,521.74664306641,526.09393310547,530.46380615234,534.73254394531,538.79669189453,542.95672607422,546.96130371094,550.87231445313,554.63586425781,558.28845214844,561.87536621094,565.45611572266,567.62121582031,570.90771484375,574.21136474609,577.50622558594,580.78802490234,583.95623779297,587.07849121094,590.22125244141,593.37872314453,596.53240966797,599.4912109375,602.44934082031,605.38226318359,608.27160644531,611.05688476563,613.87414550781,616.57049560547,619.26489257813,621.85687255859,624.31170654297,626.76843261719,629.13287353516,631.43127441406,633.64172363281,635.56103515625,637.83380126953,641.39697265625,643.92999267578,646.84686279297,649.83551025391,653.27917480469,656.45178222656,661.291015625,664.95318603516,668.34246826172,673.48785400391,676.31628417969,678.68988037109,680.705078125,682.59423828125,684.28051757813,674.40563964844,676.03527832031,676.56323242188,676.49597167969,681.09246826172,681.11798095703,680.65246582031,679.73565673828,678.08050537109,370.26480102539,371.1741027832,372.2419128418,373.62814331055,375.44607543945,377.41400146484,379.89852905273,383.31964111328,388.41284179688,393.53256225586,396.74227905273,399.87719726563,404.57836914063,409.14868164063,413.66128540039,418.11987304688,422.65863037109,427.06512451172,431.5205078125,436.16760253906,440.74740600586,445.39834594727,450.12799072266,454.74703979492,459.4228515625,464.06832885742,468.48748779297,473.04437255859,476.47192382813,479.21633911133,481.6907043457,483.83840942383,485.27554321289,486.34497070313,487.28741455078,487.85403442383,488.23336791992,488.25534057617,487.9951171875,487.55206298828,487.05484008789,486.55685424805,486.04028320313,485.62438964844,485.51748657227,485.6633605957,486.02026367188,486.63983154297,487.52886962891,488.59963989258,490.25378417969,492.08737182617,494.02633666992,496.03530883789,498.1305847168,500.34158325195,502.61923217773,504.9489440918,507.45037841797,509.89831542969,512.26013183594,514.4736328125,516.5986328125,518.6279296875,520.49145507813,521.57940673828,523.02105712891,523.71185302734,524.09649658203,524.17425537109,524.23883056641,524.26733398438,524.18304443359,523.96411132813,523.70355224609,523.31274414063,522.65948486328,522.02783203125,521.02423095703,519.83190917969,518.37805175781,517.14562988281,515.6962890625,514.03900146484,512.36663818359,509.09860229492,507.93646240234,505.59378051758,503.19555664063,500.42419433594,498.40350341797,496.02905273438,493.86276245117,491.99060058594,490.32415771484,489.0065612793,488.03341674805,487.4792175293,487.44079589844,487.90682983398,488.8678894043,490.94232177734,494.04928588867,497.11935424805,500.18942260742,502.39587402344,504.36517333984,506.94577026367,512.19873046875,516.08123779297,517.87817382813,374.21017456055,371.61013793945,370.12966918945,368.44393920898,367.6318359375,367.24118041992,367.18942260742,367.52038574219,368.35525512695,369.60296630859,738.28887939453,739.98034667969,741.48974609375,742.99420166016,745.00994873047,748.00946044922,752.11383056641,756.00598144531,760.07635498047,764.07727050781,770.1220703125,776.17712402344,782.19104003906,788.21228027344,792.21789550781,794.23803710938,795.72998046875,797.0439453125,798.47229003906,799.55700683594,800.21728515625,800.41290283203,800.41534423828,800.3896484375,800.4423828125,800.49847412109,800.5263671875,800.04742431641,799.20043945313,798.09832763672,796.58044433594,794.74505615234,792.73510742188,790.69665527344,787.01824951172,780.99554443359,776.95611572266,770.89556884766,765.177734375,761.25653076172,759.23016357422,756.21276855469,752.17956542969,748.16094970703,744.08807373047,740.09503173828,736.03240966797,732.00494384766,728.10015869141,726.33538818359,724.91174316406,723.91644287109,723.22491455078,723.21923828125,725.47247314453,722.86700439453,734.03021240234,735.70739746094,737.15997314453,738.49536132813,740.11865234375,681.84558105469,679.17053222656,676.32202148438,673.37048339844,667.46655273438,662.4228515625,659.74200439453,657.72552490234,655.68206787109,652.07897949219,649.89984130859,646.67260742188,643.53137207031,640.6796875,638.09967041016,635.22387695313,632.37384033203,630.13153076172,626.40118408203,623.90417480469,621.89300537109,616.19836425781,614.35394287109,612.92181396484,611.16473388672,609.04364013672,607.861328125,605.56231689453,604.55407714844,603.72137451172,602.39440917969,601.09686279297,599.75122070313,598.35949707031,597.11358642578,595.29931640625,593.35485839844,591.74951171875,589.85906982422,587.91461181641,585.39147949219,582.61993408203,578.54095458984,574.43572998047,570.64068603516,569.08953857422,567.98364257813,566.76873779297,565.93951416016,565.39074707031,565.11834716797,565.10913085938,565.34558105469,565.73175048828,566.28204345703,566.97760009766,567.76940917969,568.76385498047,570.04260253906,571.52795410156,573.31292724609,575.47320556641,577.8544921875,581.82885742188,585.79559326172,588.77203369141,592.00939941406,596.86456298828,599.99920654297,602.19671630859,603.99127197266,605.32464599609,606.17510986328,606.58331298828,606.58508300781,606.11535644531,605.22869873047,603.87536621094,601.78765869141,598.80792236328,597.29315185547,596.60864257813,596.42211914063,596.63262939453,597.10229492188,597.77233886719,598.66845703125,599.59826660156,600.97814941406,602.55725097656,604.27703857422,607.45031738281,610.48114013672,613.30755615234,615.96618652344,619.96179199219,622.80755615234,627.15533447266,631.58544921875,634.25366210938,638.17114257813,640.58093261719,642.78625488281,644.70288085938,646.37756347656,647.18420410156,647.51733398438,647.34045410156,646.958984375,646.45434570313,645.82012939453,644.90051269531,643.5517578125,641.81274414063,639.92462158203,637.77758789063,635.43762207031,631.93975830078,628.47814941406,624.90814208984,622.17889404297,618.09954833984,613.91815185547,609.66369628906,605.76025390625,602.64447021484,600.07513427734,598.79724121094,596.91735839844,595.72875976563,594.65496826172,593.92199707031,593.63952636719,593.80645751953,594.46478271484,595.47174072266,598.32958984375,600.61242675781,602.220703125,603.45849609375,604.06524658203,604.85522460938,605.83489990234,606.65423583984,607.36535644531,608.07189941406,608.45660400391,608.51733398438,608.18267822266,607.44879150391,606.33123779297,604.748046875,602.96942138672,601.21459960938,599.28973388672,597.30163574219,595.13671875,592.08062744141,588.14587402344,584.11779785156,580.27880859375,576.48443603516,572.77868652344,569.17822265625,565.69451904297,562.45568847656,559.38830566406,554.84039306641,550.31115722656,545.73974609375,541.31488037109,536.86010742188,534.12145996094,530.04278564453,527.23034667969,525.33892822266,612.24450683594,611.68121337891,610.39007568359,609.14227294922,606.93566894531,606.1435546875,605.82489013672,605.64276123047,605.90295410156,606.54064941406,607.35638427734,608.55499267578,609.80004882813,611.47668457031,613.04058837891,615.20947265625,617.97186279297,620.98480224609,624.14727783203,628.9150390625,633.88415527344,638.83746337891,642.41900634766,647.71496582031,652.99822998047,658.14825439453,661.37353515625,666.12976074219,670.17358398438,674.60284423828,679.05590820313,683.521484375,686.41802978516,689.83978271484,692.69018554688,695.69201660156,698.23022460938,700.57891845703,703.50579833984,706.41033935547,709.43792724609,712.04278564453,714.32672119141,717.26031494141,719.77111816406,721.06109619141,722.65570068359,724.10290527344,725.29827880859,726.36511230469,727.00610351563,504.79162597656,503.03897094727,499.42559814453,495.84552001953,492.56930541992,489.30087280273,486.13510131836,483.7336730957,481.92761230469,480.33947753906,479.10794067383,477.43505859375,476.29803466797,475.521484375,474.4967956543,473.64950561523,473.16619873047,472.73257446289,472.30462646484,471.85079956055,471.19082641602,470.52774047852,469.54879760742,468.59136962891,467.46838378906,466.22180175781,464.79998779297,463.28494262695,461.6071472168,459.78942871094,457.86364746094,455.73947143555,453.529296875,451.13879394531,448.64602661133,445.5657043457,441.54400634766,437.54846191406,433.32073974609,429.0251159668,424.73348999023,420.34289550781,416.08267211914,411.81979370117,407.53253173828,403.25204467773,398.91369628906,394.66079711914,390.40701293945,386.21514892578,383.57464599609,380.50970458984,377.42965698242,374.43634033203,371.61715698242,369.42626953125,367.54751586914,365.97216796875,364.6416015625,363.54797363281,362.69470214844,362.01809692383,361.19863891602,360.62835693359,360.25939941406,360.01605224609,359.82241821289,359.80841064453,359.99722290039,360.18151855469,360.36584472656,360.5510559082,360.71380615234,360.87524414063,361.03033447266,360.99389648438,360.91485595703,360.7878112793,360.52911376953,360.25146484375,359.89443969727,359.46929931641,358.97549438477,358.44921875,357.68878173828,356.67465209961,355.24948120117,353.689453125,351.90936279297,349.96298217773,347.72772216797,345.10034179688,342.40536499023,339.56170654297,336.00894165039,332.04769897461,328.02841186523,323.86019897461,319.67922973633,315.49676513672,309.48666381836,305.4928894043,299.50003051758,293.48956298828,287.49456787109,281.50106811523,275.50531005859,269.52404785156,263.54333496094,257.54702758789,251.54789733887,245.43083190918,239.35816955566,233.33375549316,227.34898376465,221.3960723877,215.44467163086,212.28143310547,211.55889892578,209.31156921387,208.48248291016,206.82608032227,205.94146728516,205.84504699707,206.26037597656,207.2671661377,208.30102539063,209.73788452148,211.07263183594,212.22944641113,213.11347961426,213.97802734375,214.84211730957,215.70855712891,216.5025177002,217.1979675293,217.75096130371,217.90808105469,218.05668640137,218.00527954102,217.75813293457,217.31469726563,216.67652893066,215.84443664551,214.81221008301,213.87030029297,212.78494262695,211.56594848633,210.07662963867,208.30337524414,206.35720825195,203.48588562012,200.63983154297,197.9185333252,196.37104797363,194.08038330078,192.57786560059,191.38969421387,190.3731842041,189.56475830078,188.98628234863,188.65057373047,188.51724243164,188.39038085938,188.51579284668,188.84140014648,189.46914672852,190.07460021973,190.86386108398,192.22190856934,193.51599121094,195.24890136719,197.1505279541,199.23918151855,201.52719116211,203.93350219727,206.54090881348,209.29577636719,212.13763427734,215.16552734375,218.20506286621,221.35868835449,224.5096282959,227.64329528809,230.90989685059,234.17440795898,237.51181030273,240.8395690918,244.19696044922,247.59674072266,250.93269348145,254.38667297363,257.75439453125,261.0322265625,264.30535888672,267.60653686523,270.96209716797,274.29437255859,277.5966796875,280.837890625,283.94491577148,286.97766113281,289.85989379883,292.74063110352,295.64453125,298.55908203125,301.46936035156,304.36315917969,307.08752441406,309.73345947266,312.3681640625,315.03652954102,317.39691162109,319.20748901367,321.28741455078,323.25225830078,325.06219482422,326.75,328.31213378906,329.33355712891,330.06460571289,330.66702270508,331.12307739258,331.50955200195,331.91497802734,332.32473754883,332.73577880859,333.1474609375,333.54138183594,333.75439453125,333.94024658203,334.12680053711,334.31167602539,334.49819946289,334.68817138672,334.84997558594,334.99066162109,335.1501159668,335.3095703125,335.47161865234,335.63198852539,335.79486083984,335.98602294922,336.20574951172,336.39416503906,336.61364746094,336.86010742188,337.07257080078,337.25421142578,337.43890380859,337.62759399414,337.99816894531,338.45956420898,338.91287231445,339.46496582031,340.01815795898,340.96636962891,342.08740234375,343.25430297852,344.37799072266,345.87271118164,347.40594482422,349.09048461914,350.92324829102,352.78631591797,354.75924682617,356.89297485352,359.11553955078,361.48330688477,363.96856689453,366.47808837891,363.1979675293,366.01901245117,367.84417724609,369.78204345703,372.60275268555,369.99517822266,367.18936157227,365.62649536133,364.42935180664,210.74559020996,211.68629455566,212.77008056641,214.07759094238,215.67025756836,353.06378173828,352.18270874023,351.74319458008,351.44317626953,351.1413269043,351.30017089844,351.41973876953,351.47552490234,351.42013549805,352.15856933594,353.24938964844,354.42520141602,357.72811889648,362.26290893555,363.29431152344,363.25811767578,362.82809448242,361.91204833984,360.52362060547,358.79064941406,356.82476806641,354.78570556641,352.81188964844,351.34750366211,350.16915893555,349.34805297852,348.9306640625,348.97164916992,349.42443847656,350.36526489258,212.74893188477,210.34059143066,208.70739746094,121.02967071533,118.69659423828,115.75505065918,113.03723907471,108.961769104,105.49291229248,103.0807800293,99.061172485352,93.749504089355,88.411514282227,84.546592712402,80.651084899902,74.864959716797,68.932281494141,64.730926513672,59.796092987061,53.754261016846,47.684524536133,41.638446807861,35.640567779541,29.653421401978,23.563177108765,17.465785980225,11.376641273499,5.3468332290649,-0.67182838916779,-6.6757249832153,-12.696216583252,-18.713472366333,-24.71724319458,-30.087404251099,-34.106449127197,-38.080444335938,-44.06148147583,-50.061519622803,-56.083946228027,-62.126556396484,-68.117050170898,-74.120048522949,-80.146064758301,-86.152900695801,-92.218086242676,-98.183959960938,-103.15454101563,-109.02768707275,-114.92081451416,-120.878074646,-126.79858398438,-131.81301879883,-135.62216186523,-141.29635620117,-146.85638427734,-150.89164733887,-154.46885681152,-157.93272399902,-160.32040405273,-163.15222167969,-165.83489990234,-168.3074798584,-170.72537231445,-173.64431762695,-175.57051086426,-177.26609802246,-179.06240844727,-180.33624267578,-181.21562194824,-181.49906921387,-181.42608642578,-181.16044616699,-180.70112609863,-180.15943908691,-179.51844787598,-178.52496337891,-177.16403198242,-175.56550598145,-173.56303405762,-171.23733520508,-168.85372924805,-166.12268066406,-163.07836914063,-159.26910400391,-155.99116516113,-152.59893798828,-149.15989685059,-145.44644165039,-141.73793029785,-136.00457763672,-130.38236999512,-124.68209838867,-119.00093078613,-113.38269805908,-107.73425292969,-103.85743713379,-99.892959594727,-95.835266113281,-91.825744628906,-87.801078796387,-83.720008850098,-79.599098205566,-73.517990112305,-67.562049865723,-61.50560760498,-55.66890335083,-49.694225311279,-43.78645324707,-37.835712432861,-31.956886291504,-26.181241989136,-20.334770202637,-16.52551651001,-12.716314315796,-7.0101389884949,-1.3593022823334,2.909462928772,6.4902467727661,9.9701070785522,13.399680137634,18.380853652954,21.605026245117,24.648241043091,27.589139938354,31.717569351196,35.970428466797,40.128234863281,44.235378265381,48.224704742432,50.582511901855,54.093040466309,57.607524871826,61.128520965576,64.643836975098,68.350379943848,70.923950195313,73.727149963379,76.736030578613,80.581161499023,83.836418151855,87.103507995605,90.31128692627,93.510200500488,96.789047241211,100.21062469482,104.25420379639,108.25821685791,114.3716506958,118.93431091309,122.93382263184,126.77127838135,130.53256225586,134.12644958496,137.54745483398,140.7839050293,143.98434448242,148.70683288574,153.34831237793,156.6870880127,159.92727661133,162.67274475098,165.26878356934,168.98161315918,172.57098388672,176.00425720215,178.12973022461,179.98974609375,181.90643310547,184.08409118652,185.96304321289,188.14266967773,190.2431640625,191.39823913574,193.14303588867,194.76025390625,196.25924682617,197.71778869629,199.16220092773,200.6012878418,202.03256225586,203.40000915527,204.68930053711,205.97026062012,207.21461486816,203.15498352051,205.04795837402,206.66166687012,208.83477783203,211.30364990234,213.30123901367 - 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,1751;34;35;36;37;38;39;40;41;42;43;44;45;46;47;48;49;50;51;52;53;54;55;56;57,1812;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,1807;393;394;395;396;397;398;399;400;401;402;403;404;405;406;407;408;409;410,624;411;412;413;414;415;416;417;418;419;420;421;422;423;424;425;426,465,783;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;10;460;461;462;463;464;419;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;19;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,777;772;773,1625;774;775;776;1;778;779;780;781;782;434;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,1630;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,2319;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,2357;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,1621;1617;1618;1619;1620;775;1622;1623;1624;471;1626;1627;1628;1629;789;1631;1632;1633;1634;1635;1636,1741;1635,1637;1636,1638;1637,1639;1638,1640;1639,1641;1640,1642;1641,1643;1642,1644;1643,1645;1644,1646;1645,1647;1646,1648;1647,1649;1648,1650;1649,1651;1650,1652;1651,1653;1652,1654;1653,1655;1654,1656;1655,1657;1656,1658;1657,1659;1658,1660;1659,1661;1660,1662;1661,1663;1662,1664;1663,1665;1664,1666;1665,1667;1666,1668;1667,1669;1668,1670;1669,1671;1670,1672;1671,1673;1672,1674;1673,1675;1674,1676;1675,1677;1676,1678;1677,1679;1678,1680;1679,1681;1680,1682;1681,1683;1682,1684;1683,1685;1684,1686;1685,1687;1686,1688;1687,1689;1688,1690;1689,1691;1690,1692;1691,1693;1692,1694;1693,1695;1694,1696;1695,1697;1696,1698,1987;1697,1699;1698,1700;1699,1701;1700,1702;1701,1703;1702,1704;1703,1705;1704,1706;1705,1707;1706,1708;1707,1709;1708,1710;1709,1711;1710,1712;1711,1713;1712,1714;1713,1715;1714,1716;1715,1717;1716,1718,2039;1719;1720;1721;1722;1723;1724;1725;1726;1727;1728;1729;1730;1731;1732;1733;1734;1735;1736;1737;1738;1739;1740;1706;1635,1742;1743,2315;1744;1745;1746;1747;1748;1749;1750;1531;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;-1;1792;1793;1794;1795;1796;1797;1798;1799;1800,1805;1801;1802;1803;1804;384;1806;44;1808;1809;1810;1811;1754;1813;1814;1815;1816;1817;1818;1819;1820;1821;1822;1823;1824;1825;1826;1827;1828;1829;1830;1831;1832;1833;1834;1835;1834,1836;1835,1837,1988;1836,1838;1837,1839;1838,1840;1839,1841;1840,1842;1841,1843;1842,1844;1843,1845;1844,1846;1845,1847;1846,1848;1847,1849;1848,1850;1849,1851;1850,1852;1851,1853;1852,1854;1853,1855;1854,1856;1855,1857;1856,1858;1857,1859;1858,1860;1859,1861;1860,1862;1861,1863;1862,1864;1863,1865;1864,1866;1865,1867;1866,1868;1867,1869;1868,1870;1869,1871;1870,1872;1871,1873;1872,1874;1873,1875;1874,1876;1875,1877;1876,1878;1877,1879;1878,1880;1879,1881;1880,1882;1881,1883;1882,1884;1883,1885;1884,1886;1885,1887;1886,1888;1887,1889;1888,1890;1889,1891;1890,1892;1891,1893;1892,1894;1893,1895;1894,1896;1895,1897;1896,1898;1897,1899;1898,1900;1899,1901;1900,1902;1901,1903;1902,1904;1903,1905;1904,1906;1905,1907;1906,1908;1907,1909;1908,1910;1909,1911;1910,1912;1911,1913;1912,1914;1913,1915;1914,1916;1915,1917;1916,1918;1917,1919;1918,1920;1919,1921;1920,1922;1921,1923;1922,1924;1923,1925;1924,1926;1925,1927;1926,1928;1927,1929;1928,1930;1929,1931;1930,1932;1931,1933;1932,1934;1933,1935;1934,1936;1935,1937;1936,1938;1937,1939;1938,1940;1939,1941;1940,1942;1941,1943;1942,1944;1943,1945;1944,1946;1945,1947;1946,1948;1947,1949;1948,1950;1949,1951;1950,1952;1951,1953;1952,1954;1953,1955;1954,1956;1955,1957;1956,1958;1957,1959;1958,1960;1959,1961;1960,1962;1961,1963;1962,1964;1963,1965;1964,1966;1965,1967;1966,1968;1967,1969;1968,1970;1969,1971;1970,1972;1971,1973;1972,1974;1973,1975;1974,1976;1975,1977;1976,1978;1977,1979;1978,1980;1979,1981;1980,1982;1981,1983;1982,1984;1983,1985;1984,1986;1985,1987;1986,1697;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;386;1717,2040;2039,2041;2040,2042;2041,2043;2042,2044;2043,2045;2044,2046;2045,2047;2046,2048;2047,2049;2048,2050;2049,2051;2050,2052;2051,2053;2052,2054;2053,2055;2054,2056;2055,2057;2056,2058;2057,2059;2058,2060;2059,2061;2060,2062;2061,2063;2062,2064;2063,2065;2064,2066;2065,2067;2066,2068;2067,2069;2068,2070;2069,2071;2070,2072;2071,2073;2072,2074;2073,2075;2074,2076;2075,2077;2076,2078;2077,2079;2078,2080;2079,2081;2080,2082;2081,2083;2082,2084;2083,2085;2084,2086;2085,2087;2086,2088;2087,2089;2088,2090;2089,2091;2090,2092;2091,2093;2092,2094;2093,2095;2094,2096;2095,2097;2096,2098;2097,2099;2098,2100;2099,2101;2100,2102;2101,2103;2102,2104;2103,2105;2104,2106;2105,2107;2106,2108;2107,2109;2108,2110;2109,2111;2110,2112;2111,2113;2112,2114;2113,2115;2114,2116,2337;2115,2117;2116,2118;2117,2119;2118,2120,2336;2119,2121;2120,2122;2121,2123;2122,2124;2123,2125;2124,2126;2125,2127;2126,2128;2127,2129;2128,2130;2129,2131;2130,2132;2131,2133;2132,2134;2133,2135;2134,2136;2135,2137;2136,2138;2137,2139;2138,2140;2139,2141;2140,2142;2141,2143;2142,2144;2143,2145;2144,2146;2145,2147;2146,2148;2147,2149;2148,2150;2149,2151;2150,2152;2151,2153;2152,2154;2153,2155;2154,2156,2354;2155,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,2310;2309;1530;2311;2312;2313;2314;1634;2316;2317;2318;879;2320;2321;2322;2323;2154;2325;2326;2327;2328;2329;2330;2331;2332;2333;2334;2335;2112;2324;2338;2339;2340;2341;2342;2343;2344;2345;2346;2347;2348;2349;2350;2351;2352;2353;2330;2355;2356;1022;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,2538;2535;2536;2537;2165;2539;2540;2541;2542;2543;2154 - 776;1;2;3;4;5;6;7;8;9,458;10;11;12;13;14;15;16;17;18,623;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,1806;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,1804;384;385,2038;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,464;419;420;421;422;423;424;425;426;427;428;429;430;431;432;433,782;434;435;436;437;438;439;440;441;442;443;444;445;446;447;448;449;450;451;452;453;454;455;456;457;457;459;460;461;462;463;425;465;466;467;468;469;470,1624;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;409;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,1620;775;770;777;778;779;780;781;425;783;784;785;786;787;788,1629;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,2318;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,2356;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,2309;1530,1750;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;1615;1621;1622;1623;772;1625;1626;1627;1628;875;1630;1631;1632;1633,2314;1634,1636,1741;1635,1637;1636,1638;1637,1639;1638,1640;1639,1641;1640,1642;1641,1643;1642,1644;1643,1645;1644,1646;1645,1647;1646,1648;1647,1649;1648,1650;1649,1651;1650,1652;1651,1653;1652,1654;1653,1655;1654,1656;1655,1657;1656,1658;1657,1659;1658,1660;1659,1661;1660,1662;1661,1663;1662,1664;1663,1665;1664,1666;1665,1667;1666,1668;1667,1669;1668,1670;1669,1671;1670,1672;1671,1673;1672,1674;1673,1675;1674,1676;1675,1677;1676,1678;1677,1679;1678,1680;1679,1681;1680,1682;1681,1683;1682,1684;1683,1685;1684,1686;1685,1687;1686,1688;1687,1689;1688,1690;1689,1691;1690,1692;1691,1693;1692,1694;1693,1695;1694,1696;1695,1697;1696,1698,1987;1697,1699;1698,1700;1699,1701;1700,1702;1701,1703;1702,1704;1703,1705;1704,1706;1705,1707,1740;1706,1708;1707,1709;1708,1710;1709,1711;1710,1712;1711,1713;1712,1714;1713,1715;1714,1716;1715,1717;1716,2039;1717;1718;1719;1720;1721;1722;1723;1724;1725;1726;1727;1728;1729;1730;1731;1732;1733;1734;1735;1736;1737;1738;1739;1635;1741;1742;1743;1744;1745;1746;1747;1748;1749;32;1751;1752;1753,1811;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;-1;1791;1792;1793;1794;1795;1796;1797;1798;1799;1800;1801;1802;1803;1799;1805;391;1807;1808;1809;1810;56;1812;1813;1814;1815;1816;1817;1818;1819;1820;1821;1822;1823;1824;1825;1826;1827;1828;1829;1830;1831;1832;1833,1835;1834,1836;1835,1837;1836,1838;1837,1839;1838,1840;1839,1841;1840,1842;1841,1843;1842,1844;1843,1845;1844,1846;1845,1847;1846,1848;1847,1849;1848,1850;1849,1851;1850,1852;1851,1853;1852,1854;1853,1855;1854,1856;1855,1857;1856,1858;1857,1859;1858,1860;1859,1861;1860,1862;1861,1863;1862,1864;1863,1865;1864,1866;1865,1867;1866,1868;1867,1869;1868,1870;1869,1871;1870,1872;1871,1873;1872,1874;1873,1875;1874,1876;1875,1877;1876,1878;1877,1879;1878,1880;1879,1881;1880,1882;1881,1883;1882,1884;1883,1885;1884,1886;1885,1887;1886,1888;1887,1889;1888,1890;1889,1891;1890,1892;1891,1893;1892,1894;1893,1895;1894,1896;1895,1897;1896,1898;1897,1899;1898,1900;1899,1901;1900,1902;1901,1903;1902,1904;1903,1905;1904,1906;1905,1907;1906,1908;1907,1909;1908,1910;1909,1911;1910,1912;1911,1913;1912,1914;1913,1915;1914,1916;1915,1917;1916,1918;1917,1919;1918,1920;1919,1921;1920,1922;1921,1923;1922,1924;1923,1925;1924,1926;1925,1927;1926,1928;1927,1929;1928,1930;1929,1931;1930,1932;1931,1933;1932,1934;1933,1935;1934,1936;1935,1937;1936,1938;1937,1939;1938,1940;1939,1941;1940,1942;1941,1943;1942,1944;1943,1945;1944,1946;1945,1947;1946,1948;1947,1949;1948,1950;1949,1951;1950,1952;1951,1953;1952,1954;1953,1955;1954,1956;1955,1957;1956,1958;1957,1959;1958,1960;1959,1961;1960,1962;1961,1963;1962,1964;1963,1965;1964,1966;1965,1967;1966,1968;1967,1969;1968,1970;1969,1971;1970,1972;1971,1973;1972,1974;1973,1975;1974,1976;1975,1977;1976,1978;1977,1979;1978,1980;1979,1981;1980,1982;1981,1983;1982,1984;1983,1985;1984,1986;1985,1987;1697,1986;1836;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;1717,2040;2039,2041;2040,2042;2041,2043;2042,2044;2043,2045;2044,2046;2045,2047;2046,2048;2047,2049;2048,2050;2049,2051;2050,2052;2051,2053;2052,2054;2053,2055;2054,2056;2055,2057;2056,2058;2057,2059;2058,2060;2059,2061;2060,2062;2061,2063;2062,2064;2063,2065;2064,2066;2065,2067;2066,2068;2067,2069;2068,2070;2069,2071;2070,2072;2071,2073;2072,2074;2073,2075;2074,2076;2075,2077;2076,2078;2077,2079;2078,2080;2079,2081;2080,2082;2081,2083;2082,2084;2083,2085;2084,2086;2085,2087;2086,2088;2087,2089;2088,2090;2089,2091;2090,2092;2091,2093;2092,2094;2093,2095;2094,2096;2095,2097;2096,2098;2097,2099;2098,2100;2099,2101;2100,2102;2101,2103;2102,2104;2103,2105;2104,2106;2105,2107;2106,2108;2107,2109;2108,2110;2109,2111;2110,2112;2111,2113,2335;2112,2114;2113,2115;2114,2116;2115,2117;2116,2118;2117,2119;2118,2120;2119,2121;2120,2122;2121,2123;2122,2124;2123,2125;2124,2126;2125,2127;2126,2128;2127,2129;2128,2130;2129,2131;2130,2132;2131,2133;2132,2134;2133,2135;2134,2136;2135,2137;2136,2138;2137,2139;2138,2140;2139,2141;2140,2142;2141,2143;2142,2144;2143,2145;2144,2146;2145,2147;2146,2148;2147,2149;2148,2150;2149,2151;2150,2152;2151,2153;2152,2154;2153,2155,2323,2543;2154,2156;2155;2156;2157;2158;2159;2160;2161;2162;2163;2164,2537;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;2307;2310;2311;2312;2313;1742;2315;2316;2317;1018;2319;2320;2321;2322;2336;2324;2325;2326;2327;2328;2329,2353;2330;2331;2332;2333;2334;2119;2115;2337;2338;2339;2340;2341;2342;2343;2344;2345;2346;2347;2348;2349;2350;2351;2352;2155;2354;2355;1051;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;2533;2538;2539;2540;2541;2542 - 1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;-1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1,1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1,1;1,1;1,1;1,1;1,1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1;1,1,1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1;1,1;1;1;1;1;1;1;1;1;1;1 - 2,2,2,2,2;3,3,3,3,3;4,4,4,4,4;5,5,5,5,5;6,6,6,6,6;7,7,7,7,7;8,8,8,8,8;9,9,9,9,9;10,10,10,10,10;11,11,11,11,11;12,12,12,12,12;13,13,13,13,13;14,14,14,14,14;15,15,15,15,15;16,16,16,16,16;17,17,17,17,17;18,18,18,18,18;19,19,19,19,19;20,20,20,20,20;21,21,21,21,21;22,22,22,22,22;23,23,23,23,23;24,24,24,24,24;25,25,25,25,25;26,26,26,26,26;27,27,27,27,27;28,28,28,28,28;29,29,29,29,29;30,30,30,30,30;31,31,31,31,31;32,32,32,32,32;33,1751,33,33,33;34,34,34,34,34;35,35,35,35,35;36,36,36,36,36;37,37,37,37,37;38,38,38,38,38;39,39,39,39,39;40,40,40,40,40;41,41,41,41,41;42,42,42,42,42;43,43,43,43,43;44,44,44,44,44;45,45,45,45,45;46,46,46,46,46;47,47,47,47,47;48,48,48,48,48;49,49,49,49,49;50,50,50,50,50;51,51,51,51,51;52,52,52,52,52;53,53,53,53,53;54,54,54,54,54;55,55,55,55,55;56,56,56,56,56;1812,1812,1812,1812,1812;58,58,58,58,58;59,59,59,59,59;60,60,60,60,60;61,61,61,61,61;62,62,62,62,62;63,63,63,63,63;64,64,64,64,64;65,65,65,65,65;66,66,66,66,66;67,67,67,67,67;68,68,68,68,68;69,69,69,69,69;70,70,70,70,70;71,71,71,71,71;72,72,72,72,72;73,73,73,73,73;74,74,74,74,74;75,75,75,75,75;76,76,76,76,76;77,77,77,77,77;78,78,78,78,78;79,79,79,79,79;80,80,80,80,80;81,81,81,81,81;82,82,82,82,82;83,83,83,83,83;84,84,84,84,84;85,85,85,85,85;86,86,86,86,86;87,87,87,87,87;88,88,88,88,88;89,89,89,89,89;90,90,90,90,90;91,91,91,91,91;92,92,92,92,92;93,93,93,93,93;94,94,94,94,94;95,95,95,95,95;96,96,96,96,96;97,97,97,97,97;98,98,98,98,98;99,99,99,99,99;100,100,100,100,100;101,101,101,101,101;102,102,102,102,102;103,103,103,103,103;104,104,104,104,104;105,105,105,105,105;106,106,106,106,106;107,107,107,107,107;108,108,108,108,108;109,109,109,109,109;110,110,110,110,110;111,111,111,111,111;112,112,112,112,112;113,113,113,113,113;114,114,114,114,114;115,115,115,115,115;116,116,116,116,116;117,117,117,117,117;118,118,118,118,118;119,119,119,119,119;120,120,120,120,120;121,121,121,121,121;122,122,122,122,122;123,123,123,123,123;124,124,124,124,124;125,125,125,125,125;126,126,126,126,126;127,127,127,127,127;128,128,128,128,128;129,129,129,129,129;130,130,130,130,130;131,131,131,131,131;132,132,132,132,132;133,133,133,133,133;134,134,134,134,134;135,135,135,135,135;136,136,136,136,136;137,137,137,137,137;138,138,138,138,138;139,139,139,139,139;140,140,140,140,140;141,141,141,141,141;142,142,142,142,142;143,143,143,143,143;144,144,144,144,144;145,145,145,145,145;146,146,146,146,146;147,147,147,147,147;148,148,148,148,148;149,149,149,149,149;150,150,150,150,150;151,151,151,151,151;152,152,152,152,152;153,153,153,153,153;154,154,154,154,154;155,155,155,155,155;156,156,156,156,156;157,157,157,157,157;158,158,158,158,158;159,159,159,159,159;160,160,160,160,160;161,161,161,161,161;162,162,162,162,162;163,163,163,163,163;164,164,164,164,164;165,165,165,165,165;166,166,166,166,166;167,167,167,167,167;168,168,168,168,168;169,169,169,169,169;170,170,170,170,170;171,171,171,171,171;172,172,172,172,172;173,173,173,173,173;174,174,174,174,174;175,175,175,175,175;176,176,176,176,176;177,177,177,177,177;178,178,178,178,178;179,179,179,179,179;180,180,180,180,180;181,181,181,181,181;182,182,182,182,182;183,183,183,183,183;184,184,184,184,184;185,185,185,185,185;186,186,186,186,186;187,187,187,187,187;188,188,188,188,188;189,189,189,189,189;190,190,190,190,190;191,191,191,191,191;192,192,192,192,192;193,193,193,193,193;194,194,194,194,194;195,195,195,195,195;196,196,196,196,196;197,197,197,197,197;198,198,198,198,198;199,199,199,199,199;200,200,200,200,200;201,201,201,201,201;202,202,202,202,202;203,203,203,203,203;204,204,204,204,204;205,205,205,205,205;206,206,206,206,206;207,207,207,207,207;208,208,208,208,208;209,209,209,209,209;210,210,210,210,210;211,211,211,211,211;212,212,212,212,212;213,213,213,213,213;214,214,214,214,214;215,215,215,215,215;216,216,216,216,216;217,217,217,217,217;218,218,218,218,218;219,219,219,219,219;220,220,220,220,220;221,221,221,221,221;222,222,222,222,222;223,223,223,223,223;224,224,224,224,224;225,225,225,225,225;226,226,226,226,226;227,227,227,227,227;228,228,228,228,228;229,229,229,229,229;230,230,230,230,230;231,231,231,231,231;232,232,232,232,232;233,233,233,233,233;234,234,234,234,234;235,235,235,235,235;236,236,236,236,236;237,237,237,237,237;238,238,238,238,238;239,239,239,239,239;240,240,240,240,240;241,241,241,241,241;242,242,242,242,242;243,243,243,243,243;244,244,244,244,244;245,245,245,245,245;246,246,246,246,246;247,247,247,247,247;248,248,248,248,248;249,249,249,249,249;250,250,250,250,250;251,251,251,251,251;252,252,252,252,252;253,253,253,253,253;254,254,254,254,254;255,255,255,255,255;256,256,256,256,256;257,257,257,257,257;258,258,258,258,258;259,259,259,259,259;260,260,260,260,260;261,261,261,261,261;262,262,262,262,262;263,263,263,263,263;264,264,264,264,264;265,265,265,265,265;266,266,266,266,266;267,267,267,267,267;268,268,268,268,268;269,269,269,269,269;270,270,270,270,270;271,271,271,271,271;272,272,272,272,272;273,273,273,273,273;274,274,274,274,274;275,275,275,275,275;276,276,276,276,276;277,277,277,277,277;278,278,278,278,278;279,279,279,279,279;280,280,280,280,280;281,281,281,281,281;282,282,282,282,282;283,283,283,283,283;284,284,284,284,284;285,285,285,285,285;286,286,286,286,286;287,287,287,287,287;288,288,288,288,288;289,289,289,289,289;290,290,290,290,290;291,291,291,291,291;292,292,292,292,292;293,293,293,293,293;294,294,294,294,294;295,295,295,295,295;296,296,296,296,296;297,297,297,297,297;298,298,298,298,298;299,299,299,299,299;300,300,300,300,300;301,301,301,301,301;302,302,302,302,302;303,303,303,303,303;304,304,304,304,304;305,305,305,305,305;306,306,306,306,306;307,307,307,307,307;308,308,308,308,308;309,309,309,309,309;310,310,310,310,310;311,311,311,311,311;312,312,312,312,312;313,313,313,313,313;314,314,314,314,314;315,315,315,315,315;316,316,316,316,316;317,317,317,317,317;318,318,318,318,318;319,319,319,319,319;320,320,320,320,320;321,321,321,321,321;322,322,322,322,322;323,323,323,323,323;324,324,324,324,324;325,325,325,325,325;326,326,326,326,326;327,327,327,327,327;328,328,328,328,328;329,329,329,329,329;330,330,330,330,330;331,331,331,331,331;332,332,332,332,332;333,333,333,333,333;334,334,334,334,334;335,335,335,335,335;336,336,336,336,336;337,337,337,337,337;338,338,338,338,338;339,339,339,339,339;340,340,340,340,340;341,341,341,341,341;342,342,342,342,342;343,343,343,343,343;344,344,344,344,344;345,345,345,345,345;346,346,346,346,346;347,347,347,347,347;348,348,348,348,348;349,349,349,349,349;350,350,350,350,350;351,351,351,351,351;352,352,352,352,352;353,353,353,353,353;354,354,354,354,354;355,355,355,355,355;356,356,356,356,356;357,357,357,357,357;358,358,358,358,358;359,359,359,359,359;360,360,360,360,360;361,361,361,361,361;362,362,362,362,362;363,363,363,363,363;364,364,364,364,364;365,365,365,365,365;366,366,366,366,366;367,367,367,367,367;368,368,368,368,368;369,369,369,369,369;370,370,370,370,370;371,371,371,371,371;372,372,372,372,372;373,373,373,373,373;374,374,374,374,374;375,375,375,375,375;376,376,376,376,376;377,377,377,377,377;378,378,378,378,378;379,379,379,379,379;380,380,380,380,380;381,381,381,381,381;382,382,382,382,382;383,383,383,383,383;384,384,384,384,384;385,385,385,385,385;386,386,386,386,386;387,387,387,387,387;388,388,388,388,388;389,389,389,389,389;390,390,390,390,390;391,391,391,391,391;392,1807,392,392,392;393,393,393,393,393;394,394,394,394,394;395,395,395,395,395;396,396,396,396,396;397,397,397,397,397;398,398,398,398,398;399,399,399,399,399;400,400,400,400,400;401,401,401,401,401;402,402,402,402,402;403,403,403,403,403;404,404,404,404,404;405,405,405,405,405;406,406,406,406,406;407,407,407,407,407;408,408,408,408,408;409,409,409,409,409;410,410,410,410,410;411,411,411,411,411;412,412,412,412,412;413,413,413,413,413;414,414,414,414,414;415,415,415,415,415;416,416,416,416,416;417,417,417,417,417;418,418,418,418,418;419,419,419,419,419;420,420,420,420,420;421,421,421,421,421;422,422,422,422,422;423,423,423,423,423;424,424,424,424,424;425,425,425,425,425;783,426,783,783,426;427,427,427,427,427;428,428,428,428,428;429,429,429,429,429;430,430,430,430,430;431,431,431,431,431;432,432,432,432,432;433,433,433,433,433;434,434,434,434,434;435,435,435,435,435;436,436,436,436,436;437,437,437,437,437;438,438,438,438,438;439,439,439,439,-1;440,440,440,440,440;441,441,441,441,441;442,442,442,442,442;443,443,443,443,443;444,444,444,444,444;445,445,445,445,445;446,446,446,446,446;447,447,447,447,447;448,448,448,448,448;449,449,449,449,449;450,450,450,450,450;451,451,451,451,451;452,452,452,452,452;453,453,453,453,453;454,454,454,454,454;455,455,455,455,455;456,456,456,456,456;457,457,457,457,457;459,458,459,459,459;10,10,10,10,10;460,460,460,460,460;461,461,461,461,461;462,462,462,462,462;463,463,463,463,463;464,464,464,464,464;419,419,419,419,419;466,466,466,466,466;467,467,467,467,467;468,468,468,468,468;469,469,469,469,469;470,470,470,470,470;471,471,471,471,471;472,472,472,472,472;473,473,473,473,473;474,474,474,474,474;475,475,475,475,475;476,476,476,476,476;477,477,477,477,477;478,478,478,478,478;479,479,479,479,479;480,480,480,480,480;481,481,481,481,481;482,482,482,482,482;483,483,483,483,483;484,484,484,484,484;485,485,485,485,485;486,486,486,486,486;487,487,487,487,487;488,488,488,488,488;489,489,489,489,489;490,490,490,490,490;491,491,491,491,491;492,492,492,492,492;493,493,493,493,493;494,494,494,494,494;495,495,495,495,495;496,496,496,496,496;497,497,497,497,497;498,498,498,498,498;499,499,499,499,499;500,500,500,500,500;501,501,501,501,501;502,502,502,502,502;503,503,503,503,503;504,504,504,504,504;505,505,505,505,505;506,506,506,506,506;507,507,507,507,507;508,508,508,508,508;509,509,509,509,509;510,510,510,510,510;511,511,511,511,511;512,512,512,512,512;513,513,513,513,513;514,514,514,514,514;515,515,515,515,515;516,516,516,516,516;517,517,517,517,517;518,518,518,518,518;519,519,519,519,519;520,520,520,520,520;521,521,521,521,521;522,522,522,522,522;523,523,523,523,523;524,524,524,524,524;525,525,525,525,525;526,526,526,526,526;527,527,527,527,527;528,528,528,528,528;529,529,529,529,529;530,530,530,530,530;531,531,531,531,531;532,532,532,532,532;533,533,533,533,533;534,534,534,534,534;535,535,535,535,535;536,536,536,536,536;537,537,537,537,537;538,538,538,538,538;539,539,539,539,539;540,540,540,540,540;541,541,541,541,541;542,542,542,542,542;543,543,543,543,543;544,544,544,544,544;545,545,545,545,545;546,546,546,546,546;547,547,547,547,547;548,548,548,548,548;549,549,549,549,549;550,550,550,550,550;551,551,551,551,551;552,552,552,552,552;553,553,553,553,553;554,554,554,554,554;555,555,555,555,555;556,556,556,556,556;557,557,557,557,557;558,558,558,558,558;559,559,559,559,559;560,560,560,560,560;561,561,561,561,561;562,562,562,562,562;563,563,563,563,563;564,564,564,564,564;565,565,565,565,565;566,566,566,566,566;567,567,567,567,567;568,568,568,568,568;569,569,569,569,569;570,570,570,570,570;571,571,571,571,571;572,572,572,572,572;573,573,573,573,573;574,574,574,574,574;575,575,575,575,575;576,576,576,576,576;577,577,577,577,577;578,578,578,578,578;579,579,579,579,579;580,580,580,580,580;581,581,581,581,581;582,582,582,582,582;583,583,583,583,583;584,584,584,584,584;585,585,585,585,585;586,586,586,586,586;587,587,587,587,587;588,588,588,588,588;589,589,589,589,589;590,590,590,590,590;591,591,591,591,591;592,592,592,592,592;593,593,593,593,593;594,594,594,594,594;595,595,595,595,595;596,596,596,596,596;597,597,597,597,597;598,598,598,598,598;599,599,599,599,599;600,600,600,600,600;601,601,601,601,601;602,602,602,602,602;603,603,603,603,603;604,604,604,604,604;605,605,605,605,605;606,606,606,606,606;607,607,607,607,607;608,608,608,608,608;609,609,609,609,609;610,610,610,610,610;611,611,611,611,611;612,612,612,612,612;613,613,613,613,613;614,614,614,614,614;615,615,615,615,615;616,616,616,616,616;617,617,617,617,617;618,618,618,618,618;619,619,619,619,619;620,620,620,620,620;621,621,621,621,621;622,622,622,622,622;623,623,623,623,623;19,19,19,19,19;625,625,625,625,625;626,626,626,626,626;627,627,627,627,627;628,628,628,628,628;629,629,629,629,629;630,630,630,630,630;631,631,631,631,631;632,632,632,632,632;633,633,633,633,633;634,634,634,634,634;635,635,635,635,635;636,636,636,636,636;637,637,637,637,637;638,638,638,638,638;639,639,639,639,639;640,640,640,640,640;641,641,641,641,641;642,642,642,642,642;643,643,643,643,643;644,644,644,644,644;645,645,645,645,645;646,646,646,646,646;647,647,647,647,647;648,648,648,648,648;649,649,649,649,649;650,650,650,650,650;651,651,651,651,651;652,652,652,652,652;653,653,653,653,653;654,654,654,654,654;655,655,655,655,655;656,656,656,656,656;657,657,657,657,657;658,658,658,658,658;659,659,659,659,659;660,660,660,660,660;661,661,661,661,661;662,662,662,662,662;663,663,663,663,663;664,664,664,664,664;665,665,665,665,665;666,666,666,666,666;667,667,667,667,667;668,668,668,668,668;669,669,669,669,669;670,670,670,670,670;671,671,671,671,671;672,672,672,672,672;673,673,673,673,673;674,674,674,674,674;675,675,675,675,675;676,676,676,676,676;677,677,677,677,677;678,678,678,678,678;679,679,679,679,679;680,680,680,680,680;681,681,681,681,681;682,682,682,682,682;683,683,683,683,683;684,684,684,684,684;685,685,685,685,685;686,686,686,686,686;687,687,687,687,687;688,688,688,688,688;689,689,689,689,689;690,690,690,690,690;691,691,691,691,691;692,692,692,692,692;693,693,693,693,693;694,694,694,694,694;695,695,695,695,695;696,696,696,696,696;697,697,697,697,697;698,698,698,698,698;699,699,699,699,699;700,700,700,700,700;701,701,701,701,701;702,702,702,702,702;703,703,703,703,703;704,704,704,704,704;705,705,705,705,705;706,706,706,706,706;707,707,707,707,707;708,708,708,708,708;709,709,709,709,709;710,710,710,710,710;711,711,711,711,711;712,712,712,712,712;713,713,713,713,713;714,714,714,714,714;715,715,715,715,715;716,716,716,716,716;717,717,717,717,717;718,718,718,718,718;719,719,719,719,719;720,720,720,720,720;721,721,721,721,721;722,722,722,722,722;723,723,723,723,723;724,724,724,724,724;725,725,725,725,725;726,726,726,726,726;727,727,727,727,727;728,728,728,728,728;729,729,729,729,729;730,730,730,730,730;731,731,731,731,731;732,732,732,732,732;733,733,733,733,733;734,734,734,734,734;735,735,735,735,735;736,736,736,736,736;737,737,737,737,737;738,738,738,738,738;739,739,739,739,739;740,740,740,740,740;741,741,741,741,741;742,742,742,742,742;743,743,743,743,743;744,744,744,744,744;745,745,745,745,745;746,746,746,746,746;747,747,747,747,747;748,748,748,748,748;749,749,749,749,749;750,750,750,750,750;751,751,751,751,751;752,752,752,752,752;753,753,753,753,753;754,754,754,754,754;755,755,755,755,755;756,756,756,756,756;757,757,757,757,757;758,758,758,758,758;759,759,759,759,759;760,760,760,760,760;761,761,761,761,761;762,762,762,762,762;763,763,763,763,763;764,764,764,764,764;765,765,765,765,765;766,766,766,766,766;767,767,767,767,767;768,768,768,768,768;769,769,769,769,769;770,770,770,770,770;771,771,771,771,777;772,772,772,772,772;1625,773,1625,1625,773;774,774,774,774,774;775,775,775,775,775;776,776,776,776,776;1,1,1,1,1;778,778,778,778,778;779,779,779,779,779;780,780,780,780,780;781,781,781,781,781;782,782,782,782,782;434,434,434,434,434;784,784,784,784,784;785,785,785,785,785;786,786,786,786,786;787,787,787,787,787;788,788,788,788,788;789,789,789,789,789;790,790,790,790,790;791,791,791,791,791;792,792,792,792,792;793,793,793,793,793;794,794,794,794,794;795,795,795,795,795;796,796,796,796,796;797,797,797,797,797;798,798,798,798,798;799,799,799,799,799;800,800,800,800,800;801,801,801,801,801;802,802,802,802,802;803,803,803,803,803;804,804,804,804,804;805,805,805,805,805;806,806,806,806,806;807,807,807,807,807;808,808,808,808,808;809,809,809,809,809;810,810,810,810,810;811,811,811,811,811;812,812,812,812,812;813,813,813,813,813;814,814,814,814,814;815,815,815,815,815;816,816,816,816,816;817,817,817,817,817;818,818,818,818,818;819,819,819,819,819;820,820,820,820,820;821,821,821,821,821;822,822,822,822,822;823,823,823,823,823;824,824,824,824,824;825,825,825,825,825;826,826,826,826,826;827,827,827,827,827;828,828,828,828,828;829,829,829,829,829;830,830,830,830,830;831,831,831,831,831;832,832,832,832,832;833,833,833,833,833;834,834,834,834,834;835,835,835,835,835;836,836,836,836,836;837,837,837,837,837;838,838,838,838,838;839,839,839,839,839;840,840,840,840,840;841,841,841,841,841;842,842,842,842,842;843,843,843,843,843;844,844,844,844,844;845,845,845,845,845;846,846,846,846,846;847,847,847,847,847;848,848,848,848,848;849,849,849,849,849;850,850,850,850,850;851,851,851,851,851;852,852,852,852,852;853,853,853,853,853;854,854,854,854,854;855,855,855,855,855;856,856,856,856,856;857,857,857,857,857;858,858,858,858,858;859,859,859,859,859;860,860,860,860,860;861,861,861,861,861;862,862,862,862,862;863,863,863,863,863;864,864,864,864,864;865,865,865,865,865;866,866,866,866,866;867,867,867,867,867;868,868,868,868,868;869,869,869,869,869;870,870,870,870,870;871,871,871,871,871;872,872,872,872,872;873,873,873,873,873;874,874,874,874,874;875,875,875,875,875;1630,1630,876,1630,1630;877,877,877,877,877;878,878,878,878,878;879,879,879,879,879;880,880,880,880,880;881,881,881,881,881;882,882,882,882,882;883,883,883,883,883;884,884,884,884,884;885,885,885,885,885;886,886,886,886,886;887,887,887,887,887;888,888,888,888,888;889,889,889,889,889;890,890,890,890,890;891,891,891,891,891;892,892,892,892,892;893,893,893,893,893;894,894,894,894,894;895,895,895,895,895;896,896,896,896,896;897,897,897,897,897;898,898,898,898,898;899,899,899,899,899;900,900,900,900,900;901,901,901,901,901;902,902,902,902,902;903,903,903,903,903;904,904,904,904,904;905,905,905,905,905;906,906,906,906,906;907,907,907,907,907;908,908,908,908,908;909,909,909,909,909;910,910,910,910,910;911,911,911,911,911;912,912,912,912,912;913,913,913,913,913;914,914,914,914,914;915,915,915,915,915;916,916,916,916,916;917,917,917,917,917;918,918,918,918,918;919,919,919,919,919;920,920,920,920,920;921,921,921,921,921;922,922,922,922,922;923,923,923,923,923;924,924,924,924,924;925,925,925,925,925;926,926,926,926,926;927,927,927,927,927;928,928,928,928,928;929,929,929,929,929;930,930,930,930,930;931,931,931,931,931;932,932,932,932,932;933,933,933,933,933;934,934,934,934,934;935,935,935,935,935;936,936,936,936,936;937,937,937,937,937;938,938,938,938,938;939,939,939,939,939;940,940,940,940,940;941,941,941,941,941;942,942,942,942,942;943,943,943,943,943;944,944,944,944,944;945,945,945,945,945;946,946,946,946,946;947,947,947,947,947;948,948,948,948,948;949,949,949,949,949;950,950,950,950,950;951,951,951,951,951;952,952,952,952,952;953,953,953,953,953;954,954,954,954,954;955,955,955,955,955;956,956,956,956,956;957,957,957,957,957;958,958,958,958,958;959,959,959,959,959;960,960,960,960,960;961,961,961,961,961;962,962,962,962,962;963,963,963,963,963;964,964,964,964,964;965,965,965,965,965;966,966,966,966,966;967,967,967,967,967;968,968,968,968,968;969,969,969,969,969;970,970,970,970,970;971,971,971,971,971;972,972,972,972,972;973,973,973,973,973;974,974,974,974,974;975,975,975,975,975;976,976,976,976,976;977,977,977,977,977;978,978,978,978,978;979,979,979,979,979;980,980,980,980,980;981,981,981,981,981;982,982,982,982,982;983,983,983,983,983;984,984,984,984,984;985,985,985,985,985;986,986,986,986,986;987,987,987,987,987;988,988,988,988,988;989,989,989,989,989;990,990,990,990,990;991,991,991,991,991;992,992,992,992,992;993,993,993,993,993;994,994,994,994,994;995,995,995,995,995;996,996,996,996,996;997,997,997,997,997;998,998,998,998,998;999,999,999,999,999;1000,1000,1000,1000,1000;1001,1001,1001,1001,1001;1002,1002,1002,1002,1002;1003,1003,1003,1003,1003;1004,1004,1004,1004,1004;1005,1005,1005,1005,1005;1006,1006,1006,1006,1006;1007,1007,1007,1007,1007;1008,1008,1008,1008,1008;1009,1009,1009,1009,1009;1010,1010,1010,1010,1010;1011,1011,1011,1011,1011;1012,1012,1012,1012,1012;1013,1013,1013,1013,1013;1014,1014,1014,1014,1014;1015,1015,1015,1015,1015;1016,1016,1016,1016,1016;1017,1017,1017,1017,1017;1018,1018,1018,1018,1018;2319,2319,1019,2319,2319;1020,1020,1020,1020,1020;1021,1021,1021,1021,1021;1022,1022,1022,1022,1022;1023,1023,1023,1023,1023;1024,1024,1024,1024,1024;1025,1025,1025,1025,1025;1026,1026,1026,1026,1026;1027,1027,1027,1027,1027;1028,1028,1028,1028,1028;1029,1029,1029,1029,1029;1030,1030,1030,1030,1030;1031,1031,1031,1031,1031;1032,1032,1032,1032,1032;1033,1033,1033,1033,1033;1034,1034,1034,1034,1034;1035,1035,1035,1035,1035;1036,1036,1036,1036,1036;1037,1037,1037,1037,1037;1038,1038,1038,1038,1038;1039,1039,1039,1039,1039;1040,1040,1040,1040,1040;1041,1041,1041,1041,1041;1042,1042,1042,1042,1042;1043,1043,1043,1043,1043;1044,1044,1044,1044,1044;1045,1045,1045,1045,1045;1046,1046,1046,1046,1046;1047,1047,1047,1047,1047;1048,1048,1048,1048,1048;1049,1049,1049,1049,1049;1050,1050,1050,1050,1050;1051,1051,1051,1051,1051;2357,2357,2357,2357,2357;1053,1053,1053,1053,1053;1054,1054,1054,1054,1054;1055,1055,1055,1055,1055;1056,1056,1056,1056,1056;1057,1057,1057,1057,1057;1058,1058,1058,1058,1058;1059,1059,1059,1059,1059;1060,1060,1060,1060,1060;1061,1061,1061,1061,1061;1062,1062,1062,1062,1062;1063,1063,1063,1063,1063;1064,1064,1064,1064,1064;1065,1065,1065,1065,1065;1066,1066,1066,1066,1066;1067,1067,1067,1067,1067;1068,1068,1068,1068,1068;1069,1069,1069,1069,1069;1070,1070,1070,1070,1070;1071,1071,1071,1071,1071;1072,1072,1072,1072,1072;1073,1073,1073,1073,1073;1074,1074,1074,1074,1074;1075,1075,1075,1075,1075;1076,1076,1076,1076,1076;1077,1077,1077,1077,1077;1078,1078,1078,1078,1078;1079,1079,1079,1079,1079;1080,1080,1080,1080,1080;1081,1081,1081,1081,1081;1082,1082,1082,1082,1082;1083,1083,1083,1083,1083;1084,1084,1084,1084,1084;1085,1085,1085,1085,1085;1086,1086,1086,1086,1086;1087,1087,1087,1087,1087;1088,1088,1088,1088,1088;1089,1089,1089,1089,1089;1090,1090,1090,1090,1090;1091,1091,1091,1091,1091;1092,1092,1092,1092,1092;1093,1093,1093,1093,1093;1094,1094,1094,1094,1094;1095,1095,1095,1095,1095;1096,1096,1096,1096,1096;1097,1097,1097,1097,1097;1098,1098,1098,1098,1098;1099,1099,1099,1099,1099;1100,1100,1100,1100,1100;1101,1101,1101,1101,1101;1102,1102,1102,1102,1102;1103,1103,1103,1103,1103;1104,1104,1104,1104,1104;1105,1105,1105,1105,1105;1106,1106,1106,1106,1106;1107,1107,1107,1107,1107;1108,1108,1108,1108,1108;1109,1109,1109,1109,1109;1110,1110,1110,1110,1110;1111,1111,1111,1111,1111;1112,1112,1112,1112,1112;1113,1113,1113,1113,1113;1114,1114,1114,1114,1114;1115,1115,1115,1115,1115;1116,1116,1116,1116,1116;1117,1117,1117,1117,1117;1118,1118,1118,1118,1118;1119,1119,1119,1119,1119;1120,1120,1120,1120,1120;1121,1121,1121,1121,1121;1122,1122,1122,1122,1122;1123,1123,1123,1123,1123;1124,1124,1124,1124,1124;1125,1125,1125,1125,1125;1126,1126,1126,1126,1126;1127,1127,1127,1127,1127;1128,1128,1128,1128,1128;1129,1129,1129,1129,1129;1130,1130,1130,1130,1130;1131,1131,1131,1131,1131;1132,1132,1132,1132,1132;1133,1133,1133,1133,1133;1134,1134,1134,1134,1134;1135,1135,1135,1135,1135;1136,1136,1136,1136,1136;1137,1137,1137,1137,1137;1138,1138,1138,1138,1138;1139,1139,1139,1139,1139;1140,1140,1140,1140,1140;1141,1141,1141,1141,1141;1142,1142,1142,1142,1142;1143,1143,1143,1143,1143;1144,1144,1144,1144,1144;1145,1145,1145,1145,1145;1146,1146,1146,1146,1146;1147,1147,1147,1147,1147;1148,1148,1148,1148,1148;1149,1149,1149,1149,1149;1150,1150,1150,1150,1150;1151,1151,1151,1151,1151;1152,1152,1152,1152,1152;1153,1153,1153,1153,1153;1154,1154,1154,1154,1154;1155,1155,1155,1155,1155;1156,1156,1156,1156,1156;1157,1157,1157,1157,1157;1158,1158,1158,1158,1158;1159,1159,1159,1159,1159;1160,1160,1160,1160,1160;1161,1161,1161,1161,1161;1162,1162,1162,1162,1162;1163,1163,1163,1163,1163;1164,1164,1164,1164,1164;1165,1165,1165,1165,1165;1166,1166,1166,1166,1166;1167,1167,1167,1167,1167;1168,1168,1168,1168,1168;1169,1169,1169,1169,1169;1170,1170,1170,1170,1170;1171,1171,1171,1171,1171;1172,1172,1172,1172,1172;1173,1173,1173,1173,1173;1174,1174,1174,1174,1174;1175,1175,1175,1175,1175;1176,1176,1176,1176,1176;1177,1177,1177,1177,1177;1178,1178,1178,1178,1178;1179,1179,1179,1179,1179;1180,1180,1180,1180,1180;1181,1181,1181,1181,1181;1182,1182,1182,1182,1182;1183,1183,1183,1183,1183;1184,1184,1184,1184,1184;1185,1185,1185,1185,1185;1186,1186,1186,1186,1186;1187,1187,1187,1187,1187;1188,1188,1188,1188,1188;1189,1189,1189,1189,1189;1190,1190,1190,1190,1190;1191,1191,1191,1191,1191;1192,1192,1192,1192,1192;1193,1193,1193,1193,1193;1194,1194,1194,1194,1194;1195,1195,1195,1195,1195;1196,1196,1196,1196,1196;1197,1197,1197,1197,1197;1198,1198,1198,1198,1198;1199,1199,1199,1199,1199;1200,1200,1200,1200,1200;1201,1201,1201,1201,1201;1202,1202,1202,1202,1202;1203,1203,1203,1203,1203;1204,1204,1204,1204,1204;1205,1205,1205,1205,1205;1206,1206,1206,1206,1206;1207,1207,1207,1207,1207;1208,1208,1208,1208,1208;1209,1209,1209,1209,1209;1210,1210,1210,1210,1210;1211,1211,1211,1211,1211;1212,1212,1212,1212,1212;1213,1213,1213,1213,1213;1214,1214,1214,1214,1214;1215,1215,1215,1215,1215;1216,1216,1216,1216,1216;1217,1217,1217,1217,1217;1218,1218,1218,1218,1218;1219,1219,1219,1219,1219;1220,1220,1220,1220,1220;1221,1221,1221,1221,1221;1222,1222,1222,1222,1222;1223,1223,1223,1223,1223;1224,1224,1224,1224,1224;1225,1225,1225,1225,1225;1226,1226,1226,1226,1226;1227,1227,1227,1227,1227;1228,1228,1228,1228,1228;1229,1229,1229,1229,1229;1230,1230,1230,1230,1230;1231,1231,1231,1231,1231;1232,1232,1232,1232,1232;1233,1233,1233,1233,1233;1234,1234,1234,1234,1234;1235,1235,1235,1235,1235;1236,1236,1236,1236,1236;1237,1237,1237,1237,1237;1238,1238,1238,1238,1238;1239,1239,1239,1239,1239;1240,1240,1240,1240,1240;1241,1241,1241,1241,1241;1242,1242,1242,1242,1242;1243,1243,1243,1243,1243;1244,1244,1244,1244,1244;1245,1245,1245,1245,1245;1246,1246,1246,1246,1246;1247,1247,1247,1247,1247;1248,1248,1248,1248,1248;1249,1249,1249,1249,1249;1250,1250,1250,1250,1250;1251,1251,1251,1251,1251;1252,1252,1252,1252,1252;1253,1253,1253,1253,1253;1254,1254,1254,1254,1254;1255,1255,1255,1255,1255;1256,1256,1256,1256,1256;1257,1257,1257,1257,1257;1258,1258,1258,1258,1258;1259,1259,1259,1259,1259;1260,1260,1260,1260,1260;1261,1261,1261,1261,1261;1262,1262,1262,1262,1262;1263,1263,1263,1263,1263;1264,1264,1264,1264,1264;1265,1265,1265,1265,1265;1266,1266,1266,1266,1266;1267,1267,1267,1267,1267;1268,1268,1268,1268,1268;1269,1269,1269,1269,1269;1270,1270,1270,1270,1270;1271,1271,1271,1271,1271;1272,1272,1272,1272,1272;1273,1273,1273,1273,1273;1274,1274,1274,1274,1274;1275,1275,1275,1275,1275;1276,1276,1276,1276,1276;1277,1277,1277,1277,1277;1278,1278,1278,1278,1278;1279,1279,1279,1279,1279;1280,1280,1280,1280,1280;1281,1281,1281,1281,1281;1282,1282,1282,1282,1282;1283,1283,1283,1283,1283;1284,1284,1284,1284,1284;1285,1285,1285,1285,1285;1286,1286,1286,1286,1286;1287,1287,1287,1287,1287;1288,1288,1288,1288,1288;1289,1289,1289,1289,1289;1290,1290,1290,1290,1290;1291,1291,1291,1291,1291;1292,1292,1292,1292,1292;1293,1293,1293,1293,1293;1294,1294,1294,1294,1294;1295,1295,1295,1295,1295;1296,1296,1296,1296,1296;1297,1297,1297,1297,1297;1298,1298,1298,1298,1298;1299,1299,1299,1299,1299;1300,1300,1300,1300,1300;1301,1301,1301,1301,1301;1302,1302,1302,1302,1302;1303,1303,1303,1303,1303;1304,1304,1304,1304,1304;1305,1305,1305,1305,1305;1306,1306,1306,1306,1306;1307,1307,1307,1307,1307;1308,1308,1308,1308,1308;1309,1309,1309,1309,1309;1310,1310,1310,1310,1310;1311,1311,1311,1311,1311;1312,1312,1312,1312,1312;1313,1313,1313,1313,1313;1314,1314,1314,1314,1314;1315,1315,1315,1315,1315;1316,1316,1316,1316,1316;1317,1317,1317,1317,1317;1318,1318,1318,1318,1318;1319,1319,1319,1319,1319;1320,1320,1320,1320,1320;1321,1321,1321,1321,1321;1322,1322,1322,1322,1322;1323,1323,1323,1323,1323;1324,1324,1324,1324,1324;1325,1325,1325,1325,1325;1326,1326,1326,1326,1326;1327,1327,1327,1327,1327;1328,1328,1328,1328,1328;1329,1329,1329,1329,1329;1330,1330,1330,1330,1330;1331,1331,1331,1331,1331;1332,1332,1332,1332,1332;1333,1333,1333,1333,1333;1334,1334,1334,1334,1334;1335,1335,1335,1335,1335;1336,1336,1336,1336,1336;1337,1337,1337,1337,1337;1338,1338,1338,1338,1338;1339,1339,1339,1339,1339;1340,1340,1340,1340,1340;1341,1341,1341,1341,1341;1342,1342,1342,1342,1342;1343,1343,1343,1343,1343;1344,1344,1344,1344,1344;1345,1345,1345,1345,1345;1346,1346,1346,1346,1346;1347,1347,1347,1347,1347;1348,1348,1348,1348,1348;1349,1349,1349,1349,1349;1350,1350,1350,1350,1350;1351,1351,1351,1351,1351;1352,1352,1352,1352,1352;1353,1353,1353,1353,1353;1354,1354,1354,1354,1354;1355,1355,1355,1355,1355;1356,1356,1356,1356,1356;1357,1357,1357,1357,1357;1358,1358,1358,1358,1358;1359,1359,1359,1359,1359;1360,1360,1360,1360,1360;1361,1361,1361,1361,1361;1362,1362,1362,1362,1362;1363,1363,1363,1363,1363;1364,1364,1364,1364,1364;1365,1365,1365,1365,1365;1366,1366,1366,1366,1366;1367,1367,1367,1367,1367;1368,1368,1368,1368,1368;1369,1369,1369,1369,1369;1370,1370,1370,1370,1370;1371,1371,1371,1371,1371;1372,1372,1372,1372,1372;1373,1373,1373,1373,1373;1374,1374,1374,1374,1374;1375,1375,1375,1375,1375;1376,1376,1376,1376,1376;1377,1377,1377,1377,1377;1378,1378,1378,1378,1378;1379,1379,1379,1379,1379;1380,1380,1380,1380,1380;1381,1381,1381,1381,1381;1382,1382,1382,1382,1382;1383,1383,1383,1383,1383;1384,1384,1384,1384,1384;1385,1385,1385,1385,1385;1386,1386,1386,1386,1386;1387,1387,1387,1387,1387;1388,1388,1388,1388,1388;1389,1389,1389,1389,1389;1390,1390,1390,1390,1390;1391,1391,1391,1391,1391;1392,1392,1392,1392,1392;1393,1393,1393,1393,1393;1394,1394,1394,1394,1394;1395,1395,1395,1395,1395;1396,1396,1396,1396,1396;1397,1397,1397,1397,1397;1398,1398,1398,1398,1398;1399,1399,1399,1399,1399;1400,1400,1400,1400,1400;1401,1401,1401,1401,1401;1402,1402,1402,1402,1402;1403,1403,1403,1403,1403;1404,1404,1404,1404,1404;1405,1405,1405,1405,1405;1406,1406,1406,1406,1406;1407,1407,1407,1407,1407;1408,1408,1408,1408,1408;1409,1409,1409,1409,1409;1410,1410,1410,1410,1410;1411,1411,1411,1411,1411;1412,1412,1412,1412,1412;1413,1413,1413,1413,1413;1414,1414,1414,1414,1414;1415,1415,1415,1415,1415;1416,1416,1416,1416,1416;1417,1417,1417,1417,1417;1418,1418,1418,1418,1418;1419,1419,1419,1419,1419;1420,1420,1420,1420,1420;1421,1421,1421,1421,1421;1422,1422,1422,1422,1422;1423,1423,1423,1423,1423;1424,1424,1424,1424,1424;1425,1425,1425,1425,1425;1426,1426,1426,1426,1426;1427,1427,1427,1427,1427;1428,1428,1428,1428,1428;1429,1429,1429,1429,1429;1430,1430,1430,1430,1430;1431,1431,1431,1431,1431;1432,1432,1432,1432,1432;1433,1433,1433,1433,1433;1434,1434,1434,1434,1434;1435,1435,1435,1435,1435;1436,1436,1436,1436,1436;1437,1437,1437,1437,1437;1438,1438,1438,1438,1438;1439,1439,1439,1439,1439;1440,1440,1440,1440,1440;1441,1441,1441,1441,1441;1442,1442,1442,1442,1442;1443,1443,1443,1443,1443;1444,1444,1444,1444,1444;1445,1445,1445,1445,1445;1446,1446,1446,1446,1446;1447,1447,1447,1447,1447;1448,1448,1448,1448,1448;1449,1449,1449,1449,1449;1450,1450,1450,1450,1450;1451,1451,1451,1451,1451;1452,1452,1452,1452,1452;1453,1453,1453,1453,1453;1454,1454,1454,1454,1454;1455,1455,1455,1455,1455;1456,1456,1456,1456,1456;1457,1457,1457,1457,1457;1458,1458,1458,1458,1458;1459,1459,1459,1459,1459;1460,1460,1460,1460,1460;1461,1461,1461,1461,1461;1462,1462,1462,1462,1462;1463,1463,1463,1463,1463;1464,1464,1464,1464,1464;1465,1465,1465,1465,1465;1466,1466,1466,1466,1466;1467,1467,1467,1467,1467;1468,1468,1468,1468,1468;1469,1469,1469,1469,1469;1470,1470,1470,1470,1470;1471,1471,1471,1471,1471;1472,1472,1472,1472,1472;1473,1473,1473,1473,1473;1474,1474,1474,1474,1474;1475,1475,1475,1475,1475;1476,1476,1476,1476,1476;1477,1477,1477,1477,1477;1478,1478,1478,1478,1478;1479,1479,1479,1479,1479;1480,1480,1480,1480,1480;1481,1481,1481,1481,1481;1482,1482,1482,1482,1482;1483,1483,1483,1483,1483;1484,1484,1484,1484,1484;1485,1485,1485,1485,1485;1486,1486,1486,1486,1486;1487,1487,1487,1487,1487;1488,1488,1488,1488,1488;1489,1489,1489,1489,1489;1490,1490,1490,1490,1490;1491,1491,1491,1491,1491;1492,1492,1492,1492,1492;1493,1493,1493,1493,1493;1494,1494,1494,1494,1494;1495,1495,1495,1495,1495;1496,1496,1496,1496,1496;1497,1497,1497,1497,1497;1498,1498,1498,1498,1498;1499,1499,1499,1499,1499;1500,1500,1500,1500,1500;1501,1501,1501,1501,1501;1502,1502,1502,1502,1502;1503,1503,1503,1503,1503;1504,1504,1504,1504,1504;1505,1505,1505,1505,1505;1506,1506,1506,1506,1506;1507,1507,1507,1507,1507;1508,1508,1508,1508,1508;1509,1509,1509,1509,1509;1510,1510,1510,1510,1510;1511,1511,1511,1511,1511;1512,1512,1512,1512,1512;1513,1513,1513,1513,1513;1514,1514,1514,1514,1514;1515,1515,1515,1515,1515;1516,1516,1516,1516,1516;1517,1517,1517,1517,1517;1518,1518,1518,1518,1518;1519,1519,1519,1519,1519;1520,1520,1520,1520,1520;1521,1521,1521,1521,1521;1522,1522,1522,1522,1522;1523,1523,1523,1523,1523;1524,1524,1524,1524,1524;1525,1525,1525,1525,1525;1526,1526,1526,1526,1526;1527,1527,1527,1527,1527;1528,1528,1528,1528,1528;1529,1529,1529,1529,1529;1530,1530,1530,1530,1530;1531,1531,1531,1531,1531;1532,1532,1532,1532,1532;1533,1533,1533,1533,1533;1534,1534,1534,1534,1534;1535,1535,1535,1535,1535;1536,1536,1536,1536,1536;1537,1537,1537,1537,1537;1538,1538,1538,1538,1538;1539,1539,1539,1539,1539;1540,1540,1540,1540,1540;1541,1541,1541,1541,1541;1542,1542,1542,1542,1542;1543,1543,1543,1543,1543;1544,1544,1544,1544,1544;1545,1545,1545,1545,1545;1546,1546,1546,1546,1546;1547,1547,1547,1547,1547;1548,1548,1548,1548,1548;1549,1549,1549,1549,1549;1550,1550,1550,1550,1550;1551,1551,1551,1551,1551;1552,1552,1552,1552,1552;1553,1553,1553,1553,1553;1554,1554,1554,1554,1554;1555,1555,1555,1555,1555;1556,1556,1556,1556,1556;1557,1557,1557,1557,1557;1558,1558,1558,1558,1558;1559,1559,1559,1559,1559;1560,1560,1560,1560,1560;1561,1561,1561,1561,1561;1562,1562,1562,1562,1562;1563,1563,1563,1563,1563;1564,1564,1564,1564,1564;1565,1565,1565,1565,1565;1566,1566,1566,1566,1566;1567,1567,1567,1567,1567;1568,1568,1568,1568,1568;1569,1569,1569,1569,1569;1570,1570,1570,1570,1570;1571,1571,1571,1571,1571;1572,1572,1572,1572,1572;1573,1573,1573,1573,1573;1574,1574,1574,1574,1574;1575,1575,1575,1575,1575;1576,1576,1576,1576,1576;1577,1577,1577,1577,1577;1578,1578,1578,1578,1578;1579,1579,1579,1579,1579;1580,1580,1580,1580,1580;1581,1581,1581,1581,1581;1582,1582,1582,1582,1582;1583,1583,1583,1583,1583;1584,1584,1584,1584,1584;1585,1585,1585,1585,1585;1586,1586,1586,1586,1586;1587,1587,1587,1587,1587;1588,1588,1588,1588,1588;1589,1589,1589,1589,1589;1590,1590,1590,1590,1590;1591,1591,1591,1591,1591;1592,1592,1592,1592,1592;1593,1593,1593,1593,1593;1594,1594,1594,1594,1594;1595,1595,1595,1595,1595;1596,1596,1596,1596,1596;1597,1597,1597,1597,1597;1598,1598,1598,1598,1598;1599,1599,1599,1599,1599;1600,1600,1600,1600,1600;1601,1601,1601,1601,1601;1602,1602,1602,1602,1602;1603,1603,1603,1603,1603;1604,1604,1604,1604,1604;1605,1605,1605,1605,1605;1606,1606,1606,1606,1606;1607,1607,1607,1607,1607;1608,1608,1608,1608,1608;1609,1609,1609,1609,1609;1610,1610,1610,1610,1610;1611,1611,1611,1611,1611;1612,1612,1612,1612,1612;1613,1613,1613,1613,1613;1614,1614,1614,1614,1614;1615,1615,1615,1615,1615;1616,1616,1616,1616,1616;1617,1617,1617,1617,1617;1618,1618,1618,1618,1618;1619,1619,1619,1619,1619;1620,1620,1620,1620,1620;775,775,775,775,775;1622,1622,1622,1622,1622;1623,1623,1623,1623,1623;1624,1624,1624,1624,1624;471,471,471,471,471;1626,1626,1626,1626,1626;1627,1627,1627,1627,1627;1628,1628,1628,1628,1628;1629,1629,1629,1629,1629;789,789,789,789,789;1631,1631,1631,1631,1631;1632,1632,1632,1632,1632;1633,1633,1633,1633,1633;1634,1634,1634,1634,1634;1635,1635,1635,1635,1635;1636,1741,1741,1636,1741;1637,1635,1635,1637,1635;1638,1636,1636,1638,1636;1639,1637,1637,1639,1637;1640,1638,1638,1640,1640;1641,1639,1639,1641,1641;1642,1640,1640,1642,1642;1643,1641,1641,1643,1643;1644,1642,1642,1644,1644;1645,1643,1643,1645,1645;1646,1644,1644,1646,1646;1647,1645,1645,1647,1647;1648,1646,1646,1648,1648;1649,1647,1647,1649,1649;1650,1648,1648,1650,1650;1651,1649,1649,1651,1651;1652,1650,1650,1652,1652;1653,1651,1651,1653,1653;1654,1652,1654,1654,1654;1655,1653,1655,1655,1655;1656,1654,1656,1656,1656;1657,1655,1657,1657,1657;1658,1656,1658,1658,1658;1659,1657,1659,1659,1659;1660,1658,1660,1660,1660;1661,1659,1661,1661,1661;1662,1660,1662,1662,1662;1663,1661,1663,1663,1663;1664,1662,1664,1664,1664;1665,1663,1665,1665,1665;1666,1664,1666,1666,1666;1667,1665,1667,1667,1667;1668,1666,1668,1668,1668;1669,1667,1669,1669,1669;1670,1668,1670,1670,1670;1671,1669,1671,1671,1671;1672,1670,1672,1672,1672;1673,1671,1673,1673,1673;1674,1672,1674,1674,1674;1675,1673,1675,1675,1675;1676,1674,1676,1676,1676;1677,1675,1677,1677,1677;1678,1676,1678,1678,1678;1679,1677,1679,1679,1679;1680,1678,1680,1680,1680;1681,1679,1681,1681,1681;1682,1680,1682,1682,1682;1683,1681,1683,1683,1683;1684,1684,1684,1684,1684;1685,1685,1685,1685,1685;1686,1686,1686,1686,1686;1687,1687,1687,1687,1687;1688,1688,1688,1688,1688;1689,1689,1689,1689,1689;1690,1690,1690,1690,1690;1691,1691,1691,1691,1691;1692,1692,1692,1692,1692;1693,1693,1693,1693,1693;1694,1694,1694,1694,1694;1695,1695,1695,1695,1695;1696,1696,1696,1696,1696;1697,1697,1697,1697,1697;1698,1987,1698,1698,1987;1699,1697,1699,1699,1697;1700,1698,1700,1700,1698;1701,1699,1701,1701,1699;1702,1700,1702,1702,1700;1703,1701,1703,1703,1701;1704,1702,1704,1704,1702;1705,1703,1705,1705,1703;1706,1704,1706,1706,1704;1707,1705,1707,1707,1705;1708,1706,1708,1708,1706;1709,1707,1709,1709,1707;1710,1708,1710,1710,1708;1711,1709,1711,1711,1709;1712,1710,1712,1712,1710;1713,1711,1713,1713,1711;1714,1712,1714,1714,1712;1715,1713,1715,1715,1713;1716,1714,1716,1716,1714;1717,1715,1717,1717,1715;1718,1716,2039,2039,1716;1719,1719,1719,1719,1719;1720,1720,1720,1720,1720;1721,1721,1721,1721,1721;1722,1722,1722,1722,1722;1723,1723,1723,1723,1723;1724,1724,1724,1724,1724;1725,1725,1725,1725,1725;1726,1726,1726,1726,1726;1727,1727,1727,1727,1727;1728,1728,1728,1728,1728;1729,1729,1729,1729,1729;1730,1730,1730,1730,1730;1731,1731,1731,1731,1731;1732,1732,1732,1732,1732;1733,1733,1733,1733,1733;1734,1734,1734,1734,1734;-1,1735,1735,1735,1735;1736,1736,1736,1736,1736;1737,1737,1737,1737,1737;1738,1738,1738,1738,1738;1739,1739,1739,1739,1739;1740,1740,1740,1740,1740;1706,1706,1706,1706,1706;1635,1742,1742,1635,1742;2315,1743,2315,2315,1743;1744,1744,1744,1744,1744;1745,1745,1745,1745,1745;1746,1746,1746,1746,1746;1747,1747,1747,1747,1747;1748,1748,1748,1748,1748;1749,1749,1749,1749,1749;1750,1750,1750,1750,1750;1531,1531,1531,1531,1531;-1,1752,-1,-1,-1;-1,1753,-1,-1,-1;-1,1754,-1,-1,-1;-1,1755,-1,-1,-1;-1,1756,-1,-1,-1;-1,1757,-1,-1,-1;-1,1758,-1,-1,-1;-1,1759,-1,-1,-1;-1,1760,-1,-1,-1;-1,1761,-1,-1,-1;-1,1762,-1,-1,-1;-1,1763,-1,-1,-1;-1,1764,-1,-1,-1;-1,1765,-1,-1,-1;-1,1766,-1,-1,-1;-1,1767,-1,-1,-1;-1,1768,-1,-1,-1;-1,1769,-1,-1,-1;-1,1770,-1,-1,-1;-1,1771,-1,-1,-1;-1,1772,-1,-1,-1;-1,1773,-1,-1,-1;-1,1774,-1,-1,-1;-1,1775,-1,-1,-1;-1,1776,-1,-1,-1;-1,1777,-1,-1,-1;-1,1778,-1,-1,-1;-1,1779,-1,-1,-1;-1,1780,-1,-1,-1;-1,1781,-1,-1,-1;-1,1782,-1,-1,-1;-1,1783,-1,-1,-1;-1,1784,-1,-1,-1;-1,1785,-1,-1,-1;-1,1786,-1,-1,-1;-1,1787,-1,-1,-1;-1,1788,-1,-1,-1;-1,1789,-1,-1,-1;-1,1790,-1,-1,-1;-1,-1,-1,-1,-1;1792,1792,1792,1792,1792;1793,1793,1793,1793,1793;1794,1794,1794,1794,1794;1795,1795,1795,1795,1795;1796,1796,1796,1796,1796;1797,1797,1797,1797,1797;1798,1798,1798,1798,1798;1799,1799,1799,1799,1799;1805,1800,1805,1805,1800;1801,1801,1801,1801,1801;1802,1802,1802,1802,1802;1803,1803,1803,1803,1803;1804,1804,1804,1804,1804;384,384,384,384,384;1806,1806,1806,1806,1806;44,44,44,44,44;-1,1808,-1,-1,-1;-1,1809,-1,-1,-1;-1,1810,-1,-1,-1;-1,1811,-1,-1,-1;-1,1754,-1,-1,-1;1813,1813,1813,1813,1813;1814,1814,1814,1814,1814;1815,1815,1815,1815,1815;1816,1816,1816,1816,1816;1817,1817,1817,1817,1817;1818,1818,1818,1818,1818;1819,1819,1819,1819,1819;1820,1820,1820,1820,1820;1821,1821,1821,1821,1821;1822,1822,1822,1822,1822;1823,1823,1823,1823,1823;1824,1824,1824,1824,1824;1825,1825,1825,1825,1825;1826,1826,1826,1826,1826;1827,1827,1827,1827,1827;1828,1828,1828,1828,1828;1829,1829,1829,1829,1829;1830,1830,1830,1830,1830;1831,1831,1831,1831,1831;1832,1832,1832,1832,1832;1833,1833,1833,1833,1833;1834,1834,1834,1834,1834;1835,1835,1835,1835,1835;1836,1836,1836,1836,1836;1837,1988,1837,1837,1988;1838,1836,1838,1838,1836;1839,1837,1839,1839,1837;1840,1838,1840,1840,1838;1841,1839,1841,1841,1839;1842,1840,1842,1842,1840;1843,1841,1843,1843,1841;1844,1842,1844,1844,1842;1845,1843,1845,1845,1843;1846,1844,1846,1846,1844;1847,1845,1847,1847,1845;1848,1846,1848,1848,1846;1849,1847,1849,1849,1847;1850,1848,1850,1850,1848;1851,1849,1851,1851,1849;1852,1850,1852,1852,1850;1853,1851,1853,1853,1851;1854,1852,1854,1854,1852;1855,1853,1855,1855,1853;1856,1854,1856,1856,1854;1857,1855,1857,1857,1855;1858,1856,1858,1858,1856;1859,1857,1859,1859,1857;1860,1858,1860,1860,1858;1861,1859,1861,1861,1859;1862,1860,1862,1862,1860;1863,1861,1863,1863,1861;1864,1862,1864,1864,1862;1865,1863,1865,1865,1863;1866,1864,1866,1866,1864;1867,1865,1867,1867,1865;1868,1866,1868,1868,1866;1869,1867,1869,1869,1867;1870,1868,1870,1870,1868;1871,1869,1871,1871,1869;1872,1870,1872,1872,1870;1873,1871,1873,1873,1871;1874,1872,1874,1874,1872;1875,1873,1875,1875,1873;1876,1874,1876,1876,1874;1877,1875,1877,1877,1875;1878,1876,1878,1878,1876;1879,1877,1879,1879,1877;1880,1878,1880,1880,1878;1881,1879,1881,1881,1879;1882,1880,1882,1882,1880;1883,1881,1883,1883,1881;1884,1882,1884,1884,1882;1885,1883,1885,1885,1883;1886,1884,1886,1886,1884;1887,1885,1887,1887,1885;1888,1886,1888,1888,1886;1889,1887,1889,1889,1887;1890,1888,1890,1890,1888;1891,1889,1891,1891,1889;1892,1890,1892,1892,1890;1893,1891,1893,1893,1891;1894,1892,1894,1894,1892;1895,1893,1895,1895,1893;1896,1894,1896,1896,1894;1897,1895,1897,1897,1895;1898,1896,1898,1898,1896;1899,1897,1899,1899,1897;1900,1898,1900,1900,1898;1901,1899,1901,1901,1899;1902,1900,1902,1902,1900;1903,1901,1903,1903,1901;1904,1902,1904,1904,1902;1905,1903,1905,1905,1903;1906,1904,1906,1906,1904;1907,1905,1907,1907,1905;1908,1906,1908,1908,1906;1909,1907,1909,1909,1907;1910,1908,1910,1910,1908;1911,1909,1911,1911,1909;1912,1910,1912,1912,1910;1913,1911,1913,1913,1911;1914,1912,1914,1914,1912;1915,1913,1915,1915,1913;1916,1914,1916,1916,1914;1917,1915,1917,1917,1915;1918,1916,1918,1918,1916;1919,1917,1919,1919,1917;1920,1918,1920,1920,1918;1921,1919,1921,1921,1919;1922,1920,1922,1922,1920;1923,1921,1923,1923,1921;1924,1922,1924,1924,1922;1925,1923,1925,1925,1923;1926,1924,1926,1926,1924;1927,1925,1927,1927,1925;1928,1926,1928,1928,1926;1929,1927,1929,1929,1927;1930,1928,1930,1930,1928;1931,1929,1931,1931,1929;1932,1930,1932,1932,1930;1933,1931,1933,1933,1931;1934,1932,1934,1934,1932;1935,1933,1935,1935,1933;1936,1934,1936,1936,1934;1937,1935,1937,1937,1935;1938,1936,1938,1938,1936;1939,1937,1939,1939,1937;1940,1938,1940,1940,1938;1941,1939,1941,1941,1939;1942,1940,1942,1942,1940;1943,1941,1943,1943,1941;1944,1942,1944,1944,1942;1945,1943,1945,1945,1943;1946,1944,1946,1946,1944;1947,1945,1947,1947,1945;1948,1946,1948,1948,1946;1949,1947,1949,1949,1947;1950,1948,1950,1950,1948;1951,1949,1951,1951,1949;1952,1950,1952,1952,1950;1953,1951,1953,1953,1951;1954,1952,1954,1954,1952;1955,1953,1955,1955,1953;1956,1954,1956,1956,1954;1957,1955,1957,1957,1955;1958,1956,1958,1958,1956;1959,1957,1959,1959,1957;1960,1958,1960,1960,1958;1961,1959,1961,1961,1959;1962,1960,1962,1962,1960;1963,1961,1963,1963,1961;1964,1962,1964,1964,1962;1965,1963,1965,1965,1963;1966,1964,1966,1966,1964;1967,1965,1967,1967,1965;1968,1966,1968,1968,1966;1969,1967,1969,1969,1967;1970,1968,1970,1970,1968;1971,1969,1971,1971,1969;1972,1970,1972,1972,1970;1973,1971,1973,1973,1971;1974,1972,1974,1974,1972;1975,1973,1975,1975,1973;1976,1974,1976,1976,1974;1977,1975,1977,1977,1975;1978,1976,1978,1978,1976;1979,1977,1979,1979,1977;1980,1978,1980,1980,1978;1981,1979,1981,1981,1979;1982,1980,1982,1982,1980;1983,1981,1983,1983,1981;1984,1982,1984,1984,1982;1985,1983,1985,1985,1983;1986,1984,1986,1986,1984;1987,1985,1987,1987,1985;1697,1986,1697,1697,1986;1989,1989,1989,1989,1989;1990,1990,1990,1990,1990;1991,1991,1991,1991,1991;1992,1992,1992,1992,1992;1993,1993,1993,1993,1993;1994,1994,1994,1994,1994;1995,1995,1995,1995,1995;1996,1996,1996,1996,1996;1997,1997,1997,1997,1997;1998,1998,1998,1998,1998;1999,1999,1999,1999,1999;2000,2000,2000,2000,2000;2001,2001,2001,2001,2001;2002,2002,2002,2002,2002;2003,2003,2003,2003,2003;2004,2004,2004,2004,2004;2005,2005,2005,2005,2005;2006,2006,2006,2006,2006;2007,2007,2007,2007,2007;2008,2008,2008,2008,2008;2009,2009,2009,2009,2009;2010,2010,2010,2010,2010;2011,2011,2011,2011,2011;2012,2012,2012,2012,2012;2013,2013,2013,2013,2013;2014,2014,2014,2014,2014;2015,2015,2015,2015,2015;2016,2016,2016,2016,2016;2017,2017,2017,2017,2017;2018,2018,2018,2018,2018;2019,2019,2019,2019,2019;2020,2020,2020,2020,2020;2021,2021,2021,2021,2021;2022,2022,2022,2022,2022;2023,2023,2023,2023,2023;2024,2024,2024,2024,2024;2025,2025,2025,2025,2025;2026,2026,2026,2026,2026;2027,2027,2027,2027,2027;2028,2028,2028,2028,2028;2029,2029,2029,2029,2029;2030,2030,2030,2030,2030;2031,2031,2031,2031,2031;2032,2032,2032,2032,2032;2033,2033,2033,2033,2033;2034,2034,2034,2034,2034;2035,2035,2035,2035,2035;2036,2036,2036,2036,2036;2037,2037,2037,2037,2037;2038,2038,2038,2038,2038;386,386,386,386,386;1717,1717,2040,2040,1717;2039,2039,2041,2041,2039;2040,2040,2042,2042,2040;2041,2041,2043,2043,2041;2042,2042,2044,2044,2042;2043,2043,2045,2045,2043;2044,2044,2046,2046,2044;2045,2045,2047,2047,2045;2046,2046,2048,2048,2046;2047,2047,2049,2049,2047;2048,2048,2050,2050,2048;2049,2049,2051,2051,2049;2050,2050,2052,2052,2050;2051,2051,2053,2053,2051;2052,2052,2054,2054,2052;2053,2053,2055,2055,2053;2054,2054,2056,2056,2054;2055,2055,2057,2057,2055;2056,2056,2058,2058,2056;2057,2057,2059,2059,2057;2058,2058,2060,2060,2058;2059,2059,2061,2061,2059;2060,2060,2062,2062,2060;2061,2061,2063,2063,2061;2062,2062,2064,2064,2062;2063,2063,2065,2065,2063;2064,2064,2066,2066,2064;2065,2065,2067,2067,2065;2066,2066,2068,2068,2066;2067,2067,2069,2069,2067;2068,2068,2070,2070,2068;2069,2069,2071,2071,2069;2070,2070,2072,2072,2070;2071,2071,2073,2073,2071;2072,2072,2074,2074,2072;2073,2073,2075,2075,2073;2074,2074,2076,2076,2074;2075,2075,2077,2077,2075;2076,2076,2078,2078,2076;2077,2077,2079,2079,2077;2078,2078,2080,2080,2078;2079,2079,2081,2081,2079;2080,2080,2082,2082,2080;2081,2081,2083,2083,2081;2082,2082,2084,2084,2082;2083,2083,2085,2085,2083;2084,2084,2086,2086,2084;2085,2085,2087,2087,2085;2086,2086,2088,2088,2086;2087,2087,2089,2089,2087;2088,2088,2090,2090,2088;2089,2089,2091,2091,2089;2090,2090,2092,2092,2090;2091,2091,2093,2093,2091;2092,2092,2094,2094,2092;2093,2093,2095,2095,2093;2094,2094,2096,2096,2094;2095,2095,2097,2097,2095;2096,2096,2098,2098,2096;2097,2097,2099,2099,2097;2098,2098,2100,2100,2098;2099,2099,2101,2101,2099;2100,2100,2102,2102,2100;2101,2101,2103,2103,2101;2102,2102,2104,2104,2102;2103,2103,2105,2105,2103;2104,2104,2106,2106,2104;2105,2105,2107,2107,2105;2106,2106,2108,2108,2106;2107,2107,2109,2109,2107;2108,2108,2110,2110,2108;2109,2109,2111,2111,2109;2110,2110,2112,2112,2110;2111,2111,2113,2113,2111;2112,2112,2114,2114,2112;2113,2113,2115,2115,2113;2114,2114,2116,2337,2114;2115,2115,2117,2117,2115;2116,2116,2118,2118,2116;2117,2117,2119,2119,2117;2118,2118,2120,2336,2118;2119,2119,2121,2119,2119;2120,2120,2122,2120,2120;2121,2121,2123,2121,2121;2122,2122,2124,2122,2122;2123,2123,2125,2123,2123;2124,2124,2126,2124,2124;2125,2125,2127,2125,2125;2126,2126,2128,2126,2126;2127,2127,2129,2127,2127;2128,2128,2130,2128,2128;2129,2129,2131,2129,2129;2130,2130,2132,2130,2130;2131,2131,2133,2131,2131;2132,2132,2134,2132,2132;2133,2133,2135,2133,2133;2134,2134,2136,2134,2134;2135,2135,2137,2135,2135;2136,2136,2138,2136,2136;2137,2137,2139,2137,2137;2138,2138,2140,2138,2138;2139,2139,2141,2139,2139;2140,2140,2142,2140,2140;2141,2141,2143,2141,2141;2142,2142,2144,2142,2142;2143,2143,2145,2143,2143;2144,2144,2146,2144,2144;2145,2145,2147,2145,2145;2146,2146,2148,2146,2146;2147,2147,2149,2147,2147;2148,2148,2150,2148,2148;2149,2149,2151,2149,2149;2150,2150,2152,2150,2150;2151,2151,2153,2151,2151;2152,2154,2154,2152,2152;2153,2155,2155,2153,2153;2154,2156,2354,2154,2154;2155,2157,2155,2155,2155;2158,2158,2158,2158,2158;2159,2159,2159,2159,2159;2160,2160,2160,2160,2160;2161,2161,2161,2161,2161;2162,2162,2162,2162,2162;2163,2163,2163,2163,2163;2164,2164,2164,2164,2164;2165,2165,2165,2165,2165;2166,2166,2166,2166,2166;2167,2167,2167,2167,2167;2168,2168,2168,2168,2168;2169,2169,2169,2169,2169;2170,2170,2170,2170,2170;2171,2171,2171,2171,2171;2172,2172,2172,2172,2172;2173,2173,2173,2173,2173;2174,2174,2174,2174,2174;2175,2175,2175,2175,2175;2176,2176,2176,2176,2176;2177,2177,2177,2177,2177;2178,2178,2178,2178,2178;2179,2179,2179,2179,2179;2180,2180,2180,2180,2180;2181,2181,2181,2181,2181;2182,2182,2182,2182,2182;2183,2183,2183,2183,2183;2184,2184,2184,2184,2184;2185,2185,2185,2185,2185;2186,2186,2186,2186,2186;2187,2187,2187,2187,2187;2188,2188,2188,2188,2188;2189,2189,2189,2189,2189;2190,2190,2190,2190,2190;2191,2191,2191,2191,2191;2192,2192,2192,2192,2192;2193,2193,2193,2193,2193;2194,2194,2194,2194,2194;2195,2195,2195,2195,2195;2196,2196,2196,2196,2196;2197,2197,2197,2197,2197;2198,2198,2198,2198,2198;2199,2199,2199,2199,2199;2200,2200,2200,2200,2200;2201,2201,2201,2201,2201;2202,2202,2202,2202,2202;2203,2203,2203,2203,2203;2204,2204,2204,2204,2204;2205,2205,2205,2205,2205;2206,2206,2206,2206,2206;2207,2207,2207,2207,2207;2208,2208,2208,2208,2208;2209,2209,2209,2209,2209;2210,2210,2210,2210,2210;2211,2211,2211,2211,2211;2212,2212,2212,2212,2212;2213,2213,2213,2213,2213;2214,2214,2214,2214,2214;2215,2215,2215,2215,2215;2216,2216,2216,2216,2216;2217,2217,2217,2217,2217;2218,2218,2218,2218,2218;2219,2219,2219,2219,2219;2220,2220,2220,2220,2220;2221,2221,2221,2221,2221;2222,2222,2222,2222,2222;2223,2223,2223,2223,2223;2224,2224,2224,2224,2224;2225,2225,2225,2225,2225;2226,2226,2226,2226,2226;2227,2227,2227,2227,2227;2228,2228,2228,2228,2228;2229,2229,2229,2229,2229;2230,2230,2230,2230,2230;2231,2231,2231,2231,2231;2232,2232,2232,2232,2232;2233,2233,2233,2233,2233;2234,2234,2234,2234,2234;2235,2235,2235,2235,2235;2236,2236,2236,2236,2236;2237,2237,2237,2237,2237;2238,2238,2238,2238,2238;2239,2239,2239,2239,2239;2240,2240,2240,2240,2240;2241,2241,2241,2241,2241;2242,2242,2242,2242,2242;2243,2243,2243,2243,2243;2244,2244,2244,2244,2244;2245,2245,2245,2245,2245;2246,2246,2246,2246,2246;2247,2247,2247,2247,2247;2248,2248,2248,2248,2248;2249,2249,2249,2249,2249;2250,2250,2250,2250,2250;2251,2251,2251,2251,2251;2252,2252,2252,2252,2252;2253,2253,2253,2253,2253;2254,2254,2254,2254,2254;2255,2255,2255,2255,2255;2256,2256,2256,2256,2256;2257,2257,2257,2257,2257;2258,2258,2258,2258,2258;2259,2259,2259,2259,2259;2260,2260,2260,2260,2260;2261,2261,2261,2261,2261;2262,2262,2262,2262,2262;2263,2263,2263,2263,2263;2264,2264,2264,2264,2264;2265,2265,2265,2265,2265;2266,2266,2266,2266,2266;2267,2267,2267,2267,2267;2268,2268,2268,2268,2268;2269,2269,2269,2269,2269;2270,2270,2270,2270,2270;2271,2271,2271,2271,2271;2272,2272,2272,2272,2272;2273,2273,2273,2273,2273;2274,2274,2274,2274,2274;2275,2275,2275,2275,2275;2276,2276,2276,2276,2276;2277,2277,2277,2277,2277;2278,2278,2278,2278,2278;2279,2279,2279,2279,2279;2280,2280,2280,2280,2280;2281,2281,2281,2281,2281;2282,2282,2282,2282,2282;2283,2283,2283,2283,2283;2284,2284,2284,2284,2284;2285,2285,2285,2285,2285;2286,2286,2286,2286,2286;2287,2287,2287,2287,2287;2288,2288,2288,2288,2288;2289,2289,2289,2289,2289;2290,2290,2290,2290,2290;2291,2291,2291,2291,2291;2292,2292,2292,2292,2292;2293,2293,2293,2293,2293;2294,2294,2294,2294,2294;2295,2295,2295,2295,2295;2296,2296,2296,2296,2296;2297,2297,2297,2297,2297;2298,2298,2298,2298,2298;2299,2299,2299,2299,2299;2300,2300,2300,2300,2300;2301,2301,2301,2301,2301;2302,2302,2302,2302,2302;2303,2303,2303,2303,2303;2304,2304,2304,2304,2304;2305,2305,2305,2305,2305;2306,2306,2306,2306,2306;2307,2307,2307,2307,2307;2310,2308,2310,2310,2308;2309,2309,2309,2309,2309;1530,1530,1530,1530,1530;2311,2311,2311,2311,2311;2312,2312,2312,2312,2312;2313,2313,2313,2313,2313;2314,2314,2314,2314,2314;1634,1634,1634,1634,1634;2316,2316,2316,2316,2316;2317,2317,2317,2317,2317;2318,2318,2318,2318,2318;879,879,879,879,879;2320,2320,2320,2320,2320;2321,2321,2321,2321,2321;2322,2322,2322,2322,2322;2323,2323,2323,2323,2323;2154,2154,2154,2154,2154;2325,2325,2325,2325,2325;2326,2326,2326,2326,2326;2327,2327,2327,2327,2327;2328,2328,2328,2328,2328;2329,2329,2329,2329,2329;2330,2330,2330,2330,2330;2331,2331,2331,2331,2331;2332,2332,2332,2332,2332;2333,2333,2333,-1,2333;2334,2334,2334,2334,2334;2335,2335,2335,2335,2335;2112,2112,2112,2112,2112;2324,2324,2324,2324,2324;2338,2338,2338,2338,2338;2339,2339,2339,2339,2339;2340,2340,2340,2340,2340;2341,2341,2341,2341,2341;2342,2342,2342,2342,2342;2343,2343,2343,2343,2343;2344,2344,2344,2344,2344;2345,2345,2345,2345,2345;2346,2346,2346,2346,2346;2347,2347,2347,2347,2347;2348,2348,2348,2348,2348;2349,2349,2349,2349,2349;2350,2350,2350,2350,2350;2351,2351,2351,2351,2351;2352,2352,2352,2352,2352;2353,2353,2353,2353,2353;2330,2330,2330,2330,2330;2355,2355,2355,2355,2355;2356,2356,2356,2356,2356;1022,1022,1022,1022,1022;2358,2358,2358,2358,2358;2359,2359,2359,2359,2359;2360,2360,2360,2360,2360;2361,2361,2361,2361,2361;2362,2362,2362,2362,2362;2363,2363,2363,2363,2363;2364,2364,2364,2364,2364;2365,2365,2365,2365,2365;2366,2366,2366,2366,2366;2367,2367,2367,2367,2367;2368,2368,2368,2368,2368;2369,2369,2369,2369,2369;2370,2370,2370,2370,2370;2371,2371,2371,2371,2371;2372,2372,2372,2372,2372;2373,2373,2373,2373,2373;2374,2374,2374,2374,2374;2375,2375,2375,2375,2375;2376,2376,2376,2376,2376;2377,2377,2377,2377,2377;2378,2378,2378,2378,2378;2379,2379,2379,2379,2379;2380,2380,2380,2380,2380;2381,2381,2381,2381,2381;2382,2382,2382,2382,2382;2383,2383,2383,2383,2383;2384,2384,2384,2384,2384;2385,2385,2385,2385,2385;2386,2386,2386,2386,2386;2387,2387,-1,2387,2387;2388,2388,2388,2388,2388;2389,2389,2389,2389,2389;2390,2390,2390,2390,2390;2391,2391,2391,2391,2391;2392,2392,2392,2392,2392;2393,2393,2393,2393,2393;2394,2394,2394,2394,2394;2395,2395,2395,2395,2395;2396,2396,2396,2396,2396;2397,2397,2397,2397,2397;2398,2398,2398,2398,2398;2399,2399,2399,2399,2399;2400,2400,2400,2400,2400;2401,2401,2401,2401,2401;2402,2402,2402,2402,2402;2403,2403,2403,2403,2403;2404,2404,2404,2404,2404;2405,2405,2405,2405,2405;2406,2406,2406,2406,2406;2407,2407,2407,2407,2407;2408,2408,2408,2408,2408;2409,2409,2409,2409,2409;2410,2410,2410,2410,2410;2411,2411,2411,2411,2411;2412,2412,2412,2412,2412;2413,2413,2413,2413,2413;2414,2414,2414,2414,2414;2415,2415,2415,2415,2415;2416,2416,2416,2416,2416;2417,2417,2417,2417,2417;2418,2418,2418,2418,2418;2419,2419,2419,2419,2419;2420,2420,2420,2420,2420;2421,2421,2421,2421,2421;2422,2422,2422,2422,2422;2423,2423,2423,2423,2423;2424,2424,2424,2424,2424;2425,2425,2425,2425,2425;2426,2426,2426,2426,2426;2427,2427,2427,2427,2427;2428,2428,2428,2428,2428;2429,2429,2429,2429,2429;2430,2430,2430,2430,2430;2431,2431,2431,2431,2431;2432,2432,2432,2432,2432;2433,2433,2433,2433,2433;2434,2434,2434,2434,2434;2435,2435,2435,2435,2435;2436,2436,2436,2436,2436;2437,2437,2437,2437,2437;2438,2438,2438,2438,2438;2439,2439,2439,2439,2439;2440,2440,2440,2440,2440;2441,2441,2441,2441,2441;2442,2442,2442,2442,2442;2443,2443,2443,2443,2443;2444,2444,2444,2444,2444;2445,2445,2445,2445,2445;2446,2446,2446,2446,2446;2447,2447,2447,2447,2447;2448,2448,2448,2448,2448;2449,2449,2449,2449,2449;2450,2450,2450,2450,2450;2451,2451,2451,2451,2451;2452,2452,2452,2452,2452;2453,2453,2453,2453,2453;2454,2454,2454,2454,2454;2455,2455,2455,2455,2455;2456,2456,2456,2456,2456;2457,2457,2457,2457,2457;2458,2458,2458,2458,2458;2459,2459,2459,2459,2459;2460,2460,2460,2460,2460;2461,2461,2461,2461,2461;2462,2462,2462,2462,2462;2463,2463,2463,2463,2463;2464,2464,2464,2464,2464;2465,2465,2465,2465,2465;2466,2466,2466,2466,2466;2467,2467,2467,2467,2467;2468,2468,2468,2468,2468;2469,2469,2469,2469,2469;2470,2470,2470,2470,2470;2471,2471,2471,2471,2471;2472,2472,2472,2472,2472;2473,2473,2473,2473,2473;2474,2474,2474,2474,2474;2475,2475,2475,2475,2475;2476,2476,2476,2476,2476;2477,2477,2477,2477,2477;2478,2478,2478,2478,2478;2479,2479,2479,2479,2479;2480,2480,2480,2480,2480;2481,2481,2481,2481,2481;2482,2482,2482,2482,2482;2483,2483,2483,2483,2483;2484,2484,2484,2484,2484;2485,2485,2485,2485,2485;2486,2486,2486,2486,2486;2487,2487,2487,2487,2487;2488,2488,2488,2488,2488;2489,2489,2489,2489,2489;2490,2490,2490,2490,2490;2491,2491,2491,2491,2491;2492,2492,2492,2492,2492;2493,2493,2493,2493,2493;2494,2494,2494,2494,2494;2495,2495,2495,2495,2495;2496,2496,2496,2496,2496;2497,2497,2497,2497,2497;2498,2498,2498,2498,2498;2499,2499,2499,2499,2499;2500,2500,2500,2500,2500;2501,2501,2501,2501,2501;2502,2502,2502,2502,2502;2503,2503,2503,2503,2503;2504,2504,2504,2504,2504;2505,2505,2505,2505,2505;2506,2506,2506,2506,2506;2507,2507,2507,2507,2507;2508,2508,2508,2508,2508;2509,2509,2509,2509,2509;2510,2510,2510,2510,2510;2511,2511,2511,2511,2511;2512,2512,2512,2512,2512;2513,2513,2513,2513,2513;2514,2514,2514,2514,2514;2515,2515,2515,2515,2515;2516,2516,2516,2516,2516;2517,2517,2517,2517,2517;2518,2518,2518,2518,2518;2519,2519,2519,2519,2519;2520,2520,2520,2520,2520;2521,2521,2521,2521,2521;2522,2522,2522,2522,2522;2523,2523,2523,2523,2523;2524,2524,2524,2524,2524;2525,2525,2525,2525,2525;2526,2526,2526,2526,2526;2527,2527,2527,2527,2527;2528,2528,2528,2528,2528;2529,2529,2529,2529,2529;2530,2530,2530,2530,2530;2531,2531,2531,2531,2531;2532,2532,2532,2532,2532;2533,2533,2533,2533,2533;2538,2534,2538,2538,2538;2535,2535,2535,2535,2535;2536,2536,2536,2536,2536;2537,2537,2537,2537,2537;2165,2165,2165,2165,2165;2539,2539,2539,2539,2539;2540,2540,2540,2540,2540;2541,2541,2541,2541,2541;2542,2542,2542,2542,2542;2543,2543,2543,2543,2543;2154,2154,2154,2154,2154 - Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop;Field 14,Restaurant,Ranch,Field 17,Shop - - - - 438.000000 - Shop - - - 1734.000000 - Field 14 - - - 1790.000000 - Restaurant - - - 2332.000000 - Field 17 - - - 2386.000000 - Ranch - - - - diff --git a/releases/1.0.2.5/FS19_AutoDrive.zip b/releases/1.0.2.5/FS19_AutoDrive.zip new file mode 100644 index 0000000000000000000000000000000000000000..25416515011812ae2d865b6f1ef1add871444e4d GIT binary patch literal 443130 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 x))vAyt%4c7 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 _BwJ|SAzxT)bwb34O#T;_B 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

*03rTEB>@r4KfSGWe z%v2Sz7`94`gaj4mHT_(JH5&{Fs;TFYX#ww(v>&E1_(r2YU48rM3M-S8MQ zf{vKFBpXc7x|YGZVmI0#p1SS}LoB6D*)b(Ha#;_e;CBkBcCV><0LlZ%(U&7YTe7Vdu=JSEg0nObDyB1`$7Kbuvf0B zuo>#KjLU9>NJmFZACcEo=3R%Fdf;tWZ+%>iQ)f^BpcEH9G_IFEQG*(9OZHOIE1uV> zeGCM7y*|r_3o;ztn3i(Upp)>irir!R<5JwjvGC)*vQ2k(R)I&Y?HR}`o=LV-QKRDX zL0tLUcsV(F;SsTo4)UOl=}43dT*FAnQ%)NmX1j^$K7aiYg;k4EruD$3sYede;y7ix zB(Zq<-6;)(%Cir_NxT5A)ALKTLKHc0_v*>1GAf-ug57YxSuwqe=Ka4cd_n!VNWftH zo%8(#03iJ%BF*qWQfN5HszKy}M5&1fs;GGHYbR~HMi=wi5ZBpg2;N}zo!bObsU{~S}a z>C6%aY{bXGr1*$*>sJ6RIWck~rYvj^zC4@?vjRr*ksm_b%q0uC4quyG z<|%zLf3a;XwFoYiE8Jg`>dy4&! zTT7_ikX@7b0X?`K?~4Y1Lr9zi;53(1&w$$i!BRL~bdQLYwmkfLbodCwN9bSqeU7>s z6K>2jY?H78Sdfpe3X#q*XE9^Th58<43^gupv)X+tk2H!9X3GPzD`>uAJz>#ZztlT~1FGs7P9%g{89%yc(}s+w~p9OO># z8=?W98&*yAa^gm3EiFNor(UA7fH1bWCe$^&+W$t`R~+t(4r=xnhg8Hl9>AIBx|c25 z2V^>NV?*Q@)IJA)35YYaL{Tde@mD`ik^{AZiG3+bXffp5eH@9I1%(*D7S3Th2B)Eo z?NwvVL)5qruVhlp1H3PF{$liK7(eDj<-JLag zp;dX`A1rF}O0ZyR?(xNrokeFfc~=C|N#pH)ESs>nZbHb_1+GryPQPiwL-;#Pf(`EX z5#6_|pE#bGbPisl3;mNLrn>P3?(R%Gtt zXLVK>wht+_sa=@!^2*Cgc3c-Y>-AezAF|>P^X|BO%&-9_3?=w(jiVW(R_;6#c z;G~LyE9QLtbSnv%4ulKqO0&n8(>p5EHsLnSm(0p@>6$NY9|Tv`9%;9n#?l5(l%4Et z#)6>=QRVu}kQUKCg#d;?T*l`x1>rWzAf7l+I`D56N}hxsC5`p>I{w2R#J2^Ns|vtHfZ%A|

j<{jk*b<72{?{`I^uMRWjhPqk5Bg; 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 zks VHwD6KfDfYJZ`a=N9KIF(^ZyFB7zY3V literal 0 HcmV?d00001