Skip to content

Instantly share code, notes, and snippets.

@jimmyrocks
Last active November 8, 2020 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimmyrocks/2ed8cf7b2fe0745fc16de6c99045c21b to your computer and use it in GitHub Desktop.
Save jimmyrocks/2ed8cf7b2fe0745fc16de6c99045c21b to your computer and use it in GitHub Desktop.
Northampton County, PA - Election Nov 3, 2020
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Done Step 1\n"
]
}
],
"source": [
"# Step 1\n",
"# Download the Northampton County, PA Precincts\n",
"\n",
"import urllib\n",
"import subprocess\n",
"import json\n",
"import re\n",
"import os\n",
"\n",
"output_file = \"/tmp/northampton_county_precincts.geojson\"\n",
"\n",
"url = 'https://gis.northamptoncounty.org/arcgisweb/rest/services/ElectionAdmin/ElectoralDistricts/MapServer/9/query'\n",
"query_string = {\n",
" \"where\": \"1=1\",\n",
" \"f\": \"json\",\n",
" \"outfields\": \"*\"\n",
"}\n",
"url += \"?\" + \"&\".join(list(map(lambda x: x + '=' + urllib.parse.quote(query_string[x]), query_string)))\n",
"\n",
"if not os.path.exists(output_file):\n",
" # Only download it if it doesn't already exist\n",
" ogrtask = subprocess.run([\n",
" \"ogr2ogr\",\n",
" \"-f\", \"GeoJSON\", output_file,\n",
" url,\n",
" \"-s_srs\", \"EPSG:2272\", \"-t_srs\", \"EPSG:4326\"\n",
" ])\n",
"\n",
"precincts_geojson = json.load(open(output_file))\n",
"print ('Done Step 1')"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Done Step 2\n"
]
}
],
"source": [
"# Step 2\n",
"# Download and parse the PDF from the county\n",
"\n",
"#results_url = \"https://www.northamptoncounty.org/CTYADMN/ELECTNS/Election%20Results/precinct(11-4%208pm).pdf\"\n",
"results_url = \"https://www.northamptoncounty.org/CTYADMN/ELECTNS/Election%20Results/Prec.pdf\"\n",
"output_pdf_file = \"/tmp/precincts_results.pdf\"\n",
"if not os.path.exists(output_pdf_file):\n",
" urllib.request.urlretrieve(results_url, output_pdf_file)\n",
"\n",
"print ('Done Step 2')"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"..parsing file\n",
"...processing\n",
"Done Step 3\n"
]
}
],
"source": [
"# Step 3\n",
"# Convert the PDF to Text\n",
"from pdfminer.pdfinterp import PDFResourceManager, PDFPageInterpreter\n",
"from pdfminer.converter import TextConverter\n",
"from pdfminer.layout import LAParams\n",
"from pdfminer.pdfpage import PDFPage\n",
"from io import StringIO\n",
"\n",
"def convert_pdf_to_txt(path):\n",
" rsrcmgr = PDFResourceManager()\n",
" retstr = StringIO()\n",
" codec = 'utf-8'\n",
" laparams = LAParams(all_texts=True, char_margin = 20)\n",
" device = TextConverter(rsrcmgr, retstr, laparams=laparams)\n",
" fp = open(path, 'rb')\n",
" interpreter = PDFPageInterpreter(rsrcmgr, device)\n",
" maxpages = 0\n",
" caching = True\n",
" pagenos=set()\n",
"\n",
" for page in PDFPage.get_pages(fp, pagenos, maxpages=maxpages,\n",
" caching=caching,\n",
" check_extractable=True):\n",
" interpreter.process_page(page)\n",
"\n",
" text = retstr.getvalue()\n",
"\n",
" fp.close()\n",
" device.close()\n",
" retstr.close()\n",
" return text\n",
"\n",
"print ('..parsing file')\n",
"precinct_results = convert_pdf_to_txt(output_pdf_file)\n",
"print (\"...processing\")\n",
"# Remove excessive newlines and make it into an array\n",
"double_newline = re.compile('\\n\\n')\n",
"precinct_result_array = [list_element.strip('\\n\\n') for list_element in double_newline.sub(\"\\n\",precinct_results).strip('\\n').split(\"\\n\")]\n",
"print ('Done Step 3')"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Done Step 4\n"
]
}
],
"source": [
"# Step 4\n",
"# Parse the PDF output\n",
"\n",
"from functools import reduce\n",
"\n",
"def build_results(data):\n",
" if len(data) > 1:\n",
" # Generate the columns and rows and write it\n",
" rows = (int(len(data)/2))\n",
" built_table = dict(reduce(\n",
" lambda base, value: {**base, **value}, (map(\n",
" lambda a,b: {a: b},\n",
" data[0:rows],\n",
" data[rows:rows*2]))\n",
" ))\n",
" return built_table\n",
" \n",
"\n",
"\n",
"def parse_data(input_array):\n",
" result = {}\n",
"\n",
" current_precinct = \"\"\n",
" current_table_name = \"\"\n",
" current_table = []\n",
"\n",
" lines_to_ignore = [\n",
" \"UNOFFICIAL RESULTS\",\n",
" \"Summary Results Report\",\n",
" \" Summary Results Report\",\n",
" \"\\fSummary Results Report\",\n",
" \"General Election\",\n",
" \"November 3, 2020\",\n",
" \"NORTHAMPTON COUNTY, PENNSYLVANIA\",\n",
" \"Report generated with Electionware Copyright © 2007-2018\",\n",
" \"Precinct Summary - .+\",\n",
" \"Page .+\",\n",
" \"Vote For .+\",\n",
" \"\"\n",
" ]\n",
" \n",
" precinct_re = re.compile(\"(\\d{6,6}-\\d)\\s.+\")\n",
" lines_to_ignore_re = list(map(lambda l: re.compile(\"^\"+l+\"$\"), lines_to_ignore))\n",
" idx_max = len(input_array)\n",
"\n",
" for line in input_array:\n",
" ignore = False\n",
" for expression in lines_to_ignore_re:\n",
" if expression.match(line):\n",
" ignore = True\n",
" if not ignore:\n",
" if precinct_re.match(line) or len(current_table) >= idx_max:\n",
" # We have matched a precinct line\n",
" # This can identify one of two things\n",
" # 1. The end of a group of text\n",
" # 2. The start of a new group\n",
" \n",
" if len(current_table) > 1:\n",
" if current_precinct in result:\n",
" #Append to it\n",
" result[current_precinct] = {\n",
" **result[current_precinct],\n",
" **build_results(current_table)\n",
" }\n",
" else:\n",
" #Write the first entry\n",
" result[current_precinct] = build_results(current_table)\n",
" \n",
" # clear the current table and tell it that the next row will be a table name\n",
" current_table = []\n",
" current_table_name = \"__NEW__\"\n",
" idx_max = len(input_array)\n",
" \n",
" # Set the (new?) precinct name\n",
" if precinct_re.match(line):\n",
" current_precinct = precinct_re.sub(\"\\\\1\", line)\n",
" else:\n",
" current_table_name = line\n",
" elif current_table_name == \"__NEW__\":\n",
" # This means the next line is a table name, so update the tablename field\n",
" current_table_name = line\n",
" \n",
" # Set a max_idx once the totals come in to get around parsing issues\n",
" if line == 'TOTAL' and idx_max == len(input_array):\n",
" idx_max = (len(current_table) * 2)\n",
"\n",
" elif line == 'TOTAL' and current_table_name == 'TOTAL':\n",
" # We can ignore the extra TOTAL rows\n",
" current_table_name == 'TOTAL'\n",
" else:\n",
" if current_table_name == 'TOTAL':\n",
" current_table.append(line.replace(',', ''))\n",
" else:\n",
" current_table.append(current_table_name + \" \" + line)\n",
" # Also set the table_name to update if it matches any of the last lines\n",
" if line in [\"Write-In Totals\", \"Voter Turnout - Total\"]:\n",
" current_table_name = \"__NEW__\"\n",
" return result\n",
"\n",
"precinct_report_dict = parse_data(precinct_result_array)\n",
"print ('Done Step 4')"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Step 5 Done\n"
]
},
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>STATISTICS Registered Voters - Total</th>\n",
" <th>STATISTICS Ballots Cast - Total</th>\n",
" <th>STATISTICS Ballots Cast - Blank</th>\n",
" <th>STATISTICS Voter Turnout - Total</th>\n",
" <th>Presidential Electors DEM Biden and Harris</th>\n",
" <th>Presidential Electors REP Trump and Pence</th>\n",
" <th>Presidential Electors LIB Jorgensen and Cohen</th>\n",
" <th>Presidential Electors Write-In Totals</th>\n",
" <th>Attorney General DEM Josh Shapiro</th>\n",
" <th>Attorney General REP Heather Heidelbaugh</th>\n",
" <th>...</th>\n",
" <th>PA State Treasurer Pct DEM</th>\n",
" <th>PA State Treasurer Pct REP</th>\n",
" <th>PA State Treasurer Pct LIB</th>\n",
" <th>PA State Treasurer Pct GRE</th>\n",
" <th>PA Representative in Congress 7th Congressional District Pct DEM</th>\n",
" <th>PA Representative in Congress 7th Congressional District Pct REP</th>\n",
" <th>County Total Votes</th>\n",
" <th>Pct Ballots Cast</th>\n",
" <th>Max Ballots Cast</th>\n",
" <th>Min Ballots Cast</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>010001-1</th>\n",
" <td>1969</td>\n",
" <td>1665.0</td>\n",
" <td>0</td>\n",
" <td>84.56%</td>\n",
" <td>641</td>\n",
" <td>998</td>\n",
" <td>17</td>\n",
" <td>2</td>\n",
" <td>636</td>\n",
" <td>927</td>\n",
" <td>...</td>\n",
" <td>35.975976</td>\n",
" <td>56.816817</td>\n",
" <td>1.801802</td>\n",
" <td>1.321321</td>\n",
" <td>37.837838</td>\n",
" <td>59.759760</td>\n",
" <td>170048.0</td>\n",
" <td>0.979135</td>\n",
" <td>3295.0</td>\n",
" <td>119.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>010002-1</th>\n",
" <td>2144</td>\n",
" <td>1708.0</td>\n",
" <td>0</td>\n",
" <td>79.66%</td>\n",
" <td>800</td>\n",
" <td>887</td>\n",
" <td>16</td>\n",
" <td>3</td>\n",
" <td>796</td>\n",
" <td>822</td>\n",
" <td>...</td>\n",
" <td>43.618267</td>\n",
" <td>48.887588</td>\n",
" <td>2.224824</td>\n",
" <td>1.170960</td>\n",
" <td>46.545667</td>\n",
" <td>50.878220</td>\n",
" <td>170048.0</td>\n",
" <td>1.004422</td>\n",
" <td>3295.0</td>\n",
" <td>119.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>020100-1</th>\n",
" <td>927</td>\n",
" <td>590.0</td>\n",
" <td>0</td>\n",
" <td>63.65%</td>\n",
" <td>260</td>\n",
" <td>320</td>\n",
" <td>7</td>\n",
" <td>2</td>\n",
" <td>250</td>\n",
" <td>298</td>\n",
" <td>...</td>\n",
" <td>41.864407</td>\n",
" <td>51.186441</td>\n",
" <td>2.881356</td>\n",
" <td>1.355932</td>\n",
" <td>43.898305</td>\n",
" <td>54.237288</td>\n",
" <td>170048.0</td>\n",
" <td>0.346961</td>\n",
" <td>3295.0</td>\n",
" <td>119.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>020200-1</th>\n",
" <td>819</td>\n",
" <td>548.0</td>\n",
" <td>0</td>\n",
" <td>66.91%</td>\n",
" <td>228</td>\n",
" <td>310</td>\n",
" <td>9</td>\n",
" <td>0</td>\n",
" <td>222</td>\n",
" <td>268</td>\n",
" <td>...</td>\n",
" <td>38.503650</td>\n",
" <td>50.364964</td>\n",
" <td>3.832117</td>\n",
" <td>1.277372</td>\n",
" <td>39.781022</td>\n",
" <td>54.744526</td>\n",
" <td>170048.0</td>\n",
" <td>0.322262</td>\n",
" <td>3295.0</td>\n",
" <td>119.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>020300-1</th>\n",
" <td>853</td>\n",
" <td>623.0</td>\n",
" <td>0</td>\n",
" <td>73.04%</td>\n",
" <td>248</td>\n",
" <td>363</td>\n",
" <td>11</td>\n",
" <td>1</td>\n",
" <td>254</td>\n",
" <td>327</td>\n",
" <td>...</td>\n",
" <td>38.041734</td>\n",
" <td>53.611557</td>\n",
" <td>3.210273</td>\n",
" <td>0.642055</td>\n",
" <td>39.325843</td>\n",
" <td>57.784912</td>\n",
" <td>170048.0</td>\n",
" <td>0.366367</td>\n",
" <td>3295.0</td>\n",
" <td>119.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>360004-1</th>\n",
" <td>816</td>\n",
" <td>691.0</td>\n",
" <td>0</td>\n",
" <td>84.68%</td>\n",
" <td>291</td>\n",
" <td>382</td>\n",
" <td>12</td>\n",
" <td>2</td>\n",
" <td>284</td>\n",
" <td>362</td>\n",
" <td>...</td>\n",
" <td>38.784370</td>\n",
" <td>52.966715</td>\n",
" <td>2.026049</td>\n",
" <td>1.302460</td>\n",
" <td>41.823444</td>\n",
" <td>56.439942</td>\n",
" <td>170048.0</td>\n",
" <td>0.406356</td>\n",
" <td>3295.0</td>\n",
" <td>119.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>370100-1</th>\n",
" <td>1713</td>\n",
" <td>1112.0</td>\n",
" <td>1</td>\n",
" <td>64.92%</td>\n",
" <td>636</td>\n",
" <td>445</td>\n",
" <td>20</td>\n",
" <td>4</td>\n",
" <td>619</td>\n",
" <td>388</td>\n",
" <td>...</td>\n",
" <td>52.158273</td>\n",
" <td>37.050360</td>\n",
" <td>3.956835</td>\n",
" <td>2.158273</td>\n",
" <td>56.025180</td>\n",
" <td>40.017986</td>\n",
" <td>170048.0</td>\n",
" <td>0.653933</td>\n",
" <td>3295.0</td>\n",
" <td>119.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>370200-1</th>\n",
" <td>1347</td>\n",
" <td>921.0</td>\n",
" <td>0</td>\n",
" <td>68.37%</td>\n",
" <td>528</td>\n",
" <td>373</td>\n",
" <td>13</td>\n",
" <td>2</td>\n",
" <td>513</td>\n",
" <td>337</td>\n",
" <td>...</td>\n",
" <td>51.900109</td>\n",
" <td>37.785016</td>\n",
" <td>4.125950</td>\n",
" <td>1.628664</td>\n",
" <td>55.374593</td>\n",
" <td>41.259501</td>\n",
" <td>170048.0</td>\n",
" <td>0.541612</td>\n",
" <td>3295.0</td>\n",
" <td>119.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>370300-1</th>\n",
" <td>2128</td>\n",
" <td>1488.0</td>\n",
" <td>2</td>\n",
" <td>69.92%</td>\n",
" <td>755</td>\n",
" <td>695</td>\n",
" <td>26</td>\n",
" <td>1</td>\n",
" <td>755</td>\n",
" <td>600</td>\n",
" <td>...</td>\n",
" <td>47.580645</td>\n",
" <td>42.607527</td>\n",
" <td>2.217742</td>\n",
" <td>1.948925</td>\n",
" <td>50.806452</td>\n",
" <td>45.362903</td>\n",
" <td>170048.0</td>\n",
" <td>0.875047</td>\n",
" <td>3295.0</td>\n",
" <td>119.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>380000-1</th>\n",
" <td>1814</td>\n",
" <td>1329.0</td>\n",
" <td>0</td>\n",
" <td>73.26%</td>\n",
" <td>526</td>\n",
" <td>781</td>\n",
" <td>15</td>\n",
" <td>1</td>\n",
" <td>511</td>\n",
" <td>726</td>\n",
" <td>...</td>\n",
" <td>36.794582</td>\n",
" <td>55.831452</td>\n",
" <td>2.257336</td>\n",
" <td>0.902935</td>\n",
" <td>37.848006</td>\n",
" <td>58.765989</td>\n",
" <td>170048.0</td>\n",
" <td>0.781544</td>\n",
" <td>3295.0</td>\n",
" <td>119.0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>154 rows × 64 columns</p>\n",
"</div>"
],
"text/plain": [
" STATISTICS Registered Voters - Total \\\n",
"010001-1 1969 \n",
"010002-1 2144 \n",
"020100-1 927 \n",
"020200-1 819 \n",
"020300-1 853 \n",
"... ... \n",
"360004-1 816 \n",
"370100-1 1713 \n",
"370200-1 1347 \n",
"370300-1 2128 \n",
"380000-1 1814 \n",
"\n",
" STATISTICS Ballots Cast - Total STATISTICS Ballots Cast - Blank \\\n",
"010001-1 1665.0 0 \n",
"010002-1 1708.0 0 \n",
"020100-1 590.0 0 \n",
"020200-1 548.0 0 \n",
"020300-1 623.0 0 \n",
"... ... ... \n",
"360004-1 691.0 0 \n",
"370100-1 1112.0 1 \n",
"370200-1 921.0 0 \n",
"370300-1 1488.0 2 \n",
"380000-1 1329.0 0 \n",
"\n",
" STATISTICS Voter Turnout - Total \\\n",
"010001-1 84.56% \n",
"010002-1 79.66% \n",
"020100-1 63.65% \n",
"020200-1 66.91% \n",
"020300-1 73.04% \n",
"... ... \n",
"360004-1 84.68% \n",
"370100-1 64.92% \n",
"370200-1 68.37% \n",
"370300-1 69.92% \n",
"380000-1 73.26% \n",
"\n",
" Presidential Electors DEM Biden and Harris \\\n",
"010001-1 641 \n",
"010002-1 800 \n",
"020100-1 260 \n",
"020200-1 228 \n",
"020300-1 248 \n",
"... ... \n",
"360004-1 291 \n",
"370100-1 636 \n",
"370200-1 528 \n",
"370300-1 755 \n",
"380000-1 526 \n",
"\n",
" Presidential Electors REP Trump and Pence \\\n",
"010001-1 998 \n",
"010002-1 887 \n",
"020100-1 320 \n",
"020200-1 310 \n",
"020300-1 363 \n",
"... ... \n",
"360004-1 382 \n",
"370100-1 445 \n",
"370200-1 373 \n",
"370300-1 695 \n",
"380000-1 781 \n",
"\n",
" Presidential Electors LIB Jorgensen and Cohen \\\n",
"010001-1 17 \n",
"010002-1 16 \n",
"020100-1 7 \n",
"020200-1 9 \n",
"020300-1 11 \n",
"... ... \n",
"360004-1 12 \n",
"370100-1 20 \n",
"370200-1 13 \n",
"370300-1 26 \n",
"380000-1 15 \n",
"\n",
" Presidential Electors Write-In Totals \\\n",
"010001-1 2 \n",
"010002-1 3 \n",
"020100-1 2 \n",
"020200-1 0 \n",
"020300-1 1 \n",
"... ... \n",
"360004-1 2 \n",
"370100-1 4 \n",
"370200-1 2 \n",
"370300-1 1 \n",
"380000-1 1 \n",
"\n",
" Attorney General DEM Josh Shapiro \\\n",
"010001-1 636 \n",
"010002-1 796 \n",
"020100-1 250 \n",
"020200-1 222 \n",
"020300-1 254 \n",
"... ... \n",
"360004-1 284 \n",
"370100-1 619 \n",
"370200-1 513 \n",
"370300-1 755 \n",
"380000-1 511 \n",
"\n",
" Attorney General REP Heather Heidelbaugh ... \\\n",
"010001-1 927 ... \n",
"010002-1 822 ... \n",
"020100-1 298 ... \n",
"020200-1 268 ... \n",
"020300-1 327 ... \n",
"... ... ... \n",
"360004-1 362 ... \n",
"370100-1 388 ... \n",
"370200-1 337 ... \n",
"370300-1 600 ... \n",
"380000-1 726 ... \n",
"\n",
" PA State Treasurer Pct DEM PA State Treasurer Pct REP \\\n",
"010001-1 35.975976 56.816817 \n",
"010002-1 43.618267 48.887588 \n",
"020100-1 41.864407 51.186441 \n",
"020200-1 38.503650 50.364964 \n",
"020300-1 38.041734 53.611557 \n",
"... ... ... \n",
"360004-1 38.784370 52.966715 \n",
"370100-1 52.158273 37.050360 \n",
"370200-1 51.900109 37.785016 \n",
"370300-1 47.580645 42.607527 \n",
"380000-1 36.794582 55.831452 \n",
"\n",
" PA State Treasurer Pct LIB PA State Treasurer Pct GRE \\\n",
"010001-1 1.801802 1.321321 \n",
"010002-1 2.224824 1.170960 \n",
"020100-1 2.881356 1.355932 \n",
"020200-1 3.832117 1.277372 \n",
"020300-1 3.210273 0.642055 \n",
"... ... ... \n",
"360004-1 2.026049 1.302460 \n",
"370100-1 3.956835 2.158273 \n",
"370200-1 4.125950 1.628664 \n",
"370300-1 2.217742 1.948925 \n",
"380000-1 2.257336 0.902935 \n",
"\n",
" PA Representative in Congress 7th Congressional District Pct DEM \\\n",
"010001-1 37.837838 \n",
"010002-1 46.545667 \n",
"020100-1 43.898305 \n",
"020200-1 39.781022 \n",
"020300-1 39.325843 \n",
"... ... \n",
"360004-1 41.823444 \n",
"370100-1 56.025180 \n",
"370200-1 55.374593 \n",
"370300-1 50.806452 \n",
"380000-1 37.848006 \n",
"\n",
" PA Representative in Congress 7th Congressional District Pct REP \\\n",
"010001-1 59.759760 \n",
"010002-1 50.878220 \n",
"020100-1 54.237288 \n",
"020200-1 54.744526 \n",
"020300-1 57.784912 \n",
"... ... \n",
"360004-1 56.439942 \n",
"370100-1 40.017986 \n",
"370200-1 41.259501 \n",
"370300-1 45.362903 \n",
"380000-1 58.765989 \n",
"\n",
" County Total Votes Pct Ballots Cast Max Ballots Cast Min Ballots Cast \n",
"010001-1 170048.0 0.979135 3295.0 119.0 \n",
"010002-1 170048.0 1.004422 3295.0 119.0 \n",
"020100-1 170048.0 0.346961 3295.0 119.0 \n",
"020200-1 170048.0 0.322262 3295.0 119.0 \n",
"020300-1 170048.0 0.366367 3295.0 119.0 \n",
"... ... ... ... ... \n",
"360004-1 170048.0 0.406356 3295.0 119.0 \n",
"370100-1 170048.0 0.653933 3295.0 119.0 \n",
"370200-1 170048.0 0.541612 3295.0 119.0 \n",
"370300-1 170048.0 0.875047 3295.0 119.0 \n",
"380000-1 170048.0 0.781544 3295.0 119.0 \n",
"\n",
"[154 rows x 64 columns]"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Step 5\n",
"# Bring it into a dataframe and do some stats on it\n",
"import pandas as pd\n",
"df = pd.DataFrame(precinct_report_dict).T\n",
"\n",
"# Lets add in some ratios (They need to be changed to float to convert it back to JSON at some point)\n",
"\n",
"calculated_elections = {\n",
" 'Presidential Electors': {\n",
" 'dem': 'Presidential Electors DEM Biden and Harris',\n",
" 'rep': 'Presidential Electors REP Trump and Pence',\n",
" 'lib': 'Presidential Electors LIB Jorgensen and Cohen'\n",
" },\n",
" 'PA Attorney General': {\n",
" 'dem': \"Attorney General DEM Josh Shapiro\",\n",
" 'rep': \"Attorney General REP Heather Heidelbaugh\",\n",
" 'lib': \"Attorney General LIB Daniel Wassmer\",\n",
" 'gre': \"Attorney General GRE Richard L Weiss\"\n",
" },\n",
" 'PA Auditor General': {\n",
" 'dem': \"Auditor General DEM Nina Ahmad\",\n",
" 'rep': \"Auditor General REP Timothy Defoor\",\n",
" 'lib': \"Auditor General LIB Jennifer Moore\",\n",
" 'gre': \"Auditor General GRE Olivia Faison\"\n",
" },\n",
" 'PA State Treasurer': {\n",
" 'dem': \"State Treasurer DEM Joe Torsella\",\n",
" 'rep': \"State Treasurer REP Stacy L. Garrity\",\n",
" 'lib': \"State Treasurer LIB Joe Soloski\",\n",
" 'gre': \"State Treasurer GRE Timothy Runkle\"\n",
" },\n",
" 'PA Representative in Congress 7th Congressional District': {\n",
" 'dem': \"Representative in Congress 7th Congressional District DEM Susan Wild\",\n",
" 'rep': \"Representative in Congress 7th Congressional District REP Lisa Scheller\"\n",
" }\n",
"}\n",
"# Create the columns\n",
"for seat in calculated_elections:\n",
" for party in calculated_elections[seat]:\n",
" df[seat + ' Pct ' + party.upper()] = ((\n",
" pd.to_numeric(df[calculated_elections[seat][party]]) /\n",
" pd.to_numeric(df['STATISTICS Ballots Cast - Total'])) * 100).astype(float)\n",
"\n",
"# Let's add some extra fields to make it easy to style\n",
"df['County Total Votes'] = (pd.to_numeric(df['STATISTICS Ballots Cast - Total']).sum()).astype(float)\n",
"df['Pct Ballots Cast'] = ((\n",
" pd.to_numeric(df['STATISTICS Ballots Cast - Total']) /\n",
" df['County Total Votes']) * 100).astype(float)\n",
"df['Max Ballots Cast'] = (pd.to_numeric(df['STATISTICS Ballots Cast - Total']).max()).astype(float)\n",
"df['Min Ballots Cast'] = (pd.to_numeric(df['STATISTICS Ballots Cast - Total']).min()).astype(float)\n",
"df['STATISTICS Ballots Cast - Total'] = df['STATISTICS Ballots Cast - Total'].astype(float)\n",
"\n",
"print(\"Step 5 Done\")\n",
"df"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Step 6 Done\n"
]
}
],
"source": [
"# Step 6\n",
"# Join the GeoJSON data to the dataframe\n",
"\n",
"for feature in precincts_geojson[\"features\"]:\n",
" if feature[\"properties\"][\"PRECINCTID\"] in df.index:\n",
" feature[\"properties\"] = {\n",
" **feature[\"properties\"],\n",
" **dict(df.loc[feature[\"properties\"][\"PRECINCTID\"]])\n",
" }\n",
" \n",
"print(\"Step 6 Done\")"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Step 7 Done\n"
]
}
],
"source": [
"# Step 7\n",
"# Create a map\n",
"\n",
"# I'm going to use mapboxgljs, but I don't have an API key, so I will use CARTO tiles instead\n",
"\n",
"from IPython.core.display import display, HTML\n",
"from string import Template \n",
"\n",
"import uuid #the divs will use a unique UUID so that don't stomp on each other\n",
"\n",
"html = Template(\"\"\"\n",
"<link href='https://api.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.css' rel='stylesheet' />\n",
"<style>\n",
" #$map_div { width: 100%; height: 275px; }\n",
"</style>\n",
"\n",
"<div id=\"$map_div\"></div>\n",
"\n",
"<script>\n",
" window.loadmap = function() {\n",
"\n",
" require.config({\n",
" paths: {\n",
" \"mapboxgl\": \"https://api.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl\"\n",
" }\n",
" });\n",
"\n",
" require([\"mapboxgl\"], function(mapboxgl) {\n",
" var map = new mapboxgl.Map({\n",
" container: '$map_div',\n",
" style: {\n",
" 'version': 8,\n",
" 'sources': {\n",
" 'raster-tiles': {\n",
" 'type': 'raster',\n",
" 'tiles': [\n",
" 'https://a.basemaps.cartocdn.com/rastertiles/light_all/{z}}/{x}/{y}.png',\n",
" 'https://b.basemaps.cartocdn.com/rastertiles/light_all/{z}}/{x}/{y}.png',\n",
" 'https://c.basemaps.cartocdn.com/rastertiles/light_all/{z}}/{x}/{y}.png',\n",
" 'https://d.basemaps.cartocdn.com/rastertiles/light_all/{z}}/{x}/{y}.png'\n",
" ],\n",
" 'tileSize': 256,\n",
" 'attribution': '© <a href=\"http://www.openstreetmap.org/copyright\" target=\"_blank\">OpenStreetMap</a> contributors, © <a href=\"https://carto.com/attributions\" target=\"_blank\">CARTO</a>'\n",
" }\n",
" },\n",
" 'layers': [\n",
" {\n",
" 'id': 'simple-tiles',\n",
" 'type': 'raster',\n",
" 'source': 'raster-tiles',\n",
" 'minzoom': 0,\n",
" 'maxzoom': 22\n",
" }\n",
" ]\n",
" },\n",
" center: [-75, 40.75],\n",
" zoom: 8.4\n",
" });\n",
"\n",
" map.on('load', function () {\n",
" map.addSource('$layer_name', {\n",
" 'type': 'geojson',\n",
" 'data': $geojson\n",
" });\n",
" map.addLayer({\n",
" 'id': 'precincts',\n",
" 'type': 'fill',\n",
" 'source': '$layer_name',\n",
" 'layout': {},\n",
" 'paint': $style\n",
" });\n",
" });\n",
" \n",
" $more_code\n",
" \n",
" });\n",
" };\n",
" loadmap();\n",
"</script>\n",
"\"\"\")\n",
"\n",
"print('Step 7 Done')"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"<link href='https://api.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.css' rel='stylesheet' />\n",
"<style>\n",
" #mapa1951f1f-d3d8-487b-b8b7-c0ea6d0954f5 { width: 100%; height: 275px; }\n",
"</style>\n",
"\n",
"<div id=\"mapa1951f1f-d3d8-487b-b8b7-c0ea6d0954f5\"></div>\n",
"\n",
"<script>\n",
" window.loadmap = function() {\n",
"\n",
" require.config({\n",
" paths: {\n",
" \"mapboxgl\": \"https://api.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl\"\n",
" }\n",
" });\n",
"\n",
" require([\"mapboxgl\"], function(mapboxgl) {\n",
" var map = new mapboxgl.Map({\n",
" container: 'mapa1951f1f-d3d8-487b-b8b7-c0ea6d0954f5',\n",
" style: {\n",
" 'version': 8,\n",
" 'sources': {\n",
" 'raster-tiles': {\n",
" 'type': 'raster',\n",
" 'tiles': [\n",
" 'https://a.basemaps.cartocdn.com/rastertiles/light_all/{z}}/{x}/{y}.png',\n",
" 'https://b.basemaps.cartocdn.com/rastertiles/light_all/{z}}/{x}/{y}.png',\n",
" 'https://c.basemaps.cartocdn.com/rastertiles/light_all/{z}}/{x}/{y}.png',\n",
" 'https://d.basemaps.cartocdn.com/rastertiles/light_all/{z}}/{x}/{y}.png'\n",
" ],\n",
" 'tileSize': 256,\n",
" 'attribution': '© <a href=\"http://www.openstreetmap.org/copyright\" target=\"_blank\">OpenStreetMap</a> contributors, © <a href=\"https://carto.com/attributions\" target=\"_blank\">CARTO</a>'\n",
" }\n",
" },\n",
" 'layers': [\n",
" {\n",
" 'id': 'simple-tiles',\n",
" 'type': 'raster',\n",
" 'source': 'raster-tiles',\n",
" 'minzoom': 0,\n",
" 'maxzoom': 22\n",
" }\n",
" ]\n",
" },\n",
" center: [-75, 40.75],\n",
" zoom: 8.4\n",
" });\n",
"\n",
" map.on('load', function () {\n",
" map.addSource('precincts', {\n",
" 'type': 'geojson',\n",
" 'data': {\"type\": \"FeatureCollection\", \"crs\": {\"type\": \"name\", \"properties\": {\"name\": \"urn:ogc:def:crs:OGC:1.3:CRS84\"}}, \"features\": [{\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 405, \"PRECINCTID\": \"220300-1\", \"NAME\": \"NORTHAMPTON BOROUGH 3RD WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"GRACE UNITED CHURCH OF CHRIST\", \"SiteAddress\": \"902 LINCOLN AVE\", \"City\": \"NORTHAMPTON\", \"STATISTICS Registered Voters - Total\": \"2819\", \"STATISTICS Ballots Cast - Total\": 2308.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"81.87%\", \"Presidential Electors DEM Biden and Harris\": \"1001\", \"Presidential Electors REP Trump and Pence\": \"1269\", \"Presidential Electors LIB Jorgensen and Cohen\": \"30\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"994\", \"Attorney General REP Heather Heidelbaugh\": \"1160\", \"Attorney General LIB Daniel Wassmer\": \"45\", \"Attorney General GRE Richard L Weiss\": \"19\", \"Attorney General Write-In Totals\": \"2\", \"Auditor General DEM Nina Ahmad\": \"908\", \"Auditor General REP Timothy Defoor\": \"1207\", \"Auditor General LIB Jennifer Moore\": \"66\", \"Auditor General GRE Olivia Faison\": \"22\", \"Auditor General Write-In Totals\": \"2\", \"State Treasurer DEM Joe Torsella\": \"970\", \"State Treasurer REP Stacy L. Garrity\": \"1174\", \"State Treasurer LIB Joe Soloski\": \"54\", \"State Treasurer GRE Timothy Runkle\": \"13\", \"State Treasurer Write-In Totals\": \"1\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"981\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"1274\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"902\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"1342\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"3\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 43.370883882149045, \"Presidential Electors Pct REP\": 54.98266897746967, \"Presidential Electors Pct LIB\": 1.2998266897746966, \"PA Attorney General Pct DEM\": 43.06759098786828, \"PA Attorney General Pct REP\": 50.25996533795494, \"PA Attorney General Pct LIB\": 1.9497400346620448, \"PA Attorney General Pct GRE\": 0.8232235701906412, \"PA Auditor General Pct DEM\": 39.34142114384749, \"PA Auditor General Pct REP\": 52.296360485268636, \"PA Auditor General Pct LIB\": 2.859618717504333, \"PA Auditor General Pct GRE\": 0.9532062391681109, \"PA State Treasurer Pct DEM\": 42.02772963604853, \"PA State Treasurer Pct REP\": 50.86655112651647, \"PA State Treasurer Pct LIB\": 2.3396880415944543, \"PA State Treasurer Pct GRE\": 0.5632582322357019, \"PA Representative in Congress 7th Congressional District Pct DEM\": 42.50433275563258, \"PA Representative in Congress 7th Congressional District Pct REP\": 55.19930675909879, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 1.3572638313887844, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.4783960855644, 40.69282381049141], [-75.47733819876366, 40.69219376255843], [-75.47463018082298, 40.69058084699972], [-75.47456806710885, 40.69054592812538], [-75.47454699398028, 40.69053408217726], [-75.47437433427693, 40.690439740780555], [-75.4743754578947, 40.69040655697074], [-75.47439652238351, 40.68926244597091], [-75.474398074201, 40.68917816770089], [-75.47440054671266, 40.689043873935795], [-75.47441811968551, 40.688089365081524], [-75.47443495394445, 40.68717490459468], [-75.47443796885622, 40.68701112969146], [-75.47445605785381, 40.68602855489864], [-75.47447028825961, 40.68559901504643], [-75.4744967023685, 40.6848017359872], [-75.47452350814078, 40.683992624707805], [-75.47453820702798, 40.68354890649301], [-75.4745383256271, 40.683545333381026], [-75.47457998170054, 40.68228193781582], [-75.47462042134292, 40.681055373248704], [-75.47463926382804, 40.68048386332391], [-75.47463938123383, 40.680480290185955], [-75.47409391076248, 40.67849652377281], [-75.47360457640347, 40.67671680785578], [-75.47360190651169, 40.67666252650257], [-75.47355812102903, 40.676517770855675], [-75.47338235431852, 40.675877386526395], [-75.47331968851516, 40.675597974988904], [-75.4731963934461, 40.67487255729051], [-75.47314277518902, 40.67459869131719], [-75.47307802561448, 40.67426796438925], [-75.47294761135198, 40.674143418638295], [-75.47273067613152, 40.673215483003716], [-75.47229585594062, 40.671449805053804], [-75.47205679871308, 40.67047902090636], [-75.47216026405265, 40.67043468060664], [-75.47217238522177, 40.67042968570328], [-75.47222128030971, 40.67040953487113], [-75.4724144425815, 40.670329928826284], [-75.47258359439918, 40.670260058373294], [-75.4726380453661, 40.670235466320975], [-75.47321362605268, 40.66997550586843], [-75.47322356000836, 40.66997101922934], [-75.47364229291803, 40.66979887666726], [-75.47382414857387, 40.669727471966596], [-75.47382502868483, 40.66972712620245], [-75.47367613051783, 40.669093679699905], [-75.47367530524082, 40.66909017002358], [-75.4736926369194, 40.66908900404812], [-75.47374763316857, 40.669085305578065], [-75.47376024178585, 40.66908445766219], [-75.47379852221275, 40.669081137293134], [-75.4740369202162, 40.669060457110206], [-75.47425394999689, 40.669040863280955], [-75.47446827862471, 40.66902112955905], [-75.4744712837239, 40.668993375861284], [-75.47447292928913, 40.66897817487506], [-75.47447877153512, 40.66892420372584], [-75.47450730842742, 40.66892212425925], [-75.4745413757159, 40.66891964253313], [-75.47461794885237, 40.6689140636083], [-75.47467128897361, 40.66890961873708], [-75.47474361345496, 40.66890365908198], [-75.4748828545465, 40.66889163172975], [-75.47496514887311, 40.668884065862855], [-75.47509711866338, 40.66887378376186], [-75.47523455486308, 40.668861807061], [-75.47531138384876, 40.66885593542124], [-75.4755138748507, 40.668839657422915], [-75.47574982456595, 40.66882034545172], [-75.4759640894078, 40.66880249590505], [-75.47610773384775, 40.66879052822223], [-75.47610784062108, 40.66879051950597], [-75.4761078892481, 40.6687905159553], [-75.47617835298409, 40.66878464503907], [-75.4763953220692, 40.668766762148685], [-75.47661679685186, 40.66874896629129], [-75.47683045721229, 40.66873099429934], [-75.47683106586787, 40.668730943172314], [-75.47682516530104, 40.66868837523152], [-75.47682213126552, 40.66866648920648], [-75.4768216444263, 40.66866297267734], [-75.47685871810081, 40.66865949972859], [-75.47689483278333, 40.66865611697076], [-75.47718068458508, 40.668629338538246], [-75.47726661693059, 40.668620913587645], [-75.47727417714772, 40.66862017083426], [-75.47727475406226, 40.66862011367775], [-75.47727361570976, 40.668611336065446], [-75.47726935748824, 40.66857851774318], [-75.47724088404382, 40.66835902398472], [-75.47724042692514, 40.66835550263492], [-75.47731328751316, 40.66834898707158], [-75.47732542599653, 40.668347901643536], [-75.47737820941013, 40.66834300141267], [-75.47768716693415, 40.66831431980729], [-75.47803826055784, 40.668275636650044], [-75.47811793289658, 40.66826485793393], [-75.47813144988558, 40.66826303011055], [-75.47813244825167, 40.66826289472621], [-75.47812267938274, 40.668224598542416], [-75.4781103280624, 40.66817617852579], [-75.47807363864017, 40.668032352541516], [-75.47807356543213, 40.66803206824223], [-75.47807274433005, 40.66802884875398], [-75.4780729312631, 40.66802877854743], [-75.4781455759091, 40.66800147217164], [-75.4790022828078, 40.66767944250956], [-75.47957022952971, 40.66746595102259], [-75.48013853173337, 40.667254435718945], [-75.4801386036127, 40.6672544091999], [-75.48070870421513, 40.66704222010564], [-75.48081193652153, 40.667001891772635], [-75.48081558827944, 40.6670004651354], [-75.48089563340659, 40.66695260773199], [-75.48146040538771, 40.66691294740668], [-75.48163103075652, 40.66690148822841], [-75.48191850065609, 40.66688218081703], [-75.48234414469351, 40.66685129306845], [-75.48247020625806, 40.66682896086902], [-75.48325966115469, 40.66670273188027], [-75.48363103365256, 40.666669122725466], [-75.48390343838494, 40.66664446854153], [-75.48395690397201, 40.66663963003019], [-75.48395836596654, 40.66663949735114], [-75.48395846622174, 40.666640313672005], [-75.48399505187066, 40.66693723464552], [-75.48400868960503, 40.6672759350084], [-75.4840551163414, 40.66842890858696], [-75.48420321372808, 40.66942082603994], [-75.48422702837878, 40.669521118155714], [-75.48424635298402, 40.66959386036937], [-75.48426734181211, 40.66966633511541], [-75.48428998853282, 40.66973851974809], [-75.48431428678532, 40.66981039252194], [-75.48434022902637, 40.6698819316682], [-75.48436780656068, 40.66995311449484], [-75.48439101695554, 40.670009386836234], [-75.48439701178411, 40.67002392103341], [-75.48456377509491, 40.67045348078736], [-75.48465477738489, 40.67062864087388], [-75.48553234305763, 40.67231771081936], [-75.48557726902322, 40.67240417429217], [-75.48594290867523, 40.67304449831815], [-75.48595439863828, 40.67305998378668], [-75.485965997811, 40.673075423641535], [-75.48603955521016, 40.673169122016795], [-75.48608014509169, 40.67321798780144], [-75.48612185024042, 40.67326630691254], [-75.48616465695405, 40.67331406466786], [-75.48620855153021, 40.67336124638535], [-75.48625352147907, 40.673407836505575], [-75.48629955182466, 40.67345382302403], [-75.48632608023179, 40.67347938784096], [-75.48661989027578, 40.673733957392656], [-75.4866502612186, 40.67375764410592], [-75.48670425077472, 40.673798305083245], [-75.48675916281462, 40.67383824174532], [-75.4868149834828, 40.67387744391126], [-75.48687169431506, 40.67391589770678], [-75.48692927675633, 40.67395359195847], [-75.4869877157985, 40.67399051556202], [-75.48704699173399, 40.674026656420764], [-75.48710708712912, 40.67406200518483], [-75.48716798348873, 40.67409654888024], [-75.4872643417363, 40.67416411653557], [-75.48757421588692, 40.67438140399878], [-75.48769297730973, 40.674501255281186], [-75.48772266805746, 40.674531217187756], [-75.48790599768893, 40.67466651514972], [-75.48805704407374, 40.67480523779462], [-75.48815813458404, 40.67487094304124], [-75.48825174670228, 40.67492956767772], [-75.48839510828695, 40.67500562080892], [-75.48842665336599, 40.67502148811724], [-75.48844595381107, 40.675031684563116], [-75.48846501617923, 40.67504213490365], [-75.48848383698397, 40.67505283726928], [-75.48850241040405, 40.6750637888441], [-75.48852072831411, 40.67507498496563], [-75.48853878844018, 40.675086422887034], [-75.48855658262646, 40.675098098846064], [-75.48857410626442, 40.675110009149606], [-75.48859135471535, 40.67512215100485], [-75.48860832221852, 40.675134519795314], [-75.48862500295266, 40.67514711270514], [-75.4886413935219, 40.67515992516396], [-75.48865748695287, 40.67517295343269], [-75.48867327984962, 40.67518619294087], [-75.48872270113841, 40.67523043836167], [-75.48886563254956, 40.67536542981278], [-75.48905579217687, 40.67554700089548], [-75.48919916750263, 40.67567164720998], [-75.48932368953926, 40.6757719265556], [-75.48950797045113, 40.67593352684147], [-75.48950923010818, 40.675934631501065], [-75.489521855425, 40.675945702979426], [-75.48962762116616, 40.67604242019299], [-75.48974795220111, 40.67613615924646], [-75.48994259226217, 40.67626639079473], [-75.49025175105558, 40.67646734250743], [-75.49024860411268, 40.67646894863902], [-75.49025163093913, 40.67647091559548], [-75.49020595821368, 40.67649422304418], [-75.49020309053009, 40.67649568777958], [-75.4898389498385, 40.67668151690991], [-75.48983688036267, 40.67668257289798], [-75.48988475922249, 40.67674441892527], [-75.48988487944726, 40.67674457351004], [-75.48987688033131, 40.6768585727941], [-75.48982887996536, 40.676940573021085], [-75.48981087983273, 40.67699257264654], [-75.4897818803991, 40.67701557339926], [-75.48972987989146, 40.6770365728074], [-75.48969287927544, 40.67711957289762], [-75.48969262290818, 40.677119842656694], [-75.48965287925722, 40.67716157320045], [-75.48960188042481, 40.67729057290396], [-75.48956188039217, 40.67734657310983], [-75.48951587982562, 40.677393573171095], [-75.48947587940765, 40.67742157347424], [-75.4894228800186, 40.67750857304239], [-75.48937515536898, 40.6775981770368], [-75.48937387972312, 40.67760057272401], [-75.48931788027983, 40.67770457294666], [-75.48924487993153, 40.677777572676064], [-75.48924309044187, 40.677807102414484], [-75.48924288024517, 40.6778105728515], [-75.48925687949796, 40.67782657349502], [-75.48929887958076, 40.677820572887995], [-75.48931088034858, 40.677836573303026], [-75.48932587945059, 40.67787157319655], [-75.48936587956926, 40.67792057301403], [-75.48938788009735, 40.67798857286767], [-75.489454879623, 40.67808057347739], [-75.48948187950525, 40.67816057263405], [-75.48949288004391, 40.6782345729331], [-75.48949787987772, 40.67833557330402], [-75.48954905763448, 40.67852158322758], [-75.48954988003923, 40.67852457292479], [-75.48952888013284, 40.678537573488775], [-75.48949188031466, 40.678526572836645], [-75.48946818127415, 40.67853545979944], [-75.48946787929133, 40.678535572823904], [-75.48947072760642, 40.67858968134955], [-75.48947088001914, 40.678592573309125], [-75.48944487974278, 40.67865757277654], [-75.48938387991669, 40.678719573053996], [-75.4891858796098, 40.67889357307549], [-75.48909087982638, 40.67902257326851], [-75.48905188001469, 40.67912657325705], [-75.48903288031939, 40.67925057349659], [-75.48903287659176, 40.679250613961656], [-75.48902518211176, 40.67933717685216], [-75.48902487972147, 40.67934057342331], [-75.48906287972206, 40.67937757299038], [-75.48908288001077, 40.67939057283311], [-75.48908987953673, 40.67942957325528], [-75.48912787936096, 40.67953757326526], [-75.4893008797552, 40.67982057309171], [-75.48941687941911, 40.679941572789204], [-75.4894978798131, 40.68007757287475], [-75.48956287944205, 40.68020057272538], [-75.48965088039989, 40.68030157284459], [-75.48970387958936, 40.68040057280648], [-75.48974687967882, 40.68050757278944], [-75.48979387965355, 40.680592572968436], [-75.48985787926169, 40.680799573371544], [-75.4898718796753, 40.680908572827015], [-75.48990987990217, 40.681029573399364], [-75.48993787946483, 40.681137572760285], [-75.49001087990364, 40.681311573284006], [-75.49007388041329, 40.681495572768554], [-75.49009887937497, 40.681642573016155], [-75.49013588006598, 40.68179357350975], [-75.49016488011895, 40.681843572937744], [-75.4902328801381, 40.68190557290304], [-75.49029688010474, 40.681990573443215], [-75.49030364035923, 40.68207652884027], [-75.49030388000013, 40.68207957293481], [-75.49026988009854, 40.68212957268131], [-75.4902648797862, 40.68216757347077], [-75.49023888027666, 40.68221757324304], [-75.49021688036954, 40.68223357316164], [-75.49019288021582, 40.68226257282277], [-75.490148879808, 40.6823295728631], [-75.49011787957119, 40.6823985729228], [-75.4900258800703, 40.68243557301817], [-75.48999888007266, 40.68248857285029], [-75.48998287940958, 40.682509573068224], [-75.48991287957826, 40.68254057339234], [-75.48988799717203, 40.682567298301954], [-75.48988587943312, 40.68256957308625], [-75.48990587964803, 40.68258257275387], [-75.48992987970838, 40.68258557269408], [-75.48995287945273, 40.68259657329181], [-75.48997487966763, 40.682628572745315], [-75.48998235582789, 40.68265754071999], [-75.48998288033368, 40.68265957332056], [-75.48992387981028, 40.68280057303781], [-75.4897898793719, 40.68299357315429], [-75.4897428802198, 40.68303757298206], [-75.48967587992479, 40.683060572736736], [-75.48954187980307, 40.683138573488435], [-75.48945588039705, 40.68317657291302], [-75.4892738799379, 40.68319057286811], [-75.48907088003651, 40.68324157315672], [-75.48890287944249, 40.683255573393936], [-75.48886487954258, 40.68325157333289], [-75.4886898800639, 40.68321557275178], [-75.48854487960534, 40.683193573018606], [-75.48833488012954, 40.68318157329394], [-75.48824849474188, 40.68321006137379], [-75.4882408794215, 40.68321257304016], [-75.48820388010535, 40.68321657279517], [-75.48799887977142, 40.68323957291214], [-75.48789887957989, 40.683258573325645], [-75.4878338792495, 40.68326157280341], [-75.4877468798512, 40.68327257318649], [-75.4877118795543, 40.683291572891896], [-75.48761687937758, 40.683318572743374], [-75.4875118798067, 40.68335457320941], [-75.48734487930287, 40.683391572887345], [-75.48716487939713, 40.68342657288174], [-75.48711387960394, 40.683439573263634], [-75.48701387912857, 40.68347357277143], [-75.48687887965636, 40.683505573146526], [-75.48682988016272, 40.6835285730028], [-75.48674387970392, 40.68358657263953], [-75.48670187962664, 40.68365557339502], [-75.48663087976718, 40.68373857296058], [-75.48652387955714, 40.68379557348233], [-75.48639187921094, 40.683831573002095], [-75.48628187931371, 40.68387257263032], [-75.48610687981824, 40.68391357270499], [-75.48600987923986, 40.68399457349815], [-75.48590170757204, 40.68406503343791], [-75.48590087997499, 40.68406557309943], [-75.48590734385938, 40.684093279341155], [-75.48590787956275, 40.68409557342324], [-75.48588787938297, 40.68413457304502], [-75.48583088018046, 40.68414357314793], [-75.48580187948176, 40.68412657301203], [-75.48575988018618, 40.684125572929574], [-75.48567287952417, 40.68419157333354], [-75.48563887989614, 40.6842115729788], [-75.48551587906016, 40.68432157271334], [-75.48531687980125, 40.68443757346496], [-75.48508187942065, 40.68455357351441], [-75.48505287909732, 40.68457157346814], [-75.48501912251334, 40.684607315327526], [-75.48501887953198, 40.684607572726364], [-75.48501975314791, 40.68463116202084], [-75.48501987959999, 40.6846345732621], [-75.48495887910418, 40.684674572825], [-75.48488387969596, 40.68475757343098], [-75.4848348791059, 40.6848505729833], [-75.48480187954809, 40.68487557265745], [-75.48472787985419, 40.68496657321726], [-75.48447087963352, 40.68519257345087], [-75.48445087986798, 40.685220572709326], [-75.48437487921622, 40.685301573399265], [-75.48426187904775, 40.685402573250116], [-75.48417887900763, 40.685494573247155], [-75.48412087900883, 40.68558857319716], [-75.48411187976807, 40.68561857276663], [-75.48410930204416, 40.685623636466744], [-75.48402787957585, 40.685783573267216], [-75.48399687925489, 40.6859145728763], [-75.48396887914653, 40.6859795726258], [-75.48393287966184, 40.68614157328172], [-75.48389587939002, 40.686180572844535], [-75.48387239664537, 40.68629701040679], [-75.48387187948174, 40.686299573096264], [-75.48390288005176, 40.68637857331791], [-75.4839618794219, 40.68645657290747], [-75.48399287901566, 40.686537572939955], [-75.48399887976692, 40.68661357317085], [-75.48401253550206, 40.68670232927987], [-75.48401287997146, 40.68670457279046], [-75.48399187993599, 40.68676457271787], [-75.48396887953096, 40.68679457348927], [-75.48395804930009, 40.68682608310845], [-75.48395788010754, 40.68682657346221], [-75.48395883629824, 40.686887786970544], [-75.48395887963319, 40.6868905732083], [-75.48395388000122, 40.686914572947025], [-75.4839008797024, 40.68690857294738], [-75.483781878958, 40.68698657293447], [-75.48374487996122, 40.68703657351075], [-75.48369987919635, 40.68707557343974], [-75.48366687931353, 40.68710457342235], [-75.48359888005231, 40.68715757337517], [-75.48343887936657, 40.68732957336916], [-75.48338087895735, 40.68736157277135], [-75.48334587998171, 40.6873905732369], [-75.48332187968444, 40.68741757347207], [-75.48328487892411, 40.687441572984326], [-75.48322787948723, 40.68744757296798], [-75.4831908798378, 40.687461573170054], [-75.48315987952925, 40.68748057315266], [-75.48306987903642, 40.6875505731343], [-75.4829358791972, 40.68763357335778], [-75.4827588791535, 40.68773657289877], [-75.48265987968529, 40.68780757316326], [-75.48256187976628, 40.68790457305844], [-75.48248187902018, 40.687994573008716], [-75.48244087960909, 40.688052572796394], [-75.48240710675945, 40.68810041817068], [-75.4824048795889, 40.688103573505686], [-75.4825108799981, 40.688124573280554], [-75.48251987979131, 40.6881465729224], [-75.48257487946537, 40.6881845734539], [-75.48259674798825, 40.688214394395644], [-75.48259687925366, 40.68821457262508], [-75.48259104646816, 40.688293312562614], [-75.48259087907991, 40.6882955730965], [-75.48259477736306, 40.68840473538349], [-75.48259487925718, 40.688407573213446], [-75.48255987917885, 40.68852357276302], [-75.48254887953425, 40.688540572749396], [-75.48254487974108, 40.688575573190704], [-75.48252487934779, 40.68866057264125], [-75.48240787909889, 40.68884557318535], [-75.48227087926169, 40.6891475735041], [-75.48210287884211, 40.68929957347162], [-75.48205187920014, 40.68932857330338], [-75.48201687932061, 40.689385573213286], [-75.48193087936625, 40.689450573451275], [-75.48191287920545, 40.68950257277722], [-75.4818498796754, 40.689617573295216], [-75.48183237356434, 40.689660365796364], [-75.48183187955158, 40.68966157316823], [-75.48183787891216, 40.68969957342089], [-75.48185932560968, 40.68975318998001], [-75.48185987895712, 40.68975457277649], [-75.48184387985123, 40.68980657338438], [-75.48181487980776, 40.689973572962984], [-75.48179987938275, 40.69011457335295], [-75.48177387901856, 40.69020657286149], [-75.4817698794393, 40.69023657272488], [-75.48171187895622, 40.690440572803716], [-75.48167487916012, 40.69053057262996], [-75.48163487956313, 40.69060257269498], [-75.48158387940977, 40.69074957306681], [-75.48154387901596, 40.69082057315549], [-75.48154187888986, 40.69087057287494], [-75.48151203459616, 40.691017809483924], [-75.48151187982197, 40.691018573069925], [-75.48151284354155, 40.69109766114686], [-75.48151287897545, 40.691100573347335], [-75.48149987996717, 40.691155572908706], [-75.48146995543146, 40.69122439991979], [-75.4814698797565, 40.691224573202305], [-75.48146892656773, 40.69129607656907], [-75.48146887956416, 40.6912995727017], [-75.48137887975972, 40.6913935733729], [-75.48136453535048, 40.69143660600175], [-75.48136387956474, 40.69143857321704], [-75.48136987937852, 40.69145657309025], [-75.48139087968956, 40.6914845728665], [-75.48140887902744, 40.69152157276995], [-75.48141077622574, 40.6915623457529], [-75.48141087975488, 40.691564572846616], [-75.48140641868781, 40.69159133776702], [-75.48140587987159, 40.69159457294707], [-75.48143187891253, 40.69161557277741], [-75.48149587909822, 40.691764572611945], [-75.48171887942166, 40.692223572727066], [-75.48176887965029, 40.69230157295597], [-75.48182287989533, 40.69236857287746], [-75.48190387939266, 40.69241657324213], [-75.48220087962454, 40.69253557303688], [-75.48227587893065, 40.692560572757614], [-75.4823518799891, 40.692594573358576], [-75.48267187952843, 40.69267257311229], [-75.4827498794922, 40.692675573275636], [-75.48303687949627, 40.692688573010294], [-75.4831628792178, 40.6926935730432], [-75.48328187907228, 40.692691572677454], [-75.48338587902028, 40.69267557285601], [-75.48359987925322, 40.692657572969615], [-75.48378287928197, 40.69259957345668], [-75.4839068795777, 40.69257057297655], [-75.48408287996597, 40.69247757297284], [-75.4841598798301, 40.69244957288065], [-75.48426287954932, 40.692424573205216], [-75.48442988007375, 40.69241957349167], [-75.48448287959252, 40.69243257264121], [-75.48450787915786, 40.69245057316544], [-75.48451887930825, 40.69248257312422], [-75.4845428795662, 40.69247657295168], [-75.484554624588, 40.69245579212279], [-75.48455587936401, 40.69245357264483], [-75.48455492496973, 40.69245190187093], [-75.48453187935803, 40.69241157264599], [-75.48450191984915, 40.69238257963631], [-75.48450087916285, 40.692381572894824], [-75.4845018913096, 40.69237886222692], [-75.48453188005868, 40.69229857351261], [-75.48455287921271, 40.69227957330663], [-75.48460987935309, 40.692258572784176], [-75.48469587950727, 40.692240572641815], [-75.48477588006645, 40.69223357339975], [-75.48483887917064, 40.692208573093325], [-75.48494387998436, 40.69217657276405], [-75.48509487935793, 40.69214757305523], [-75.48515730545579, 40.692137989117406], [-75.48515681437087, 40.69213451040741], [-75.48515742587101, 40.69213441604833], [-75.48522769117426, 40.692631678616614], [-75.48536222235035, 40.693697630660814], [-75.48536720118244, 40.693737079987145], [-75.4853666389496, 40.693737151887646], [-75.48153486662329, 40.69422876832513], [-75.48141983190851, 40.69424350846492], [-75.47863907250851, 40.694600012359906], [-75.4785824038389, 40.694185781249224], [-75.4783960855644, 40.69282381049141]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 406, \"PRECINCTID\": \"220200-1\", \"NAME\": \"NORTHAMPTON BOROUGH 2ND WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"NORTHAMPTON MEMORIAL COMMUNITY CENTER\", \"SiteAddress\": \"1601 LAUBACH AVE\", \"City\": \"NORTHAMPTON\", \"STATISTICS Registered Voters - Total\": \"1613\", \"STATISTICS Ballots Cast - Total\": 1155.0, \"STATISTICS Ballots Cast - Blank\": \"1\", \"STATISTICS Voter Turnout - Total\": \"71.61%\", \"Presidential Electors DEM Biden and Harris\": \"526\", \"Presidential Electors REP Trump and Pence\": \"599\", \"Presidential Electors LIB Jorgensen and Cohen\": \"19\", \"Presidential Electors Write-In Totals\": \"5\", \"Attorney General DEM Josh Shapiro\": \"526\", \"Attorney General REP Heather Heidelbaugh\": \"529\", \"Attorney General LIB Daniel Wassmer\": \"20\", \"Attorney General GRE Richard L Weiss\": \"22\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"477\", \"Auditor General REP Timothy Defoor\": \"551\", \"Auditor General LIB Jennifer Moore\": \"45\", \"Auditor General GRE Olivia Faison\": \"22\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"499\", \"State Treasurer REP Stacy L. Garrity\": \"544\", \"State Treasurer LIB Joe Soloski\": \"37\", \"State Treasurer GRE Timothy Runkle\": \"18\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"510\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"606\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"472\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"646\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 45.541125541125545, \"Presidential Electors Pct REP\": 51.86147186147186, \"Presidential Electors Pct LIB\": 1.645021645021645, \"PA Attorney General Pct DEM\": 45.541125541125545, \"PA Attorney General Pct REP\": 45.8008658008658, \"PA Attorney General Pct LIB\": 1.7316017316017316, \"PA Attorney General Pct GRE\": 1.9047619047619049, \"PA Auditor General Pct DEM\": 41.2987012987013, \"PA Auditor General Pct REP\": 47.705627705627705, \"PA Auditor General Pct LIB\": 3.896103896103896, \"PA Auditor General Pct GRE\": 1.9047619047619049, \"PA State Treasurer Pct DEM\": 43.20346320346321, \"PA State Treasurer Pct REP\": 47.0995670995671, \"PA State Treasurer Pct LIB\": 3.2034632034632033, \"PA State Treasurer Pct GRE\": 1.5584415584415585, \"PA Representative in Congress 7th Congressional District Pct DEM\": 44.15584415584416, \"PA Representative in Congress 7th Congressional District Pct REP\": 52.467532467532465, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.6792199849454271, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.48515742587101, 40.69213441604833], [-75.48509499977649, 40.692143999986236], [-75.48494400041099, 40.69217299969524], [-75.48483899960291, 40.6922050000247], [-75.48477600050212, 40.692230000331165], [-75.48469599994722, 40.692236999573325], [-75.48460999979764, 40.69225499971578], [-75.48455299966032, 40.692276000238316], [-75.48453200050746, 40.692295000444325], [-75.48450099961342, 40.69237799982665], [-75.48450204029966, 40.69237900656815], [-75.484531999807, 40.692407999577824], [-75.48455599981177, 40.692449999576645], [-75.48455474503584, 40.69245221905463], [-75.4845430000147, 40.69247299988355], [-75.48451899975804, 40.69247900005612], [-75.48450799960817, 40.69244700009733], [-75.48448300004414, 40.69242899957309], [-75.48443000052815, 40.6924160004236], [-75.48426300001262, 40.69242100013734], [-75.48416000029891, 40.69244599981288], [-75.48408300043893, 40.6924739999052], [-75.48390700006017, 40.69256699990915], [-75.4837829997711, 40.69259600038946], [-75.48359999975217, 40.69265399990264], [-75.48338599953063, 40.69267199978926], [-75.48328199958819, 40.69268799961081], [-75.48316299974005, 40.6926899999767], [-75.48303700002519, 40.692684999943914], [-75.48275000003638, 40.692672000209534], [-75.48267200007673, 40.692669000046266], [-75.48235200055426, 40.692591000292815], [-75.4822759994998, 40.6925569996919], [-75.48220100019763, 40.69253199997127], [-75.48190399998133, 40.69241300017669], [-75.48182300048823, 40.69236499981206], [-75.48176900024593, 40.69229799989058], [-75.48171900001982, 40.692219999661624], [-75.48149599970739, 40.69176099954638], [-75.48143199952484, 40.69161199971174], [-75.48140600048525, 40.69159099988142], [-75.48141100036823, 40.69156099978095], [-75.48140899964082, 40.69151799970424], [-75.4813910003038, 40.69148099980075], [-75.48136999999384, 40.691453000024495], [-75.48136400018035, 40.69143500015134], [-75.48137900037446, 40.69139000030708], [-75.48146900017395, 40.69129599963571], [-75.4814700003661, 40.691221000136274], [-75.48150000057505, 40.691151999842575], [-75.48151299958255, 40.691097000281125], [-75.48151200042896, 40.691015000003645], [-75.481541999495, 40.69086699980851], [-75.48154399962088, 40.69081700008906], [-75.48158400001245, 40.69074600000025], [-75.48163500016284, 40.690598999628214], [-75.48167499975759, 40.6905269995631], [-75.48171199955155, 40.69043699973673], [-75.48177000003118, 40.69023299965767], [-75.48177399961018, 40.69020299979423], [-75.48179999997281, 40.6901110002856], [-75.4818150003968, 40.68996999989547], [-75.4818440004384, 40.6898030003167], [-75.48185999954337, 40.68975099970873], [-75.48183799949946, 40.68969600035311], [-75.48183200013912, 40.689658000100444], [-75.48185000026191, 40.68961400022735], [-75.4819129997884, 40.68949899970919], [-75.48193099994816, 40.6894470003832], [-75.48201699989784, 40.689382000145045], [-75.48205199977541, 40.68932500023511], [-75.48210299941461, 40.68929600040322], [-75.48227099982499, 40.689144000435384], [-75.48240799965434, 40.68884200011623], [-75.48252499989671, 40.68865699957189], [-75.48254500028878, 40.68857200012122], [-75.48254900008169, 40.68853699967987], [-75.48255999972567, 40.6885199996935], [-75.48259499980193, 40.68840400014372], [-75.48259099962468, 40.68829200002671], [-75.48259699979795, 40.68821099955522], [-75.48257500001078, 40.688181000384084], [-75.48252000033958, 40.68814299985257], [-75.48251100054681, 40.68812100021069], [-75.4824050001432, 40.6881000004359], [-75.48244100016139, 40.68804899972654], [-75.4824819995702, 40.68799099993878], [-75.48256200031189, 40.687900999988386], [-75.48266000022551, 40.68780400009301], [-75.48275899968831, 40.6877329998283], [-75.48293599972244, 40.687630000287044], [-75.48306999955437, 40.687547000063354], [-75.48316000004229, 40.687477000081564], [-75.4831910003492, 40.68745800009892], [-75.4832279999966, 40.68744399989679], [-75.48328499943045, 40.68743799991306], [-75.48332200018878, 40.68741400040074], [-75.48334600048472, 40.687387000165565], [-75.48338099945843, 40.68735799969992], [-75.48343899986453, 40.68732600029763], [-75.48359900054146, 40.68715400030334], [-75.48366699979897, 40.6871010003504], [-75.48369999967998, 40.687072000367706], [-75.4837450004424, 40.687033000438646], [-75.4837819994371, 40.68698299986231], [-75.48390100017504, 40.68690499987502], [-75.48395400047107, 40.68691099987461], [-75.48395900010273, 40.68688700013584], [-75.483958000577, 40.6868230003897], [-75.48396899999979, 40.68679100041673], [-75.48399200040353, 40.68676099964529], [-75.48401300043778, 40.68670099971782], [-75.48399900023381, 40.686610000098135], [-75.48399299948275, 40.68653399986717], [-75.48396199989048, 40.686452999834636], [-75.48390300052334, 40.68637500024507], [-75.48387199995483, 40.6862960000234], [-75.48389599986163, 40.686176999771526], [-75.48393300013142, 40.68613800020865], [-75.4839689996139, 40.68597599955254], [-75.48399699972065, 40.68591099980297], [-75.48402800003973, 40.68578000019374], [-75.48410942250341, 40.68562006339304], [-75.48411200022719, 40.68561499969289], [-75.48412099946741, 40.68558500012341], [-75.48417899946297, 40.685491000173265], [-75.48426199949851, 40.68539900017607], [-75.4843749996608, 40.685298000325005], [-75.48445100030837, 40.68521699963491], [-75.4844710000728, 40.68518900037639], [-75.4847280002794, 40.684963000142325], [-75.48480199996919, 40.6848719995824], [-75.4848349995252, 40.68484699990815], [-75.4848840001125, 40.6847540003557], [-75.4849589995166, 40.68467099974958], [-75.48502000000909, 40.68463100018658], [-75.48501899994109, 40.684603999650825], [-75.48505299950455, 40.68456800039254], [-75.48508199982629, 40.68455000043873], [-75.48531700019419, 40.68443400038895], [-75.48551599944231, 40.68431799963702], [-75.48563900027158, 40.68420799990228], [-75.48567299989776, 40.684188000256945], [-75.48576000055502, 40.68412199985286], [-75.48580199984839, 40.68412299993528], [-75.48583100054557, 40.68414000007113], [-75.48588799974503, 40.68413099996818], [-75.48590799992367, 40.68409200034634], [-75.48590100033624, 40.684062000022486], [-75.48600999959518, 40.683991000421024], [-75.48610700016827, 40.68390999962771], [-75.48628199965437, 40.68386899955281], [-75.48639199954567, 40.683827999924446], [-75.4865239998848, 40.68379200040452], [-75.48663100008905, 40.683734999882596], [-75.48670199994457, 40.6836520003169], [-75.48674400001951, 40.68358299956134], [-75.48683000047363, 40.683524999924444], [-75.48687899996463, 40.68350200006809], [-75.4870139994296, 40.68346999969281], [-75.4871139998996, 40.6834360001849], [-75.48716499969005, 40.68342299980293], [-75.48734499958616, 40.68338799980831], [-75.48751200008105, 40.68335100013018], [-75.4876169996463, 40.68331499966399], [-75.4877119998179, 40.68328799981241], [-75.48774700011292, 40.683269000106954], [-75.48783399950658, 40.683257999723764], [-75.4878989998335, 40.68325500024594], [-75.48799900001968, 40.68323599983233], [-75.48820400034266, 40.6832129997151], [-75.48824099965685, 40.68320899996007], [-75.48824861497683, 40.683206488293656], [-75.48833500035984, 40.683178000213736], [-75.48854499982451, 40.68318999993814], [-75.4886900002754, 40.68321199967119], [-75.48886499974482, 40.6832480002522], [-75.48890299964275, 40.683252000313175], [-75.4890710002278, 40.683238000075754], [-75.48927400011831, 40.683186999786905], [-75.48945600056774, 40.68317299983162], [-75.48954199996915, 40.68313500040691], [-75.4896760000836, 40.68305699965501], [-75.489743000375, 40.683033999900246], [-75.48978999952453, 40.68299000007237], [-75.48992399995545, 40.6827969999556], [-75.48998300047548, 40.682656000238154], [-75.48997499980979, 40.68262499966289], [-75.48995299959599, 40.682593000209394], [-75.48992999985283, 40.68258199961166], [-75.48990599979378, 40.68257899967148], [-75.48988599957988, 40.68256600000388], [-75.48991299972354, 40.68253700030993], [-75.4899829995511, 40.68250599998568], [-75.48999900021327, 40.68248499976774], [-75.4900260002094, 40.68243199993553], [-75.49011799970533, 40.68239499984006], [-75.49014899994037, 40.68232599978024], [-75.49019300034571, 40.6822589997398], [-75.49021700049813, 40.68223000007863], [-75.49023900040406, 40.682214000159995], [-75.49026499991211, 40.68216400038768], [-75.49027000022413, 40.68212599959815], [-75.49030400012381, 40.68207599985157], [-75.49029700022864, 40.681987000359925], [-75.49023300026525, 40.68190199981973], [-75.49016500024959, 40.68183999985444], [-75.49013600019808, 40.68179000042644], [-75.49009899950877, 40.681638999932744], [-75.49007400054815, 40.68149199968506], [-75.49001100004152, 40.68130800020041], [-75.48993799960627, 40.6811339996766], [-75.48991000004493, 40.68102600031561], [-75.48987199981987, 40.680904999743206], [-75.48985799940681, 40.680796000287664], [-75.48979399980169, 40.680588999884435], [-75.48974699982931, 40.680503999705394], [-75.48970399974192, 40.6803969997224], [-75.48965100055511, 40.680297999760505], [-75.48956299960176, 40.680196999641275], [-75.48949799997605, 40.68007399979062], [-75.48941699958611, 40.679937999705025], [-75.48930099992816, 40.67981700000755], [-75.48912799954262, 40.67953400018104], [-75.48908999972019, 40.67942600017103], [-75.48908300019455, 40.67938699974878], [-75.48906299990688, 40.679373999906076], [-75.48902499990822, 40.679337000339025], [-75.48903299677795, 40.67924704087727], [-75.48903300050557, 40.67924700041225], [-75.48905200019964, 40.679123000172545], [-75.48909100000907, 40.67901900018388], [-75.48918599978721, 40.678889999990616], [-75.48938400008325, 40.67871599996877], [-75.48944499990601, 40.678653999691214], [-75.48947100018087, 40.67858900022371], [-75.48946799945311, 40.67853199973845], [-75.48949200047514, 40.67852299975116], [-75.48952900029138, 40.67853400040328], [-75.48955000019663, 40.67852099983924], [-75.48949800003756, 40.678332000218404], [-75.48949300020382, 40.67823099984736], [-75.48948199966561, 40.67815699954824], [-75.48945499978467, 40.67807700039156], [-75.48938800026241, 40.677984999781835], [-75.48936599973537, 40.67791699992818], [-75.48932599961873, 40.677868000110664], [-75.48931100051746, 40.677833000217134], [-75.48929899975025, 40.677816999802104], [-75.48925699966969, 40.67782300040917], [-75.4892430004176, 40.67780699976564], [-75.48924500010382, 40.6777739995902], [-75.4893180004481, 40.6777009998607], [-75.48937399988822, 40.67759699963784], [-75.48947800044465, 40.67770299986733], [-75.49000899972746, 40.67824199964901], [-75.49008491316384, 40.6782959392961], [-75.49008499985243, 40.67829600044072], [-75.4901550004139, 40.67839000040124], [-75.49188905605199, 40.680005032047724], [-75.4919393595796, 40.68006435871892], [-75.49214176534424, 40.68026625122052], [-75.49246729820548, 40.680587492221015], [-75.49396713539204, 40.6820813667259], [-75.4942879784119, 40.68238166015021], [-75.49481001394446, 40.68289368508286], [-75.49528292648759, 40.68336502382793], [-75.49529533583392, 40.68339830052085], [-75.49530422414587, 40.68342901975309], [-75.495445994144, 40.683584335837395], [-75.49621918848469, 40.68440524168484], [-75.49696187625801, 40.68519526047589], [-75.49732700000898, 40.68566399978487], [-75.49873300024483, 40.687089999717564], [-75.49966499968576, 40.68803500032714], [-75.50129200057934, 40.68968199966341], [-75.50178900023211, 40.690196000082715], [-75.50197122921504, 40.69038961932701], [-75.50154871638016, 40.69043288555658], [-75.50144756300776, 40.690439114199734], [-75.50068390873055, 40.69048613501344], [-75.50012467600385, 40.69051647527811], [-75.50004042913893, 40.69051701936665], [-75.50004036403014, 40.69051701990538], [-75.4999587071734, 40.69051754661108], [-75.49982940238381, 40.69052790849434], [-75.49971902596829, 40.69053855276794], [-75.49957202655347, 40.6905656463806], [-75.49932457654707, 40.69063008961809], [-75.49870094174756, 40.69077921396199], [-75.49850439180925, 40.690825732176584], [-75.49811189830275, 40.69091862444972], [-75.4978105429749, 40.69098949040245], [-75.49750924784277, 40.691060341438295], [-75.49716739515847, 40.691143025587685], [-75.49706428213233, 40.69117447805777], [-75.49704257045964, 40.69118110087526], [-75.49696332580112, 40.69121880110065], [-75.49696281108953, 40.69121904513823], [-75.49690602247806, 40.691246062510224], [-75.49648590970891, 40.691450596410824], [-75.49559593137107, 40.69188387743502], [-75.49522048626481, 40.69206121671449], [-75.49454121140448, 40.69238206253015], [-75.49408928919901, 40.69262699885367], [-75.49390025697399, 40.69272733091822], [-75.49359805321292, 40.692887728771275], [-75.4934240647506, 40.69298579254269], [-75.49313199950844, 40.69315040506728], [-75.49289389257972, 40.69328529071254], [-75.49227886835828, 40.69363327279873], [-75.49139964742713, 40.694126684197435], [-75.49139878149442, 40.69412628448249], [-75.49133616802638, 40.69409740071042], [-75.49127676904293, 40.69406689853789], [-75.491157950163, 40.694033352028256], [-75.49100425405778, 40.69396420354079], [-75.49093440798251, 40.69392251476223], [-75.49088949290933, 40.69389040720501], [-75.49083173636701, 40.693837886151485], [-75.49076197635365, 40.6937668533481], [-75.49059149325561, 40.69358008324667], [-75.49054840238053, 40.69352055363351], [-75.49046630909285, 40.693414015421425], [-75.49026245633503, 40.69312002419589], [-75.49021383870164, 40.693037133520356], [-75.49018017910993, 40.69296534514863], [-75.49010971138382, 40.692674038534506], [-75.49006865756213, 40.692607598453456], [-75.4900133656174, 40.692535475041176], [-75.48981700012082, 40.6923675898482], [-75.48977163097568, 40.69233731157252], [-75.48968204922238, 40.692277525194605], [-75.48961382859508, 40.69223976784412], [-75.48949789692676, 40.69217560415912], [-75.48939861107968, 40.69212450347082], [-75.48922019138924, 40.692066626540274], [-75.48915529953074, 40.69206544735251], [-75.48911924722046, 40.69206483024289], [-75.48897559473569, 40.692045813385555], [-75.48881067910443, 40.69201548444608], [-75.48865315528153, 40.69197989345804], [-75.48848195227285, 40.691921983999755], [-75.48816690845857, 40.69185071539189], [-75.48808833305019, 40.691827388381654], [-75.4851337578176, 40.691966916306], [-75.48515742587101, 40.69213441604833]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 407, \"PRECINCTID\": \"220100-1\", \"NAME\": \"NORTHAMPTON BOROUGH 1ST WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"ASSUMPTION BVM CHURCH\", \"SiteAddress\": \"2181 WASHINGTON AVE\", \"City\": \"NORTHAMPTON\", \"STATISTICS Registered Voters - Total\": \"1598\", \"STATISTICS Ballots Cast - Total\": 1295.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"81.04%\", \"Presidential Electors DEM Biden and Harris\": \"585\", \"Presidential Electors REP Trump and Pence\": \"687\", \"Presidential Electors LIB Jorgensen and Cohen\": \"16\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"585\", \"Attorney General REP Heather Heidelbaugh\": \"625\", \"Attorney General LIB Daniel Wassmer\": \"28\", \"Attorney General GRE Richard L Weiss\": \"12\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"537\", \"Auditor General REP Timothy Defoor\": \"643\", \"Auditor General LIB Jennifer Moore\": \"53\", \"Auditor General GRE Olivia Faison\": \"8\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"554\", \"State Treasurer REP Stacy L. Garrity\": \"643\", \"State Treasurer LIB Joe Soloski\": \"35\", \"State Treasurer GRE Timothy Runkle\": \"9\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"577\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"696\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"545\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"724\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 45.173745173745175, \"Presidential Electors Pct REP\": 53.05019305019305, \"Presidential Electors Pct LIB\": 1.2355212355212355, \"PA Attorney General Pct DEM\": 45.173745173745175, \"PA Attorney General Pct REP\": 48.26254826254826, \"PA Attorney General Pct LIB\": 2.1621621621621623, \"PA Attorney General Pct GRE\": 0.9266409266409266, \"PA Auditor General Pct DEM\": 41.46718146718147, \"PA Auditor General Pct REP\": 49.65250965250965, \"PA Auditor General Pct LIB\": 4.0926640926640925, \"PA Auditor General Pct GRE\": 0.6177606177606177, \"PA State Treasurer Pct DEM\": 42.77992277992278, \"PA State Treasurer Pct REP\": 49.65250965250965, \"PA State Treasurer Pct LIB\": 2.7027027027027026, \"PA State Treasurer Pct GRE\": 0.6949806949806949, \"PA Representative in Congress 7th Congressional District Pct DEM\": 44.55598455598456, \"PA Representative in Congress 7th Congressional District Pct REP\": 53.745173745173744, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.7615496800903274, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.49139964742713, 40.694126684197435], [-75.49227886835828, 40.69363327279873], [-75.49289389257972, 40.69328529071254], [-75.49313199950844, 40.69315040506728], [-75.4934240647506, 40.69298579254269], [-75.49359805321292, 40.692887728771275], [-75.49390025697399, 40.69272733091822], [-75.49408928919901, 40.69262699885367], [-75.49454121140448, 40.69238206253015], [-75.49522048626481, 40.69206121671449], [-75.49559593137107, 40.69188387743502], [-75.49648590970891, 40.691450596410824], [-75.49690602247806, 40.691246062510224], [-75.49696281108953, 40.69121904513823], [-75.49696332580112, 40.69121880110065], [-75.49704257045964, 40.69118110087526], [-75.49706428213233, 40.69117447805777], [-75.49716739515847, 40.691143025587685], [-75.49750924784277, 40.691060341438295], [-75.4978105429749, 40.69098949040245], [-75.49811189830275, 40.69091862444972], [-75.49850439180925, 40.690825732176584], [-75.49870094174756, 40.69077921396199], [-75.49932457654707, 40.69063008961809], [-75.49957202655347, 40.6905656463806], [-75.49971902596829, 40.69053855276794], [-75.49982940238381, 40.69052790849434], [-75.4999587071734, 40.69051754661108], [-75.50004036403014, 40.69051701990538], [-75.50004042913893, 40.69051701936665], [-75.50012467600385, 40.69051647527811], [-75.50068390873055, 40.69048613501344], [-75.50144756300776, 40.690439114199734], [-75.50154871638016, 40.69043288555658], [-75.50197122921504, 40.69038961932701], [-75.50202288571768, 40.69038432993704], [-75.50226544998634, 40.69035796901717], [-75.5027036928267, 40.69030502823558], [-75.50270399934753, 40.69030499273591], [-75.50372863663574, 40.69019090234112], [-75.50377585153349, 40.69022444931564], [-75.50389140006564, 40.690303662967224], [-75.5040038747334, 40.690378045270236], [-75.50409352572173, 40.690435275108385], [-75.50411803667929, 40.69045092240712], [-75.50423385232469, 40.69052227210292], [-75.50435128809058, 40.69059207208276], [-75.50447030563643, 40.69066030088047], [-75.50459086895654, 40.690726937976066], [-75.50471294319742, 40.69079196377273], [-75.5048364888041, 40.69085535768198], [-75.50496147092208, 40.69091710010715], [-75.50508784872257, 40.69097717313792], [-75.50514779559276, 40.69100618161557], [-75.50555901301803, 40.6912051632041], [-75.50601482094324, 40.6914257178223], [-75.50613209321332, 40.69146627447608], [-75.50623923020251, 40.691505131469796], [-75.50634546199552, 40.691545404976175], [-75.50645075226369, 40.69158708438578], [-75.50655507189448, 40.69163015562553], [-75.50665838816704, 40.69167460635425], [-75.50676066960283, 40.69172042245327], [-75.50683119497216, 40.69176126433306], [-75.5073266941076, 40.69204821659626], [-75.50841713531831, 40.69292873393534], [-75.50841773000074, 40.69292921385891], [-75.50851669259062, 40.69300912368469], [-75.50856196631568, 40.69304568040392], [-75.50913039004253, 40.693559510487475], [-75.50958843273541, 40.69398500262179], [-75.51009999936252, 40.69450491350987], [-75.51012464306328, 40.69453456002099], [-75.51015111767862, 40.694566409274834], [-75.51089286805212, 40.695458717914015], [-75.51158247390292, 40.696305316845084], [-75.51187961092347, 40.69674206047075], [-75.51219132525877, 40.69730838932051], [-75.51234543030083, 40.69760525629645], [-75.5123730039589, 40.69765837310923], [-75.51255744521039, 40.69801367336669], [-75.51272450923625, 40.69833549487115], [-75.51286012057187, 40.69851769828503], [-75.51341625502397, 40.69910301006979], [-75.51357922149491, 40.699274523723574], [-75.51359016647767, 40.69928604460923], [-75.51455762097449, 40.70039917796235], [-75.51517132900372, 40.70125865654684], [-75.51576428571958, 40.7021214647909], [-75.5157619463866, 40.70212137019398], [-75.51568168005097, 40.70211811460786], [-75.51556905330874, 40.702113545678586], [-75.5151487058691, 40.70209649303918], [-75.51481623635348, 40.70211299783942], [-75.51449151509713, 40.70214063387202], [-75.51418789216282, 40.7021576062469], [-75.51337077664297, 40.702210070280884], [-75.51244829010271, 40.70227299443986], [-75.51195158449045, 40.70230687212965], [-75.51120522604934, 40.702357773562895], [-75.51071116833968, 40.70239146555168], [-75.51061809518288, 40.70239699637271], [-75.51049426844536, 40.70240435399242], [-75.5100532533312, 40.702430075932035], [-75.50971889419023, 40.70253446941092], [-75.50965312745593, 40.70255500305682], [-75.50955095759772, 40.70258772090925], [-75.50944161251785, 40.70262273593984], [-75.50899766479372, 40.70276337444146], [-75.50860492626859, 40.702883034845286], [-75.50848910530026, 40.702920395753964], [-75.50837880394305, 40.702955975962745], [-75.50818134385753, 40.70306198949539], [-75.50809097632349, 40.70309413601303], [-75.50795765688602, 40.70314304198277], [-75.50761431790468, 40.70326880198109], [-75.50755284381958, 40.70329126232438], [-75.50692557228626, 40.70352044386824], [-75.50669573962693, 40.70360441454639], [-75.50568764079699, 40.70397272245524], [-75.50560797650513, 40.70398101029499], [-75.50558354042718, 40.70398355264293], [-75.50550752037432, 40.703991461400236], [-75.5045903136768, 40.704072093776794], [-75.50402119176324, 40.70412212135185], [-75.50333730568099, 40.704181470650326], [-75.50259406027725, 40.70424583587516], [-75.50108078420189, 40.704376871429446], [-75.50099074816255, 40.70438466680492], [-75.5005583400826, 40.704422188262775], [-75.5005566032529, 40.704406251339314], [-75.50054315968698, 40.70428289139501], [-75.50053157060236, 40.704171035865386], [-75.50052094326315, 40.70405739641763], [-75.50050953511632, 40.70394013850615], [-75.50049645055793, 40.70381907180573], [-75.50048342343112, 40.70369629103261], [-75.50047195513307, 40.703580833598004], [-75.50046151171563, 40.70346170623071], [-75.5004474024667, 40.70334431033881], [-75.50043857817757, 40.70323070581574], [-75.50042549099177, 40.703109725509414], [-75.50041480082739, 40.70299797293665], [-75.50039740781487, 40.70284396036303], [-75.5003809938523, 40.70266070689817], [-75.50034193697284, 40.702264735498275], [-75.50028715145606, 40.70224611234283], [-75.49966328028947, 40.702034039199354], [-75.49955944005244, 40.70199874016409], [-75.49920131459335, 40.701876999835385], [-75.49879761294075, 40.70187253236436], [-75.49581571997167, 40.70183949534977], [-75.49578853311841, 40.701789543872465], [-75.49529800635565, 40.70049517673581], [-75.49501224007858, 40.699765089449784], [-75.49496526129495, 40.699659923853844], [-75.49474962545433, 40.69944714161777], [-75.49465938323138, 40.6993411348162], [-75.49447242867373, 40.69910694370134], [-75.49436905436907, 40.69896224099444], [-75.49430747168348, 40.69886228260161], [-75.49425218155872, 40.69878981832812], [-75.49420446774415, 40.698706603974266], [-75.49418523089786, 40.698634839817565], [-75.4941685703844, 40.698486331563515], [-75.49415525458626, 40.698453123770705], [-75.4941324918705, 40.698271462400825], [-75.49409493685474, 40.69810058189489], [-75.49403740861564, 40.697879888753356], [-75.49394382824048, 40.697658495338544], [-75.4939404014636, 40.69765310927663], [-75.49389192284575, 40.69756584684432], [-75.49383649447618, 40.697443784266454], [-75.49376400309993, 40.697319588124856], [-75.49374384866645, 40.69727517872265], [-75.49370495065163, 40.697144342758904], [-75.49369532680302, 40.69708177557953], [-75.49367338992701, 40.69700987319439], [-75.49367404320893, 40.696936695002975], [-75.49369567403788, 40.6968565452014], [-75.49372095047022, 40.69680212203299], [-75.49377990585954, 40.69671162963023], [-75.49381942159744, 40.69666288838573], [-75.49387444187302, 40.69660904367177], [-75.49395066308558, 40.696568395875474], [-75.49400379904453, 40.69654377442067], [-75.49420105544738, 40.69647081527333], [-75.49426885665402, 40.696439184830844], [-75.4944112612967, 40.696361383322504], [-75.4944850255495, 40.69631330778586], [-75.49449337852184, 40.69630620497667], [-75.49451659051945, 40.69628646411874], [-75.49455387117584, 40.69625055028122], [-75.49457480476127, 40.696218008414824], [-75.4945968083984, 40.69612671158837], [-75.49459912275148, 40.696084626419136], [-75.49456966983563, 40.696021673779754], [-75.49454181279994, 40.6959917875156], [-75.49450494292445, 40.69596172510356], [-75.49443394665128, 40.69592731021807], [-75.49437694053755, 40.695906037525084], [-75.49425613006935, 40.695877947051244], [-75.49400289086346, 40.69584547851783], [-75.49396528433049, 40.695837368423206], [-75.49386094202218, 40.69580230465703], [-75.493732880021, 40.69574841685712], [-75.49359402690158, 40.69566677602488], [-75.49351789259347, 40.69559742358373], [-75.49347869096465, 40.695556246929826], [-75.4934607487542, 40.695526552354934], [-75.49344780532084, 40.69548228313909], [-75.49344188788318, 40.695443642077564], [-75.49341136202789, 40.695144104808335], [-75.49337986333863, 40.69508840517583], [-75.49333357279896, 40.69504348722201], [-75.49329111203537, 40.695018807115225], [-75.49318695733716, 40.694978169292014], [-75.49312532220841, 40.69496049571333], [-75.49307780227551, 40.694952191545454], [-75.49291140054606, 40.69491214404282], [-75.49269575389373, 40.69491515548512], [-75.49261843028275, 40.69490807373385], [-75.49254753778898, 40.69489751284732], [-75.49249485516299, 40.69488181481717], [-75.49243070371482, 40.694858514830166], [-75.49238187396602, 40.69483551299888], [-75.49230195238862, 40.69477157747936], [-75.49219469168486, 40.69463554842212], [-75.49208948052541, 40.6944921804135], [-75.49201751022346, 40.69440634792672], [-75.49197824680736, 40.694367057668224], [-75.49192978639925, 40.69433307895107], [-75.49188024034015, 40.69430457146535], [-75.49178786290098, 40.69426244461224], [-75.49169067666647, 40.69422923420979], [-75.49149424720657, 40.69417032299823], [-75.49139964742713, 40.694126684197435]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 410, \"PRECINCTID\": \"330000-1\", \"NAME\": \"WALNUTPORT BOROUGH\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"WALNUTPORT BOROUGH HALL\", \"SiteAddress\": \"417 LINCOLN AVE\", \"City\": \"WALNUTPORT\", \"STATISTICS Registered Voters - Total\": \"1350\", \"STATISTICS Ballots Cast - Total\": 1009.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"74.74%\", \"Presidential Electors DEM Biden and Harris\": \"376\", \"Presidential Electors REP Trump and Pence\": \"608\", \"Presidential Electors LIB Jorgensen and Cohen\": \"14\", \"Presidential Electors Write-In Totals\": \"5\", \"Attorney General DEM Josh Shapiro\": \"397\", \"Attorney General REP Heather Heidelbaugh\": \"538\", \"Attorney General LIB Daniel Wassmer\": \"16\", \"Attorney General GRE Richard L Weiss\": \"14\", \"Attorney General Write-In Totals\": \"2\", \"Auditor General DEM Nina Ahmad\": \"348\", \"Auditor General REP Timothy Defoor\": \"552\", \"Auditor General LIB Jennifer Moore\": \"42\", \"Auditor General GRE Olivia Faison\": \"11\", \"Auditor General Write-In Totals\": \"2\", \"State Treasurer DEM Joe Torsella\": \"350\", \"State Treasurer REP Stacy L. Garrity\": \"558\", \"State Treasurer LIB Joe Soloski\": \"33\", \"State Treasurer GRE Timothy Runkle\": \"14\", \"State Treasurer Write-In Totals\": \"2\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"374\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"594\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"346\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"629\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 37.26461843409316, \"Presidential Electors Pct REP\": 60.257680872150644, \"Presidential Electors Pct LIB\": 1.3875123885034688, \"PA Attorney General Pct DEM\": 39.345887016848366, \"PA Attorney General Pct REP\": 53.320118929633296, \"PA Attorney General Pct LIB\": 1.5857284440039643, \"PA Attorney General Pct GRE\": 1.3875123885034688, \"PA Auditor General Pct DEM\": 34.489593657086225, \"PA Auditor General Pct REP\": 54.70763131813678, \"PA Auditor General Pct LIB\": 4.162537165510407, \"PA Auditor General Pct GRE\": 1.0901883052527255, \"PA State Treasurer Pct DEM\": 34.68780971258672, \"PA State Treasurer Pct REP\": 55.30227948463825, \"PA State Treasurer Pct LIB\": 3.270564915758176, \"PA State Treasurer Pct GRE\": 1.3875123885034688, \"PA Representative in Congress 7th Congressional District Pct DEM\": 37.06640237859267, \"PA Representative in Congress 7th Congressional District Pct REP\": 58.87016848364718, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5933618742943169, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.59417148504009, 40.73896571716226], [-75.59417337033449, 40.738965277454945], [-75.59455330822853, 40.73959951610891], [-75.5946796652361, 40.73983737492147], [-75.59478538858326, 40.740025645313374], [-75.59489541725253, 40.74021248397971], [-75.59500971521734, 40.74039783348881], [-75.5951282499716, 40.74058163737494], [-75.59525098545699, 40.74076383910614], [-75.59535685006948, 40.741000993257096], [-75.5953677091614, 40.74102531906129], [-75.59537081616904, 40.74103227953884], [-75.59568333199239, 40.74173235816673], [-75.59577015149863, 40.74192684345286], [-75.59577746845962, 40.74194323321318], [-75.59588934108586, 40.742193837225614], [-75.59600779138725, 40.74245569879559], [-75.59602706116132, 40.74249829830296], [-75.59609043096869, 40.7428028299699], [-75.59613399644657, 40.742946804580406], [-75.59620543228101, 40.743177862790816], [-75.5962916009293, 40.74335925230828], [-75.5963734995821, 40.74353723228567], [-75.5964735501041, 40.74369557286019], [-75.59661545741308, 40.74391461972662], [-75.59679911676908, 40.74419770100677], [-75.5969080316511, 40.74435287621274], [-75.59704818419918, 40.74454439852468], [-75.59713064208009, 40.744642718229244], [-75.5982598520343, 40.74601497642729], [-75.59999432754712, 40.74771448927014], [-75.59999575503744, 40.74771588761593], [-75.60101819971793, 40.748764863278254], [-75.60140537593836, 40.749399239356464], [-75.60140709113773, 40.74940205004731], [-75.60189466182342, 40.75050917276871], [-75.60204424358764, 40.75089528269384], [-75.60210233889711, 40.75118691100129], [-75.60210261345198, 40.7511882888892], [-75.60246233065442, 40.752052468208205], [-75.60246500148209, 40.75205888351219], [-75.60246627637868, 40.75206194636836], [-75.60247403520414, 40.752076901615915], [-75.60256961108387, 40.75233799501584], [-75.60257201310336, 40.75234455667789], [-75.6028011371055, 40.752970465422116], [-75.60287198671773, 40.75316400476468], [-75.60322487901125, 40.754638325986804], [-75.60322520924494, 40.75463970489962], [-75.60329300190052, 40.75511045467039], [-75.603294034355, 40.75511762064162], [-75.6035552464693, 40.75693138970856], [-75.60355537436666, 40.75693228025314], [-75.60355833498676, 40.756952836093085], [-75.60346472914767, 40.75804523914387], [-75.60346050562977, 40.75807607711801], [-75.60337918904563, 40.75866986791437], [-75.6033766654029, 40.75868829378064], [-75.6033754715418, 40.758688915775366], [-75.6033711273727, 40.7586911793231], [-75.60337095992722, 40.75869126630665], [-75.6032719223605, 40.758742864878464], [-75.60327173906298, 40.758742965981405], [-75.60295948851534, 40.758915381816955], [-75.60246990724633, 40.75917934538811], [-75.6022107563576, 40.75932281522519], [-75.60046426530549, 40.76027394388355], [-75.5998716425259, 40.76059776554758], [-75.59869274461106, 40.761243973680486], [-75.59858525358922, 40.761302385671264], [-75.59838307208072, 40.76141412737176], [-75.59799702470549, 40.76162936823819], [-75.5959828746564, 40.76273128409563], [-75.59576230336299, 40.762853148331715], [-75.5951070732956, 40.76321353703255], [-75.59501610869434, 40.76326356974928], [-75.59426895662929, 40.76367451820698], [-75.59361488327976, 40.76151224021066], [-75.59355813299054, 40.761324624945175], [-75.59346679301318, 40.761020566730416], [-75.5927205226301, 40.75856756183391], [-75.59265600209754, 40.75835415412612], [-75.59245809659852, 40.757699553453534], [-75.59243085543103, 40.75760944800376], [-75.59159106053225, 40.754867089415164], [-75.59147527324859, 40.75448174958559], [-75.59145915544234, 40.754421561492265], [-75.59055999223804, 40.75150691414148], [-75.59012856461555, 40.750121992404694], [-75.58959626861653, 40.74841319063102], [-75.58933084321208, 40.74751789254707], [-75.58926027308623, 40.74724270256219], [-75.58821559628494, 40.74386396665637], [-75.58806079754518, 40.74337399071906], [-75.58802760722637, 40.74328362425221], [-75.58806391980566, 40.74327700764925], [-75.588147365567, 40.7432640614923], [-75.58846042906917, 40.743191189231055], [-75.5891016577234, 40.743041924651436], [-75.59025420935713, 40.74277362579041], [-75.59008677589388, 40.74252593496655], [-75.59002935923519, 40.74244099604528], [-75.58996658224585, 40.74235550785292], [-75.58996427438451, 40.742352364363], [-75.58989361632497, 40.742256142400194], [-75.58971153370658, 40.74202495212991], [-75.58950011235663, 40.741787585520335], [-75.58947383696605, 40.741758085384475], [-75.58946068269601, 40.74174331698967], [-75.58944771923385, 40.741729317823136], [-75.5892958426753, 40.74156530035002], [-75.58911500186684, 40.74137977831365], [-75.58909921680981, 40.74136469516669], [-75.58886809804855, 40.74114386140637], [-75.5886691578002, 40.74096258582037], [-75.58864421656385, 40.740939859102916], [-75.58860682718411, 40.74090578925189], [-75.58855760594676, 40.74086488992225], [-75.58844477952624, 40.740715072466564], [-75.58838537823894, 40.74063619678117], [-75.58816476811334, 40.740337511034184], [-75.58815880900231, 40.74032944239706], [-75.58835796988117, 40.74029540054985], [-75.58893558049128, 40.7401966710747], [-75.58903007694758, 40.74017672187923], [-75.58967026171408, 40.74002561555426], [-75.58999756767257, 40.739950194862026], [-75.59004842453892, 40.73994024510606], [-75.59040584109779, 40.73985457215628], [-75.59073616175957, 40.73977509965474], [-75.59076235756396, 40.73976879670363], [-75.59114069400205, 40.73967793380548], [-75.59148260180777, 40.73959737575125], [-75.59154084704923, 40.739582156142156], [-75.5918899690759, 40.739501731047305], [-75.59218823568195, 40.73943117007111], [-75.59237740073984, 40.73938577921159], [-75.5929311935792, 40.73925475677899], [-75.59311296737772, 40.73921471955653], [-75.59320024880053, 40.73919454737332], [-75.59344765689995, 40.739133935194985], [-75.59368767438211, 40.73907867647457], [-75.59416941357475, 40.738966201154284], [-75.59417148504009, 40.73896571716226]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 411, \"PRECINCTID\": \"160004-1\", \"NAME\": \"LEHIGH TWP TREICHLERS DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BETHANY WESLEYAN CHURCH\", \"SiteAddress\": \"675 BLUE MOUNTAIN DR\", \"City\": \"CHERRYVILLE\", \"STATISTICS Registered Voters - Total\": \"1161\", \"STATISTICS Ballots Cast - Total\": 943.0, \"STATISTICS Ballots Cast - Blank\": \"1\", \"STATISTICS Voter Turnout - Total\": \"81.22%\", \"Presidential Electors DEM Biden and Harris\": \"308\", \"Presidential Electors REP Trump and Pence\": \"619\", \"Presidential Electors LIB Jorgensen and Cohen\": \"10\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"307\", \"Attorney General REP Heather Heidelbaugh\": \"583\", \"Attorney General LIB Daniel Wassmer\": \"19\", \"Attorney General GRE Richard L Weiss\": \"10\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"273\", \"Auditor General REP Timothy Defoor\": \"600\", \"Auditor General LIB Jennifer Moore\": \"35\", \"Auditor General GRE Olivia Faison\": \"9\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"282\", \"State Treasurer REP Stacy L. Garrity\": \"605\", \"State Treasurer LIB Joe Soloski\": \"20\", \"State Treasurer GRE Timothy Runkle\": \"7\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"307\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"621\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"279\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"645\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 32.66171792152704, \"Presidential Electors Pct REP\": 65.64156945917286, \"Presidential Electors Pct LIB\": 1.0604453870625663, \"PA Attorney General Pct DEM\": 32.555673382820785, \"PA Attorney General Pct REP\": 61.82396606574761, \"PA Attorney General Pct LIB\": 2.014846235418876, \"PA Attorney General Pct GRE\": 1.0604453870625663, \"PA Auditor General Pct DEM\": 28.950159066808055, \"PA Auditor General Pct REP\": 63.62672322375398, \"PA Auditor General Pct LIB\": 3.711558854718982, \"PA Auditor General Pct GRE\": 0.9544008483563097, \"PA State Treasurer Pct DEM\": 29.90455991516437, \"PA State Treasurer Pct REP\": 64.15694591728526, \"PA State Treasurer Pct LIB\": 2.1208907741251326, \"PA State Treasurer Pct GRE\": 0.7423117709437964, \"PA Representative in Congress 7th Congressional District Pct DEM\": 32.555673382820785, \"PA Representative in Congress 7th Congressional District Pct REP\": 65.85365853658537, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5545493037260067, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.52227035461473, 40.73412971873717], [-75.5268439705517, 40.73371392140524], [-75.52684628438493, 40.73371371079234], [-75.52687778200224, 40.733751177279196], [-75.52717624892027, 40.73407007933189], [-75.52720467989924, 40.73410045612278], [-75.52740847053917, 40.73430785022263], [-75.52741651316738, 40.73431574313629], [-75.52742422544154, 40.73432331263643], [-75.52743522148646, 40.73433410597765], [-75.52745161069785, 40.73435019038573], [-75.52747117356087, 40.73436939112773], [-75.52761698928778, 40.734512506795966], [-75.52783017427986, 40.73471436337763], [-75.52804795770031, 40.73491335828922], [-75.5282702752221, 40.735109431720765], [-75.52845507440509, 40.735266775818836], [-75.52846794930883, 40.73527773833401], [-75.52848597052501, 40.73529308181916], [-75.52849706014867, 40.735302523817], [-75.5287282410465, 40.73549257463203], [-75.52877391974594, 40.735531289314835], [-75.5288192425313, 40.73556970260096], [-75.52886635651642, 40.73560784837049], [-75.5288770817625, 40.735616530275095], [-75.52888532423172, 40.735622973887104], [-75.52893598648065, 40.73566258288654], [-75.5289959393798, 40.73570784659023], [-75.52905692078694, 40.73575230749598], [-75.52911891454957, 40.735795952681684], [-75.52918189865706, 40.735838767311634], [-75.52924585692676, 40.73588073936404], [-75.52931076728828, 40.7359218558037], [-75.529376612375, 40.7359621045862], [-75.52944337129973, 40.736001472698966], [-75.52951102193178, 40.73603994890735], [-75.52957954572074, 40.73607752114444], [-75.52964892171924, 40.7361141781982], [-75.52971912782589, 40.736149907933836], [-75.52979014303354, 40.73618470094], [-75.52986194642406, 40.73621854510446], [-75.5299345146228, 40.736251430970654], [-75.53000782662211, 40.73628334912728], [-75.53008186029017, 40.736314288339926], [-75.53012209091008, 40.73633041302709], [-75.53013992536675, 40.73633756065753], [-75.53015265922846, 40.736342664980334], [-75.53015659219236, 40.73634424095263], [-75.53023200019658, 40.73637319573111], [-75.53030806083822, 40.73640114591962], [-75.53038475077157, 40.736428081161606], [-75.53045483957717, 40.73645157873285], [-75.53046204771529, 40.73645399472415], [-75.53049892016001, 40.73646577619363], [-75.53053992826399, 40.73647887805126], [-75.53057025115885, 40.73648809665985], [-75.53061836661517, 40.73650272344192], [-75.53069734048721, 40.736525524163426], [-75.53077682641474, 40.73654727346042], [-75.53085679859501, 40.736567963632076], [-75.5309372335327, 40.7365875888234], [-75.53101810654891, 40.736606143156926], [-75.53109939293488, 40.736623621655376], [-75.53112075994639, 40.73662791081409], [-75.53118106804118, 40.736640017541056], [-75.53120018255866, 40.73664387717845], [-75.53125787196868, 40.73665552664025], [-75.53131116394493, 40.73666628759246], [-75.53137296737405, 40.736678766911425], [-75.53203792226873, 40.73681303688433], [-75.53276900799044, 40.73697196485426], [-75.53349633853651, 40.73714056865138], [-75.53355575407527, 40.73715523701313], [-75.5336110845082, 40.73716974266557], [-75.5336660746297, 40.73718497955976], [-75.53372070559391, 40.737200944633805], [-75.53377496337822, 40.73721763221559], [-75.53382882919603, 40.737235037442815], [-75.53388228781135, 40.737253155521124], [-75.53393532168054, 40.73727197981027], [-75.53394142530713, 40.737274245677995], [-75.533960834756, 40.73728145160193], [-75.53398791675089, 40.737291505538614], [-75.53398800912143, 40.73729154153295], [-75.53404005544895, 40.73731172696622], [-75.53409172262751, 40.73733263659809], [-75.53414290186674, 40.73735422961726], [-75.53420703072656, 40.73738097203625], [-75.53422458777247, 40.73738829299004], [-75.5342261333063, 40.73738893774807], [-75.53427996188006, 40.73741020743998], [-75.53433426896447, 40.737430758382665], [-75.53438904050431, 40.73745058580311], [-75.53444425776947, 40.737469683037574], [-75.53449990555065, 40.73748804439029], [-75.53455596627153, 40.737505664120235], [-75.5346124223556, 40.73752253648663], [-75.53466925735054, 40.73753865757165], [-75.53472645249629, 40.737554021611835], [-75.53478399258313, 40.7375686229116], [-75.53484185873225, 40.73758245930861], [-75.53490003336672, 40.73759552506203], [-75.53495849885053, 40.737607816231666], [-75.5350172387012, 40.73761932980023], [-75.53507623173194, 40.737630061759745], [-75.53513546382722, 40.737640009138126], [-75.53519491380017, 40.737649167927565], [-75.53525456629242, 40.73765753693386], [-75.53531440011689, 40.73766511214931], [-75.53537439991513, 40.73767189237986], [-75.5354345456539, 40.73767787454059], [-75.5354948196077, 40.737683057392374], [-75.53555520286731, 40.7376874396735], [-75.53561567773687, 40.73769101924465], [-75.5357179672309, 40.73769568290175], [-75.53581653446378, 40.73769883957031], [-75.5359151578786, 40.737700687444566], [-75.53601380906446, 40.7377012259826], [-75.53611245842714, 40.73770045462003], [-75.53621107400498, 40.737698372747424], [-75.53630962726866, 40.73769498342414], [-75.53640808746992, 40.73769028516322], [-75.53650642489573, 40.73768428100172], [-75.53655624930623, 40.737680572094106], [-75.53660377646366, 40.73767703465485], [-75.53660460989245, 40.73767697217618], [-75.53666238923016, 40.73767189523844], [-75.53668341555144, 40.73767004773281], [-75.53669843198882, 40.73766872790983], [-75.53670261159331, 40.73766836080101], [-75.53676088127274, 40.73766245540821], [-75.53682123472404, 40.737656854555354], [-75.53686489440015, 40.737651039882806], [-75.53689794743946, 40.737647242573644], [-75.53699522337241, 40.73763474091861], [-75.537092197099, 40.737620950664144], [-75.53718883890669, 40.73760587484794], [-75.53728512139064, 40.737589518353474], [-75.53730126389459, 40.737586549812], [-75.53738101241206, 40.73757188597389], [-75.53747648453674, 40.73755298349301], [-75.53749780147587, 40.737548459661234], [-75.53757151033055, 40.73753281669477], [-75.53766605765504, 40.73751139037267], [-75.53776009780378, 40.73748871298898], [-75.53785360452656, 40.737464790350444], [-75.53794520009144, 40.73743999436237], [-75.53794654677995, 40.73743962997407], [-75.5380388982546, 40.73741323946738], [-75.53804223073088, 40.73741223550812], [-75.53808576065802, 40.737399133038124], [-75.53813062906124, 40.7373856272703], [-75.53822171286129, 40.73735680189063], [-75.5383121221625, 40.73732677091344], [-75.53840182820015, 40.73729554460208], [-75.53849080345279, 40.737263131441935], [-75.53857902149349, 40.73722954264188], [-75.53866645595497, 40.7371947876103], [-75.53875307922726, 40.73715887753358], [-75.53883886491364, 40.73712182272045], [-75.53892378777176, 40.73708363440252], [-75.53900782134602, 40.737044324689215], [-75.53909094039442, 40.737003904812205], [-75.53917311840253, 40.736962388681455], [-75.53925433252543, 40.73691978667367], [-75.5393345550361, 40.7368761135766], [-75.53940037170756, 40.73683867264285], [-75.53944659892495, 40.736811208945554], [-75.53949218892109, 40.736783134955985], [-75.53953712598373, 40.73675446028469], [-75.5395814003776, 40.7367251928543], [-75.53962499517748, 40.736695343153045], [-75.53966789949439, 40.73666491818075], [-75.53971009758678, 40.736633928448256], [-75.53975157966048, 40.736602383678715], [-75.53979233118723, 40.73657029350521], [-75.53983234003556, 40.73653766670559], [-75.53987159404454, 40.73650451295799], [-75.53991008217753, 40.73647084376364], [-75.53994779109009, 40.7364366687781], [-75.53998470977544, 40.73640199860226], [-75.54002082841033, 40.7363668438596], [-75.54005613365064, 40.73633121420578], [-75.54009061564362, 40.73629512116437], [-75.5401229650959, 40.7362599892163], [-75.54012426687413, 40.7362585772045], [-75.54015707284431, 40.736221591058914], [-75.54018902485566, 40.73618417517407], [-75.54022011426893, 40.73614634019592], [-75.54025032998895, 40.736108099426126], [-75.54027966458985, 40.7360694626329], [-75.5403081081897, 40.736030442240065], [-75.54033565209043, 40.73599105069414], [-75.54036228646952, 40.73595129861839], [-75.54038800614988, 40.73591119942711], [-75.54041280124999, 40.735870765544114], [-75.54043666549815, 40.73583000766031], [-75.54045959013732, 40.7357889400226], [-75.54048157007935, 40.73574757334428], [-75.54050259656731, 40.73570592187225], [-75.5405226656375, 40.735663998142854], [-75.54056154214636, 40.735471950813476], [-75.54056267470146, 40.735466358509164], [-75.54078655784807, 40.73436038482247], [-75.54078679943117, 40.73435919674482], [-75.54087806666358, 40.73390832866296], [-75.54094407246012, 40.73331509359836], [-75.54096185596637, 40.733155262147555], [-75.54099250513882, 40.73287980129524], [-75.54104506112296, 40.73240744148699], [-75.54112449010245, 40.731793253768906], [-75.54112459808118, 40.73179241896853], [-75.54112475035808, 40.731791245404736], [-75.54119682743372, 40.73123388777646], [-75.54119753876783, 40.73122838923795], [-75.54119804707922, 40.73122445515151], [-75.54128707553627, 40.73053601747323], [-75.54128777081763, 40.73053064654348], [-75.5414356760463, 40.72938689231219], [-75.54146779202675, 40.72919451946122], [-75.54148808142277, 40.729093490151605], [-75.54151068582344, 40.72899274630605], [-75.54153559832483, 40.72889231751893], [-75.54156281199367, 40.72879223428465], [-75.54159231631702, 40.72869252793032], [-75.54160588115346, 40.728650154133724], [-75.54160704101857, 40.72864653421385], [-75.54162410317846, 40.72859322892752], [-75.54165816330806, 40.728494366825146], [-75.54169448622308, 40.728395972049604], [-75.54173306028727, 40.72829807410439], [-75.54177387501821, 40.72820070341574], [-75.54181691759679, 40.72810388946444], [-75.5418621740206, 40.728007661708645], [-75.54190963028763, 40.72791204960646], [-75.54195927479248, 40.72781708176061], [-75.54201108761671, 40.7277227875164], [-75.54206505715555, 40.7276291954764], [-75.54212116467467, 40.72753633500826], [-75.54213416095936, 40.727515779752046], [-75.54213754463152, 40.72751042752829], [-75.54217939389551, 40.72744423282378], [-75.54223972729741, 40.727352917412695], [-75.54230214617657, 40.72726241724219], [-75.54236663185925, 40.727172759879075], [-75.54243316333486, 40.727083971944886], [-75.54250172190076, 40.726996081906506], [-75.54257228660627, 40.72690911458488], [-75.54264483522911, 40.72682309747905], [-75.54271934442303, 40.72673805626499], [-75.54279450566622, 40.72665543528085], [-75.54279504740337, 40.72665484023679], [-75.54279579554618, 40.72665401760902], [-75.54281123842466, 40.72663765885814], [-75.54282288558882, 40.72662532121691], [-75.54287416173261, 40.72657100621928], [-75.54295441960794, 40.726489048671915], [-75.54303654588665, 40.72640816884229], [-75.54312051370434, 40.72632839143859], [-75.5432062997467, 40.72624974123628], [-75.5432536129466, 40.72620787293535], [-75.54325485689729, 40.726206771471716], [-75.54329387717974, 40.726172242043326], [-75.54338321801595, 40.72609591674469], [-75.54342451524639, 40.72606185304751], [-75.54347429539241, 40.72602079004851], [-75.5435069433059, 40.72599478630798], [-75.54356680652462, 40.725947103918095], [-75.54356708374837, 40.72594688308433], [-75.54384991924475, 40.72561889937245], [-75.54396294312168, 40.725494423134855], [-75.54397072445138, 40.72548585387003], [-75.54401782902897, 40.72543397416306], [-75.54401851330394, 40.72543322057714], [-75.54419134080901, 40.725249808283664], [-75.54436834781431, 40.725068718199836], [-75.54451259307992, 40.72492640235296], [-75.54452122384023, 40.724917887029186], [-75.54454948274267, 40.72489000607819], [-75.54473468700795, 40.7247137248356], [-75.54492390667043, 40.72453993017959], [-75.54511708436087, 40.72436867414905], [-75.54538493439229, 40.72424207359848], [-75.54552267893085, 40.72418068015708], [-75.54566180977974, 40.72412112532483], [-75.54580228494015, 40.72406342631525], [-75.54594406238418, 40.72400760124233], [-75.54608709893074, 40.72395366729745], [-75.54623135027506, 40.72390163984916], [-75.54626107775535, 40.72389139728788], [-75.54627623670582, 40.72388617396295], [-75.54637677323701, 40.7238515360892], [-75.54652332354222, 40.72380337048628], [-75.54667095573353, 40.72375715748679], [-75.5468196255079, 40.72371291246006], [-75.54696928749767, 40.723670647152126], [-75.54711989506357, 40.72363037598753], [-75.54727140405151, 40.723592109834996], [-75.54742376788212, 40.72355586131889], [-75.54757694003536, 40.72352164126349], [-75.5477308728378, 40.72348945957049], [-75.54774437179294, 40.72348682952617], [-75.54776107509338, 40.72348357476774], [-75.54788552095351, 40.72345932708693], [-75.54804083676866, 40.72343125191446], [-75.54819677264024, 40.7234052430553], [-75.54835328095508, 40.72338130861155], [-75.54961129374317, 40.72299454746099], [-75.55025365172264, 40.72279705545676], [-75.55196035780388, 40.72176910733289], [-75.55209923175599, 40.7217062494167], [-75.55222573058508, 40.721648991538814], [-75.55236671992147, 40.72158880914917], [-75.55250906946854, 40.721530507121706], [-75.55265273362284, 40.72147410440582], [-75.55267703441251, 40.72146496907445], [-75.5527105475087, 40.72145236978361], [-75.5527976692364, 40.72141961729508], [-75.55294383313218, 40.72136706298339], [-75.55309117982598, 40.72131645681961], [-75.55323966380483, 40.72126781505296], [-75.55338924198145, 40.7212211521772], [-75.55353986653606, 40.72117648259668], [-75.55369149325787, 40.721133818982736], [-75.55384407551121, 40.721093175762405], [-75.55399756677862, 40.72105456376215], [-75.55415191927128, 40.7210179964869], [-75.55430708771456, 40.720983482985375], [-75.55500243417198, 40.72085896698632], [-75.55502465261237, 40.72085498766933], [-75.55655304902992, 40.72073897171183], [-75.55803217811379, 40.72075839428765], [-75.55846886468576, 40.72082496120298], [-75.55849410836642, 40.72082880875346], [-75.55918112909644, 40.720933530106855], [-75.56071748891024, 40.721260878802426], [-75.56165785459622, 40.72164516469373], [-75.56249573241274, 40.72207865800017], [-75.56343112824366, 40.72261627474535], [-75.56535835950815, 40.72392603843432], [-75.5680248267007, 40.7259238244366], [-75.56812498163156, 40.72605325542709], [-75.56819874024714, 40.72615312643993], [-75.56827019553707, 40.72625396120267], [-75.56833932718787, 40.72635572871021], [-75.56840611485636, 40.726458398857844], [-75.56847053586134, 40.72656194059586], [-75.56848559052241, 40.726587271421856], [-75.5685033139561, 40.726617091587386], [-75.56853257231319, 40.726666321162995], [-75.56855142626685, 40.7266995784304], [-75.56857270264123, 40.72673710871394], [-75.56859220623419, 40.72677151049861], [-75.56864941621292, 40.72687747487421], [-75.56870418787946, 40.72698418249515], [-75.56875650334253, 40.72709160059976], [-75.56880634701875, 40.72719969827112], [-75.56885370228731, 40.727308440068754], [-75.56889855714348, 40.727417794242], [-75.56894089606135, 40.72752772807308], [-75.56898070715262, 40.72763820621004], [-75.56901797722831, 40.72774919687955], [-75.56905269558281, 40.72786066475161], [-75.56908485142274, 40.72797257719687], [-75.56911443519607, 40.72808489980741], [-75.56917678720234, 40.72830709878293], [-75.56918258519038, 40.72832775963337], [-75.56928279604683, 40.72868487296555], [-75.56928668055356, 40.728698713880306], [-75.56933131470059, 40.72885777197696], [-75.56953229257971, 40.72963312824577], [-75.56963052874956, 40.730015659870666], [-75.56970850927489, 40.730288849345285], [-75.56979274458192, 40.730560960858206], [-75.56988321133689, 40.73083191288396], [-75.5699798815294, 40.731101622006584], [-75.57008272590551, 40.73137000658759], [-75.57019171284261, 40.73163698494317], [-75.57030680832031, 40.73190247624449], [-75.57039206755495, 40.73204012239439], [-75.57045607241835, 40.73213809874017], [-75.57052231522022, 40.73223520995642], [-75.57059077678367, 40.73233142685347], [-75.57059742739561, 40.732340396739396], [-75.57060636412169, 40.732352448868184], [-75.57066143438104, 40.73242672017474], [-75.57073426883454, 40.73252106073034], [-75.57080925620306, 40.73261442014167], [-75.5708863737283, 40.73270677005238], [-75.57096559868087, 40.73279808120559], [-75.57104690705981, 40.73288832702312], [-75.57113027489285, 40.73297748002638], [-75.57113553217701, 40.73298289887132], [-75.5711406748531, 40.73298820026156], [-75.5712156746861, 40.7330655117699], [-75.57130308122453, 40.73315239655339], [-75.57143771670171, 40.73327803576967], [-75.57150976519779, 40.733341868780606], [-75.57158326858045, 40.733404735460645], [-75.57165820139792, 40.73346661731338], [-75.57173454417409, 40.733527494152874], [-75.5718122714274, 40.73358734838285], [-75.57189136125578, 40.73364616157351], [-75.5719717858101, 40.73370391608424], [-75.57205352555461, 40.73376059352969], [-75.57206327543365, 40.73376712084229], [-75.57213655261054, 40.73381617716956], [-75.57222084264914, 40.73387065033016], [-75.57230637015805, 40.733923996315696], [-75.57239310725745, 40.73397619838598], [-75.57248103077215, 40.7340272407899], [-75.57257011160914, 40.73407710766544], [-75.57266032180027, 40.734125784973315], [-75.57275163698601, 40.73417325694035], [-75.57284402683064, 40.734219509482976], [-75.57293746336521, 40.734264528562036], [-75.57303191980394, 40.73430830016074], [-75.57312736578115, 40.734350811095865], [-75.57322377211442, 40.73439204820655], [-75.5733211108045, 40.73443199835428], [-75.57341935021391, 40.734470651034634], [-75.57351846231384, 40.7345079940094], [-75.57407002672392, 40.73468095183807], [-75.57441113017022, 40.734781005020004], [-75.574754479035, 40.734876514166515], [-75.5750999676461, 40.73496744935441], [-75.57511260823803, 40.73497058949399], [-75.57513963044157, 40.73497730234717], [-75.57544749027107, 40.73505378246182], [-75.57564071774691, 40.73507977282522], [-75.5757628187511, 40.7350940407125], [-75.57588522934788, 40.735106684715724], [-75.57600791053085, 40.73511770230191], [-75.57613082571896, 40.73512708918207], [-75.57625393827279, 40.73513484286787], [-75.57637720918572, 40.73514096082684], [-75.5765006017891, 40.73514544147114], [-75.57662407941423, 40.73514828321328], [-75.57674760302528, 40.73514948442139], [-75.57678550389565, 40.73514934998087], [-75.57682437949552, 40.73514921215794], [-75.57687113468252, 40.73514904618682], [-75.57699463768807, 40.735146967822736], [-75.57711807413136, 40.735143249520455], [-75.57724140719796, 40.73513789419455], [-75.57742585312916, 40.73513720115042], [-75.57753862545458, 40.735134803354754], [-75.57761387729224, 40.73513220318498], [-75.57765132417822, 40.735130909640084], [-75.57768358989163, 40.735129365080525], [-75.57776391730873, 40.735125520308785], [-75.57787636927497, 40.735118636497305], [-75.57798864681469, 40.73511026118703], [-75.57810071432776, 40.735100396414815], [-75.57821253973565, 40.73508904518435], [-75.57832408622565, 40.73507621041106], [-75.57832864076126, 40.73507562452569], [-75.57839410245602, 40.73506720165816], [-75.57843532163203, 40.73506189779964], [-75.57854621150936, 40.735046110309945], [-75.57865672253773, 40.73502885272456], [-75.57876682018457, 40.73501013070439], [-75.57887647231365, 40.73498994905436], [-75.57898564312198, 40.73496831611429], [-75.57909430168613, 40.73494523581125], [-75.5792024145413, 40.73492071742981], [-75.57930994833926, 40.73489476665348], [-75.58055169189339, 40.73472492278912], [-75.58264131557101, 40.734300461139895], [-75.5833089706334, 40.73416483235962], [-75.58420574875724, 40.73401463766566], [-75.5842364981484, 40.734009487722574], [-75.58424817669186, 40.73400769143699], [-75.58492469823204, 40.733903628051586], [-75.58520094792192, 40.73386355584196], [-75.58538293374234, 40.73384030502498], [-75.58556542647416, 40.73381947302109], [-75.58574836788436, 40.73380106684891], [-75.58593170456129, 40.73378509091498], [-75.5861153794559, 40.73377155226077], [-75.58629933684797, 40.733760453448916], [-75.5864835209883, 40.73375179794253], [-75.58666787497339, 40.73374558828283], [-75.58675800806309, 40.73374375051167], [-75.58680875360398, 40.733742716291076], [-75.58685234426667, 40.733741827055496], [-75.58691820447085, 40.73374135912089], [-75.5870368708104, 40.73374051588011], [-75.58722140018408, 40.733741653741966], [-75.5874058755714, 40.733745240482996], [-75.58759023897245, 40.73375127592326], [-75.58777443720827, 40.733759757270676], [-75.58779779354717, 40.733761144505095], [-75.58780393727848, 40.73376150937397], [-75.58795841233675, 40.73377068254561], [-75.58814210881167, 40.73378404891252], [-75.5883254723572, 40.7337998508575], [-75.58836858559164, 40.73381213988199], [-75.58853299358171, 40.733859003000774], [-75.58864435197242, 40.73389316675902], [-75.58875490876173, 40.73392880270397], [-75.58886463226199, 40.73396590214057], [-75.5889734874085, 40.73400445090614], [-75.58908144251316, 40.73404444030586], [-75.5891311710716, 40.734063683868264], [-75.5891884625398, 40.734085855277065], [-75.5892945170411, 40.73412868534661], [-75.58939957210588, 40.73417291727458], [-75.5897250707851, 40.73430129178185], [-75.58989730203746, 40.73437342994645], [-75.5899424968156, 40.73439314907524], [-75.58995881481496, 40.734400269098174], [-75.59006785231469, 40.734447843516044], [-75.59023667024903, 40.734524509922586], [-75.59034564324612, 40.734575980631774], [-75.5903816635438, 40.73459299403213], [-75.59040370452992, 40.73460340479789], [-75.59056890260449, 40.7346845055524], [-75.59073221558533, 40.73476778606185], [-75.59089359331388, 40.73485322288086], [-75.59105298695893, 40.734940788085], [-75.59121034763044, 40.73503045555048], [-75.5913656264665, 40.735122198253364], [-75.59151877815479, 40.73521598923597], [-75.59154409684922, 40.735232056494105], [-75.59156133808749, 40.73524299752756], [-75.5916697551308, 40.73531179789574], [-75.5917180710145, 40.73536661363801], [-75.59172929446612, 40.73537934794134], [-75.59173875611532, 40.735390082139034], [-75.59182954050446, 40.73549307852625], [-75.59183769966016, 40.73550233460766], [-75.59195034183749, 40.73563013093278], [-75.59212349934693, 40.73583641909389], [-75.5922918966499, 40.73604497497003], [-75.59245548606398, 40.73625573373899], [-75.59261421511249, 40.73646863229083], [-75.59276803613756, 40.7366836049025], [-75.59288638482896, 40.73685610661225], [-75.59291690145027, 40.736900586750906], [-75.59306076930626, 40.73711951222213], [-75.59310971334507, 40.73719736069744], [-75.59311259547452, 40.7372019443678], [-75.59319958973212, 40.737340313747495], [-75.59333332458792, 40.73756292397783], [-75.59360598850158, 40.73801811222932], [-75.5936160552509, 40.73803491806617], [-75.59390971796871, 40.738525149267545], [-75.59416995877268, 40.73895958410894], [-75.59417167969384, 40.73896245718628], [-75.59417337033449, 40.738965277454945], [-75.59417148504009, 40.73896571716226], [-75.59416941357475, 40.738966201154284], [-75.59368767438211, 40.73907867647457], [-75.59344765689995, 40.739133935194985], [-75.59320024880053, 40.73919454737332], [-75.59311296737772, 40.73921471955653], [-75.5929311935792, 40.73925475677899], [-75.59237740073984, 40.73938577921159], [-75.59218823568195, 40.73943117007111], [-75.5918899690759, 40.739501731047305], [-75.59154084704923, 40.739582156142156], [-75.59148260180777, 40.73959737575125], [-75.59114069400205, 40.73967793380548], [-75.59076235756396, 40.73976879670363], [-75.59073616175957, 40.73977509965474], [-75.59040584109779, 40.73985457215628], [-75.59004842453892, 40.73994024510606], [-75.58999756767257, 40.739950194862026], [-75.58967026171408, 40.74002561555426], [-75.58903007694758, 40.74017672187923], [-75.58893558049128, 40.7401966710747], [-75.58835796988117, 40.74029540054985], [-75.58815880900231, 40.74032944239706], [-75.58816476811334, 40.740337511034184], [-75.5658878139531, 40.74757901865511], [-75.56580639389448, 40.74772360702429], [-75.56572177619636, 40.747800008346005], [-75.56552237972792, 40.74793662788043], [-75.5644569118633, 40.748532717224045], [-75.56391265723627, 40.748865591650095], [-75.5637674569072, 40.74891751281401], [-75.56365343826883, 40.748954320014484], [-75.56318869664162, 40.74906260037747], [-75.5620475623866, 40.749320471201365], [-75.56097905490351, 40.7496205409856], [-75.55982231369056, 40.749941245939866], [-75.55873850957727, 40.750211577593795], [-75.54114587269244, 40.7520950108479], [-75.5408499565073, 40.75195623129822], [-75.54009035682365, 40.75159998529599], [-75.53941472062594, 40.75128864193207], [-75.53941322476918, 40.75128795225708], [-75.53941304859632, 40.75128787053236], [-75.53907497731159, 40.7511320798943], [-75.53878463897762, 40.750997404299255], [-75.53785434943451, 40.750565872413105], [-75.53773481245415, 40.75049563945736], [-75.53753221648802, 40.75035750237957], [-75.53730578796107, 40.75020311501747], [-75.53585753163144, 40.74928736399896], [-75.5340294466905, 40.74800748927367], [-75.53393345090947, 40.74794027875451], [-75.5337053647256, 40.74774089553586], [-75.53345499779489, 40.74753293589824], [-75.53342913439876, 40.74750643927865], [-75.53342887206466, 40.74750616943144], [-75.53326904178813, 40.74734242198008], [-75.5330125070138, 40.7470206548258], [-75.5327481052471, 40.74660924474473], [-75.532433710013, 40.74609932107902], [-75.53144603685512, 40.74441442248867], [-75.53095871886933, 40.74359375991236], [-75.53072364346318, 40.74314232060291], [-75.53050788138015, 40.742710444490555], [-75.53040705208352, 40.74250862079803], [-75.53011544477017, 40.74185643645978], [-75.52983894626993, 40.741156918618245], [-75.52947512061509, 40.74024244821529], [-75.52943483115101, 40.74014117909506], [-75.52923954288492, 40.73963343857214], [-75.52912455112856, 40.73931745794714], [-75.52896394884908, 40.73905655765885], [-75.52894999991116, 40.73903400010984], [-75.52891099965383, 40.73897100039331], [-75.52868000054256, 40.73873100006112], [-75.52857455119518, 40.73864280657827], [-75.52846000031805, 40.73854699987818], [-75.52835599960912, 40.73846100036531], [-75.52699399970088, 40.73769299999552], [-75.52580299953581, 40.73700400023443], [-75.52534600042628, 40.736695999595], [-75.52516599964846, 40.736566000305565], [-75.5242980003355, 40.73586300010584], [-75.52396599988433, 40.73558299974989], [-75.52358299970581, 40.735259999750866], [-75.52260496797963, 40.73441784938789], [-75.52227035461473, 40.73412971873717]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 412, \"PRECINCTID\": \"160005-1\", \"NAME\": \"LEHIGH TWP NORTHWESTERN DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"ST NICHOLAS CHURCH\", \"SiteAddress\": \"1152 OAK RD\", \"City\": \"WALNUTPORT\", \"STATISTICS Registered Voters - Total\": \"895\", \"STATISTICS Ballots Cast - Total\": 705.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"78.77%\", \"Presidential Electors DEM Biden and Harris\": \"209\", \"Presidential Electors REP Trump and Pence\": \"487\", \"Presidential Electors LIB Jorgensen and Cohen\": \"5\", \"Presidential Electors Write-In Totals\": \"1\", \"Attorney General DEM Josh Shapiro\": \"220\", \"Attorney General REP Heather Heidelbaugh\": \"445\", \"Attorney General LIB Daniel Wassmer\": \"10\", \"Attorney General GRE Richard L Weiss\": \"9\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"195\", \"Auditor General REP Timothy Defoor\": \"452\", \"Auditor General LIB Jennifer Moore\": \"27\", \"Auditor General GRE Olivia Faison\": \"6\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"203\", \"State Treasurer REP Stacy L. Garrity\": \"454\", \"State Treasurer LIB Joe Soloski\": \"21\", \"State Treasurer GRE Timothy Runkle\": \"5\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"212\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"476\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"196\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"487\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 29.645390070921984, \"Presidential Electors Pct REP\": 69.07801418439716, \"Presidential Electors Pct LIB\": 0.7092198581560284, \"PA Attorney General Pct DEM\": 31.20567375886525, \"PA Attorney General Pct REP\": 63.12056737588653, \"PA Attorney General Pct LIB\": 1.4184397163120568, \"PA Attorney General Pct GRE\": 1.276595744680851, \"PA Auditor General Pct DEM\": 27.659574468085108, \"PA Auditor General Pct REP\": 64.11347517730496, \"PA Auditor General Pct LIB\": 3.829787234042553, \"PA Auditor General Pct GRE\": 0.851063829787234, \"PA State Treasurer Pct DEM\": 28.794326241134755, \"PA State Treasurer Pct REP\": 64.39716312056738, \"PA State Treasurer Pct LIB\": 2.9787234042553195, \"PA State Treasurer Pct GRE\": 0.7092198581560284, \"PA Representative in Congress 7th Congressional District Pct DEM\": 30.070921985815602, \"PA Representative in Congress 7th Congressional District Pct REP\": 67.5177304964539, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.41458882197967634, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.59426895662929, 40.76367451820698], [-75.59501610869434, 40.76326356974928], [-75.5951070732956, 40.76321353703255], [-75.59576230336299, 40.762853148331715], [-75.5959828746564, 40.76273128409563], [-75.59799702470549, 40.76162936823819], [-75.59838307208072, 40.76141412737176], [-75.59858525358922, 40.761302385671264], [-75.59869274461106, 40.761243973680486], [-75.5998716425259, 40.76059776554758], [-75.60046426530549, 40.76027394388355], [-75.6022107563576, 40.75932281522519], [-75.60246990724633, 40.75917934538811], [-75.60295948851534, 40.758915381816955], [-75.60327173906298, 40.758742965981405], [-75.6032719223605, 40.758742864878464], [-75.60337095992722, 40.75869126630665], [-75.6033711273727, 40.7586911793231], [-75.6033754715418, 40.758688915775366], [-75.6033766654029, 40.75868829378064], [-75.60337046481418, 40.75873357631341], [-75.60334026500593, 40.75895887512304], [-75.60329334182721, 40.75930894225672], [-75.6031631930939, 40.75990780762408], [-75.603161152599, 40.7599171966736], [-75.60316064136413, 40.75991955089656], [-75.60304005120204, 40.7605833722486], [-75.60290669481145, 40.761358991363586], [-75.60287995105995, 40.76148895834234], [-75.60287898266657, 40.76149734571175], [-75.60286275008346, 40.76163795800881], [-75.60286191441413, 40.76164519572108], [-75.60284870682332, 40.76175960230318], [-75.60279391533714, 40.762201486147504], [-75.60273846064477, 40.76263600631466], [-75.60273835476801, 40.762636834885434], [-75.6027370205023, 40.76264728910525], [-75.6027093721625, 40.76286392232385], [-75.6026807852561, 40.76308570690444], [-75.60261334596449, 40.763608922300875], [-75.60259469590557, 40.764130302330074], [-75.60259458998895, 40.764133280184275], [-75.60257063597368, 40.76480290591263], [-75.60257143489218, 40.76506041141243], [-75.60277770744821, 40.76604425754616], [-75.60311331058405, 40.766719410027534], [-75.60356454449, 40.76741563131434], [-75.60356800769607, 40.767420112792536], [-75.60357197152226, 40.76742524128198], [-75.60395541923118, 40.767921411026954], [-75.60431432764717, 40.76838790437152], [-75.60440550179972, 40.76850849654565], [-75.60446547495214, 40.768583843020835], [-75.60452717067527, 40.76865838265026], [-75.60459056600963, 40.76873209248733], [-75.60465564510008, 40.768804949716674], [-75.60493540795709, 40.76914439901544], [-75.60515929906461, 40.769407885459444], [-75.60522131952398, 40.76948087501206], [-75.60527520815106, 40.769530888388495], [-75.60532767798726, 40.76957958650947], [-75.6053901326116, 40.76964036929715], [-75.60545118201433, 40.769701971939135], [-75.60551080903568, 40.769764375204254], [-75.60556899414766, 40.76982755981752], [-75.60562571900591, 40.76989150652589], [-75.6056809687896, 40.76995619704207], [-75.60573472405623, 40.77002160939033], [-75.6057869711398, 40.77008772620544], [-75.60583769178152, 40.77015452553346], [-75.60588687118833, 40.77022198818677], [-75.60593449465337, 40.77029009227692], [-75.60598054738325, 40.77035881861619], [-75.60600524769059, 40.770397326576926], [-75.60601154550193, 40.77040714522251], [-75.6060250158548, 40.77042814533798], [-75.60606788651593, 40.77049805147579], [-75.60610914581419, 40.77056851606322], [-75.60614878143885, 40.77063951635498], [-75.60618677977958, 40.77071103318516], [-75.6062231321352, 40.77078304207339], [-75.60625782610803, 40.770855522975225], [-75.60629085059946, 40.770928452266794], [-75.60632219557971, 40.77100180994717], [-75.60635185234699, 40.771075571535896], [-75.60637981092881, 40.77114971523141], [-75.60640606372084, 40.77122421927571], [-75.60643060202084, 40.77129905918816], [-75.6064534193796, 40.77137421413283], [-75.60647450706594, 40.77144966052913], [-75.60649385990078, 40.7715253748621], [-75.60651147149231, 40.771601334495074], [-75.60652733666137, 40.7716775159128], [-75.60654145138416, 40.771753896522185], [-75.6065538104815, 40.77183045280791], [-75.60656440995814, 40.77190716127647], [-75.60657324581886, 40.771983998434195], [-75.60658031759222, 40.772060941753296], [-75.60658562249579, 40.772137966861536], [-75.60658915768963, 40.77221505118717], [-75.60659092278837, 40.77229216950134], [-75.60659091610762, 40.772369300154324], [-75.60658914078569, 40.772446418882815], [-75.60658559401132, 40.77252350221459], [-75.60658027889436, 40.77260052678644], [-75.60657984722883, 40.772605213720695], [-75.60657972049665, 40.77260658508166], [-75.60657319617599, 40.77267746919156], [-75.6065643477819, 40.77275430604477], [-75.60655373682185, 40.77283101398271], [-75.60654136761859, 40.77290756876361], [-75.60652724085617, 40.77298394878076], [-75.6065113644388, 40.77306012895741], [-75.60649913727323, 40.77311282721494], [-75.6064982180386, 40.77311678992522], [-75.6064937402635, 40.77313608680836], [-75.6064743761772, 40.77321179905738], [-75.60645327644555, 40.77328724326263], [-75.60643044773143, 40.77336239612595], [-75.60640589788193, 40.77343723437071], [-75.60637963231846, 40.773511736477154], [-75.60635166131436, 40.773585877411854], [-75.60632199263087, 40.773659636598865], [-75.6062906352999, 40.7737329907832], [-75.60625759714044, 40.7738059175883], [-75.6062228907086, 40.77387839472496], [-75.60618652616327, 40.7739504007604], [-75.60617117484226, 40.77399120047202], [-75.60616008820492, 40.77401841487044], [-75.60614837838543, 40.77404547814273], [-75.6061360491945, 40.774072382251966], [-75.60612310447162, 40.774099118260956], [-75.60610954681464, 40.77412567901116], [-75.60609538243142, 40.77415205560914], [-75.60608061394869, 40.774178239996054], [-75.6060652475169, 40.77420422507898], [-75.60604928579149, 40.7742300018988], [-75.60604703478982, 40.77423347881856], [-75.60603273613597, 40.77425556248412], [-75.60601560111957, 40.77428090057671], [-75.60599788697913, 40.77430600638272], [-75.6059795998078, 40.77433087460968], [-75.60596074465828, 40.774355495441974], [-75.60594132646835, 40.774379862664986], [-75.60592135141748, 40.77440396828544], [-75.60590082681185, 40.774427806132394], [-75.60587975767562, 40.77445136729049], [-75.60587863607847, 40.77445257525759], [-75.6058784518896, 40.77445277723665], [-75.60585815365472, 40.77447464653284], [-75.6058360127255, 40.774497633012274], [-75.60581335036885, 40.774520324312], [-75.60579017163761, 40.77454271061627], [-75.60576648144117, 40.77456478661081], [-75.60576569455864, 40.774565717008585], [-75.6057182970634, 40.774621752744146], [-75.60568104646786, 40.7746677572771], [-75.60564485734972, 40.774714248904566], [-75.60560974082863, 40.774761213420334], [-75.60557570799546, 40.774808637518134], [-75.60554276884329, 40.77485650516938], [-75.60551093449199, 40.77490480216763], [-75.60548021366438, 40.77495351516297], [-75.60545061519835, 40.77500262720453], [-75.60542214781692, 40.775052124942356], [-75.60539482266906, 40.775101993269736], [-75.6053686450116, 40.775152216070325], [-75.60534362596493, 40.77520277913761], [-75.60531976963053, 40.77525366543305], [-75.60531237688215, 40.775270352910596], [-75.605297087129, 40.77530486075011], [-75.6052755825045, 40.7753563498507], [-75.60525526222705, 40.775408115739964], [-75.60523613504907, 40.77546014416755], [-75.60521820388819, 40.77551241807288], [-75.60520147637015, 40.775564921383086], [-75.60518595653943, 40.77561763885996], [-75.60517164846917, 40.77567055436502], [-75.6051585586011, 40.775723651803496], [-75.60514668866894, 40.775776914092695], [-75.60513604390137, 40.77583032601624], [-75.60504411060737, 40.7767788550833], [-75.60504361571996, 40.77678395880624], [-75.60504336293974, 40.77678656641786], [-75.60494825574507, 40.777767807189264], [-75.6049277150218, 40.77788717291763], [-75.60491271588833, 40.77798934949751], [-75.6049000641979, 40.77809170994948], [-75.60489802074883, 40.77811204528434], [-75.60489775799462, 40.77811466802404], [-75.60488976454977, 40.77819422193068], [-75.60488182027268, 40.77829685577717], [-75.60487623359751, 40.77839957910203], [-75.6048730067264, 40.77850236041861], [-75.60487213946413, 40.778605169096586], [-75.60487363282857, 40.77870797362709], [-75.60487748662457, 40.77881074337952], [-75.6048836983459, 40.778913445878885], [-75.60489226782606, 40.77901604959406], [-75.60490319128824, 40.77911852472854], [-75.60491646619715, 40.77922083970732], [-75.60493208767785, 40.77932296201098], [-75.60493962932344, 40.77936573997191], [-75.60495005195314, 40.77942486184279], [-75.60495780641288, 40.779463688381824], [-75.60497035290594, 40.77952650846176], [-75.60499298447652, 40.779627869326305], [-75.60501793930577, 40.779728915473946], [-75.60504521133358, 40.779829614362725], [-75.60507479086073, 40.77992993608597], [-75.60510666818755, 40.7800298507366], [-75.60514083604056, 40.78012932665083], [-75.60515187477675, 40.780159314954346], [-75.60516231631937, 40.78018444420249], [-75.60531044747081, 40.780540945699954], [-75.60531576677467, 40.78055374768929], [-75.6053256927754, 40.780573431160356], [-75.60545171675915, 40.78082334058086], [-75.60547141957481, 40.780862411983385], [-75.60549519501514, 40.780905758932896], [-75.60551316961612, 40.7809369832087], [-75.60554941406642, 40.78099994704534], [-75.60560578856197, 40.78109340204631], [-75.60573479440106, 40.78129985642522], [-75.60574631067453, 40.781318287392], [-75.6062672621929, 40.782151980484166], [-75.60674319185571, 40.78290165719801], [-75.60683054771388, 40.783039255864], [-75.60689374816006, 40.78314926096162], [-75.60908418594879, 40.787452831603524], [-75.60908243281557, 40.78745336138208], [-75.60839471887292, 40.78766110829732], [-75.6077510012905, 40.78786236711688], [-75.60715885222346, 40.788045198741415], [-75.60636102754749, 40.78828235798858], [-75.60300716453865, 40.78951963569044], [-75.60125501371353, 40.79003103980988], [-75.59962718715, 40.79049478340346], [-75.59800638401775, 40.790964125833376], [-75.59748868557229, 40.791114951887394], [-75.59748501385202, 40.79111602154659], [-75.5973080591971, 40.791167575253574], [-75.5964066745127, 40.79142268352815], [-75.59477645695067, 40.79257734852234], [-75.59351935021546, 40.79347413908513], [-75.5917240011071, 40.79459292123556], [-75.59166379385748, 40.79462970056784], [-75.59165245921322, 40.79463662421339], [-75.59127717739783, 40.79486587178969], [-75.59098303223897, 40.79505328473627], [-75.58976508794227, 40.79557221403278], [-75.58976050843057, 40.79557418807746], [-75.58889581976612, 40.79592104066815], [-75.58748661376431, 40.79609932734033], [-75.58747350422263, 40.796100985787966], [-75.5861560781841, 40.796267643925766], [-75.58511986368043, 40.796915770490315], [-75.5851099826264, 40.79692195042623], [-75.58335466272818, 40.79801981007939], [-75.58115003286295, 40.79882552421247], [-75.57915803755508, 40.799283045546865], [-75.57721387370678, 40.79976888457458], [-75.57721114337801, 40.79976951991562], [-75.57681348299683, 40.799860237921784], [-75.5757076123645, 40.800119943756634], [-75.57486367256082, 40.80032413890912], [-75.57438330274043, 40.80043046120813], [-75.57325770659813, 40.80062937053239], [-75.57066565694088, 40.801092150567044], [-75.56862231576785, 40.801735404627735], [-75.56660218239912, 40.80238274731909], [-75.56087300007735, 40.78917899972681], [-75.56044100052182, 40.78913899976664], [-75.56046000037469, 40.78827399985838], [-75.5596550005107, 40.78630099964195], [-75.55909199965096, 40.785757999821236], [-75.55895621586097, 40.78545348580046], [-75.55895599944427, 40.78545299979282], [-75.5586399995079, 40.78555799989068], [-75.55797599950343, 40.7850579998867], [-75.55733200005965, 40.784473000408695], [-75.55702999995212, 40.78441300029349], [-75.55690400035957, 40.7843370003139], [-75.55667200050254, 40.78419900029749], [-75.55619100012684, 40.783830000165786], [-75.55563899977865, 40.783206000353054], [-75.55546500028522, 40.78273600030403], [-75.55534199965479, 40.78198899994506], [-75.55544399976358, 40.78140599972541], [-75.55587400018354, 40.78126200002895], [-75.55628299985317, 40.781292999990185], [-75.55702499992351, 40.78128600006643], [-75.55693900002002, 40.78080799970553], [-75.55675941370559, 40.78012488339272], [-75.57615451232438, 40.770407342495524], [-75.59426895662929, 40.76367451820698]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 413, \"PRECINCTID\": \"160001-1\", \"NAME\": \"LEHIGH TWP CENTRAL DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BETHANY WESLEYAN CHURCH\", \"SiteAddress\": \"675 BLUE MOUNTAIN DR\", \"City\": \"CHERRYVILLE\", \"STATISTICS Registered Voters - Total\": \"1899\", \"STATISTICS Ballots Cast - Total\": 1609.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"84.73%\", \"Presidential Electors DEM Biden and Harris\": \"538\", \"Presidential Electors REP Trump and Pence\": \"1051\", \"Presidential Electors LIB Jorgensen and Cohen\": \"13\", \"Presidential Electors Write-In Totals\": \"6\", \"Attorney General DEM Josh Shapiro\": \"550\", \"Attorney General REP Heather Heidelbaugh\": \"974\", \"Attorney General LIB Daniel Wassmer\": \"22\", \"Attorney General GRE Richard L Weiss\": \"9\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"502\", \"Auditor General REP Timothy Defoor\": \"993\", \"Auditor General LIB Jennifer Moore\": \"38\", \"Auditor General GRE Olivia Faison\": \"11\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"513\", \"State Treasurer REP Stacy L. Garrity\": \"977\", \"State Treasurer LIB Joe Soloski\": \"45\", \"State Treasurer GRE Timothy Runkle\": \"16\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"531\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"1042\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"489\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"1087\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"3\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 33.436917339962704, \"Presidential Electors Pct REP\": 65.32007458048477, \"Presidential Electors Pct LIB\": 0.8079552517091362, \"PA Attorney General Pct DEM\": 34.18272218769422, \"PA Attorney General Pct REP\": 60.534493474207586, \"PA Attorney General Pct LIB\": 1.3673088875077688, \"PA Attorney General Pct GRE\": 0.5593536357986327, \"PA Auditor General Pct DEM\": 31.19950279676818, \"PA Auditor General Pct REP\": 61.71535114978247, \"PA Auditor General Pct LIB\": 2.3617153511497824, \"PA Auditor General Pct GRE\": 0.6836544437538844, \"PA State Treasurer Pct DEM\": 31.883157240522063, \"PA State Treasurer Pct REP\": 60.720944686140456, \"PA State Treasurer Pct LIB\": 2.7967681789931635, \"PA State Treasurer Pct GRE\": 0.9944064636420136, \"PA Representative in Congress 7th Congressional District Pct DEM\": 33.001864512119326, \"PA Representative in Congress 7th Congressional District Pct REP\": 64.76072094468614, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.9462034249153181, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.53011544477017, 40.74185643645978], [-75.53040705208352, 40.74250862079803], [-75.53050788138015, 40.742710444490555], [-75.53072364346318, 40.74314232060291], [-75.53095871886933, 40.74359375991236], [-75.53144603685512, 40.74441442248867], [-75.532433710013, 40.74609932107902], [-75.5327481052471, 40.74660924474473], [-75.5330125070138, 40.7470206548258], [-75.53326904178813, 40.74734242198008], [-75.53342887206466, 40.74750616943144], [-75.53342913439876, 40.74750643927865], [-75.53345499779489, 40.74753293589824], [-75.5337053647256, 40.74774089553586], [-75.53393345090947, 40.74794027875451], [-75.5340294466905, 40.74800748927367], [-75.53585753163144, 40.74928736399896], [-75.53730578796107, 40.75020311501747], [-75.53753221648802, 40.75035750237957], [-75.53773481245415, 40.75049563945736], [-75.53785434943451, 40.750565872413105], [-75.53878463897762, 40.750997404299255], [-75.53907497731159, 40.7511320798943], [-75.53941304859632, 40.75128787053236], [-75.53941322476918, 40.75128795225708], [-75.53941472062594, 40.75128864193207], [-75.54009035682365, 40.75159998529599], [-75.5408499565073, 40.75195623129822], [-75.54114587269244, 40.7520950108479], [-75.55873850957727, 40.750211577593795], [-75.55982231369056, 40.749941245939866], [-75.56097905490351, 40.7496205409856], [-75.5620475623866, 40.749320471201365], [-75.56318869664162, 40.74906260037747], [-75.56365343826883, 40.748954320014484], [-75.5637674569072, 40.74891751281401], [-75.56391265723627, 40.748865591650095], [-75.5644569118633, 40.748532717224045], [-75.56552237972792, 40.74793662788043], [-75.56572177619636, 40.747800008346005], [-75.56580639389448, 40.74772360702429], [-75.5658878139531, 40.74757901865511], [-75.58816476811334, 40.740337511034184], [-75.58838537823894, 40.74063619678117], [-75.58844477952624, 40.740715072466564], [-75.58855760594676, 40.74086488992225], [-75.58860682718411, 40.74090578925189], [-75.58864421656385, 40.740939859102916], [-75.5886691578002, 40.74096258582037], [-75.58886809804855, 40.74114386140637], [-75.58909921680981, 40.74136469516669], [-75.58911500186684, 40.74137977831365], [-75.5892958426753, 40.74156530035002], [-75.58944771923385, 40.741729317823136], [-75.58946068269601, 40.74174331698967], [-75.58947383696605, 40.741758085384475], [-75.58950011235663, 40.741787585520335], [-75.58971153370658, 40.74202495212991], [-75.58989361632497, 40.742256142400194], [-75.58996427438451, 40.742352364363], [-75.58996658224585, 40.74235550785292], [-75.59002935923519, 40.74244099604528], [-75.59008677589388, 40.74252593496655], [-75.59025420935713, 40.74277362579041], [-75.5891016577234, 40.743041924651436], [-75.58846042906917, 40.743191189231055], [-75.588147365567, 40.7432640614923], [-75.58806391980566, 40.74327700764925], [-75.58802760722637, 40.74328362425221], [-75.58806079754518, 40.74337399071906], [-75.58821559628494, 40.74386396665637], [-75.58926027308623, 40.74724270256219], [-75.58933084321208, 40.74751789254707], [-75.58959626861653, 40.74841319063102], [-75.59012856461555, 40.750121992404694], [-75.59055999223804, 40.75150691414148], [-75.59145915544234, 40.754421561492265], [-75.59147527324859, 40.75448174958559], [-75.59159106053225, 40.754867089415164], [-75.59243085543103, 40.75760944800376], [-75.59245809659852, 40.757699553453534], [-75.59265600209754, 40.75835415412612], [-75.5927205226301, 40.75856756183391], [-75.59346679301318, 40.761020566730416], [-75.59355813299054, 40.761324624945175], [-75.59361488327976, 40.76151224021066], [-75.59426895662929, 40.76367451820698], [-75.57615451232438, 40.770407342495524], [-75.55675941370559, 40.78012488339272], [-75.5527458621574, 40.77347386213222], [-75.52304500014272, 40.76553200008415], [-75.53011544477017, 40.74185643645978]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 414, \"PRECINCTID\": \"160003-1\", \"NAME\": \"LEHIGH TWP PENNSVILLE DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"HOPE LUTHERAN CHURCH\", \"SiteAddress\": \"4131 LEHIGH DR\", \"City\": \"CHERRYVILLE\", \"STATISTICS Registered Voters - Total\": \"1661\", \"STATISTICS Ballots Cast - Total\": 1385.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"83.38%\", \"Presidential Electors DEM Biden and Harris\": \"448\", \"Presidential Electors REP Trump and Pence\": \"923\", \"Presidential Electors LIB Jorgensen and Cohen\": \"12\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"460\", \"Attorney General REP Heather Heidelbaugh\": \"853\", \"Attorney General LIB Daniel Wassmer\": \"24\", \"Attorney General GRE Richard L Weiss\": \"12\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"408\", \"Auditor General REP Timothy Defoor\": \"881\", \"Auditor General LIB Jennifer Moore\": \"47\", \"Auditor General GRE Olivia Faison\": \"11\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"432\", \"State Treasurer REP Stacy L. Garrity\": \"880\", \"State Treasurer LIB Joe Soloski\": \"27\", \"State Treasurer GRE Timothy Runkle\": \"9\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"450\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"912\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"414\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"948\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 32.34657039711191, \"Presidential Electors Pct REP\": 66.64259927797835, \"Presidential Electors Pct LIB\": 0.8664259927797834, \"PA Attorney General Pct DEM\": 33.2129963898917, \"PA Attorney General Pct REP\": 61.588447653429604, \"PA Attorney General Pct LIB\": 1.7328519855595668, \"PA Attorney General Pct GRE\": 0.8664259927797834, \"PA Auditor General Pct DEM\": 29.45848375451264, \"PA Auditor General Pct REP\": 63.6101083032491, \"PA Auditor General Pct LIB\": 3.393501805054152, \"PA Auditor General Pct GRE\": 0.7942238267148014, \"PA State Treasurer Pct DEM\": 31.1913357400722, \"PA State Treasurer Pct REP\": 63.537906137184116, \"PA State Treasurer Pct LIB\": 1.9494584837545126, \"PA State Treasurer Pct GRE\": 0.6498194945848376, \"PA Representative in Congress 7th Congressional District Pct DEM\": 32.49097472924188, \"PA Representative in Congress 7th Congressional District Pct REP\": 65.84837545126354, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.8144759126834776, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.47261501907506, 40.738631390063446], [-75.47389487277944, 40.73853416501765], [-75.47479917411445, 40.738465459862894], [-75.47484079303922, 40.738462329085706], [-75.48032859838825, 40.73795557722553], [-75.48226839738162, 40.73778215541379], [-75.48494803045742, 40.7375331317339], [-75.48672133163701, 40.7373722603427], [-75.48704705843812, 40.73734703525528], [-75.48749634096863, 40.7372973604111], [-75.48759788457093, 40.737283380590505], [-75.48957461337721, 40.737110813943296], [-75.49075363995526, 40.73700259082966], [-75.49076227284851, 40.73700179857761], [-75.49163506429275, 40.73692766451509], [-75.4951552019208, 40.7366285972487], [-75.49854388349002, 40.73633022516126], [-75.50033191440913, 40.73615853554249], [-75.50088993570196, 40.736094872102825], [-75.50180675627097, 40.73600687586552], [-75.50295407334661, 40.73589674523741], [-75.5070991388853, 40.73548294504368], [-75.51181957735064, 40.73524249912356], [-75.51352705248812, 40.73515547780449], [-75.51613865831374, 40.735018031621856], [-75.51767183207802, 40.734794237775354], [-75.52214613338391, 40.734141008920396], [-75.52227035461473, 40.73412971873717], [-75.52260496797963, 40.73441784938789], [-75.52358299970581, 40.735259999750866], [-75.52396599988433, 40.73558299974989], [-75.5242980003355, 40.73586300010584], [-75.52516599964846, 40.736566000305565], [-75.52534600042628, 40.736695999595], [-75.52580299953581, 40.73700400023443], [-75.52699399970088, 40.73769299999552], [-75.52835599960912, 40.73846100036531], [-75.52846000031805, 40.73854699987818], [-75.52857455119518, 40.73864280657827], [-75.52868000054256, 40.73873100006112], [-75.52891099965383, 40.73897100039331], [-75.52894999991116, 40.73903400010984], [-75.52896394884908, 40.73905655765885], [-75.52912455112856, 40.73931745794714], [-75.52923954288492, 40.73963343857214], [-75.52943483115101, 40.74014117909506], [-75.52947512061509, 40.74024244821529], [-75.52983894626993, 40.741156918618245], [-75.53011544477017, 40.74185643645978], [-75.52304500014272, 40.76553200008415], [-75.52286299983142, 40.76547200012402], [-75.5225410004071, 40.76685900007452], [-75.52215200049525, 40.768544000187816], [-75.52089399978004, 40.768666000190045], [-75.52104099954529, 40.76933599979795], [-75.52120400049574, 40.76951600026416], [-75.52227500007922, 40.770612999844886], [-75.52147999957926, 40.77098999993521], [-75.52160699952206, 40.771056999615155], [-75.52172499997474, 40.77127300037924], [-75.52112899957474, 40.77331599957282], [-75.52108200000023, 40.7734679998654], [-75.52097099971552, 40.77389899971888], [-75.52090500033474, 40.77404499982129], [-75.52056799951585, 40.77403500011163], [-75.52065200040704, 40.77511299977134], [-75.52049300056149, 40.775877999868], [-75.52044600052766, 40.776696000266845], [-75.51993699947477, 40.77707200005382], [-75.51959300050753, 40.77696700028733], [-75.51947199943521, 40.77716400011274], [-75.5175680002908, 40.77752899955708], [-75.51711399970166, 40.77759499989802], [-75.51701200057249, 40.7776260004335], [-75.51694999965264, 40.777645999933256], [-75.51676399962213, 40.777661000214906], [-75.51678299994263, 40.77801700012468], [-75.51587399958056, 40.777941999589714], [-75.51577099983511, 40.77792300025137], [-75.51579000044053, 40.77781099979946], [-75.51492999990231, 40.77791300011083], [-75.5149030000378, 40.77801699956924], [-75.51322899974477, 40.777925999630845], [-75.51289200029854, 40.77806300001121], [-75.51269000037615, 40.778278000377476], [-75.51228000029708, 40.77837600025735], [-75.5119179998062, 40.77831299954789], [-75.5115930004092, 40.77836300028653], [-75.5113810001093, 40.77857599960725], [-75.51101600052064, 40.77859600013664], [-75.5105070000067, 40.77893800009527], [-75.51025700045335, 40.778775000080934], [-75.509918999813, 40.778863000176806], [-75.50870800049977, 40.77903800024361], [-75.50804700056777, 40.77915700031616], [-75.50774599979991, 40.77918799974279], [-75.50695900025917, 40.779361999588765], [-75.50632200044178, 40.77937500014923], [-75.50572299945465, 40.77946199978686], [-75.50531100004461, 40.77931200028443], [-75.5051109994367, 40.779299999723705], [-75.50502300009326, 40.7794370003386], [-75.50517299941839, 40.77957500036332], [-75.50527300055911, 40.77972500019389], [-75.50442400049347, 40.780223999996686], [-75.5043239997289, 40.780149000054045], [-75.50418600030791, 40.780012000260236], [-75.50238800041274, 40.78013700026622], [-75.49988500048751, 40.78049500014523], [-75.49979500016825, 40.78053300043378], [-75.49752299956934, 40.78087699960164], [-75.48805193948908, 40.78271983465451], [-75.4873414963501, 40.780946263960715], [-75.48726133099484, 40.78096701099331], [-75.48578344896885, 40.77908246696073], [-75.48478329119983, 40.77778741944313], [-75.48499529569474, 40.777686188175636], [-75.48563652394007, 40.77741519792524], [-75.48589185293869, 40.77731446648692], [-75.48563357330285, 40.77667294506854], [-75.48531444448842, 40.7758546833951], [-75.48489857804843, 40.774826204595655], [-75.4843964944742, 40.773543609388874], [-75.4843419422356, 40.773394276900326], [-75.48380454705595, 40.77206173800239], [-75.48368894061211, 40.771768609679015], [-75.4836687917381, 40.77169682843678], [-75.48353208026349, 40.77138698503578], [-75.48319233192335, 40.770530715482735], [-75.48277739963874, 40.76948492811179], [-75.48181818978188, 40.7670908209702], [-75.48145331060836, 40.76605285272827], [-75.4808651992047, 40.76443460912827], [-75.47643388136632, 40.75303610213524], [-75.47609547113602, 40.7521541044608], [-75.47553958135795, 40.750730038767344], [-75.47529481515679, 40.750102982723654], [-75.47524025718218, 40.74998161658246], [-75.47485332851882, 40.74829567583224], [-75.47449782601512, 40.74674659058742], [-75.47406101960424, 40.74488148820994], [-75.47328026061386, 40.74147588935954], [-75.47262107513527, 40.73865728610662], [-75.47261501907506, 40.738631390063446]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 415, \"PRECINCTID\": \"160002-1\", \"NAME\": \"LEHIGH TWP DANIELSVILLE DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BLUE MOUNTAIN FISH & GAME BUILDING\", \"SiteAddress\": \"4190 WOOD DR\", \"City\": \"WALNUTPORT\", \"STATISTICS Registered Voters - Total\": \"2198\", \"STATISTICS Ballots Cast - Total\": 1823.0, \"STATISTICS Ballots Cast - Blank\": \"1\", \"STATISTICS Voter Turnout - Total\": \"82.94%\", \"Presidential Electors DEM Biden and Harris\": \"600\", \"Presidential Electors REP Trump and Pence\": \"1183\", \"Presidential Electors LIB Jorgensen and Cohen\": \"24\", \"Presidential Electors Write-In Totals\": \"9\", \"Attorney General DEM Josh Shapiro\": \"611\", \"Attorney General REP Heather Heidelbaugh\": \"1069\", \"Attorney General LIB Daniel Wassmer\": \"32\", \"Attorney General GRE Richard L Weiss\": \"27\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"537\", \"Auditor General REP Timothy Defoor\": \"1093\", \"Auditor General LIB Jennifer Moore\": \"75\", \"Auditor General GRE Olivia Faison\": \"19\", \"Auditor General Write-In Totals\": \"2\", \"State Treasurer DEM Joe Torsella\": \"569\", \"State Treasurer REP Stacy L. Garrity\": \"1085\", \"State Treasurer LIB Joe Soloski\": \"48\", \"State Treasurer GRE Timothy Runkle\": \"23\", \"State Treasurer Write-In Totals\": \"1\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"610\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"1157\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"554\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"1209\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 32.912781130005484, \"Presidential Electors Pct REP\": 64.89303346132749, \"Presidential Electors Pct LIB\": 1.3165112452002194, \"PA Attorney General Pct DEM\": 33.51618211738892, \"PA Attorney General Pct REP\": 58.63960504662644, \"PA Attorney General Pct LIB\": 1.755348326933626, \"PA Attorney General Pct GRE\": 1.4810751508502469, \"PA Auditor General Pct DEM\": 29.456939111354906, \"PA Auditor General Pct REP\": 59.95611629182665, \"PA Auditor General Pct LIB\": 4.1140976412506856, \"PA Auditor General Pct GRE\": 1.0422380691168405, \"PA State Treasurer Pct DEM\": 31.212287438288534, \"PA State Treasurer Pct REP\": 59.51727921009326, \"PA State Treasurer Pct LIB\": 2.633022490400439, \"PA State Treasurer Pct GRE\": 1.2616566099835436, \"PA Representative in Congress 7th Congressional District Pct DEM\": 33.461327482172244, \"PA Representative in Congress 7th Congressional District Pct REP\": 63.46681294569391, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 1.0720502446368085, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.48805193948908, 40.78271983465451], [-75.49752299956934, 40.78087699960164], [-75.49979500016825, 40.78053300043378], [-75.49988500048751, 40.78049500014523], [-75.50238800041274, 40.78013700026622], [-75.50418600030791, 40.780012000260236], [-75.5043239997289, 40.780149000054045], [-75.50442400049347, 40.780223999996686], [-75.50527300055911, 40.77972500019389], [-75.50517299941839, 40.77957500036332], [-75.50502300009326, 40.7794370003386], [-75.5051109994367, 40.779299999723705], [-75.50531100004461, 40.77931200028443], [-75.50572299945465, 40.77946199978686], [-75.50632200044178, 40.77937500014923], [-75.50695900025917, 40.779361999588765], [-75.50774599979991, 40.77918799974279], [-75.50804700056777, 40.77915700031616], [-75.50870800049977, 40.77903800024361], [-75.509918999813, 40.778863000176806], [-75.51025700045335, 40.778775000080934], [-75.5105070000067, 40.77893800009527], [-75.51101600052064, 40.77859600013664], [-75.5113810001093, 40.77857599960725], [-75.5115930004092, 40.77836300028653], [-75.5119179998062, 40.77831299954789], [-75.51228000029708, 40.77837600025735], [-75.51269000037615, 40.778278000377476], [-75.51289200029854, 40.77806300001121], [-75.51322899974477, 40.777925999630845], [-75.5149030000378, 40.77801699956924], [-75.51492999990231, 40.77791300011083], [-75.51579000044053, 40.77781099979946], [-75.51577099983511, 40.77792300025137], [-75.51587399958056, 40.777941999589714], [-75.51678299994263, 40.77801700012468], [-75.51676399962213, 40.777661000214906], [-75.51694999965264, 40.777645999933256], [-75.51701200057249, 40.7776260004335], [-75.51711399970166, 40.77759499989802], [-75.5175680002908, 40.77752899955708], [-75.51947199943521, 40.77716400011274], [-75.51959300050753, 40.77696700028733], [-75.51993699947477, 40.77707200005382], [-75.52044600052766, 40.776696000266845], [-75.52049300056149, 40.775877999868], [-75.52065200040704, 40.77511299977134], [-75.52056799951585, 40.77403500011163], [-75.52090500033474, 40.77404499982129], [-75.52097099971552, 40.77389899971888], [-75.52108200000023, 40.7734679998654], [-75.52112899957474, 40.77331599957282], [-75.52172499997474, 40.77127300037924], [-75.52160699952206, 40.771056999615155], [-75.52147999957926, 40.77098999993521], [-75.52227500007922, 40.770612999844886], [-75.52120400049574, 40.76951600026416], [-75.52104099954529, 40.76933599979795], [-75.52089399978004, 40.768666000190045], [-75.52215200049525, 40.768544000187816], [-75.5225410004071, 40.76685900007452], [-75.52286299983142, 40.76547200012402], [-75.52304500014272, 40.76553200008415], [-75.5527458621574, 40.77347386213222], [-75.55675941370559, 40.78012488339272], [-75.55693900002002, 40.78080799970553], [-75.55702499992351, 40.78128600006643], [-75.55628299985317, 40.781292999990185], [-75.55587400018354, 40.78126200002895], [-75.55544399976358, 40.78140599972541], [-75.55534199965479, 40.78198899994506], [-75.55546500028522, 40.78273600030403], [-75.55563899977865, 40.783206000353054], [-75.55619100012684, 40.783830000165786], [-75.55667200050254, 40.78419900029749], [-75.55690400035957, 40.7843370003139], [-75.55702999995212, 40.78441300029349], [-75.55733200005965, 40.784473000408695], [-75.55797599950343, 40.7850579998867], [-75.5586399995079, 40.78555799989068], [-75.55895599944427, 40.78545299979282], [-75.55895621586097, 40.78545348580046], [-75.55909199965096, 40.785757999821236], [-75.5596550005107, 40.78630099964195], [-75.56046000037469, 40.78827399985838], [-75.56044100052182, 40.78913899976664], [-75.56087300007735, 40.78917899972681], [-75.56660218239912, 40.80238274731909], [-75.56196054611254, 40.80386995705527], [-75.55537073906994, 40.80489592111539], [-75.55017389141233, 40.80572241076757], [-75.54574862610836, 40.806348635028954], [-75.5410941508591, 40.806909932504276], [-75.54084695952852, 40.80695482558835], [-75.54084423985755, 40.806955117085515], [-75.5347310256788, 40.807699145940305], [-75.53460047304313, 40.807713302803904], [-75.52942055179336, 40.808340650799025], [-75.52903791335214, 40.80832870526677], [-75.52670740715533, 40.808240379977775], [-75.52248032633459, 40.80808203380269], [-75.5223287825528, 40.80808343990848], [-75.52231490394476, 40.80808356929427], [-75.5212016507688, 40.808093894862104], [-75.51825404840812, 40.80814440082782], [-75.5114644371475, 40.80824649607208], [-75.50764493537682, 40.80875973618974], [-75.50752971698994, 40.8087743298476], [-75.50743526314407, 40.80878932412547], [-75.5048625283635, 40.80913639202702], [-75.5048411948041, 40.8088560947891], [-75.50478212250947, 40.808893563671184], [-75.50464049307875, 40.80902244708296], [-75.5037981372613, 40.809519776776696], [-75.50315140528355, 40.80992560244926], [-75.50314493113707, 40.80992966510542], [-75.50249823484614, 40.81033546001429], [-75.50249790788914, 40.810335664478735], [-75.50249795426438, 40.81033622657643], [-75.50254122617724, 40.81086622169568], [-75.50254146668678, 40.810869163867835], [-75.50254005697155, 40.810869306855345], [-75.49941402987359, 40.81118599286712], [-75.49941289136142, 40.811183140490044], [-75.49917503984783, 40.81058708261491], [-75.49917391558056, 40.810584265641936], [-75.4980623834875, 40.80779860526744], [-75.49716353646758, 40.80553831925515], [-75.49677792548431, 40.804593369273036], [-75.49623102692064, 40.803206326771246], [-75.49472610173208, 40.799470816090746], [-75.49386128727674, 40.79736010885545], [-75.49356896142159, 40.796625283274516], [-75.49347990808175, 40.79642638085274], [-75.49340584133984, 40.79623840799458], [-75.49241472007455, 40.7937233337017], [-75.49204764303614, 40.79279519647925], [-75.491999513622, 40.792695588895704], [-75.49167336705007, 40.79186657540818], [-75.49151640973093, 40.7914851356194], [-75.4914493909713, 40.791302789409464], [-75.49065981445376, 40.78932410301078], [-75.49046288869005, 40.788815754005824], [-75.4903809019708, 40.78862213309107], [-75.49034721855287, 40.788522804698296], [-75.48957268011237, 40.78655538336284], [-75.48949717933394, 40.78638385324005], [-75.48902174986142, 40.78516272439721], [-75.48894013578354, 40.784958297790155], [-75.48889201659989, 40.78485868870353], [-75.48881688351005, 40.784676353577595], [-75.48878987526051, 40.78459345741062], [-75.48846361697193, 40.7837700927623], [-75.48826023846367, 40.783239818670026], [-75.48805193948908, 40.78271983465451]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 416, \"PRECINCTID\": \"200003-1\", \"NAME\": \"MOORE TWP KLECKNERSVILLE DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"KLECKNERSVILLE RANGERS BUILDING\", \"SiteAddress\": \"2718 MOUNTAIN VIEW DR\", \"City\": \"BATH\", \"STATISTICS Registered Voters - Total\": \"1994\", \"STATISTICS Ballots Cast - Total\": 1673.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"83.90%\", \"Presidential Electors DEM Biden and Harris\": \"496\", \"Presidential Electors REP Trump and Pence\": \"1147\", \"Presidential Electors LIB Jorgensen and Cohen\": \"20\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"522\", \"Attorney General REP Heather Heidelbaugh\": \"1056\", \"Attorney General LIB Daniel Wassmer\": \"22\", \"Attorney General GRE Richard L Weiss\": \"8\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"450\", \"Auditor General REP Timothy Defoor\": \"1079\", \"Auditor General LIB Jennifer Moore\": \"59\", \"Auditor General GRE Olivia Faison\": \"8\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"480\", \"State Treasurer REP Stacy L. Garrity\": \"1075\", \"State Treasurer LIB Joe Soloski\": \"26\", \"State Treasurer GRE Timothy Runkle\": \"21\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"499\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"1130\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"466\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"1156\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 29.647340107591152, \"Presidential Electors Pct REP\": 68.55947399880455, \"Presidential Electors Pct LIB\": 1.1954572624028692, \"PA Attorney General Pct DEM\": 31.201434548714886, \"PA Attorney General Pct REP\": 63.12014345487149, \"PA Attorney General Pct LIB\": 1.315002988643156, \"PA Attorney General Pct GRE\": 0.47818290496114757, \"PA Auditor General Pct DEM\": 26.897788404064553, \"PA Auditor General Pct REP\": 64.49491930663478, \"PA Auditor General Pct LIB\": 3.5265989240884634, \"PA Auditor General Pct GRE\": 0.47818290496114757, \"PA State Treasurer Pct DEM\": 28.69097429766886, \"PA State Treasurer Pct REP\": 64.25582785415422, \"PA State Treasurer Pct LIB\": 1.5540944411237299, \"PA State Treasurer Pct GRE\": 1.2552301255230125, \"PA Representative in Congress 7th Congressional District Pct DEM\": 29.826658696951586, \"PA Representative in Congress 7th Congressional District Pct REP\": 67.5433353257621, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.9838398569815582, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.48319233192335, 40.770530715482735], [-75.48353208026349, 40.77138698503578], [-75.4836687917381, 40.77169682843678], [-75.48368894061211, 40.771768609679015], [-75.48380454705595, 40.77206173800239], [-75.4843419422356, 40.773394276900326], [-75.4843964944742, 40.773543609388874], [-75.48489857804843, 40.774826204595655], [-75.48531444448842, 40.7758546833951], [-75.48563357330285, 40.77667294506854], [-75.48589185293869, 40.77731446648692], [-75.48563652394007, 40.77741519792524], [-75.48499529569474, 40.777686188175636], [-75.48478329119983, 40.77778741944313], [-75.48578344896885, 40.77908246696073], [-75.48726133099484, 40.78096701099331], [-75.4873414963501, 40.780946263960715], [-75.48805193948908, 40.78271983465451], [-75.48826023846367, 40.783239818670026], [-75.48846361697193, 40.7837700927623], [-75.48878987526051, 40.78459345741062], [-75.48881688351005, 40.784676353577595], [-75.48889201659989, 40.78485868870353], [-75.48894013578354, 40.784958297790155], [-75.48902174986142, 40.78516272439721], [-75.48949717933394, 40.78638385324005], [-75.48957268011237, 40.78655538336284], [-75.49034721855287, 40.788522804698296], [-75.4903809019708, 40.78862213309107], [-75.49046288869005, 40.788815754005824], [-75.49065981445376, 40.78932410301078], [-75.4914493909713, 40.791302789409464], [-75.49151640973093, 40.7914851356194], [-75.49167336705007, 40.79186657540818], [-75.491999513622, 40.792695588895704], [-75.49204764303614, 40.79279519647925], [-75.49241472007455, 40.7937233337017], [-75.49340584133984, 40.79623840799458], [-75.49347990808175, 40.79642638085274], [-75.49356896142159, 40.796625283274516], [-75.49386128727674, 40.79736010885545], [-75.49472610173208, 40.799470816090746], [-75.49623102692064, 40.803206326771246], [-75.49677792548431, 40.804593369273036], [-75.49716353646758, 40.80553831925515], [-75.4980623834875, 40.80779860526744], [-75.49917391558056, 40.810584265641936], [-75.49917503984783, 40.81058708261491], [-75.49941289136142, 40.811183140490044], [-75.49941402987359, 40.81118599286712], [-75.49456334058446, 40.81167522791747], [-75.49094384427697, 40.812033931340565], [-75.49087274094228, 40.81173086991764], [-75.49081631869056, 40.81173499680034], [-75.48999786373643, 40.811794855449456], [-75.48803459888272, 40.812129909262985], [-75.48647222371724, 40.8123965204608], [-75.48036473147008, 40.813443448619054], [-75.47901574142749, 40.81368720010726], [-75.4789311754579, 40.81279594977774], [-75.4750080832345, 40.81443871848612], [-75.47483821846194, 40.8145098440724], [-75.47480769904008, 40.814515274786], [-75.47245608566355, 40.814933695909446], [-75.47007842504334, 40.815357875463704], [-75.46828444533554, 40.81566621966211], [-75.46827717554396, 40.81566744976434], [-75.46423130566612, 40.81635724934804], [-75.45757362101016, 40.817460125630916], [-75.45626902127148, 40.81766896897879], [-75.45469294929964, 40.8177312050372], [-75.45357978468483, 40.81778454956732], [-75.4506748700483, 40.817918453083536], [-75.44325978920226, 40.818250684166514], [-75.4432594105977, 40.81824934974786], [-75.44325938525515, 40.81824925916311], [-75.44325895459478, 40.81824774895264], [-75.44325988921092, 40.81824770714862], [-75.44325950942147, 40.81824637270649], [-75.44325948407891, 40.81824628212175], [-75.44073209857008, 40.80937002324895], [-75.44026109870583, 40.807821022814494], [-75.43971509838065, 40.80626002280007], [-75.439491098593, 40.80555902307678], [-75.43925409913773, 40.804829022545206], [-75.43890509918245, 40.80375602250391], [-75.43731009963004, 40.79885502332982], [-75.43730609900365, 40.79885402305295], [-75.43727109954028, 40.79883402260707], [-75.43724209957087, 40.798812022839535], [-75.43715709900351, 40.79880202337352], [-75.43711409934866, 40.79880702273036], [-75.43708109924238, 40.798829023306425], [-75.43705009927649, 40.798835022720205], [-75.43699309965413, 40.798819022570726], [-75.43696409925778, 40.79879002332111], [-75.43693409964528, 40.79877302296376], [-75.43692509871829, 40.79867802303242], [-75.43692414438334, 40.79862053416344], [-75.43694599990867, 40.79854999966403], [-75.43701900001437, 40.7983790001354], [-75.4370400004655, 40.79831700011688], [-75.4370394473241, 40.79831595585971], [-75.43704009953579, 40.79831402306402], [-75.437031099319, 40.798297022798955], [-75.43698648442887, 40.79825143659991], [-75.43700399993853, 40.798233000422336], [-75.43706499951345, 40.79818999966247], [-75.43706508296579, 40.79818702860435], [-75.43706599985751, 40.798154000126004], [-75.43710099993413, 40.798126000246576], [-75.43732699974802, 40.7977170001691], [-75.43732580289407, 40.79771637009012], [-75.43663100055565, 40.79734999980191], [-75.43663248973763, 40.79734775487268], [-75.43669799984035, 40.79724900021215], [-75.43681099967986, 40.797088000033476], [-75.43692899981981, 40.79701400003275], [-75.43700799961478, 40.79698000019142], [-75.43700291524848, 40.79697925307681], [-75.4367290001485, 40.796938999682844], [-75.43625000017884, 40.795478999991886], [-75.43610499959223, 40.79514600025883], [-75.43589600058678, 40.794418000005706], [-75.43550399958566, 40.79299700011026], [-75.43545999982385, 40.79295000031566], [-75.43541400049243, 40.792795000286844], [-75.4351999995762, 40.7920619996601], [-75.43439699988313, 40.791735999585164], [-75.43028000012544, 40.79000499972275], [-75.42813599990481, 40.789140000313246], [-75.42475000003678, 40.78884999971051], [-75.42352300052922, 40.788745000229], [-75.42352346061693, 40.788742053819846], [-75.42367500007262, 40.78777300012932], [-75.4236746742514, 40.78777275758678], [-75.42279399996619, 40.78712000043288], [-75.42153400051741, 40.78752999966691], [-75.41953399948724, 40.78828399982362], [-75.4192138000164, 40.788371057551245], [-75.41921356081447, 40.78837091492456], [-75.4192046083265, 40.78836482133829], [-75.41836039897879, 40.7877902304549], [-75.41836000532264, 40.78778999644459], [-75.41813300267336, 40.78765472820133], [-75.41805002114985, 40.78760940717819], [-75.41795130952464, 40.787555495259234], [-75.4176569764215, 40.78744902245853], [-75.41670741015425, 40.78714817166366], [-75.41537264059554, 40.78670223071262], [-75.41450199985428, 40.787260000158874], [-75.41426316746919, 40.78631325368104], [-75.41426209991738, 40.78630902262138], [-75.41305110068363, 40.78154202275094], [-75.41263509976885, 40.7798730231789], [-75.41249309968347, 40.77861702327457], [-75.41245810064403, 40.77850102275217], [-75.41243010064147, 40.7783490233523], [-75.41198410017128, 40.77713302250902], [-75.41189309980587, 40.77698902335616], [-75.41179434602508, 40.77689421673369], [-75.4122209994607, 40.776328999751776], [-75.41222003851614, 40.77632743187198], [-75.41153400018774, 40.7752089998478], [-75.41153455684152, 40.775206763468425], [-75.41164799984041, 40.774751999961005], [-75.41167500015482, 40.77470100040439], [-75.41187600054762, 40.774248000383025], [-75.41192300013846, 40.77416500029569], [-75.41193699972787, 40.77406600000413], [-75.41195600018925, 40.77399400027341], [-75.41202299964323, 40.77382200011847], [-75.41206300047617, 40.77368299998875], [-75.4120770004779, 40.77358499961079], [-75.412077065161, 40.77358229209633], [-75.41207710061865, 40.77358202255902], [-75.41207910054358, 40.77349902277031], [-75.41206310025959, 40.77338702301635], [-75.41202509971751, 40.77333402299766], [-75.41200210028624, 40.77331502256758], [-75.4119271017337, 40.77328502285216], [-75.41179610040432, 40.77322102314468], [-75.41172710029451, 40.77318102315783], [-75.41170810068597, 40.77316102309354], [-75.41166710000344, 40.77304602278113], [-75.41166610013926, 40.77301802264743], [-75.41165546856546, 40.77298418393946], [-75.41165510021668, 40.77298302255057], [-75.41166299980789, 40.772952424320195], [-75.4116631002985, 40.77295202276843], [-75.41166310322461, 40.772887550810715], [-75.41167200028882, 40.772849000253494], [-75.41167167705485, 40.7728478704014], [-75.41165199952434, 40.7727789997679], [-75.41162600032077, 40.77273699993613], [-75.41159899988645, 40.77266000042666], [-75.41159600012013, 40.77262899986938], [-75.4115830001098, 40.77257900018412], [-75.41157299991909, 40.772549999960745], [-75.41152100023078, 40.77231000041175], [-75.41151200040589, 40.77218599999427], [-75.4115122160162, 40.77218457290511], [-75.41151699995861, 40.77215300029475], [-75.4115310000799, 40.77211300035236], [-75.4115350003271, 40.77205099968901], [-75.41153493528549, 40.77205062182926], [-75.41152500028288, 40.771991999769604], [-75.41148300005838, 40.771960000390564], [-75.4114832942286, 40.771957168675954], [-75.41148310022305, 40.771957023337954], [-75.41148780897537, 40.77191182764933], [-75.41148809983612, 40.77190902289318], [-75.41142609998282, 40.771853023335005], [-75.4113671002189, 40.77181002288396], [-75.41132210034492, 40.77179202330918], [-75.4112781002786, 40.77174502336809], [-75.41123210006344, 40.77170802296367], [-75.41113610150308, 40.77164202299111], [-75.41093710058536, 40.77155702256748], [-75.41090310078516, 40.77155102282903], [-75.41086309977253, 40.771549022638084], [-75.4107551005854, 40.77155402337786], [-75.4107060999287, 40.77154502251424], [-75.41068110022238, 40.77153302335091], [-75.4106301005689, 40.77149502295525], [-75.41057410024135, 40.77147702309673], [-75.41047209965707, 40.771016022943776], [-75.40934374171044, 40.76662351643986], [-75.40982800002436, 40.76630800032608], [-75.40983399958657, 40.766289999946906], [-75.40984899945494, 40.766269000078516], [-75.40986599969897, 40.76620700008248], [-75.40986578191688, 40.76620519221346], [-75.40986300037073, 40.766181999903885], [-75.40982400020525, 40.76615399961283], [-75.40975000013347, 40.76613299974296], [-75.40970299945862, 40.76612499986158], [-75.40967800014656, 40.76612600044156], [-75.40964199945675, 40.766111000193874], [-75.40962099986336, 40.766075000118775], [-75.4095939998197, 40.76604700017185], [-75.40956599967929, 40.766038000385315], [-75.40952400005742, 40.76599999967309], [-75.4095179998111, 40.76595599974933], [-75.40951841292626, 40.76595529731328], [-75.40952800007544, 40.76593899977424], [-75.40955199962761, 40.76593500000192], [-75.40962500002142, 40.76593600013926], [-75.40962482432529, 40.7659330193239], [-75.4096230005871, 40.765901999997126], [-75.40958600019464, 40.7658890001633], [-75.40956700056513, 40.76587200035079], [-75.409517999447, 40.765862999776914], [-75.40944900058504, 40.76582399993609], [-75.4094129994197, 40.76579399972327], [-75.40937800029047, 40.76577400009706], [-75.409351000473, 40.76573200014376], [-75.409322999828, 40.76570800040466], [-75.40925600024468, 40.765663999642555], [-75.40923399966297, 40.765618999739544], [-75.40922800034686, 40.76556199979369], [-75.40919699971494, 40.76552899961546], [-75.40918299998073, 40.76548000000082], [-75.40913899966742, 40.76546299971494], [-75.409086000084, 40.76541700013499], [-75.40906199996228, 40.76539699962509], [-75.40903300029669, 40.76536000037066], [-75.40902299969945, 40.76533600038052], [-75.40900000027395, 40.76531700014349], [-75.40890899947668, 40.76526099987114], [-75.40883099951323, 40.76520099976227], [-75.40880999958084, 40.76516700027567], [-75.40880200009593, 40.76514100020581], [-75.40877299945376, 40.76511100038497], [-75.40872899979337, 40.76502699998095], [-75.40871999959559, 40.76497500040469], [-75.40868600033343, 40.764897000314164], [-75.40865600003235, 40.764868999986554], [-75.40861200016504, 40.76484300010503], [-75.40860299969893, 40.76482599994478], [-75.4086032190679, 40.76482324329339], [-75.4086049996191, 40.76480099962037], [-75.40861899942583, 40.76476199987138], [-75.40862600027333, 40.76470299998268], [-75.40862580919381, 40.7647024997671], [-75.40862610055385, 40.7647000229267], [-75.40860245904072, 40.76463795670797], [-75.4086021006378, 40.764637022517036], [-75.40862010025374, 40.7645570233084], [-75.40862881816517, 40.76448632910048], [-75.40862910000669, 40.76448402322769], [-75.40861510011743, 40.76443202281659], [-75.40860010061354, 40.764393022989836], [-75.40857110064994, 40.76434202273319], [-75.40854210052653, 40.76430502332184], [-75.40850410048212, 40.764273023157955], [-75.40846309978947, 40.76424702332647], [-75.40836909980877, 40.76416602323902], [-75.4082671007382, 40.764100022898816], [-75.40821009980742, 40.76406902314316], [-75.40810972565369, 40.76402529447124], [-75.40810910124637, 40.764025023337226], [-75.4081751005014, 40.76377902325422], [-75.40823510056975, 40.76361002308906], [-75.40854629336509, 40.76352823586872], [-75.40854710050975, 40.76352802333061], [-75.40719995925477, 40.75825793624135], [-75.40725156660848, 40.75822895246437], [-75.40795788108781, 40.75780422130491], [-75.40806783876184, 40.75773161707633], [-75.40809094149621, 40.75771629490143], [-75.40822164967075, 40.75762345185893], [-75.40824850119672, 40.7576043784857], [-75.40824854123717, 40.75760435136719], [-75.40830754794503, 40.75756243794692], [-75.40909417881544, 40.75706037911709], [-75.40888404333482, 40.75688892986034], [-75.40880923799111, 40.75682789659396], [-75.40785305594058, 40.756047730364614], [-75.40776263724561, 40.755974344357966], [-75.40736495977306, 40.75565192994332], [-75.40713591022036, 40.75546402822624], [-75.40679694830354, 40.75520593566679], [-75.4067961058967, 40.755205294381504], [-75.40630599944276, 40.75280900000985], [-75.40596000006484, 40.750941000403316], [-75.40586100021774, 40.75045600043964], [-75.40571399959146, 40.74971099955416], [-75.40529599963368, 40.747457999860686], [-75.40526700023669, 40.746665000126214], [-75.4042260003456, 40.744368000042755], [-75.4024955706903, 40.736805160425845], [-75.40342236764101, 40.73676148897565], [-75.40633298894997, 40.736624291135264], [-75.40779548740676, 40.736557279713054], [-75.40989549230218, 40.736427509733105], [-75.41573738530893, 40.73610530007658], [-75.41614372687728, 40.736083979229576], [-75.41614492282204, 40.73608391679531], [-75.41711910336447, 40.73868202302844], [-75.41729510286173, 40.738710023411], [-75.41787510334972, 40.73881902297066], [-75.41787495524345, 40.7388219918784], [-75.41787499996718, 40.73882199998374], [-75.41784114578242, 40.73949810200676], [-75.41784100014283, 40.73950099979692], [-75.41864487465985, 40.741021762261944], [-75.41864500024543, 40.7410219999042], [-75.41857723504495, 40.74183319738612], [-75.41857700036353, 40.74183599969892], [-75.42048100003733, 40.74437900030539], [-75.42082299998064, 40.74472100011983], [-75.42095099990104, 40.74497600023157], [-75.42115700027301, 40.745162000256435], [-75.42162672860773, 40.7455738850214], [-75.42162799997843, 40.74557499963793], [-75.42132568784854, 40.74598471363992], [-75.42132400003206, 40.7459870003501], [-75.42154900025815, 40.746085000060404], [-75.42169700026321, 40.7461439998601], [-75.42181331029565, 40.74630007543398], [-75.42181399958629, 40.74630100000781], [-75.4217650005054, 40.74642799978333], [-75.42163905052713, 40.74653510607426], [-75.42163799968168, 40.74653600025234], [-75.42172399950803, 40.746724999968215], [-75.4230267802812, 40.74918958334225], [-75.4230270003668, 40.749190000338245], [-75.4229803473116, 40.74955925004307], [-75.42297999971379, 40.74956199964559], [-75.42346500007643, 40.75001399977236], [-75.42351900039556, 40.75007600027893], [-75.42400293833037, 40.75085889995426], [-75.42400300000551, 40.750859000282205], [-75.42398615791006, 40.75115224994182], [-75.42398599986868, 40.75115499973987], [-75.42423000022934, 40.75216699979984], [-75.42517199993101, 40.75316099978806], [-75.42628734118438, 40.75432826412933], [-75.42628899999139, 40.75432999991206], [-75.42552303949887, 40.75486956377419], [-75.4255209995878, 40.75487100030828], [-75.42637600040118, 40.75555100045206], [-75.42674131293721, 40.75615985482574], [-75.42674199950022, 40.75616100001506], [-75.42662123986383, 40.756441123084656], [-75.42661999948675, 40.75644399986057], [-75.42668799961345, 40.75644999986894], [-75.42673699948627, 40.756478000050706], [-75.4268679994666, 40.75657600004669], [-75.42711800014177, 40.75681499967928], [-75.42730699956424, 40.756929999788845], [-75.42738668114112, 40.757000717659], [-75.4273869995369, 40.757000999684124], [-75.42738199967717, 40.75703300008724], [-75.42735117798436, 40.757064784831876], [-75.42734999985271, 40.75706599991514], [-75.42738474843544, 40.75712294957692], [-75.42738599960151, 40.75712499968597], [-75.4273100001198, 40.75717699990628], [-75.42727699945648, 40.75718900010552], [-75.42725792526232, 40.757202623841756], [-75.42725599996334, 40.75720399964035], [-75.42728900021413, 40.75723300012439], [-75.42729500044632, 40.75726799965526], [-75.42742100046823, 40.75743299956249], [-75.42751600029723, 40.757523999787274], [-75.42758000023136, 40.757572999944735], [-75.42761399997597, 40.75758999955516], [-75.42767787937943, 40.757621939002625], [-75.4276780004766, 40.75762199997906], [-75.42767313092561, 40.75768530616416], [-75.42767300007522, 40.75768699982231], [-75.42767497234158, 40.7577797164345], [-75.42767500021485, 40.75778099978324], [-75.42765621941967, 40.75802515622231], [-75.42765600020222, 40.75802800028273], [-75.42767600056969, 40.75805099959537], [-75.42777600021536, 40.758124999891464], [-75.42790900030973, 40.7582109998003], [-75.42797900026623, 40.75827100000487], [-75.42800300000978, 40.758320999829586], [-75.42812099948738, 40.75843099955297], [-75.42817600019214, 40.75846100001626], [-75.42823299967063, 40.758479999770884], [-75.42825300024198, 40.75849299969673], [-75.42826299952718, 40.75851699973309], [-75.42826397966431, 40.758632605624854], [-75.42826399994459, 40.7586349995521], [-75.42825305536458, 40.758686738235966], [-75.42825300010293, 40.758687000175094], [-75.42825205022794, 40.7587411529649], [-75.4282520003279, 40.75874400041108], [-75.42823399955381, 40.758788000346], [-75.42821299950788, 40.75882500026277], [-75.42820460445407, 40.75886231348434], [-75.42820399974492, 40.75886500029761], [-75.42824199988287, 40.7588870000613], [-75.42827700043183, 40.75889300043939], [-75.42829899967401, 40.75890100013957], [-75.42836900038967, 40.75891499979792], [-75.42840899962995, 40.758934999983516], [-75.42845600039453, 40.75896599972163], [-75.42849500029698, 40.75900500014772], [-75.42851799989386, 40.75905900027787], [-75.42853100041661, 40.75911400040217], [-75.42853999973629, 40.75913399962006], [-75.42857499954704, 40.759160000250546], [-75.42858546851058, 40.759184744722916], [-75.4285859996766, 40.759186000297696], [-75.42857274517617, 40.75922197593422], [-75.4285719999189, 40.759223999626215], [-75.42860100024974, 40.75926699978661], [-75.42864500036995, 40.759293000165044], [-75.42878199940661, 40.75941900036844], [-75.4287940000349, 40.759497000422506], [-75.4288140000509, 40.75954700025875], [-75.42886599948615, 40.75958999978103], [-75.42888599998953, 40.75964899986198], [-75.42888700009198, 40.7597080002744], [-75.4288990002013, 40.759751000126506], [-75.42890499969286, 40.75982700015214], [-75.42895199975494, 40.759919999668206], [-75.4289599995842, 40.759949999761524], [-75.42899499978044, 40.760020999699634], [-75.42903100003629, 40.76005299991859], [-75.42907399996855, 40.76007800001387], [-75.42910093276606, 40.760175753826445], [-75.42910100007087, 40.76017600019901], [-75.42909714587618, 40.760237659225666], [-75.42909699978392, 40.76024000027976], [-75.42909999956225, 40.760284000296004], [-75.42911799968762, 40.760330999940734], [-75.42914400286179, 40.76043800024558], [-75.42914310067633, 40.76046502259275], [-75.42917210299552, 40.760603022926176], [-75.42919410280443, 40.76065602278554], [-75.42924910299607, 40.76071602318867], [-75.42930510341289, 40.76079202257155], [-75.42930710304681, 40.76082102259228], [-75.42932210341529, 40.760858023322996], [-75.42932197975456, 40.76086094946734], [-75.42932200050632, 40.76086100032887], [-75.42931912312736, 40.760929090115994], [-75.42940210285947, 40.76120702298461], [-75.42944710291147, 40.76130302258137], [-75.42944810263792, 40.76135502255448], [-75.4294941034376, 40.76151602296971], [-75.42949351748193, 40.76151731116501], [-75.42949400053524, 40.76151899997521], [-75.42947899954629, 40.76155199956315], [-75.42944999990142, 40.76158900016164], [-75.42944342110965, 40.76162471111634], [-75.4294429996053, 40.76162699982234], [-75.42946799952105, 40.761681000032056], [-75.42948099957867, 40.76173300019539], [-75.42951900048658, 40.761800999742164], [-75.42953299962811, 40.761845999654575], [-75.4295370001824, 40.76193899983634], [-75.42956999981084, 40.762067000424885], [-75.42959200052483, 40.76210800016737], [-75.4295970004171, 40.76217000005617], [-75.42960999959354, 40.762210000154184], [-75.4296539999734, 40.76226900037514], [-75.4296910002895, 40.76245799981359], [-75.42969700004765, 40.76254399989349], [-75.42970999995488, 40.762609999883544], [-75.4297300003373, 40.76266599995622], [-75.42974699964442, 40.762734000433774], [-75.42977399990218, 40.76276000023426], [-75.4297920004791, 40.76278700029682], [-75.42979999943941, 40.76281900013071], [-75.42979999941774, 40.76285400026328], [-75.43043799974592, 40.762809000298454], [-75.43043799993731, 40.76280800037588], [-75.43056199977885, 40.763591999838], [-75.4310729568672, 40.76432450349015], [-75.43107399992543, 40.76432599988594], [-75.43102599956143, 40.76438799971308], [-75.4308584409564, 40.76468345918271], [-75.43085700015139, 40.764685999586334], [-75.43095499965483, 40.76471799955625], [-75.43118900036728, 40.76485900016695], [-75.43130499942738, 40.76495199978765], [-75.43143600010232, 40.76518100041238], [-75.43158700014509, 40.765410000176225], [-75.43202100042768, 40.76585499999304], [-75.43295599984715, 40.76765600021708], [-75.43595199946576, 40.77342500043575], [-75.4369320000409, 40.77527199975214], [-75.43755800024141, 40.77645299987799], [-75.4383669996801, 40.77797800012175], [-75.45602199965244, 40.77506499959278], [-75.45831700040257, 40.77468499975348], [-75.45843499988983, 40.77466600013621], [-75.45985200027722, 40.77443300043566], [-75.46013699996524, 40.77432699974769], [-75.46040699944282, 40.77424900024015], [-75.4606130002027, 40.774222999777635], [-75.4678379996845, 40.773106999982964], [-75.46823399991808, 40.77294500022783], [-75.46872000037501, 40.77292699963549], [-75.47350900019224, 40.77202700017862], [-75.47388800028759, 40.77197299989081], [-75.47462099992343, 40.77189199977018], [-75.47531700050463, 40.77191699959755], [-75.47558000010464, 40.77193699961537], [-75.4764109998345, 40.771720999888004], [-75.47882099995756, 40.77127000023297], [-75.47882099994189, 40.771360000227745], [-75.47984700019487, 40.771396000452135], [-75.48232257357651, 40.77075569367826], [-75.48319233192335, 40.770530715482735]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 417, \"PRECINCTID\": \"200001-1\", \"NAME\": \"MOORE TWP BEERSVILLE DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"EMMANUEL CHURCH SCHOOL HALL\", \"SiteAddress\": \"3175 VALLEY VIEW DR\", \"City\": \"BATH\", \"STATISTICS Registered Voters - Total\": \"1373\", \"STATISTICS Ballots Cast - Total\": 1152.0, \"STATISTICS Ballots Cast - Blank\": \"1\", \"STATISTICS Voter Turnout - Total\": \"83.90%\", \"Presidential Electors DEM Biden and Harris\": \"408\", \"Presidential Electors REP Trump and Pence\": \"724\", \"Presidential Electors LIB Jorgensen and Cohen\": \"15\", \"Presidential Electors Write-In Totals\": \"0\", \"Attorney General DEM Josh Shapiro\": \"413\", \"Attorney General REP Heather Heidelbaugh\": \"676\", \"Attorney General LIB Daniel Wassmer\": \"17\", \"Attorney General GRE Richard L Weiss\": \"9\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"362\", \"Auditor General REP Timothy Defoor\": \"687\", \"Auditor General LIB Jennifer Moore\": \"41\", \"Auditor General GRE Olivia Faison\": \"14\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"376\", \"State Treasurer REP Stacy L. Garrity\": \"686\", \"State Treasurer LIB Joe Soloski\": \"32\", \"State Treasurer GRE Timothy Runkle\": \"13\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"388\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"734\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"368\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"751\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 35.41666666666667, \"Presidential Electors Pct REP\": 62.84722222222222, \"Presidential Electors Pct LIB\": 1.3020833333333335, \"PA Attorney General Pct DEM\": 35.85069444444444, \"PA Attorney General Pct REP\": 58.68055555555556, \"PA Attorney General Pct LIB\": 1.4756944444444444, \"PA Attorney General Pct GRE\": 0.78125, \"PA Auditor General Pct DEM\": 31.42361111111111, \"PA Auditor General Pct REP\": 59.635416666666664, \"PA Auditor General Pct LIB\": 3.5590277777777777, \"PA Auditor General Pct GRE\": 1.215277777777778, \"PA State Treasurer Pct DEM\": 32.63888888888889, \"PA State Treasurer Pct REP\": 59.548611111111114, \"PA State Treasurer Pct LIB\": 2.7777777777777777, \"PA State Treasurer Pct GRE\": 1.128472222222222, \"PA Representative in Congress 7th Congressional District Pct DEM\": 33.68055555555556, \"PA Representative in Congress 7th Congressional District Pct REP\": 63.71527777777778, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.6774557771923222, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.41614492282204, 40.73608391679531], [-75.41957613120785, 40.735903824333285], [-75.42012506929248, 40.73587039757913], [-75.42041252089602, 40.73590868761863], [-75.42109417997389, 40.736006440598295], [-75.42775712001101, 40.73696170950378], [-75.43406579041702, 40.73576764056663], [-75.4349021704051, 40.73558937565017], [-75.43503799043141, 40.7355616415793], [-75.43526660907543, 40.73551495761729], [-75.43584176042799, 40.73540132193743], [-75.44016245783315, 40.73459106580484], [-75.4418392156304, 40.734287969543544], [-75.44205211572223, 40.734249482634475], [-75.44559978528667, 40.73358299230302], [-75.45020751430371, 40.732737049910504], [-75.45076336596938, 40.73270988499009], [-75.45082216420876, 40.732707011295346], [-75.45096851469475, 40.732697119298614], [-75.45338363606042, 40.732533858559236], [-75.45739803868221, 40.732277983892715], [-75.46685355911461, 40.73165480351106], [-75.47036092157067, 40.731430201431934], [-75.47079553675461, 40.73140236224918], [-75.4710102427069, 40.7321752143199], [-75.47102225026964, 40.732246839153284], [-75.47110472307223, 40.732475667892935], [-75.47132293669691, 40.7332517624305], [-75.47179480456356, 40.73514288436826], [-75.47257700106732, 40.738421882400075], [-75.47258841283538, 40.738537770065484], [-75.47261501907506, 40.738631390063446], [-75.47262107513527, 40.73865728610662], [-75.47328026061386, 40.74147588935954], [-75.47406101960424, 40.74488148820994], [-75.47449782601512, 40.74674659058742], [-75.47485332851882, 40.74829567583224], [-75.47524025718218, 40.74998161658246], [-75.47529481515679, 40.750102982723654], [-75.47553958135795, 40.750730038767344], [-75.47609547113602, 40.7521541044608], [-75.47643388136632, 40.75303610213524], [-75.4808651992047, 40.76443460912827], [-75.48145331060836, 40.76605285272827], [-75.48181818978188, 40.7670908209702], [-75.48277739963874, 40.76948492811179], [-75.48319233192335, 40.770530715482735], [-75.48232257357651, 40.77075569367826], [-75.47984700019487, 40.771396000452135], [-75.47882099994189, 40.771360000227745], [-75.47882099995756, 40.77127000023297], [-75.4764109998345, 40.771720999888004], [-75.47558000010464, 40.77193699961537], [-75.47531700050463, 40.77191699959755], [-75.47462099992343, 40.77189199977018], [-75.47388800028759, 40.77197299989081], [-75.47350900019224, 40.77202700017862], [-75.46872000037501, 40.77292699963549], [-75.46823399991808, 40.77294500022783], [-75.4678379996845, 40.773106999982964], [-75.4606130002027, 40.774222999777635], [-75.46040699944282, 40.77424900024015], [-75.46013699996524, 40.77432699974769], [-75.45985200027722, 40.77443300043566], [-75.45843499988983, 40.77466600013621], [-75.45831700040257, 40.77468499975348], [-75.45602199965244, 40.77506499959278], [-75.4383669996801, 40.77797800012175], [-75.43755800024141, 40.77645299987799], [-75.4369320000409, 40.77527199975214], [-75.43595199946576, 40.77342500043575], [-75.43295599984715, 40.76765600021708], [-75.43202100042768, 40.76585499999304], [-75.43158700014509, 40.765410000176225], [-75.43143600010232, 40.76518100041238], [-75.43130499942738, 40.76495199978765], [-75.43118900036728, 40.76485900016695], [-75.43095499965483, 40.76471799955625], [-75.43085700015139, 40.764685999586334], [-75.4308584409564, 40.76468345918271], [-75.43102599956143, 40.76438799971308], [-75.43107399992543, 40.76432599988594], [-75.4310729568672, 40.76432450349015], [-75.43056199977885, 40.763591999838], [-75.43043799993731, 40.76280800037588], [-75.43043799974592, 40.762809000298454], [-75.42979999941774, 40.76285400026328], [-75.42979999943941, 40.76281900013071], [-75.4297920004791, 40.76278700029682], [-75.42977399990218, 40.76276000023426], [-75.42974699964442, 40.762734000433774], [-75.4297300003373, 40.76266599995622], [-75.42970999995488, 40.762609999883544], [-75.42969700004765, 40.76254399989349], [-75.4296910002895, 40.76245799981359], [-75.4296539999734, 40.76226900037514], [-75.42960999959354, 40.762210000154184], [-75.4295970004171, 40.76217000005617], [-75.42959200052483, 40.76210800016737], [-75.42956999981084, 40.762067000424885], [-75.4295370001824, 40.76193899983634], [-75.42953299962811, 40.761845999654575], [-75.42951900048658, 40.761800999742164], [-75.42948099957867, 40.76173300019539], [-75.42946799952105, 40.761681000032056], [-75.4294429996053, 40.76162699982234], [-75.42944342110965, 40.76162471111634], [-75.42944999990142, 40.76158900016164], [-75.42947899954629, 40.76155199956315], [-75.42949400053524, 40.76151899997521], [-75.42949351748193, 40.76151731116501], [-75.4294941034376, 40.76151602296971], [-75.42944810263792, 40.76135502255448], [-75.42944710291147, 40.76130302258137], [-75.42940210285947, 40.76120702298461], [-75.42931912312736, 40.760929090115994], [-75.42932200050632, 40.76086100032887], [-75.42932197975456, 40.76086094946734], [-75.42932210341529, 40.760858023322996], [-75.42930710304681, 40.76082102259228], [-75.42930510341289, 40.76079202257155], [-75.42924910299607, 40.76071602318867], [-75.42919410280443, 40.76065602278554], [-75.42917210299552, 40.760603022926176], [-75.42914310067633, 40.76046502259275], [-75.42914400286179, 40.76043800024558], [-75.42911799968762, 40.760330999940734], [-75.42909999956225, 40.760284000296004], [-75.42909699978392, 40.76024000027976], [-75.42909714587618, 40.760237659225666], [-75.42910100007087, 40.76017600019901], [-75.42910093276606, 40.760175753826445], [-75.42907399996855, 40.76007800001387], [-75.42903100003629, 40.76005299991859], [-75.42899499978044, 40.760020999699634], [-75.4289599995842, 40.759949999761524], [-75.42895199975494, 40.759919999668206], [-75.42890499969286, 40.75982700015214], [-75.4288990002013, 40.759751000126506], [-75.42888700009198, 40.7597080002744], [-75.42888599998953, 40.75964899986198], [-75.42886599948615, 40.75958999978103], [-75.4288140000509, 40.75954700025875], [-75.4287940000349, 40.759497000422506], [-75.42878199940661, 40.75941900036844], [-75.42864500036995, 40.759293000165044], [-75.42860100024974, 40.75926699978661], [-75.4285719999189, 40.759223999626215], [-75.42857274517617, 40.75922197593422], [-75.4285859996766, 40.759186000297696], [-75.42858546851058, 40.759184744722916], [-75.42857499954704, 40.759160000250546], [-75.42853999973629, 40.75913399962006], [-75.42853100041661, 40.75911400040217], [-75.42851799989386, 40.75905900027787], [-75.42849500029698, 40.75900500014772], [-75.42845600039453, 40.75896599972163], [-75.42840899962995, 40.758934999983516], [-75.42836900038967, 40.75891499979792], [-75.42829899967401, 40.75890100013957], [-75.42827700043183, 40.75889300043939], [-75.42824199988287, 40.7588870000613], [-75.42820399974492, 40.75886500029761], [-75.42820460445407, 40.75886231348434], [-75.42821299950788, 40.75882500026277], [-75.42823399955381, 40.758788000346], [-75.4282520003279, 40.75874400041108], [-75.42825205022794, 40.7587411529649], [-75.42825300010293, 40.758687000175094], [-75.42825305536458, 40.758686738235966], [-75.42826399994459, 40.7586349995521], [-75.42826397966431, 40.758632605624854], [-75.42826299952718, 40.75851699973309], [-75.42825300024198, 40.75849299969673], [-75.42823299967063, 40.758479999770884], [-75.42817600019214, 40.75846100001626], [-75.42812099948738, 40.75843099955297], [-75.42800300000978, 40.758320999829586], [-75.42797900026623, 40.75827100000487], [-75.42790900030973, 40.7582109998003], [-75.42777600021536, 40.758124999891464], [-75.42767600056969, 40.75805099959537], [-75.42765600020222, 40.75802800028273], [-75.42765621941967, 40.75802515622231], [-75.42767500021485, 40.75778099978324], [-75.42767497234158, 40.7577797164345], [-75.42767300007522, 40.75768699982231], [-75.42767313092561, 40.75768530616416], [-75.4276780004766, 40.75762199997906], [-75.42767787937943, 40.757621939002625], [-75.42761399997597, 40.75758999955516], [-75.42758000023136, 40.757572999944735], [-75.42751600029723, 40.757523999787274], [-75.42742100046823, 40.75743299956249], [-75.42729500044632, 40.75726799965526], [-75.42728900021413, 40.75723300012439], [-75.42725599996334, 40.75720399964035], [-75.42725792526232, 40.757202623841756], [-75.42727699945648, 40.75718900010552], [-75.4273100001198, 40.75717699990628], [-75.42738599960151, 40.75712499968597], [-75.42738474843544, 40.75712294957692], [-75.42734999985271, 40.75706599991514], [-75.42735117798436, 40.757064784831876], [-75.42738199967717, 40.75703300008724], [-75.4273869995369, 40.757000999684124], [-75.42738668114112, 40.757000717659], [-75.42730699956424, 40.756929999788845], [-75.42711800014177, 40.75681499967928], [-75.4268679994666, 40.75657600004669], [-75.42673699948627, 40.756478000050706], [-75.42668799961345, 40.75644999986894], [-75.42661999948675, 40.75644399986057], [-75.42662123986383, 40.756441123084656], [-75.42674199950022, 40.75616100001506], [-75.42674131293721, 40.75615985482574], [-75.42637600040118, 40.75555100045206], [-75.4255209995878, 40.75487100030828], [-75.42552303949887, 40.75486956377419], [-75.42628899999139, 40.75432999991206], [-75.42628734118438, 40.75432826412933], [-75.42517199993101, 40.75316099978806], [-75.42423000022934, 40.75216699979984], [-75.42398599986868, 40.75115499973987], [-75.42398615791006, 40.75115224994182], [-75.42400300000551, 40.750859000282205], [-75.42400293833037, 40.75085889995426], [-75.42351900039556, 40.75007600027893], [-75.42346500007643, 40.75001399977236], [-75.42297999971379, 40.74956199964559], [-75.4229803473116, 40.74955925004307], [-75.4230270003668, 40.749190000338245], [-75.4230267802812, 40.74918958334225], [-75.42172399950803, 40.746724999968215], [-75.42163799968168, 40.74653600025234], [-75.42163905052713, 40.74653510607426], [-75.4217650005054, 40.74642799978333], [-75.42181399958629, 40.74630100000781], [-75.42181331029565, 40.74630007543398], [-75.42169700026321, 40.7461439998601], [-75.42154900025815, 40.746085000060404], [-75.42132400003206, 40.7459870003501], [-75.42132568784854, 40.74598471363992], [-75.42162799997843, 40.74557499963793], [-75.42162672860773, 40.7455738850214], [-75.42115700027301, 40.745162000256435], [-75.42095099990104, 40.74497600023157], [-75.42082299998064, 40.74472100011983], [-75.42048100003733, 40.74437900030539], [-75.41857700036353, 40.74183599969892], [-75.41857723504495, 40.74183319738612], [-75.41864500024543, 40.7410219999042], [-75.41864487465985, 40.741021762261944], [-75.41784100014283, 40.73950099979692], [-75.41784114578242, 40.73949810200676], [-75.41787499996718, 40.73882199998374], [-75.41787495524345, 40.7388219918784], [-75.41787510334972, 40.73881902297066], [-75.41729510286173, 40.738710023411], [-75.41711910336447, 40.73868202302844], [-75.41614492282204, 40.73608391679531]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 418, \"PRECINCTID\": \"070000-1\", \"NAME\": \"CHAPMAN BOROUGH\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-02\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"CHAPMAN QUARRIES UNITED METHODIST CHURCH\", \"SiteAddress\": \"1433 MAIN ST\", \"City\": \"BATH\", \"STATISTICS Registered Voters - Total\": \"144\", \"STATISTICS Ballots Cast - Total\": 119.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"82.64%\", \"Presidential Electors DEM Biden and Harris\": \"40\", \"Presidential Electors REP Trump and Pence\": \"78\", \"Presidential Electors LIB Jorgensen and Cohen\": \"1\", \"Presidential Electors Write-In Totals\": \"0\", \"Attorney General DEM Josh Shapiro\": \"37\", \"Attorney General REP Heather Heidelbaugh\": \"75\", \"Attorney General LIB Daniel Wassmer\": \"4\", \"Attorney General GRE Richard L Weiss\": \"2\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"36\", \"Auditor General REP Timothy Defoor\": \"74\", \"Auditor General LIB Jennifer Moore\": \"5\", \"Auditor General GRE Olivia Faison\": \"1\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"35\", \"State Treasurer REP Stacy L. Garrity\": \"76\", \"State Treasurer LIB Joe Soloski\": \"4\", \"State Treasurer GRE Timothy Runkle\": \"1\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"39\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"79\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"41\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"76\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 33.61344537815126, \"Presidential Electors Pct REP\": 65.54621848739495, \"Presidential Electors Pct LIB\": 0.8403361344537815, \"PA Attorney General Pct DEM\": 31.092436974789916, \"PA Attorney General Pct REP\": 63.02521008403361, \"PA Attorney General Pct LIB\": 3.361344537815126, \"PA Attorney General Pct GRE\": 1.680672268907563, \"PA Auditor General Pct DEM\": 30.252100840336134, \"PA Auditor General Pct REP\": 62.18487394957983, \"PA Auditor General Pct LIB\": 4.201680672268908, \"PA Auditor General Pct GRE\": 0.8403361344537815, \"PA State Treasurer Pct DEM\": 29.411764705882355, \"PA State Treasurer Pct REP\": 63.86554621848739, \"PA State Treasurer Pct LIB\": 3.361344537815126, \"PA State Treasurer Pct GRE\": 0.8403361344537815, \"PA Representative in Congress 7th Congressional District Pct DEM\": 32.773109243697476, \"PA Representative in Congress 7th Congressional District Pct REP\": 66.38655462184873, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.06998024087316523, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.4067961058967, 40.755205294381504], [-75.40679694830354, 40.75520593566679], [-75.40713591022036, 40.75546402822624], [-75.40736495977306, 40.75565192994332], [-75.40776263724561, 40.755974344357966], [-75.40785305594058, 40.756047730364614], [-75.40880923799111, 40.75682789659396], [-75.40888404333482, 40.75688892986034], [-75.40909417881544, 40.75706037911709], [-75.40830754794503, 40.75756243794692], [-75.40824854123717, 40.75760435136719], [-75.40824850119672, 40.7576043784857], [-75.40822164967075, 40.75762345185893], [-75.40809094149621, 40.75771629490143], [-75.40806783876184, 40.75773161707633], [-75.40795788108781, 40.75780422130491], [-75.40725156660848, 40.75822895246437], [-75.40719995925477, 40.75825793624135], [-75.40719920404287, 40.75825835971326], [-75.40718342865438, 40.75826722008623], [-75.40703485547783, 40.75835980870792], [-75.40521621128312, 40.75946310898494], [-75.40519951431621, 40.759473238690525], [-75.40529297958165, 40.75964038740047], [-75.40548494697462, 40.75998559725104], [-75.40558070301465, 40.76013889103988], [-75.40561839867975, 40.760205760418735], [-75.40562150788229, 40.76021127689141], [-75.40569623622049, 40.76034629852774], [-75.40580991915348, 40.76055504140331], [-75.40589480319375, 40.76070948917202], [-75.40596360089339, 40.760833407808015], [-75.40604677719345, 40.76098507429946], [-75.40631941495542, 40.76147640766515], [-75.40638740904876, 40.76159756400858], [-75.40643595186201, 40.761681088744425], [-75.40648278631261, 40.76176183231168], [-75.40652710595768, 40.76183703447476], [-75.4065704277703, 40.76191496224362], [-75.40661217885538, 40.76198616504332], [-75.4066836437311, 40.762111338706035], [-75.40674934706797, 40.762272262135845], [-75.40681566556455, 40.762441435219216], [-75.40688496287028, 40.76265460147265], [-75.40688913764923, 40.76266747675505], [-75.40693957308342, 40.762823023815784], [-75.40696832972978, 40.76290443201798], [-75.40699447568157, 40.762983042670214], [-75.40702071745827, 40.76305890948425], [-75.407070008336, 40.76325039132676], [-75.40686488716347, 40.7632297778624], [-75.40676965231359, 40.76321652983981], [-75.40637728258241, 40.76318063934557], [-75.4056970029768, 40.76311645394253], [-75.40556540363234, 40.763103894994565], [-75.40550084444423, 40.76309773419767], [-75.40489974742715, 40.76304114960719], [-75.40480613186249, 40.76303325213196], [-75.40474963442294, 40.763048242438366], [-75.40457079073927, 40.76310246332985], [-75.40386294579697, 40.76331039962929], [-75.40285398725568, 40.763609377106484], [-75.40168345557278, 40.76395879309139], [-75.40074199996909, 40.76423732357786], [-75.40015534140859, 40.76441285198701], [-75.40008450887323, 40.76442463304816], [-75.40005138453289, 40.76439084144304], [-75.39983118927495, 40.76415608385604], [-75.39932560129549, 40.76361488535924], [-75.39901068896064, 40.76327489904404], [-75.39873484072717, 40.76297963420306], [-75.39823429885993, 40.762449516588], [-75.39818999561908, 40.76239404980528], [-75.39814262346616, 40.762334740005585], [-75.39787825732986, 40.76204691310927], [-75.3978592692504, 40.762021987696], [-75.39761756931568, 40.76175727278983], [-75.39743943093363, 40.76155939952732], [-75.39704280328108, 40.761130229279075], [-75.39485871897851, 40.75874431506394], [-75.39430123408576, 40.75814077490227], [-75.39416302995735, 40.757988840394894], [-75.39366230932927, 40.757440163251786], [-75.3928398859597, 40.75654121452184], [-75.39282599239178, 40.75652666485676], [-75.39272408258294, 40.75641993734884], [-75.39259897708902, 40.75628079387213], [-75.39272002441105, 40.75625270471899], [-75.39327379966879, 40.75613815595065], [-75.39421121384551, 40.755946783546236], [-75.39453758313162, 40.75588132840824], [-75.39585065163263, 40.75560884077384], [-75.395890678616, 40.75562239030753], [-75.39592291306397, 40.75563330180342], [-75.39616006156702, 40.755718080573544], [-75.3971028615315, 40.75604231560834], [-75.39807668936686, 40.756382958602906], [-75.39834223554979, 40.75619836356758], [-75.39834909615985, 40.756193486619736], [-75.39842663543742, 40.7561383669232], [-75.39880511479822, 40.75586932116358], [-75.39899959456477, 40.75572910520429], [-75.39939546316417, 40.755096495425654], [-75.39934582816018, 40.754812503623135], [-75.3993060854858, 40.754586803043246], [-75.39913876296603, 40.75363654952588], [-75.39947021764776, 40.75369707779222], [-75.40041870666468, 40.75387028028478], [-75.40181086913186, 40.75412188255825], [-75.4022225584776, 40.75419747968934], [-75.40226688124626, 40.75422068535851], [-75.40229606711374, 40.75423792222415], [-75.40268478843421, 40.754454117335875], [-75.40333528128704, 40.754825590921655], [-75.40356489067997, 40.75432552291413], [-75.40374913652295, 40.75393453979392], [-75.40403775670426, 40.75332205882725], [-75.40425250635236, 40.753272855309426], [-75.40508006740077, 40.75389861945478], [-75.4067961058967, 40.755205294381504]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 419, \"PRECINCTID\": \"200004-1\", \"NAME\": \"MOORE TWP PT PHILLIPS DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-02\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"MOORE TOWNSHIP MUNICIPAL BUILDING\", \"SiteAddress\": \"2491 COMMUNITY DR\", \"City\": \"BATH\", \"STATISTICS Registered Voters - Total\": \"890\", \"STATISTICS Ballots Cast - Total\": 745.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"83.71%\", \"Presidential Electors DEM Biden and Harris\": \"228\", \"Presidential Electors REP Trump and Pence\": \"506\", \"Presidential Electors LIB Jorgensen and Cohen\": \"8\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"234\", \"Attorney General REP Heather Heidelbaugh\": \"460\", \"Attorney General LIB Daniel Wassmer\": \"9\", \"Attorney General GRE Richard L Weiss\": \"7\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"217\", \"Auditor General REP Timothy Defoor\": \"474\", \"Auditor General LIB Jennifer Moore\": \"13\", \"Auditor General GRE Olivia Faison\": \"4\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"221\", \"State Treasurer REP Stacy L. Garrity\": \"468\", \"State Treasurer LIB Joe Soloski\": \"15\", \"State Treasurer GRE Timothy Runkle\": \"8\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"236\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"484\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"224\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"496\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 30.604026845637584, \"Presidential Electors Pct REP\": 67.91946308724832, \"Presidential Electors Pct LIB\": 1.0738255033557047, \"PA Attorney General Pct DEM\": 31.409395973154364, \"PA Attorney General Pct REP\": 61.74496644295302, \"PA Attorney General Pct LIB\": 1.2080536912751678, \"PA Attorney General Pct GRE\": 0.9395973154362416, \"PA Auditor General Pct DEM\": 29.12751677852349, \"PA Auditor General Pct REP\": 63.624161073825505, \"PA Auditor General Pct LIB\": 1.74496644295302, \"PA Auditor General Pct GRE\": 0.5369127516778524, \"PA State Treasurer Pct DEM\": 29.664429530201343, \"PA State Treasurer Pct REP\": 62.81879194630873, \"PA State Treasurer Pct LIB\": 2.013422818791946, \"PA State Treasurer Pct GRE\": 1.0738255033557047, \"PA Representative in Congress 7th Congressional District Pct DEM\": 31.67785234899329, \"PA Representative in Congress 7th Congressional District Pct REP\": 64.96644295302013, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.4381115920210764, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.41450199985428, 40.787260000158874], [-75.41537264059554, 40.78670223071262], [-75.41670741015425, 40.78714817166366], [-75.4176569764215, 40.78744902245853], [-75.41795130952464, 40.787555495259234], [-75.41805002114985, 40.78760940717819], [-75.41813300267336, 40.78765472820133], [-75.41836000532264, 40.78778999644459], [-75.41836039897879, 40.7877902304549], [-75.4192046083265, 40.78836482133829], [-75.41921356081447, 40.78837091492456], [-75.4192138000164, 40.788371057551245], [-75.41953399948724, 40.78828399982362], [-75.42153400051741, 40.78752999966691], [-75.42279399996619, 40.78712000043288], [-75.4236746742514, 40.78777275758678], [-75.42367500007262, 40.78777300012932], [-75.42352346061693, 40.788742053819846], [-75.42352300052922, 40.788745000229], [-75.42475000003678, 40.78884999971051], [-75.42813599990481, 40.789140000313246], [-75.43028000012544, 40.79000499972275], [-75.43439699988313, 40.791735999585164], [-75.4351999995762, 40.7920619996601], [-75.43541400049243, 40.792795000286844], [-75.43545999982385, 40.79295000031566], [-75.43550399958566, 40.79299700011026], [-75.43589600058678, 40.794418000005706], [-75.43610499959223, 40.79514600025883], [-75.43625000017884, 40.795478999991886], [-75.4367290001485, 40.796938999682844], [-75.43700291524848, 40.79697925307681], [-75.43700799961478, 40.79698000019142], [-75.43692899981981, 40.79701400003275], [-75.43681099967986, 40.797088000033476], [-75.43669799984035, 40.79724900021215], [-75.43663248973763, 40.79734775487268], [-75.43663100055565, 40.79734999980191], [-75.43732580289407, 40.79771637009012], [-75.43732699974802, 40.7977170001691], [-75.43710099993413, 40.798126000246576], [-75.43706599985751, 40.798154000126004], [-75.43706508296579, 40.79818702860435], [-75.43706499951345, 40.79818999966247], [-75.43700399993853, 40.798233000422336], [-75.43698648442887, 40.79825143659991], [-75.437031099319, 40.798297022798955], [-75.43704009953579, 40.79831402306402], [-75.4370394473241, 40.79831595585971], [-75.4370400004655, 40.79831700011688], [-75.43701900001437, 40.7983790001354], [-75.43694599990867, 40.79854999966403], [-75.43692414438334, 40.79862053416344], [-75.43692509871829, 40.79867802303242], [-75.43693409964528, 40.79877302296376], [-75.43696409925778, 40.79879002332111], [-75.43699309965413, 40.798819022570726], [-75.43705009927649, 40.798835022720205], [-75.43708109924238, 40.798829023306425], [-75.43711409934866, 40.79880702273036], [-75.43715709900351, 40.79880202337352], [-75.43724209957087, 40.798812022839535], [-75.43727109954028, 40.79883402260707], [-75.43730609900365, 40.79885402305295], [-75.43731009963004, 40.79885502332982], [-75.43890509918245, 40.80375602250391], [-75.43925409913773, 40.804829022545206], [-75.439491098593, 40.80555902307678], [-75.43971509838065, 40.80626002280007], [-75.44026109870583, 40.807821022814494], [-75.44073209857008, 40.80937002324895], [-75.44325948407891, 40.81824628212175], [-75.44325950942147, 40.81824637270649], [-75.44325988921092, 40.81824770714862], [-75.44325895459478, 40.81824774895264], [-75.44325938525515, 40.81824925916311], [-75.4432594105977, 40.81824934974786], [-75.44325978920226, 40.818250684166514], [-75.44024648553834, 40.81838555903183], [-75.43816115140532, 40.818882595873646], [-75.43623528925669, 40.819365781384356], [-75.43507224423739, 40.819658720170644], [-75.43351730980807, 40.82002243267364], [-75.43197366889987, 40.82039870557003], [-75.42838996486114, 40.82131665714642], [-75.42456385160253, 40.82226482980787], [-75.42100616481498, 40.8231561360527], [-75.42060973882198, 40.823408862449625], [-75.42058119794375, 40.823429896649365], [-75.41931421417594, 40.82436362375307], [-75.41739300390114, 40.82574358582746], [-75.41727295861541, 40.82575850570868], [-75.41440436654263, 40.82611498909827], [-75.41427372890618, 40.826129696662434], [-75.41119092759199, 40.826505303513315], [-75.40586660702662, 40.82712497416517], [-75.40141186330901, 40.827657297036815], [-75.39761821271625, 40.82812166105962], [-75.39554997220634, 40.828396572531965], [-75.39165832115685, 40.828818430224054], [-75.38820016415451, 40.82919542591713], [-75.38487973659886, 40.82958644817804], [-75.38474551544617, 40.82967672954245], [-75.38439618800578, 40.82992137027464], [-75.38238799983823, 40.83133339747795], [-75.38210441641259, 40.83153278779961], [-75.38178415608338, 40.8317726936579], [-75.37501105139279, 40.834083533748306], [-75.37451466355743, 40.834258350611485], [-75.37451449937886, 40.83425746083799], [-75.37451383408686, 40.834254746548886], [-75.37445463019368, 40.83401311458057], [-75.37331674545449, 40.82936872101621], [-75.37269018903947, 40.82675105226503], [-75.37245367141668, 40.82580099051511], [-75.37182105581812, 40.823177697575375], [-75.37177652787841, 40.823006378103734], [-75.37160357967656, 40.82227744568907], [-75.37113790825805, 40.82035000640951], [-75.37073735654018, 40.818752700507225], [-75.37014640159443, 40.816206781222625], [-75.37013447453211, 40.81613549060969], [-75.37010902588767, 40.8160433002097], [-75.37010489250012, 40.816028326516815], [-75.3700768288238, 40.81592666159108], [-75.36963658584094, 40.81412535006915], [-75.36957314365101, 40.81385084787071], [-75.36947005264935, 40.81347153699708], [-75.36920939434994, 40.812389686657255], [-75.3689792313116, 40.81146702760145], [-75.36896340293988, 40.81140389406498], [-75.36894757459802, 40.811340760525205], [-75.36892791399363, 40.811258328150274], [-75.36847495056563, 40.80943529712533], [-75.3683085589211, 40.808803621193164], [-75.36816627766207, 40.80828175422532], [-75.36765696106754, 40.80618967851965], [-75.36747073316803, 40.80548105561263], [-75.36708888188619, 40.80392169335952], [-75.367068575263, 40.80388300734123], [-75.36652437676085, 40.80175760038784], [-75.36648667145613, 40.801598430874606], [-75.36621790397936, 40.80054403075448], [-75.36620468643439, 40.80047916103509], [-75.3661932899812, 40.80042322720143], [-75.36597415537035, 40.799599288150624], [-75.36548093816496, 40.79769338027027], [-75.36532208504055, 40.79702907342318], [-75.36516786714051, 40.79646319475453], [-75.36509215167541, 40.796128372302384], [-75.36581905084005, 40.79481396325169], [-75.36771599995008, 40.794582000411], [-75.3678470001095, 40.79454100023458], [-75.36800899943539, 40.79452099998884], [-75.38418899942045, 40.79225299967435], [-75.38591900055366, 40.792109999890855], [-75.38634599986149, 40.79159799986636], [-75.38646599967446, 40.79144199996271], [-75.39247400003688, 40.79112099980424], [-75.40562200013726, 40.78923799986351], [-75.40719899977226, 40.78901299993638], [-75.40742699942538, 40.78900599974144], [-75.40782499955223, 40.7889149999931], [-75.40955100056695, 40.78824800026522], [-75.40997200040363, 40.78884100036083], [-75.411308000313, 40.789296000024756], [-75.41233500028216, 40.78864399961986], [-75.41351599960966, 40.78789500008619], [-75.41450199985428, 40.787260000158874]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 420, \"PRECINCTID\": \"220400-1\", \"NAME\": \"NORTHAMPTON BOROUGH 4TH WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"183rd District\", \"MDJ\": \"03-3-01\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"GOSPEL CHAPEL\", \"SiteAddress\": \"1769 NEWPORT AVE\", \"City\": \"NORTHAMPTON\", \"STATISTICS Registered Voters - Total\": \"807\", \"STATISTICS Ballots Cast - Total\": 555.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"68.77%\", \"Presidential Electors DEM Biden and Harris\": \"247\", \"Presidential Electors REP Trump and Pence\": \"297\", \"Presidential Electors LIB Jorgensen and Cohen\": \"7\", \"Presidential Electors Write-In Totals\": \"1\", \"Attorney General DEM Josh Shapiro\": \"239\", \"Attorney General REP Heather Heidelbaugh\": \"281\", \"Attorney General LIB Daniel Wassmer\": \"11\", \"Attorney General GRE Richard L Weiss\": \"3\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"231\", \"Auditor General REP Timothy Defoor\": \"285\", \"Auditor General LIB Jennifer Moore\": \"13\", \"Auditor General GRE Olivia Faison\": \"6\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"234\", \"State Treasurer REP Stacy L. Garrity\": \"285\", \"State Treasurer LIB Joe Soloski\": \"10\", \"State Treasurer GRE Timothy Runkle\": \"5\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"245\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"300\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": \"227\", \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": \"315\", \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 44.5045045045045, \"Presidential Electors Pct REP\": 53.51351351351351, \"Presidential Electors Pct LIB\": 1.2612612612612613, \"PA Attorney General Pct DEM\": 43.06306306306306, \"PA Attorney General Pct REP\": 50.630630630630634, \"PA Attorney General Pct LIB\": 1.981981981981982, \"PA Attorney General Pct GRE\": 0.5405405405405406, \"PA Auditor General Pct DEM\": 41.62162162162162, \"PA Auditor General Pct REP\": 51.35135135135135, \"PA Auditor General Pct LIB\": 2.3423423423423424, \"PA Auditor General Pct GRE\": 1.0810810810810811, \"PA State Treasurer Pct DEM\": 42.16216216216216, \"PA State Treasurer Pct REP\": 51.35135135135135, \"PA State Treasurer Pct LIB\": 1.8018018018018018, \"PA State Treasurer Pct GRE\": 0.9009009009009009, \"PA Representative in Congress 7th Congressional District Pct DEM\": 44.14414414414414, \"PA Representative in Congress 7th Congressional District Pct REP\": 54.054054054054056, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.32637843432442604, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.48937399988822, 40.67759699963784], [-75.48942300018093, 40.67750499995607], [-75.48947599956702, 40.67741800038782], [-75.48951599998281, 40.677390000084614], [-75.48956200054684, 40.67734300002324], [-75.48960200057725, 40.67728699981728], [-75.48965299940672, 40.677158000113614], [-75.48969274305549, 40.67711626956982], [-75.48969299942273, 40.6771159998107], [-75.48973000003664, 40.67703299972037], [-75.48978200054147, 40.67701200031218], [-75.48981099997353, 40.67698899955942], [-75.4898290001051, 40.676936999933844], [-75.48987700046837, 40.67685499970679], [-75.4898849995837, 40.67674100042262], [-75.48983700050154, 40.67667899981055], [-75.49020321064914, 40.676492114691605], [-75.49020607833258, 40.6764906499562], [-75.49025175105558, 40.67646734250743], [-75.49070800491157, 40.67676390224416], [-75.49071535071755, 40.676768434238305], [-75.49075781794303, 40.67679462917561], [-75.49101952839891, 40.67695606244292], [-75.4910982951901, 40.6770046484034], [-75.4920195095507, 40.677572876175475], [-75.49206893626746, 40.67760295089372], [-75.49216045214098, 40.677621226994475], [-75.49238736341972, 40.677642138847645], [-75.4928636795422, 40.677659657498566], [-75.4934748773923, 40.677684933521114], [-75.49347840092692, 40.67768507955276], [-75.49356389830994, 40.67768861503604], [-75.4937820615837, 40.67769763674575], [-75.49380534156496, 40.677698599529045], [-75.4950738300165, 40.677737501274905], [-75.49539463172465, 40.67774733728797], [-75.49562810316873, 40.677840498523146], [-75.49571331038715, 40.67787449848532], [-75.49602712292196, 40.67801939176465], [-75.49615393167588, 40.678077941485945], [-75.49655804966015, 40.67829130694129], [-75.49659482626791, 40.678310723805254], [-75.49683804813274, 40.67843913793931], [-75.49800300227673, 40.679181289212735], [-75.49868502184874, 40.680086859022616], [-75.49869831705963, 40.68011071179588], [-75.49872140561534, 40.68015493609363], [-75.49878258957153, 40.680265245580166], [-75.4990766882431, 40.6807620057028], [-75.49926496119377, 40.681128046761884], [-75.49972353703208, 40.68294887392529], [-75.49982206657923, 40.68334008398867], [-75.49989331666548, 40.68362297802004], [-75.49989383368985, 40.68362503114341], [-75.49989384103363, 40.68362505921174], [-75.49995327606355, 40.683861041812364], [-75.50002069927, 40.684042476154666], [-75.50018717288745, 40.68449045013046], [-75.50026261986866, 40.68469555710083], [-75.50047998903005, 40.68528647566314], [-75.50060121451935, 40.68558853603487], [-75.50061163068982, 40.685614488382434], [-75.50066777579748, 40.68575438673097], [-75.50086626490389, 40.68621973125683], [-75.50107539617305, 40.686682368386826], [-75.50118497222122, 40.68693283924515], [-75.50125117078481, 40.68707275828044], [-75.50132056772767, 40.68721177718531], [-75.50139314204232, 40.68734985230642], [-75.50146806994898, 40.687502728647594], [-75.50176391437982, 40.68810633290963], [-75.50183938783466, 40.688230284766824], [-75.50190463150251, 40.68833224534247], [-75.50197220193589, 40.6884333231126], [-75.50204208121362, 40.68853348799825], [-75.5021142455008, 40.68863270980568], [-75.50218867454016, 40.68873095750974], [-75.5022653444959, 40.68882820091662], [-75.50234423265405, 40.68892441165587], [-75.5024253152081, 40.6890195586333], [-75.50250856701756, 40.68911361523304], [-75.50259396309211, 40.68920655033779], [-75.50268147710774, 40.689298337308685], [-75.50277108280012, 40.68938894770633], [-75.50286275150891, 40.68947835394555], [-75.50295645693869, 40.6895665284872], [-75.50302838673937, 40.68963184678647], [-75.50305217039799, 40.68965344464638], [-75.50314986201211, 40.68973907571535], [-75.50324950187577, 40.689823395886584], [-75.50335106005306, 40.68990638025277], [-75.50345450666771, 40.689988002106226], [-75.5035598082046, 40.69006823737122], [-75.50366693472617, 40.69014706114054], [-75.50372850023693, 40.69019080511228], [-75.50372863663574, 40.69019090234112], [-75.50270399934753, 40.69030499273591], [-75.5027036928267, 40.69030502823558], [-75.50226544998634, 40.69035796901717], [-75.50202288571768, 40.69038432993704], [-75.50197122921504, 40.69038961932701], [-75.50178900023211, 40.690196000082715], [-75.50129200057934, 40.68968199966341], [-75.49966499968576, 40.68803500032714], [-75.49873300024483, 40.687089999717564], [-75.49732700000898, 40.68566399978487], [-75.49696187625801, 40.68519526047589], [-75.49621918848469, 40.68440524168484], [-75.495445994144, 40.683584335837395], [-75.49530422414587, 40.68342901975309], [-75.49529533583392, 40.68339830052085], [-75.49528292648759, 40.68336502382793], [-75.49481001394446, 40.68289368508286], [-75.4942879784119, 40.68238166015021], [-75.49396713539204, 40.6820813667259], [-75.49246729820548, 40.680587492221015], [-75.49214176534424, 40.68026625122052], [-75.4919393595796, 40.68006435871892], [-75.49188905605199, 40.680005032047724], [-75.4901550004139, 40.67839000040124], [-75.49008499985243, 40.67829600044072], [-75.49008491316384, 40.6782959392961], [-75.49000899972746, 40.67824199964901], [-75.48947800044465, 40.67770299986733], [-75.48937399988822, 40.67759699963784]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 423, \"PRECINCTID\": \"140002-1\", \"NAME\": \"HANOVER DISTRICT 2\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"ASA PACKER ELEMENTARY SCHOOL\", \"SiteAddress\": \"1650 KENWOOD DR\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"2054\", \"STATISTICS Ballots Cast - Total\": 1722.0, \"STATISTICS Ballots Cast - Blank\": \"2\", \"STATISTICS Voter Turnout - Total\": \"83.84%\", \"Presidential Electors DEM Biden and Harris\": \"914\", \"Presidential Electors REP Trump and Pence\": \"784\", \"Presidential Electors LIB Jorgensen and Cohen\": \"18\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"888\", \"Attorney General REP Heather Heidelbaugh\": \"732\", \"Attorney General LIB Daniel Wassmer\": \"32\", \"Attorney General GRE Richard L Weiss\": \"15\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"807\", \"Auditor General REP Timothy Defoor\": \"774\", \"Auditor General LIB Jennifer Moore\": \"54\", \"Auditor General GRE Olivia Faison\": \"11\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"847\", \"State Treasurer REP Stacy L. Garrity\": \"751\", \"State Treasurer LIB Joe Soloski\": \"39\", \"State Treasurer GRE Timothy Runkle\": \"14\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"879\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"792\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"872\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"787\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 53.07781649245064, \"Presidential Electors Pct REP\": 45.52845528455284, \"Presidential Electors Pct LIB\": 1.0452961672473868, \"PA Attorney General Pct DEM\": 51.56794425087108, \"PA Attorney General Pct REP\": 42.508710801393725, \"PA Attorney General Pct LIB\": 1.8583042973286876, \"PA Attorney General Pct GRE\": 0.8710801393728222, \"PA Auditor General Pct DEM\": 46.864111498257834, \"PA Auditor General Pct REP\": 44.94773519163763, \"PA Auditor General Pct LIB\": 3.1358885017421603, \"PA Auditor General Pct GRE\": 0.6387921022067364, \"PA State Treasurer Pct DEM\": 49.1869918699187, \"PA State Treasurer Pct REP\": 43.61207897793264, \"PA State Treasurer Pct LIB\": 2.264808362369338, \"PA State Treasurer Pct GRE\": 0.8130081300813009, \"PA Representative in Congress 7th Congressional District Pct DEM\": 51.045296167247386, \"PA Representative in Congress 7th Congressional District Pct REP\": 45.99303135888502, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 1.0126552502822732, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38123699211982, 40.66110802246165], [-75.38123715783014, 40.66110785197914], [-75.38126048793772, 40.6610838348497], [-75.38133812044325, 40.66100398847728], [-75.38136784896895, 40.66097893902318], [-75.38145284759668, 40.660894696369866], [-75.38153270529294, 40.66080288221548], [-75.38156609957404, 40.66075053463012], [-75.38158167204378, 40.66071790248627], [-75.38159911719136, 40.66063210765142], [-75.38160053378306, 40.66059189287445], [-75.38159712629542, 40.66056067474565], [-75.38157602864248, 40.66049425764967], [-75.38153196194249, 40.66038892844657], [-75.38148976034725, 40.66030749239377], [-75.38143488210737, 40.66022759998749], [-75.38133355379418, 40.660110117424395], [-75.38121280088825, 40.6599555129666], [-75.38107338278391, 40.65974781609508], [-75.38097470262706, 40.65960080717061], [-75.38087924172629, 40.65947031655015], [-75.38081086930283, 40.65936414709799], [-75.38071311482213, 40.65914531231439], [-75.38062416647816, 40.658957977102595], [-75.38059098239138, 40.658876467295364], [-75.38054352462517, 40.65873957744342], [-75.38040840783684, 40.658429965404984], [-75.38039008061521, 40.658357257103226], [-75.38037677451219, 40.658304467905346], [-75.38035002342147, 40.658245057253005], [-75.38029162362453, 40.65813728951327], [-75.3802909897158, 40.65813627838992], [-75.38026943405475, 40.65810191184841], [-75.3802424867119, 40.65804807445225], [-75.38024231352071, 40.65804755110896], [-75.3802253811932, 40.6579963255495], [-75.38018482407216, 40.657948802524416], [-75.38014227895157, 40.657898950630695], [-75.38011507189535, 40.65785248693328], [-75.38003488218497, 40.65769125098006], [-75.37997197612741, 40.65756476449171], [-75.37990643924512, 40.65745496328468], [-75.37988923842518, 40.65742445403594], [-75.37987080848143, 40.65739176567032], [-75.37984578717656, 40.65736001998966], [-75.37981786904406, 40.65733370679654], [-75.37977824549968, 40.6573070686993], [-75.37972163488833, 40.65727647889338], [-75.37967499895308, 40.657244205670445], [-75.37962379898967, 40.65718798400981], [-75.37960656719008, 40.657139836799644], [-75.37960348425645, 40.65709944350833], [-75.37961051203132, 40.65702793721239], [-75.37964623648578, 40.65690948041423], [-75.37971162465767, 40.6567677740943], [-75.37977688859432, 40.656604013641726], [-75.37979992674586, 40.65656415529617], [-75.37985828983206, 40.656493869678314], [-75.37999190270328, 40.656354947140876], [-75.38000519113201, 40.65634113095471], [-75.38002514005566, 40.65631219194942], [-75.38004837138419, 40.656266845787236], [-75.38006253199087, 40.65622311503535], [-75.38006832608842, 40.65618659409692], [-75.3800683379699, 40.65613510947643], [-75.38005973531116, 40.656021151614105], [-75.38006990901755, 40.65596266684562], [-75.38009707530995, 40.65585682013784], [-75.38013711151547, 40.655743856564285], [-75.38022881745066, 40.65554588342761], [-75.38029523086274, 40.65542616552077], [-75.38046556452299, 40.655171106649284], [-75.38050675358647, 40.6551021002701], [-75.38058972385731, 40.65492179729681], [-75.38062511981431, 40.65486374149647], [-75.38071546721206, 40.65475541038054], [-75.38087294223965, 40.65453260963979], [-75.3809302778519, 40.65446582131842], [-75.38096342171748, 40.65442050548154], [-75.38104206747397, 40.654286106074835], [-75.38106838920031, 40.65422975384452], [-75.38106980044898, 40.654215280435096], [-75.3810722482953, 40.654196967968765], [-75.38108061220454, 40.65417786831471], [-75.38109674306016, 40.65414103424047], [-75.38109675468151, 40.65414100655091], [-75.38338696826432, 40.6539137115893], [-75.38518819628335, 40.65372462146889], [-75.38665006766371, 40.65356613043287], [-75.38665125029412, 40.653566002295484], [-75.38665278795949, 40.6535658354516], [-75.38850967010087, 40.653364490392335], [-75.38923282381833, 40.653291226703395], [-75.38983122174618, 40.65323059923232], [-75.39166346222109, 40.653055598718865], [-75.39456872264707, 40.652735704936724], [-75.39520130869913, 40.6526660422308], [-75.39569624144862, 40.65261064486043], [-75.39833215056154, 40.65231557416964], [-75.39981902248651, 40.65216956376634], [-75.40178208371665, 40.65196044349134], [-75.4019115535841, 40.65194664952139], [-75.40326828374768, 40.65179368262855], [-75.40438004539232, 40.65166832334538], [-75.40592665165711, 40.65148921900191], [-75.4060413673256, 40.65148289658767], [-75.40604147053455, 40.65148288786413], [-75.40615527647138, 40.65147076608335], [-75.40615544049474, 40.65147074327458], [-75.4062678686172, 40.651452880231616], [-75.40626804007753, 40.651452847663535], [-75.40637864649835, 40.65142931997116], [-75.40637875269861, 40.65142929329048], [-75.40648711564518, 40.65140018791962], [-75.40659279259482, 40.651365610341394], [-75.40659290638872, 40.65136556940021], [-75.40669520815511, 40.651325745321174], [-75.40669536783662, 40.65132567738056], [-75.40679390781312, 40.65128077106063], [-75.40679403903286, 40.65128070524719], [-75.4068884528861, 40.651230886802594], [-75.40688855187855, 40.651230829346325], [-75.40697842285415, 40.65117631377869], [-75.40707259897106, 40.65110469212365], [-75.40707271828617, 40.65110459453901], [-75.40716065862122, 40.65102869018617], [-75.40716077109522, 40.65102858525623], [-75.40724224949209, 40.65094860895586], [-75.40731703532202, 40.650864764160595], [-75.40731711317332, 40.65086466844036], [-75.40738473114033, 40.650777493284274], [-75.40738480330114, 40.65077739114294], [-75.40744506582007, 40.65068714399933], [-75.40749778801884, 40.65059407338584], [-75.4074978413932, 40.650593967261315], [-75.40754269902254, 40.650498655801826], [-75.40754274297241, 40.650498548585986], [-75.40757962005752, 40.650401270511296], [-75.40848306138771, 40.64864104901741], [-75.4085172932606, 40.64858189953766], [-75.40851735194587, 40.648581810636436], [-75.40855818887695, 40.64852526023455], [-75.40855823949886, 40.64852519909727], [-75.40860544092943, 40.648471566318676], [-75.40860547524585, 40.648471531878066], [-75.40865868955464, 40.64842123392125], [-75.40865877853095, 40.64842115824389], [-75.40871751820116, 40.64837464289407], [-75.40871756791388, 40.6483746078635], [-75.40878148124386, 40.648332158988914], [-75.40878155008676, 40.64833211803864], [-75.4088500824989, 40.648294105496625], [-75.4088501811719, 40.64829405704101], [-75.40892279388366, 40.648260770831435], [-75.40920179377227, 40.648521816071536], [-75.40941161898388, 40.64871813656817], [-75.40942918350203, 40.64873457078251], [-75.40960253719327, 40.64889676478105], [-75.40962344887203, 40.648916330387635], [-75.40962610749493, 40.64891881820453], [-75.4097471265452, 40.649032046376945], [-75.4102450522891, 40.64949791331588], [-75.41077299489388, 40.64999185464801], [-75.41080768657727, 40.65002431111238], [-75.41080942815569, 40.65002596240866], [-75.41092762072155, 40.65013800071609], [-75.4109279825722, 40.65013834313951], [-75.41125931469742, 40.65045242247846], [-75.41134094620996, 40.65052980241557], [-75.41147492276706, 40.65065680120986], [-75.41206298012371, 40.65120586741805], [-75.41210646038513, 40.65124705982399], [-75.4121385266377, 40.65127824854006], [-75.41262798016331, 40.65174967918384], [-75.4126656330725, 40.65178594594975], [-75.41269295554665, 40.65181223454027], [-75.41277184410592, 40.651888142816105], [-75.41286456706165, 40.65197705285667], [-75.4129343749512, 40.652044399897555], [-75.41297459013526, 40.652083016315146], [-75.41301707384459, 40.65212208023537], [-75.41303858908262, 40.65214186363636], [-75.41308701241672, 40.652186390294084], [-75.41318319709052, 40.65227536984116], [-75.41318540110176, 40.652277502473176], [-75.41333676025154, 40.6524239728665], [-75.41342274607007, 40.652507471160575], [-75.41352362858753, 40.65261228228535], [-75.41356428474701, 40.652654124353276], [-75.41390417137457, 40.653018609947146], [-75.4139896041087, 40.65311058006973], [-75.41414633335982, 40.65327857195069], [-75.41418549756524, 40.65332112873066], [-75.4142468035968, 40.65338874502398], [-75.414790652753, 40.653993093137025], [-75.41484395267955, 40.654052005819516], [-75.4152072056668, 40.65445943716804], [-75.41534971618597, 40.65461927814619], [-75.41560591600955, 40.65490663095094], [-75.41561429682575, 40.65491602995284], [-75.41564934561322, 40.65495534128557], [-75.41598551301428, 40.65533238163359], [-75.41600968452548, 40.65535949147563], [-75.41624954472384, 40.65562851179317], [-75.41625128669003, 40.65563046659848], [-75.41625132202152, 40.65563050514599], [-75.41644498136345, 40.65583068431764], [-75.41659757474741, 40.65598708165765], [-75.41666249401626, 40.656047351556104], [-75.41675076035737, 40.656129295804945], [-75.41677831875845, 40.65615488090947], [-75.41680417883461, 40.65617888955044], [-75.41683818634182, 40.656209692502884], [-75.41685459102673, 40.656225331007185], [-75.41693089478592, 40.656297912223806], [-75.41699213125081, 40.656356405176794], [-75.41705566802888, 40.65642340258161], [-75.41712924403157, 40.656501280787104], [-75.41714137958736, 40.65651409471895], [-75.41726566607979, 40.65664047679691], [-75.417566918492, 40.65693901286361], [-75.41761768089378, 40.65698995090082], [-75.41762535007445, 40.656997714774], [-75.41763790025644, 40.65701078923164], [-75.41778759957428, 40.65716702032749], [-75.41780213776704, 40.6571821220596], [-75.41782832435278, 40.6572093233683], [-75.41811927379341, 40.65751154412474], [-75.41816151501747, 40.65755491803365], [-75.41828703404968, 40.65769444204857], [-75.41828738800754, 40.657694843744984], [-75.4182875226871, 40.65769498518643], [-75.41902950089782, 40.658379877335946], [-75.41920343272362, 40.65854058445139], [-75.41951718488289, 40.65882934688994], [-75.4197354120187, 40.65903019044537], [-75.42047767926086, 40.65970423556871], [-75.4216586390146, 40.66079087807235], [-75.42144200039448, 40.66095799971199], [-75.41858800007998, 40.66264400025296], [-75.41858729112377, 40.66264441931106], [-75.41780400026492, 40.663106999727965], [-75.41519192275476, 40.6646504549382], [-75.41519146982588, 40.664650722381964], [-75.41519201515064, 40.664651030647306], [-75.41519782238646, 40.664691476437326], [-75.41456585197224, 40.66474430538388], [-75.41456556609297, 40.66474395279403], [-75.41456500014249, 40.664743999950446], [-75.41428660415595, 40.66476952494397], [-75.41409741414432, 40.66478661089372], [-75.41361719909528, 40.66483056541272], [-75.41335987210398, 40.66485310298246], [-75.41322295177879, 40.66486509429823], [-75.4128404132734, 40.66489994525183], [-75.41244706600317, 40.6649344896578], [-75.41235755967635, 40.66494195229384], [-75.41235699953987, 40.66494200225933], [-75.41200487843234, 40.664973626953454], [-75.41162954553064, 40.665008618332365], [-75.41145236421251, 40.66502438188568], [-75.4112741610666, 40.66504023536507], [-75.41090159562127, 40.66507339201676], [-75.41051905655316, 40.66510814886567], [-75.41016837485985, 40.66516002232217], [-75.41001182575964, 40.66517702703965], [-75.4098520004416, 40.66519199974204], [-75.40965100007502, 40.66521200034181], [-75.40944899941651, 40.66523300017975], [-75.40902659921946, 40.665275938992686], [-75.40897825100117, 40.66498334816967], [-75.40896620210572, 40.66491514561193], [-75.40893210810039, 40.664703370663], [-75.40892244235305, 40.66464439780625], [-75.40888571176329, 40.6644306822811], [-75.40887746261504, 40.664382806920756], [-75.4088417615529, 40.6641654222157], [-75.40883125784983, 40.664104629793854], [-75.40878254500657, 40.663820825635824], [-75.40877307065014, 40.66375636405152], [-75.40873898677502, 40.663544332421694], [-75.40868808584199, 40.66324572514404], [-75.40853900009132, 40.66325558512072], [-75.40833026368098, 40.66326990391109], [-75.4081748731753, 40.66327963698806], [-75.40786517991823, 40.6632965696447], [-75.40785511785633, 40.66329695645043], [-75.40785399957977, 40.663296999623526], [-75.40779778215038, 40.663300470095216], [-75.40779771930615, 40.66330047423088], [-75.40769255105614, 40.663306619590216], [-75.40769261246534, 40.66330696225808], [-75.40773938985453, 40.663566446939264], [-75.40739149673476, 40.6636056759671], [-75.40721538067316, 40.6636255354327], [-75.40721543406566, 40.663625836499115], [-75.40721400044272, 40.66362600031599], [-75.4071250999593, 40.66362500121531], [-75.4071249994413, 40.66362500008505], [-75.40702866960126, 40.663626986692314], [-75.40702871702919, 40.66362725520719], [-75.4067750253786, 40.66365018940981], [-75.40654852358891, 40.66367066553745], [-75.40651963416511, 40.66367188335356], [-75.40648140943843, 40.66365643747866], [-75.40648113400796, 40.663656465243506], [-75.4061792535983, 40.663686969722285], [-75.40602273431828, 40.66370318316077], [-75.40582369237404, 40.66372380041929], [-75.40574194491403, 40.66373228503739], [-75.40546179382096, 40.6637613604091], [-75.40540062742184, 40.66376709802606], [-75.40536321115245, 40.66377060789165], [-75.40518382361053, 40.663788614425485], [-75.40509996185574, 40.66379703241303], [-75.40503027157709, 40.66380497662832], [-75.40473169083877, 40.66383634947267], [-75.40470273548978, 40.663839453715994], [-75.40447855259472, 40.66386232668958], [-75.40447847658857, 40.6638623350615], [-75.40430231699563, 40.66388030824787], [-75.40427386292478, 40.6638829459691], [-75.40418700043135, 40.66389099990154], [-75.4041050349505, 40.663480177060066], [-75.40410497440745, 40.66348018304204], [-75.40359610842575, 40.66352517031418], [-75.40301895962264, 40.66357619090503], [-75.40303538056976, 40.66367391397669], [-75.40303081881159, 40.66380459204633], [-75.40301518071934, 40.66391685564525], [-75.40296144983543, 40.66406155491617], [-75.40290358291263, 40.66416978811957], [-75.40281857383262, 40.6642808185493], [-75.40274964544108, 40.6643443790947], [-75.40267566810077, 40.66439762698576], [-75.4025615763739, 40.66446370537671], [-75.4024288074137, 40.66452254091225], [-75.40235121466728, 40.664550230842174], [-75.40226450565055, 40.664580824294916], [-75.40215037343464, 40.66459644674542], [-75.40201371286078, 40.664611784937925], [-75.40178127033559, 40.66463359274374], [-75.40160715499712, 40.66466310192843], [-75.40143593853853, 40.66468700673678], [-75.40129061104524, 40.66471821383426], [-75.40113717278088, 40.66474934292604], [-75.40093217543523, 40.664811262011256], [-75.40020886042248, 40.66507839695605], [-75.39932804414826, 40.66538952990849], [-75.39916537763933, 40.665117310141035], [-75.39814203876604, 40.66342064869848], [-75.3979569955933, 40.663067771602925], [-75.39771189086922, 40.662600353834954], [-75.3976134881709, 40.66238039995143], [-75.39756808718543, 40.66227891777337], [-75.39738228666006, 40.66179230764921], [-75.39723828982517, 40.661296162952226], [-75.3971593004447, 40.66098677706833], [-75.39715911948115, 40.66098606621549], [-75.3971591028035, 40.66098600191553], [-75.39715900395139, 40.66098561523931], [-75.39715886454013, 40.66098506918746], [-75.397158726248, 40.66098452496007], [-75.3971249232293, 40.66085212412968], [-75.3970983809002, 40.66072504701419], [-75.39709830384791, 40.66072467969851], [-75.39707319426995, 40.660604462921874], [-75.39706474338459, 40.66054553417181], [-75.39703551463377, 40.6603417270175], [-75.39703829046591, 40.66026240796263], [-75.39704036387691, 40.66020316038158], [-75.39706098679831, 40.65997400016579], [-75.39706101383882, 40.65997370072585], [-75.39598650345783, 40.6600898259544], [-75.39485318366198, 40.660212295041006], [-75.39239040245518, 40.66046913920983], [-75.3923543044024, 40.660472903186545], [-75.38999698923674, 40.66073179197715], [-75.38953173763049, 40.66078896597783], [-75.38863304024036, 40.66089939963112], [-75.38861025857146, 40.660906397527974], [-75.38799787714633, 40.66097445466973], [-75.38799299944542, 40.660975000320065], [-75.38784299943094, 40.66099300032815], [-75.38756592923123, 40.6610278832688], [-75.38756500001931, 40.661028000366045], [-75.38737700034143, 40.661051000045425], [-75.38693299950265, 40.66105800031448], [-75.3863479994343, 40.66111899993995], [-75.38599800002591, 40.661173999698796], [-75.38223448781899, 40.6615612159872], [-75.38191076644769, 40.661408941699655], [-75.38190429152078, 40.66140589603199], [-75.38180032037971, 40.66135960986369], [-75.38180021557194, 40.66135956267931], [-75.38163678738431, 40.661286806853624], [-75.38129389087487, 40.6611335994549], [-75.38123709810893, 40.66110806967066], [-75.38123699211982, 40.66110802246165]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 424, \"PRECINCTID\": \"140004-1\", \"NAME\": \"HANOVER DISTRICT 4\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"HANOVER TOWNSHIP COMMUNITY CENTER\", \"SiteAddress\": \"3660 JACKSONVILLE RD\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1768\", \"STATISTICS Ballots Cast - Total\": 1433.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"81.05%\", \"Presidential Electors DEM Biden and Harris\": \"756\", \"Presidential Electors REP Trump and Pence\": \"658\", \"Presidential Electors LIB Jorgensen and Cohen\": \"12\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"726\", \"Attorney General REP Heather Heidelbaugh\": \"654\", \"Attorney General LIB Daniel Wassmer\": \"16\", \"Attorney General GRE Richard L Weiss\": \"11\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"679\", \"Auditor General REP Timothy Defoor\": \"680\", \"Auditor General LIB Jennifer Moore\": \"27\", \"Auditor General GRE Olivia Faison\": \"10\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"696\", \"State Treasurer REP Stacy L. Garrity\": \"661\", \"State Treasurer LIB Joe Soloski\": \"26\", \"State Treasurer GRE Timothy Runkle\": \"15\", \"State Treasurer Write-In Totals\": \"1\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"721\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"686\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"726\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"679\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 52.75645498953245, \"Presidential Electors Pct REP\": 45.91765526866713, \"Presidential Electors Pct LIB\": 0.8374040474528961, \"PA Attorney General Pct DEM\": 50.662944870900205, \"PA Attorney General Pct REP\": 45.638520586182835, \"PA Attorney General Pct LIB\": 1.1165387299371947, \"PA Attorney General Pct GRE\": 0.7676203768318213, \"PA Auditor General Pct DEM\": 47.3831123517097, \"PA Auditor General Pct REP\": 47.452896022330776, \"PA Auditor General Pct LIB\": 1.884159106769016, \"PA Auditor General Pct GRE\": 0.6978367062107467, \"PA State Treasurer Pct DEM\": 48.56943475226797, \"PA State Treasurer Pct REP\": 46.12700628053036, \"PA State Treasurer Pct LIB\": 1.8143754361479414, \"PA State Treasurer Pct GRE\": 1.04675505931612, \"PA Representative in Congress 7th Congressional District Pct DEM\": 50.314026517794844, \"PA Representative in Congress 7th Congressional District Pct REP\": 47.87159804605722, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.8427032367331577, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38123699211982, 40.66110802246165], [-75.38123709810893, 40.66110806967066], [-75.38129389087487, 40.6611335994549], [-75.38163678738431, 40.661286806853624], [-75.38180021557194, 40.66135956267931], [-75.38180032037971, 40.66135960986369], [-75.38190429152078, 40.66140589603199], [-75.38191076644769, 40.661408941699655], [-75.38223448781899, 40.6615612159872], [-75.38599800002591, 40.661173999698796], [-75.3863479994343, 40.66111899993995], [-75.38693299950265, 40.66105800031448], [-75.38737700034143, 40.661051000045425], [-75.38756500001931, 40.661028000366045], [-75.38756592923123, 40.6610278832688], [-75.38784299943094, 40.66099300032815], [-75.38799299944542, 40.660975000320065], [-75.38799787714633, 40.66097445466973], [-75.38861025857146, 40.660906397527974], [-75.38863304024036, 40.66089939963112], [-75.38953173763049, 40.66078896597783], [-75.38999698923674, 40.66073179197715], [-75.3923543044024, 40.660472903186545], [-75.39239040245518, 40.66046913920983], [-75.39485318366198, 40.660212295041006], [-75.39598650345783, 40.6600898259544], [-75.39706101383882, 40.65997370072585], [-75.39706098679831, 40.65997400016579], [-75.39704036387691, 40.66020316038158], [-75.39703829046591, 40.66026240796263], [-75.39703551463377, 40.6603417270175], [-75.39706474338459, 40.66054553417181], [-75.39707319426995, 40.660604462921874], [-75.39709830384791, 40.66072467969851], [-75.3970983809002, 40.66072504701419], [-75.3971249232293, 40.66085212412968], [-75.397158726248, 40.66098452496007], [-75.39715886454013, 40.66098506918746], [-75.39715900395139, 40.66098561523931], [-75.3971591028035, 40.66098600191553], [-75.39715911948115, 40.66098606621549], [-75.3971593004447, 40.66098677706833], [-75.39723828982517, 40.661296162952226], [-75.39738228666006, 40.66179230764921], [-75.39756808718543, 40.66227891777337], [-75.3976134881709, 40.66238039995143], [-75.39771189086922, 40.662600353834954], [-75.3979569955933, 40.663067771602925], [-75.39814203876604, 40.66342064869848], [-75.39916537763933, 40.665117310141035], [-75.39932804414826, 40.66538952990849], [-75.39974082599203, 40.66607121692082], [-75.39980958930991, 40.66618477381603], [-75.40032978807649, 40.66707174633425], [-75.4005310747147, 40.66741494476674], [-75.40159219451546, 40.669169065522745], [-75.4021101990731, 40.66999965754664], [-75.40226664769631, 40.67025051043918], [-75.40226699745557, 40.670250997680874], [-75.40254782088886, 40.67064104904235], [-75.40261837590042, 40.67070823856546], [-75.40270487972009, 40.67079061603493], [-75.40293227521872, 40.671101535807864], [-75.40375555387392, 40.67222718658125], [-75.40434465973503, 40.67301754789777], [-75.40484525004855, 40.67376115371829], [-75.40487267506235, 40.67380203813064], [-75.40488979177135, 40.673837773744054], [-75.40488980607441, 40.673837804662604], [-75.40489620611075, 40.673851165950516], [-75.4048960993092, 40.67385120883378], [-75.40483006892013, 40.673877636248356], [-75.40461640667894, 40.67396314990669], [-75.40374486360327, 40.674315862914156], [-75.40326488776984, 40.6744799108011], [-75.40291375740593, 40.67456890849149], [-75.40282413497802, 40.674582544301806], [-75.40282383519346, 40.67458259048402], [-75.40256931239165, 40.674621315009084], [-75.40139398958407, 40.67473927157068], [-75.40059209813627, 40.674816373775855], [-75.4005908503475, 40.6748164944357], [-75.39940373505506, 40.67493062553304], [-75.39911668909532, 40.674965823055274], [-75.39906998428276, 40.674969419276835], [-75.39900729833383, 40.67497424547762], [-75.39896339439154, 40.67497475803021], [-75.39889184361287, 40.67497559379291], [-75.39878115168501, 40.67496966049013], [-75.39867607448993, 40.67495783306949], [-75.39856342353418, 40.67493057964058], [-75.39843415499847, 40.67488865818783], [-75.39836460903801, 40.67486313627551], [-75.39832377122409, 40.6748481492467], [-75.39507775905273, 40.673540470998596], [-75.39462191904472, 40.67340121461516], [-75.39450211570525, 40.67336803191878], [-75.3943424292703, 40.673323802382775], [-75.39401822521206, 40.673261698383094], [-75.39361394895451, 40.67319479083505], [-75.39330606472566, 40.673155841665206], [-75.39325168235402, 40.67315260498311], [-75.39291198569693, 40.67313238672389], [-75.39261107317782, 40.67313130294696], [-75.39261078567556, 40.673131302507436], [-75.39261046506726, 40.673131301394925], [-75.39261014209434, 40.67313130023437], [-75.39261001906598, 40.673131299535044], [-75.39248107599877, 40.67313083482812], [-75.39214610457121, 40.67314578738603], [-75.39209277940988, 40.67314816783263], [-75.3916650191902, 40.67320506385304], [-75.39024943786568, 40.67334132185814], [-75.38617334314651, 40.67372424028439], [-75.38574628992298, 40.67376073252406], [-75.38547610618066, 40.673783819875666], [-75.38532512796355, 40.67380201883541], [-75.38491472644326, 40.673851486758686], [-75.3848170636435, 40.6738646069008], [-75.3848169637545, 40.67386462107903], [-75.3848169043194, 40.67386462887544], [-75.38481684606663, 40.673864636696], [-75.38452156771636, 40.67390430486256], [-75.38422434035182, 40.67394689457422], [-75.38418698353954, 40.6739541303435], [-75.38374138880909, 40.67404043872426], [-75.38281750115083, 40.67426257569377], [-75.38276569402038, 40.67427503204547], [-75.38269948873095, 40.674296444557896], [-75.38233796314209, 40.67441337356122], [-75.38180318501863, 40.67462143565276], [-75.38140487699431, 40.674820183303545], [-75.38122860090742, 40.67492716874131], [-75.38122839050924, 40.674927296871154], [-75.38122788389185, 40.67492760452905], [-75.3812277327629, 40.67492769603314], [-75.38122659498259, 40.67492838718033], [-75.38121899824495, 40.67493299759517], [-75.3808327284785, 40.67516743029812], [-75.38033398005962, 40.67550407490768], [-75.37938611220247, 40.676099172616134], [-75.37887280769701, 40.6763624054176], [-75.3786211182897, 40.6764815112172], [-75.3785399520271, 40.67651992116448], [-75.37803011809923, 40.676710198706175], [-75.37795269102362, 40.67673933461804], [-75.3779526011035, 40.67673936791261], [-75.37795249197886, 40.67673940892225], [-75.377952410431, 40.6767394396855], [-75.37789213536152, 40.67676212123106], [-75.37761685465829, 40.67687215976751], [-75.37752625870247, 40.6769010908622], [-75.37752612944445, 40.67690113236039], [-75.37752590444906, 40.67690120433122], [-75.37727670383792, 40.67698078394003], [-75.37719351316791, 40.67700098102506], [-75.376930202442, 40.67706490687742], [-75.37660945143509, 40.67714076242418], [-75.3765037636973, 40.677165756967106], [-75.37614190222568, 40.67722519470425], [-75.37569094330675, 40.67729985703881], [-75.37568400065763, 40.677301005841244], [-75.37568388519928, 40.67730102509822], [-75.37567017547741, 40.677302438940444], [-75.37529022936582, 40.67734161799445], [-75.37486099634079, 40.67737632073345], [-75.37468981068079, 40.67739015989257], [-75.37467208606013, 40.67739180758766], [-75.3743297656554, 40.677423629241986], [-75.37433014048902, 40.67742631520563], [-75.37411907817976, 40.677447612913184], [-75.37411435532567, 40.677418264019195], [-75.37381208112372, 40.67553983356296], [-75.37372330486514, 40.67465891111257], [-75.37306261783137, 40.66989544385175], [-75.37284017484126, 40.668291510419586], [-75.3728222249367, 40.66816207900999], [-75.37278484519368, 40.66789254472501], [-75.37276850101323, 40.667774689083856], [-75.37255473018108, 40.66622266800329], [-75.37279967909492, 40.666255578568375], [-75.37285224461797, 40.666273217002676], [-75.37286503623345, 40.66627692869281], [-75.37293434143513, 40.66629703904024], [-75.37312280160151, 40.66632132439182], [-75.37319467028966, 40.66632846141963], [-75.37329729556274, 40.66633262446286], [-75.37340416750652, 40.666344167919945], [-75.37356373558295, 40.666369662989474], [-75.37382129274873, 40.666403000052306], [-75.37401978385142, 40.6664495428457], [-75.37408142209426, 40.66646556488307], [-75.37412143967505, 40.66648114386528], [-75.37417598922603, 40.66649367476009], [-75.3742359027806, 40.66650751549741], [-75.37429342160688, 40.66651255606774], [-75.37452034912182, 40.66654526487661], [-75.37461106666734, 40.666554760088026], [-75.37471362573993, 40.666560807838984], [-75.3748650840516, 40.66656073578563], [-75.37494731405673, 40.66655529789025], [-75.37503617116087, 40.66654090047857], [-75.37508725863535, 40.666523841165805], [-75.37529232605353, 40.66643528301477], [-75.37541696146003, 40.66637785553412], [-75.3755623168858, 40.6662952809979], [-75.37573238428607, 40.66617665854986], [-75.3758463420822, 40.66608966608615], [-75.37599447407783, 40.66592846215754], [-75.37603257021601, 40.66587080712957], [-75.37608451056872, 40.66577851054981], [-75.37610536923916, 40.66572393489764], [-75.3761200551312, 40.665665457309224], [-75.37613500280023, 40.66557403389919], [-75.37615232459088, 40.66551749759828], [-75.37619377988472, 40.665441291178446], [-75.37622995720194, 40.66536137140085], [-75.37627102479502, 40.66529614044335], [-75.37629368052154, 40.66526725746954], [-75.37642876547844, 40.665143541436045], [-75.37646306846847, 40.665116699508204], [-75.37653964876728, 40.66506695441311], [-75.37667028498348, 40.66499265804178], [-75.37671469078933, 40.66496053112564], [-75.37681154744487, 40.66487267241553], [-75.37683967139556, 40.66484209952047], [-75.37689316027323, 40.66475695748097], [-75.37694896416093, 40.664682845323775], [-75.37714403866127, 40.66444297091574], [-75.37726278646811, 40.66429678158894], [-75.37731247037932, 40.66424279561532], [-75.3774384756232, 40.66414635121257], [-75.37755660427823, 40.6640900901377], [-75.37759343030788, 40.664072551465225], [-75.37765700967593, 40.66403352306645], [-75.3777364840138, 40.66397834381317], [-75.37779891019899, 40.66392092838088], [-75.37784844556525, 40.66386419149014], [-75.37793419005891, 40.66376598053959], [-75.37812364883523, 40.66360845183563], [-75.37821695832207, 40.66354437361061], [-75.37830061509327, 40.66349837564143], [-75.37858253838051, 40.66330069122706], [-75.3787003657116, 40.66323153679882], [-75.37875872583255, 40.66321265175925], [-75.3788195948664, 40.663199308812075], [-75.37889898187807, 40.66319767209368], [-75.37897926337881, 40.66322179510945], [-75.37907041312998, 40.66327008096793], [-75.37913126345867, 40.663308395233344], [-75.37919565996128, 40.66332284042396], [-75.37934999686526, 40.66329201623443], [-75.37944740370246, 40.66323951954387], [-75.37947256329312, 40.66321626536463], [-75.37950158628844, 40.66316013900467], [-75.37950378420298, 40.66309780131625], [-75.3795170457527, 40.66305405318451], [-75.3795769565596, 40.662940037719544], [-75.37964812850905, 40.662839037614155], [-75.37970378564917, 40.6627689552932], [-75.37980293867805, 40.66266689655467], [-75.37993297584083, 40.66253260528671], [-75.37997788629565, 40.662486070841894], [-75.3804551384654, 40.66186144656719], [-75.38054795290675, 40.66173454497673], [-75.38066847569782, 40.6615897047653], [-75.3807211545646, 40.66152639602428], [-75.3807586126546, 40.66148666012095], [-75.3807993884691, 40.66145150536735], [-75.3808627390877, 40.66139688733161], [-75.38105103326201, 40.66127202284911], [-75.38115946840817, 40.66118782955206], [-75.38123699211982, 40.66110802246165]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 425, \"PRECINCTID\": \"140006-1\", \"NAME\": \"HANOVER DISTRICT 6\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"HANOVER TOWNSHIP COMMUNITY CENTER\", \"SiteAddress\": \"3660 JACKSONVILLE RD\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1221\", \"STATISTICS Ballots Cast - Total\": 993.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"81.33%\", \"Presidential Electors DEM Biden and Harris\": \"533\", \"Presidential Electors REP Trump and Pence\": \"451\", \"Presidential Electors LIB Jorgensen and Cohen\": \"5\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"509\", \"Attorney General REP Heather Heidelbaugh\": \"440\", \"Attorney General LIB Daniel Wassmer\": \"10\", \"Attorney General GRE Richard L Weiss\": \"5\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"466\", \"Auditor General REP Timothy Defoor\": \"467\", \"Auditor General LIB Jennifer Moore\": \"13\", \"Auditor General GRE Olivia Faison\": \"8\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"491\", \"State Treasurer REP Stacy L. Garrity\": \"450\", \"State Treasurer LIB Joe Soloski\": \"10\", \"State Treasurer GRE Timothy Runkle\": \"7\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"510\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"461\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"512\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"448\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 53.67573011077543, \"Presidential Electors Pct REP\": 45.41792547834844, \"Presidential Electors Pct LIB\": 0.5035246727089627, \"PA Attorney General Pct DEM\": 51.25881168177241, \"PA Attorney General Pct REP\": 44.31017119838872, \"PA Attorney General Pct LIB\": 1.0070493454179255, \"PA Attorney General Pct GRE\": 0.5035246727089627, \"PA Auditor General Pct DEM\": 46.928499496475325, \"PA Auditor General Pct REP\": 47.02920443101712, \"PA Auditor General Pct LIB\": 1.3091641490433032, \"PA Auditor General Pct GRE\": 0.8056394763343404, \"PA State Treasurer Pct DEM\": 49.44612286002014, \"PA State Treasurer Pct REP\": 45.31722054380665, \"PA State Treasurer Pct LIB\": 1.0070493454179255, \"PA State Treasurer Pct GRE\": 0.7049345417925479, \"PA Representative in Congress 7th Congressional District Pct DEM\": 51.3595166163142, \"PA Representative in Congress 7th Congressional District Pct REP\": 46.42497482376636, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5839527662777568, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.39330606472566, 40.673155841665206], [-75.39361394895451, 40.67319479083505], [-75.39401822521206, 40.673261698383094], [-75.3943424292703, 40.673323802382775], [-75.39450211570525, 40.67336803191878], [-75.39462191904472, 40.67340121461516], [-75.39507775905273, 40.673540470998596], [-75.39832377122409, 40.6748481492467], [-75.39836460903801, 40.67486313627551], [-75.39843415499847, 40.67488865818783], [-75.39856342353418, 40.67493057964058], [-75.39867607448993, 40.67495783306949], [-75.39878115168501, 40.67496966049013], [-75.39889184361287, 40.67497559379291], [-75.39896339439154, 40.67497475803021], [-75.39900729833383, 40.67497424547762], [-75.39906998428276, 40.674969419276835], [-75.39911668909532, 40.674965823055274], [-75.39940373505506, 40.67493062553304], [-75.4005908503475, 40.6748164944357], [-75.40059209813627, 40.674816373775855], [-75.40139398958407, 40.67473927157068], [-75.40256931239165, 40.674621315009084], [-75.40282383519346, 40.67458259048402], [-75.40282413497802, 40.674582544301806], [-75.40291375740593, 40.67456890849149], [-75.40326488776984, 40.6744799108011], [-75.40374486360327, 40.674315862914156], [-75.40461640667894, 40.67396314990669], [-75.40483006892013, 40.673877636248356], [-75.4048960993092, 40.67385120883378], [-75.40489620611075, 40.673851165950516], [-75.40497935073762, 40.674026436230115], [-75.4056414466675, 40.6749480927399], [-75.40582923058561, 40.675197415938996], [-75.40582961738552, 40.675197928240344], [-75.40582979265197, 40.675198161502934], [-75.40608351287321, 40.67553502591043], [-75.40621199791329, 40.675689137747376], [-75.4063682411809, 40.67587654410054], [-75.407142061583, 40.67690504853752], [-75.40714962788148, 40.676915557690606], [-75.40726676410281, 40.67707823763486], [-75.40738570599909, 40.67728320427639], [-75.40738582315849, 40.67728340753496], [-75.40739605009134, 40.67730103045908], [-75.4074183959266, 40.67734289981227], [-75.40772868258838, 40.677924273765335], [-75.40776459872329, 40.678026689174224], [-75.40778117319911, 40.67807395153793], [-75.40832024051954, 40.679242289600566], [-75.40868730564013, 40.68006830015388], [-75.40886415901069, 40.68042231914045], [-75.40895872583386, 40.68061161765588], [-75.4090746282839, 40.680908360705075], [-75.40921948581838, 40.681304351006496], [-75.40921957114791, 40.68130458515042], [-75.40921959493713, 40.681304649591546], [-75.40925822959856, 40.681410262337714], [-75.40926135183196, 40.68141986184816], [-75.40941950259683, 40.681906049246585], [-75.4094895669213, 40.68222451961226], [-75.40947772413767, 40.682357453676964], [-75.40946067420893, 40.68251044657468], [-75.40910194580314, 40.682458940138574], [-75.40504099941305, 40.681876000089495], [-75.40504088629983, 40.68187598609123], [-75.4050409326093, 40.681875778027994], [-75.40352190669556, 40.68168459500664], [-75.40321103033153, 40.68165264829581], [-75.40295895319585, 40.681641111463016], [-75.40247079203955, 40.68162488210751], [-75.40046747334289, 40.68153935169944], [-75.40046748610573, 40.68153902044097], [-75.4004670004725, 40.6815389997923], [-75.40046510127027, 40.68153896401928], [-75.40046507866977, 40.68153930588877], [-75.39579883187537, 40.681450081650915], [-75.39581189953266, 40.68122696267643], [-75.39583023523029, 40.68091390848462], [-75.3957653326274, 40.680428052878696], [-75.39572688064516, 40.680140203299985], [-75.39561798557992, 40.67966247566561], [-75.39543203966562, 40.67856130939114], [-75.39543199490652, 40.67856099948622], [-75.3954065830422, 40.678387118668084], [-75.39537980484918, 40.67827639846428], [-75.39535398823905, 40.678222002647615], [-75.39535391987835, 40.67822185982406], [-75.39535377442253, 40.67822155327971], [-75.39530539872972, 40.6781353646712], [-75.39525777101198, 40.678053566720365], [-75.39521478943111, 40.67800654633768], [-75.39521474386788, 40.67800649586498], [-75.3951995893185, 40.67798991764915], [-75.3951457404405, 40.677931247316], [-75.39496011325792, 40.677799281337656], [-75.39448793493503, 40.67748975528746], [-75.39354810009348, 40.67687365281681], [-75.3933501985953, 40.67673190985108], [-75.39322427592904, 40.676645946085], [-75.39317437974286, 40.67660272654169], [-75.39313764409262, 40.67657090642805], [-75.39310421683507, 40.67653443030841], [-75.39304124975538, 40.67646572084312], [-75.39299056820612, 40.67639398459811], [-75.3929294505765, 40.67631131141642], [-75.3928932353333, 40.676244209520924], [-75.39284563392312, 40.67615601214807], [-75.39277701568786, 40.67590399770657], [-75.39277698006349, 40.675903866357075], [-75.39277693922158, 40.67590371508248], [-75.39277621365439, 40.67589869422839], [-75.39276533180097, 40.67582333460425], [-75.39276566405101, 40.67580545829079], [-75.3927673648162, 40.67571397130375], [-75.39277181771644, 40.675638379263034], [-75.39279945605836, 40.675518725156216], [-75.39282020640815, 40.67544419228433], [-75.39282021320399, 40.675444167198286], [-75.39282112022248, 40.67544090918942], [-75.39285498908697, 40.67534926888597], [-75.39323635610928, 40.67465554274167], [-75.39330162988553, 40.67453009869039], [-75.39333399835105, 40.67446789234676], [-75.39335966140163, 40.674404573187324], [-75.39336206535586, 40.67439455937984], [-75.39337232964033, 40.67435180212055], [-75.39337817340949, 40.674313735916066], [-75.39338119449118, 40.674227561111245], [-75.39337118083414, 40.674127391326145], [-75.3933348840014, 40.67393570363048], [-75.39333486007448, 40.67393557612219], [-75.39327989006968, 40.6736452713652], [-75.39327075526634, 40.67344292346757], [-75.39330070751997, 40.673199403132365], [-75.39330077569025, 40.673198842377914], [-75.39330600002162, 40.67315599980334], [-75.39330604479346, 40.67315600521754], [-75.39330606472566, 40.673155841665206]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 426, \"PRECINCTID\": \"140003-1\", \"NAME\": \"HANOVER DISTRICT 3\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"HANOVER TOWNSHIP ELEMENTARY SCHOOL\", \"SiteAddress\": \"3890 JACKSONVILLE RD\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1002\", \"STATISTICS Ballots Cast - Total\": 867.0, \"STATISTICS Ballots Cast - Blank\": \"2\", \"STATISTICS Voter Turnout - Total\": \"86.53%\", \"Presidential Electors DEM Biden and Harris\": \"434\", \"Presidential Electors REP Trump and Pence\": \"421\", \"Presidential Electors LIB Jorgensen and Cohen\": \"4\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"416\", \"Attorney General REP Heather Heidelbaugh\": \"386\", \"Attorney General LIB Daniel Wassmer\": \"15\", \"Attorney General GRE Richard L Weiss\": \"7\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"390\", \"Auditor General REP Timothy Defoor\": \"390\", \"Auditor General LIB Jennifer Moore\": \"28\", \"Auditor General GRE Olivia Faison\": \"7\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"391\", \"State Treasurer REP Stacy L. Garrity\": \"398\", \"State Treasurer LIB Joe Soloski\": \"20\", \"State Treasurer GRE Timothy Runkle\": \"6\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"431\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"412\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"422\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"409\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 50.05767012687428, \"Presidential Electors Pct REP\": 48.55824682814302, \"Presidential Electors Pct LIB\": 0.461361014994233, \"PA Attorney General Pct DEM\": 47.98154555940023, \"PA Attorney General Pct REP\": 44.52133794694348, \"PA Attorney General Pct LIB\": 1.7301038062283738, \"PA Attorney General Pct GRE\": 0.8073817762399077, \"PA Auditor General Pct DEM\": 44.982698961937714, \"PA Auditor General Pct REP\": 44.982698961937714, \"PA Auditor General Pct LIB\": 3.229527104959631, \"PA Auditor General Pct GRE\": 0.8073817762399077, \"PA State Treasurer Pct DEM\": 45.09803921568628, \"PA State Treasurer Pct REP\": 45.905420991926185, \"PA State Treasurer Pct LIB\": 2.306805074971165, \"PA State Treasurer Pct GRE\": 0.6920415224913495, \"PA Representative in Congress 7th Congressional District Pct DEM\": 49.7116493656286, \"PA Representative in Congress 7th Congressional District Pct REP\": 47.520184544406, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5098560406473466, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.40946067420893, 40.68251044657468], [-75.40947772413767, 40.682357453676964], [-75.4094895669213, 40.68222451961226], [-75.40941950259683, 40.681906049246585], [-75.40926135183196, 40.68141986184816], [-75.40925822959856, 40.681410262337714], [-75.40921959493713, 40.681304649591546], [-75.40921957114791, 40.68130458515042], [-75.40921948581838, 40.681304351006496], [-75.4090746282839, 40.680908360705075], [-75.40895872583386, 40.68061161765588], [-75.40886415901069, 40.68042231914045], [-75.40868730564013, 40.68006830015388], [-75.40832024051954, 40.679242289600566], [-75.40778117319911, 40.67807395153793], [-75.40776459872329, 40.678026689174224], [-75.40772868258838, 40.677924273765335], [-75.4074183959266, 40.67734289981227], [-75.40739605009134, 40.67730103045908], [-75.40738582315849, 40.67728340753496], [-75.40738570599909, 40.67728320427639], [-75.40726676410281, 40.67707823763486], [-75.40714962788148, 40.676915557690606], [-75.407142061583, 40.67690504853752], [-75.4063682411809, 40.67587654410054], [-75.40621199791329, 40.675689137747376], [-75.40608351287321, 40.67553502591043], [-75.40582979265197, 40.675198161502934], [-75.40582961738552, 40.675197928240344], [-75.40582923058561, 40.675197415938996], [-75.4056414466675, 40.6749480927399], [-75.40497935073762, 40.674026436230115], [-75.40489620611075, 40.673851165950516], [-75.40488980607441, 40.673837804662604], [-75.40488979177135, 40.673837773744054], [-75.40487267506235, 40.67380203813064], [-75.40484525004855, 40.67376115371829], [-75.40434465973503, 40.67301754789777], [-75.40375555387392, 40.67222718658125], [-75.40293227521872, 40.671101535807864], [-75.40270487972009, 40.67079061603493], [-75.40261837590042, 40.67070823856546], [-75.40254782088886, 40.67064104904235], [-75.40226699745557, 40.670250997680874], [-75.40226664769631, 40.67025051043918], [-75.4021101990731, 40.66999965754664], [-75.40159219451546, 40.669169065522745], [-75.4005310747147, 40.66741494476674], [-75.40032978807649, 40.66707174633425], [-75.39980958930991, 40.66618477381603], [-75.39974082599203, 40.66607121692082], [-75.39932804414826, 40.66538952990849], [-75.40020886042248, 40.66507839695605], [-75.40093217543523, 40.664811262011256], [-75.40113717278088, 40.66474934292604], [-75.40129061104524, 40.66471821383426], [-75.40143593853853, 40.66468700673678], [-75.40160715499712, 40.66466310192843], [-75.40178127033559, 40.66463359274374], [-75.40201371286078, 40.664611784937925], [-75.40215037343464, 40.66459644674542], [-75.40226450565055, 40.664580824294916], [-75.40235121466728, 40.664550230842174], [-75.4024288074137, 40.66452254091225], [-75.4025615763739, 40.66446370537671], [-75.40267566810077, 40.66439762698576], [-75.40274964544108, 40.6643443790947], [-75.40281857383262, 40.6642808185493], [-75.40290358291263, 40.66416978811957], [-75.40296144983543, 40.66406155491617], [-75.40301518071934, 40.66391685564525], [-75.40303081881159, 40.66380459204633], [-75.40303538056976, 40.66367391397669], [-75.40301895962264, 40.66357619090503], [-75.40359610842575, 40.66352517031418], [-75.40410497440745, 40.66348018304204], [-75.4041050349505, 40.663480177060066], [-75.40418700043135, 40.66389099990154], [-75.40427386292478, 40.6638829459691], [-75.40430231699563, 40.66388030824787], [-75.40447847658857, 40.6638623350615], [-75.40447855259472, 40.66386232668958], [-75.40470273548978, 40.663839453715994], [-75.40473169083877, 40.66383634947267], [-75.40503027157709, 40.66380497662832], [-75.40509996185574, 40.66379703241303], [-75.40518382361053, 40.663788614425485], [-75.40536321115245, 40.66377060789165], [-75.40540062742184, 40.66376709802606], [-75.40546179382096, 40.6637613604091], [-75.40574194491403, 40.66373228503739], [-75.40582369237404, 40.66372380041929], [-75.40602273431828, 40.66370318316077], [-75.4061792535983, 40.663686969722285], [-75.40648113400796, 40.663656465243506], [-75.40648140943843, 40.66365643747866], [-75.40651963416511, 40.66367188335356], [-75.40654852358891, 40.66367066553745], [-75.4067750253786, 40.66365018940981], [-75.40702871702919, 40.66362725520719], [-75.40702866960126, 40.663626986692314], [-75.4071249994413, 40.66362500008505], [-75.4071250999593, 40.66362500121531], [-75.40721400044272, 40.66362600031599], [-75.40721543406566, 40.663625836499115], [-75.40721538067316, 40.6636255354327], [-75.40739149673476, 40.6636056759671], [-75.40773938985453, 40.663566446939264], [-75.40769261246534, 40.66330696225808], [-75.40769255105614, 40.663306619590216], [-75.40779771930615, 40.66330047423088], [-75.40779778215038, 40.663300470095216], [-75.40785399957977, 40.663296999623526], [-75.40785511785633, 40.66329695645043], [-75.40786517991823, 40.6632965696447], [-75.4081748731753, 40.66327963698806], [-75.40833026368098, 40.66326990391109], [-75.40853900009132, 40.66325558512072], [-75.40868808584199, 40.66324572514404], [-75.40873898677502, 40.663544332421694], [-75.40877307065014, 40.66375636405152], [-75.40878254500657, 40.663820825635824], [-75.40883125784983, 40.664104629793854], [-75.4088417615529, 40.6641654222157], [-75.40887746261504, 40.664382806920756], [-75.40888571176329, 40.6644306822811], [-75.40892244235305, 40.66464439780625], [-75.40893210810039, 40.664703370663], [-75.40896620210572, 40.66491514561193], [-75.40897825100117, 40.66498334816967], [-75.40902659921946, 40.665275938992686], [-75.40944899941651, 40.66523300017975], [-75.40965100007502, 40.66521200034181], [-75.4098520004416, 40.66519199974204], [-75.41001182575964, 40.66517702703965], [-75.41016837485985, 40.66516002232217], [-75.41051905655316, 40.66510814886567], [-75.41090159562127, 40.66507339201676], [-75.4112741610666, 40.66504023536507], [-75.41145236421251, 40.66502438188568], [-75.41162954553064, 40.665008618332365], [-75.41200487843234, 40.664973626953454], [-75.41235699953987, 40.66494200225933], [-75.41235755967635, 40.66494195229384], [-75.41244706600317, 40.6649344896578], [-75.4128404132734, 40.66489994525183], [-75.41322295177879, 40.66486509429823], [-75.41335987210398, 40.66485310298246], [-75.41361719909528, 40.66483056541272], [-75.41409741414432, 40.66478661089372], [-75.41428660415595, 40.66476952494397], [-75.41456500014249, 40.664743999950446], [-75.41456556609297, 40.66474395279403], [-75.41456585197224, 40.66474430538388], [-75.41519782238646, 40.664691476437326], [-75.41519201515064, 40.664651030647306], [-75.41519146982588, 40.664650722381964], [-75.41519192275476, 40.6646504549382], [-75.41780400026492, 40.663106999727965], [-75.41858729112377, 40.66264441931106], [-75.41858800007998, 40.66264400025296], [-75.42144200039448, 40.66095799971199], [-75.4216586390146, 40.66079087807235], [-75.42167897805251, 40.660809592905764], [-75.42218653593588, 40.66125829987332], [-75.42288183574166, 40.6618869323511], [-75.42292713190858, 40.66192762256152], [-75.42299427897039, 40.66198793872033], [-75.4231130230458, 40.66209356311123], [-75.42320806237547, 40.66217810269096], [-75.42343063706912, 40.66237608373514], [-75.42357831140026, 40.66251296329917], [-75.42371465556917, 40.66263845548611], [-75.42385986458589, 40.66276189392375], [-75.42407991428534, 40.66292477593607], [-75.42415619841783, 40.662988515954176], [-75.42419922769986, 40.66302446847879], [-75.42420255055697, 40.663027244918325], [-75.4242374750732, 40.663056426146326], [-75.42425186343462, 40.66306844755494], [-75.42463825328207, 40.66339129101321], [-75.42481209758891, 40.66354912521219], [-75.42491619650791, 40.663643636395015], [-75.4261137937868, 40.66473090834335], [-75.42618033510958, 40.66479131846602], [-75.42641118723753, 40.665000897408326], [-75.42761230427426, 40.666115783028836], [-75.42761247050666, 40.66611593680156], [-75.42823747164742, 40.66669604848021], [-75.42825885988154, 40.666715900132516], [-75.42846199825452, 40.66690444502486], [-75.43002862921361, 40.66833598166536], [-75.43010734859831, 40.6684074865132], [-75.43011854016173, 40.668417652273604], [-75.43012929351455, 40.66842742009574], [-75.43019332525081, 40.668937777714916], [-75.4302357005629, 40.66927533937274], [-75.43023664348632, 40.669282848855026], [-75.43024585612099, 40.66935623222095], [-75.43024600002029, 40.6693573764844], [-75.43024732979092, 40.669367972831594], [-75.43025153652606, 40.66940148415497], [-75.4302931905514, 40.66973329015767], [-75.43029338083187, 40.66973480469972], [-75.43029524525826, 40.66974965657429], [-75.43028445842968, 40.66998141389308], [-75.43028432933835, 40.6699841949554], [-75.4301965095346, 40.6718709551315], [-75.43018718668947, 40.67207124050877], [-75.43013510946402, 40.67228456624936], [-75.43013486564094, 40.67228556312277], [-75.4298480277702, 40.67346052242518], [-75.42984809812576, 40.67346060941407], [-75.4298487856255, 40.673461464568256], [-75.43039815230384, 40.67414458555242], [-75.43040408927489, 40.674151967902425], [-75.43040666124395, 40.67415516603549], [-75.43048253613665, 40.674249513219316], [-75.43048063187571, 40.674250178697804], [-75.42880805398978, 40.674834795586904], [-75.428073257691, 40.67509161845033], [-75.42796801156672, 40.67513678979368], [-75.4265541832237, 40.675713323011216], [-75.42651758601517, 40.67572872138333], [-75.42642792748686, 40.67576624281092], [-75.42637944117065, 40.67578653329571], [-75.421067341692, 40.67796414956129], [-75.41913026417704, 40.67875335359681], [-75.41882229911725, 40.67887166915633], [-75.4184062569431, 40.67903835188265], [-75.41645329955392, 40.67983989509024], [-75.41645300185998, 40.679840017022], [-75.41623108226354, 40.67993109551994], [-75.41140093987394, 40.681895308611345], [-75.4104736441669, 40.68226762873791], [-75.41044019662723, 40.682270043064236], [-75.41021837380354, 40.68228590139768], [-75.40966186661171, 40.68248930692978], [-75.40963044855415, 40.68250079038512], [-75.40957398903541, 40.68252142660591], [-75.40947224343176, 40.68255861384729], [-75.40946067420893, 40.68251044657468]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 427, \"PRECINCTID\": \"140005-1\", \"NAME\": \"HANOVER DISTRICT 5\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"HANOVER TOWNSHIP ELEMENTARY SCHOOL\", \"SiteAddress\": \"3890 JACKSONVILLE RD\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1667\", \"STATISTICS Ballots Cast - Total\": 1366.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"81.94%\", \"Presidential Electors DEM Biden and Harris\": \"754\", \"Presidential Electors REP Trump and Pence\": \"590\", \"Presidential Electors LIB Jorgensen and Cohen\": \"14\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"732\", \"Attorney General REP Heather Heidelbaugh\": \"577\", \"Attorney General LIB Daniel Wassmer\": \"11\", \"Attorney General GRE Richard L Weiss\": \"7\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"674\", \"Auditor General REP Timothy Defoor\": \"603\", \"Auditor General LIB Jennifer Moore\": \"31\", \"Auditor General GRE Olivia Faison\": \"12\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"702\", \"State Treasurer REP Stacy L. Garrity\": \"583\", \"State Treasurer LIB Joe Soloski\": \"23\", \"State Treasurer GRE Timothy Runkle\": \"11\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"743\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"598\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"736\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"597\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 55.19765739385066, \"Presidential Electors Pct REP\": 43.1918008784773, \"Presidential Electors Pct LIB\": 1.0248901903367496, \"PA Attorney General Pct DEM\": 53.58711566617862, \"PA Attorney General Pct REP\": 42.24011713030747, \"PA Attorney General Pct LIB\": 0.8052708638360175, \"PA Attorney General Pct GRE\": 0.5124450951683748, \"PA Auditor General Pct DEM\": 49.341142020497806, \"PA Auditor General Pct REP\": 44.143484626647144, \"PA Auditor General Pct LIB\": 2.2693997071742316, \"PA Auditor General Pct GRE\": 0.8784773060029283, \"PA State Treasurer Pct DEM\": 51.3909224011713, \"PA State Treasurer Pct REP\": 42.67935578330893, \"PA State Treasurer Pct LIB\": 1.6837481698389458, \"PA State Treasurer Pct GRE\": 0.8052708638360175, \"PA Representative in Congress 7th Congressional District Pct DEM\": 54.39238653001463, \"PA Representative in Congress 7th Congressional District Pct REP\": 43.77745241581259, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.8033025969138125, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37411907817976, 40.677447612913184], [-75.37433014048902, 40.67742631520563], [-75.3743297656554, 40.677423629241986], [-75.37467208606013, 40.67739180758766], [-75.37468981068079, 40.67739015989257], [-75.37486099634079, 40.67737632073345], [-75.37529022936582, 40.67734161799445], [-75.37567017547741, 40.677302438940444], [-75.37568388519928, 40.67730102509822], [-75.37568400065763, 40.677301005841244], [-75.37569094330675, 40.67729985703881], [-75.37614190222568, 40.67722519470425], [-75.3765037636973, 40.677165756967106], [-75.37660945143509, 40.67714076242418], [-75.376930202442, 40.67706490687742], [-75.37719351316791, 40.67700098102506], [-75.37727670383792, 40.67698078394003], [-75.37752590444906, 40.67690120433122], [-75.37752612944445, 40.67690113236039], [-75.37752625870247, 40.6769010908622], [-75.37761685465829, 40.67687215976751], [-75.37789213536152, 40.67676212123106], [-75.377952410431, 40.6767394396855], [-75.37795249197886, 40.67673940892225], [-75.3779526011035, 40.67673936791261], [-75.37795269102362, 40.67673933461804], [-75.37803011809923, 40.676710198706175], [-75.3785399520271, 40.67651992116448], [-75.3786211182897, 40.6764815112172], [-75.37887280769701, 40.6763624054176], [-75.37938611220247, 40.676099172616134], [-75.38033398005962, 40.67550407490768], [-75.3808327284785, 40.67516743029812], [-75.38121899824495, 40.67493299759517], [-75.38122659498259, 40.67492838718033], [-75.3812277327629, 40.67492769603314], [-75.38122788389185, 40.67492760452905], [-75.38122839050924, 40.674927296871154], [-75.38122860090742, 40.67492716874131], [-75.38140487699431, 40.674820183303545], [-75.38180318501863, 40.67462143565276], [-75.38233796314209, 40.67441337356122], [-75.38269948873095, 40.674296444557896], [-75.38276569402038, 40.67427503204547], [-75.38281750115083, 40.67426257569377], [-75.38374138880909, 40.67404043872426], [-75.38418698353954, 40.6739541303435], [-75.38422434035182, 40.67394689457422], [-75.38452156771636, 40.67390430486256], [-75.38481684606663, 40.673864636696], [-75.3848169043194, 40.67386462887544], [-75.3848169637545, 40.67386462107903], [-75.3848170636435, 40.6738646069008], [-75.38491472644326, 40.673851486758686], [-75.38532512796355, 40.67380201883541], [-75.38547610618066, 40.673783819875666], [-75.38574628992298, 40.67376073252406], [-75.38617334314651, 40.67372424028439], [-75.39024943786568, 40.67334132185814], [-75.3916650191902, 40.67320506385304], [-75.39209277940988, 40.67314816783263], [-75.39214610457121, 40.67314578738603], [-75.39248107599877, 40.67313083482812], [-75.39261001906598, 40.673131299535044], [-75.39261014209434, 40.67313130023437], [-75.39261046506726, 40.673131301394925], [-75.39261078567556, 40.673131302507436], [-75.39261107317782, 40.67313130294696], [-75.39291198569693, 40.67313238672389], [-75.39325168235402, 40.67315260498311], [-75.39330606472566, 40.673155841665206], [-75.39330604479346, 40.67315600521754], [-75.39330600002162, 40.67315599980334], [-75.39330077569025, 40.673198842377914], [-75.39330070751997, 40.673199403132365], [-75.39327075526634, 40.67344292346757], [-75.39327989006968, 40.6736452713652], [-75.39333486007448, 40.67393557612219], [-75.3933348840014, 40.67393570363048], [-75.39337118083414, 40.674127391326145], [-75.39338119449118, 40.674227561111245], [-75.39337817340949, 40.674313735916066], [-75.39337232964033, 40.67435180212055], [-75.39336206535586, 40.67439455937984], [-75.39335966140163, 40.674404573187324], [-75.39333399835105, 40.67446789234676], [-75.39330162988553, 40.67453009869039], [-75.39323635610928, 40.67465554274167], [-75.39285498908697, 40.67534926888597], [-75.39282112022248, 40.67544090918942], [-75.39282021320399, 40.675444167198286], [-75.39282020640815, 40.67544419228433], [-75.39279945605836, 40.675518725156216], [-75.39277181771644, 40.675638379263034], [-75.3927673648162, 40.67571397130375], [-75.39276566405101, 40.67580545829079], [-75.39276533180097, 40.67582333460425], [-75.39277621365439, 40.67589869422839], [-75.39277693922158, 40.67590371508248], [-75.39277698006349, 40.675903866357075], [-75.39277701568786, 40.67590399770657], [-75.39284563392312, 40.67615601214807], [-75.3928932353333, 40.676244209520924], [-75.3929294505765, 40.67631131141642], [-75.39299056820612, 40.67639398459811], [-75.39304124975538, 40.67646572084312], [-75.39310421683507, 40.67653443030841], [-75.39313764409262, 40.67657090642805], [-75.39317437974286, 40.67660272654169], [-75.39322427592904, 40.676645946085], [-75.3933501985953, 40.67673190985108], [-75.39354810009348, 40.67687365281681], [-75.39448793493503, 40.67748975528746], [-75.39496011325792, 40.677799281337656], [-75.3951457404405, 40.677931247316], [-75.3951995893185, 40.67798991764915], [-75.39521474386788, 40.67800649586498], [-75.39521478943111, 40.67800654633768], [-75.39525777101198, 40.678053566720365], [-75.39530539872972, 40.6781353646712], [-75.39535377442253, 40.67822155327971], [-75.39535391987835, 40.67822185982406], [-75.39535398823905, 40.678222002647615], [-75.39537980484918, 40.67827639846428], [-75.3954065830422, 40.678387118668084], [-75.39543199490652, 40.67856099948622], [-75.39543203966562, 40.67856130939114], [-75.39561798557992, 40.67966247566561], [-75.39572688064516, 40.680140203299985], [-75.3957653326274, 40.680428052878696], [-75.39583023523029, 40.68091390848462], [-75.39581189953266, 40.68122696267643], [-75.39579883187537, 40.681450081650915], [-75.40046507866977, 40.68153930588877], [-75.40046510127027, 40.68153896401928], [-75.4004670004725, 40.6815389997923], [-75.40046748610573, 40.68153902044097], [-75.40046747334289, 40.68153935169944], [-75.40247079203955, 40.68162488210751], [-75.40295895319585, 40.681641111463016], [-75.40321103033153, 40.68165264829581], [-75.40352190669556, 40.68168459500664], [-75.4050409326093, 40.681875778027994], [-75.40504088629983, 40.68187598609123], [-75.40504099941305, 40.681876000089495], [-75.40910194580314, 40.682458940138574], [-75.40946067420893, 40.68251044657468], [-75.40947224343176, 40.68255861384729], [-75.40942202740722, 40.682576967998955], [-75.40936448660378, 40.68259799939596], [-75.40930443108311, 40.6826199493365], [-75.40894759112477, 40.6827503711668], [-75.40874949098013, 40.68282277503508], [-75.40805892575602, 40.683075166134536], [-75.40800451974663, 40.683095050318315], [-75.40787025576746, 40.68314412128647], [-75.40770992721853, 40.68320271749596], [-75.40758634869385, 40.68324788251334], [-75.40743870728511, 40.683301841129214], [-75.40708182049916, 40.68343227261438], [-75.40679886392019, 40.68353568360631], [-75.40666359850424, 40.68358511854338], [-75.40629660764026, 40.68371923883029], [-75.40621207712076, 40.683750130918526], [-75.40612005369648, 40.6837837614769], [-75.40606778136492, 40.68375861519208], [-75.40597753636166, 40.68384226486655], [-75.40564578240837, 40.68395552871708], [-75.40517850931366, 40.68411505773448], [-75.40512405403892, 40.68413715211169], [-75.40503367012089, 40.68417382294441], [-75.40461830990242, 40.68432553849341], [-75.40399814648475, 40.68455205697187], [-75.40388997601647, 40.683866247745996], [-75.40388852451187, 40.68386663998659], [-75.40347701685607, 40.68397774025849], [-75.40101677349688, 40.68464774754225], [-75.40058555476685, 40.684765176054405], [-75.40058282442406, 40.6847658936848], [-75.39391586718286, 40.6865488718977], [-75.39315434163117, 40.68689525018095], [-75.39118433339675, 40.687768102386265], [-75.38639840929179, 40.689888368942], [-75.38454246152175, 40.690724297461784], [-75.38384818287429, 40.69103699175483], [-75.38365413286546, 40.69111945029044], [-75.38326955907014, 40.691282866354165], [-75.38236862542526, 40.69169214460082], [-75.38022806136765, 40.69265169433093], [-75.37677649422555, 40.69418753063774], [-75.37663619579533, 40.69425498078087], [-75.37662327776336, 40.694261193691574], [-75.3763701548865, 40.69259280605738], [-75.37635545661217, 40.69248986155669], [-75.37610771119004, 40.69075458408121], [-75.37568031206665, 40.687868017167204], [-75.37538881466823, 40.68583226719581], [-75.37521787223037, 40.68472364871604], [-75.37517416840184, 40.68442618640012], [-75.37495880262226, 40.682960313603516], [-75.3747671898457, 40.681656055498436], [-75.37476390534981, 40.681544867007624], [-75.37476405986243, 40.68154049465401], [-75.3747421578662, 40.68137659431015], [-75.37470924166931, 40.68113027762754], [-75.3746970260247, 40.68103886133755], [-75.37411907817976, 40.677447612913184]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 429, \"PRECINCTID\": \"200002-1\", \"NAME\": \"MOORE TWP EASTERN DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-02\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"SALEM UCC CHURCH OF MOORESTOWN\", \"SiteAddress\": \"2218 COMMUNITY DR\", \"City\": \"BATH\", \"STATISTICS Registered Voters - Total\": \"2866\", \"STATISTICS Ballots Cast - Total\": 2308.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"80.53%\", \"Presidential Electors DEM Biden and Harris\": \"783\", \"Presidential Electors REP Trump and Pence\": \"1494\", \"Presidential Electors LIB Jorgensen and Cohen\": \"22\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"809\", \"Attorney General REP Heather Heidelbaugh\": \"1369\", \"Attorney General LIB Daniel Wassmer\": \"35\", \"Attorney General GRE Richard L Weiss\": \"23\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"706\", \"Auditor General REP Timothy Defoor\": \"1407\", \"Auditor General LIB Jennifer Moore\": \"82\", \"Auditor General GRE Olivia Faison\": \"23\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"754\", \"State Treasurer REP Stacy L. Garrity\": \"1386\", \"State Treasurer LIB Joe Soloski\": \"54\", \"State Treasurer GRE Timothy Runkle\": \"28\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"777\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"1481\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"744\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"1516\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 33.925476603119584, \"Presidential Electors Pct REP\": 64.7313691507799, \"Presidential Electors Pct LIB\": 0.9532062391681109, \"PA Attorney General Pct DEM\": 35.051993067590985, \"PA Attorney General Pct REP\": 59.31542461005199, \"PA Attorney General Pct LIB\": 1.516464471403813, \"PA Attorney General Pct GRE\": 0.9965337954939341, \"PA Auditor General Pct DEM\": 30.589254766031193, \"PA Auditor General Pct REP\": 60.961871750433275, \"PA Auditor General Pct LIB\": 3.552859618717504, \"PA Auditor General Pct GRE\": 0.9965337954939341, \"PA State Treasurer Pct DEM\": 32.668977469670715, \"PA State Treasurer Pct REP\": 60.05199306759099, \"PA State Treasurer Pct LIB\": 2.3396880415944543, \"PA State Treasurer Pct GRE\": 1.2131715771230502, \"PA Representative in Congress 7th Congressional District Pct DEM\": 33.665511265164646, \"PA Representative in Congress 7th Congressional District Pct REP\": 64.1681109185442, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 1.3572638313887844, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38337990250908, 40.73803626656454], [-75.38338205228303, 40.73803609329012], [-75.38338204413776, 40.73803602195667], [-75.38366261131925, 40.738004018808724], [-75.3842133292574, 40.73796913897464], [-75.38488638754367, 40.737926507594025], [-75.38498757898236, 40.73792324897278], [-75.38720208148868, 40.73777399746113], [-75.39068323558831, 40.737559072561446], [-75.39344660829256, 40.73737864181073], [-75.39345564295783, 40.73737805140341], [-75.39380862629615, 40.73735829166087], [-75.3987526497848, 40.737081409458746], [-75.3989806842299, 40.73702802815451], [-75.3992694804254, 40.736960422913675], [-75.39927766579179, 40.73695861492418], [-75.3996222244841, 40.73693796340364], [-75.40017986906813, 40.73691424508548], [-75.4024955706903, 40.736805160425845], [-75.4042260003456, 40.744368000042755], [-75.40526700023669, 40.746665000126214], [-75.40529599963368, 40.747457999860686], [-75.40571399959146, 40.74971099955416], [-75.40586100021774, 40.75045600043964], [-75.40596000006484, 40.750941000403316], [-75.40630599944276, 40.75280900000985], [-75.4067961058967, 40.755205294381504], [-75.40508006740077, 40.75389861945478], [-75.40425250635236, 40.753272855309426], [-75.40403775670426, 40.75332205882725], [-75.40374913652295, 40.75393453979392], [-75.40356489067997, 40.75432552291413], [-75.40333528128704, 40.754825590921655], [-75.40268478843421, 40.754454117335875], [-75.40229606711374, 40.75423792222415], [-75.40226688124626, 40.75422068535851], [-75.4022225584776, 40.75419747968934], [-75.40181086913186, 40.75412188255825], [-75.40041870666468, 40.75387028028478], [-75.39947021764776, 40.75369707779222], [-75.39913876296603, 40.75363654952588], [-75.3993060854858, 40.754586803043246], [-75.39934582816018, 40.754812503623135], [-75.39939546316417, 40.755096495425654], [-75.39899959456477, 40.75572910520429], [-75.39880511479822, 40.75586932116358], [-75.39842663543742, 40.7561383669232], [-75.39834909615985, 40.756193486619736], [-75.39834223554979, 40.75619836356758], [-75.39807668936686, 40.756382958602906], [-75.3971028615315, 40.75604231560834], [-75.39616006156702, 40.755718080573544], [-75.39592291306397, 40.75563330180342], [-75.395890678616, 40.75562239030753], [-75.39585065163263, 40.75560884077384], [-75.39453758313162, 40.75588132840824], [-75.39421121384551, 40.755946783546236], [-75.39327379966879, 40.75613815595065], [-75.39272002441105, 40.75625270471899], [-75.39259897708902, 40.75628079387213], [-75.39272408258294, 40.75641993734884], [-75.39282599239178, 40.75652666485676], [-75.3928398859597, 40.75654121452184], [-75.39366230932927, 40.757440163251786], [-75.39416302995735, 40.757988840394894], [-75.39430123408576, 40.75814077490227], [-75.39485871897851, 40.75874431506394], [-75.39704280328108, 40.761130229279075], [-75.39743943093363, 40.76155939952732], [-75.39761756931568, 40.76175727278983], [-75.3978592692504, 40.762021987696], [-75.39787825732986, 40.76204691310927], [-75.39814262346616, 40.762334740005585], [-75.39818999561908, 40.76239404980528], [-75.39823429885993, 40.762449516588], [-75.39873484072717, 40.76297963420306], [-75.39901068896064, 40.76327489904404], [-75.39932560129549, 40.76361488535924], [-75.39983118927495, 40.76415608385604], [-75.40005138453289, 40.76439084144304], [-75.40008450887323, 40.76442463304816], [-75.40015534140859, 40.76441285198701], [-75.40074199996909, 40.76423732357786], [-75.40168345557278, 40.76395879309139], [-75.40285398725568, 40.763609377106484], [-75.40386294579697, 40.76331039962929], [-75.40457079073927, 40.76310246332985], [-75.40474963442294, 40.763048242438366], [-75.40480613186249, 40.76303325213196], [-75.40489974742715, 40.76304114960719], [-75.40550084444423, 40.76309773419767], [-75.40556540363234, 40.763103894994565], [-75.4056970029768, 40.76311645394253], [-75.40637728258241, 40.76318063934557], [-75.40676965231359, 40.76321652983981], [-75.40686488716347, 40.7632297778624], [-75.407070008336, 40.76325039132676], [-75.40702071745827, 40.76305890948425], [-75.40699447568157, 40.762983042670214], [-75.40696832972978, 40.76290443201798], [-75.40693957308342, 40.762823023815784], [-75.40688913764923, 40.76266747675505], [-75.40688496287028, 40.76265460147265], [-75.40681566556455, 40.762441435219216], [-75.40674934706797, 40.762272262135845], [-75.4066836437311, 40.762111338706035], [-75.40661217885538, 40.76198616504332], [-75.4065704277703, 40.76191496224362], [-75.40652710595768, 40.76183703447476], [-75.40648278631261, 40.76176183231168], [-75.40643595186201, 40.761681088744425], [-75.40638740904876, 40.76159756400858], [-75.40631941495542, 40.76147640766515], [-75.40604677719345, 40.76098507429946], [-75.40596360089339, 40.760833407808015], [-75.40589480319375, 40.76070948917202], [-75.40580991915348, 40.76055504140331], [-75.40569623622049, 40.76034629852774], [-75.40562150788229, 40.76021127689141], [-75.40561839867975, 40.760205760418735], [-75.40558070301465, 40.76013889103988], [-75.40548494697462, 40.75998559725104], [-75.40529297958165, 40.75964038740047], [-75.40519951431621, 40.759473238690525], [-75.40521621128312, 40.75946310898494], [-75.40703485547783, 40.75835980870792], [-75.40718342865438, 40.75826722008623], [-75.40719920404287, 40.75825835971326], [-75.40719995925477, 40.75825793624135], [-75.40854710050975, 40.76352802333061], [-75.40854629336509, 40.76352823586872], [-75.40823510056975, 40.76361002308906], [-75.4081751005014, 40.76377902325422], [-75.40810910124637, 40.764025023337226], [-75.40810972565369, 40.76402529447124], [-75.40821009980742, 40.76406902314316], [-75.4082671007382, 40.764100022898816], [-75.40836909980877, 40.76416602323902], [-75.40846309978947, 40.76424702332647], [-75.40850410048212, 40.764273023157955], [-75.40854210052653, 40.76430502332184], [-75.40857110064994, 40.76434202273319], [-75.40860010061354, 40.764393022989836], [-75.40861510011743, 40.76443202281659], [-75.40862910000669, 40.76448402322769], [-75.40862881816517, 40.76448632910048], [-75.40862010025374, 40.7645570233084], [-75.4086021006378, 40.764637022517036], [-75.40860245904072, 40.76463795670797], [-75.40862610055385, 40.7647000229267], [-75.40862580919381, 40.7647024997671], [-75.40862600027333, 40.76470299998268], [-75.40861899942583, 40.76476199987138], [-75.4086049996191, 40.76480099962037], [-75.4086032190679, 40.76482324329339], [-75.40860299969893, 40.76482599994478], [-75.40861200016504, 40.76484300010503], [-75.40865600003235, 40.764868999986554], [-75.40868600033343, 40.764897000314164], [-75.40871999959559, 40.76497500040469], [-75.40872899979337, 40.76502699998095], [-75.40877299945376, 40.76511100038497], [-75.40880200009593, 40.76514100020581], [-75.40880999958084, 40.76516700027567], [-75.40883099951323, 40.76520099976227], [-75.40890899947668, 40.76526099987114], [-75.40900000027395, 40.76531700014349], [-75.40902299969945, 40.76533600038052], [-75.40903300029669, 40.76536000037066], [-75.40906199996228, 40.76539699962509], [-75.409086000084, 40.76541700013499], [-75.40913899966742, 40.76546299971494], [-75.40918299998073, 40.76548000000082], [-75.40919699971494, 40.76552899961546], [-75.40922800034686, 40.76556199979369], [-75.40923399966297, 40.765618999739544], [-75.40925600024468, 40.765663999642555], [-75.409322999828, 40.76570800040466], [-75.409351000473, 40.76573200014376], [-75.40937800029047, 40.76577400009706], [-75.4094129994197, 40.76579399972327], [-75.40944900058504, 40.76582399993609], [-75.409517999447, 40.765862999776914], [-75.40956700056513, 40.76587200035079], [-75.40958600019464, 40.7658890001633], [-75.4096230005871, 40.765901999997126], [-75.40962482432529, 40.7659330193239], [-75.40962500002142, 40.76593600013926], [-75.40955199962761, 40.76593500000192], [-75.40952800007544, 40.76593899977424], [-75.40951841292626, 40.76595529731328], [-75.4095179998111, 40.76595599974933], [-75.40952400005742, 40.76599999967309], [-75.40956599967929, 40.766038000385315], [-75.4095939998197, 40.76604700017185], [-75.40962099986336, 40.766075000118775], [-75.40964199945675, 40.766111000193874], [-75.40967800014656, 40.76612600044156], [-75.40970299945862, 40.76612499986158], [-75.40975000013347, 40.76613299974296], [-75.40982400020525, 40.76615399961283], [-75.40986300037073, 40.766181999903885], [-75.40986578191688, 40.76620519221346], [-75.40986599969897, 40.76620700008248], [-75.40984899945494, 40.766269000078516], [-75.40983399958657, 40.766289999946906], [-75.40982800002436, 40.76630800032608], [-75.40934374171044, 40.76662351643986], [-75.41047209965707, 40.771016022943776], [-75.41057410024135, 40.77147702309673], [-75.4106301005689, 40.77149502295525], [-75.41068110022238, 40.77153302335091], [-75.4107060999287, 40.77154502251424], [-75.4107551005854, 40.77155402337786], [-75.41086309977253, 40.771549022638084], [-75.41090310078516, 40.77155102282903], [-75.41093710058536, 40.77155702256748], [-75.41113610150308, 40.77164202299111], [-75.41123210006344, 40.77170802296367], [-75.4112781002786, 40.77174502336809], [-75.41132210034492, 40.77179202330918], [-75.4113671002189, 40.77181002288396], [-75.41142609998282, 40.771853023335005], [-75.41148809983612, 40.77190902289318], [-75.41148780897537, 40.77191182764933], [-75.41148310022305, 40.771957023337954], [-75.4114832942286, 40.771957168675954], [-75.41148300005838, 40.771960000390564], [-75.41152500028288, 40.771991999769604], [-75.41153493528549, 40.77205062182926], [-75.4115350003271, 40.77205099968901], [-75.4115310000799, 40.77211300035236], [-75.41151699995861, 40.77215300029475], [-75.4115122160162, 40.77218457290511], [-75.41151200040589, 40.77218599999427], [-75.41152100023078, 40.77231000041175], [-75.41157299991909, 40.772549999960745], [-75.4115830001098, 40.77257900018412], [-75.41159600012013, 40.77262899986938], [-75.41159899988645, 40.77266000042666], [-75.41162600032077, 40.77273699993613], [-75.41165199952434, 40.7727789997679], [-75.41167167705485, 40.7728478704014], [-75.41167200028882, 40.772849000253494], [-75.41166310322461, 40.772887550810715], [-75.4116631002985, 40.77295202276843], [-75.41166299980789, 40.772952424320195], [-75.41165510021668, 40.77298302255057], [-75.41165546856546, 40.77298418393946], [-75.41166610013926, 40.77301802264743], [-75.41166710000344, 40.77304602278113], [-75.41170810068597, 40.77316102309354], [-75.41172710029451, 40.77318102315783], [-75.41179610040432, 40.77322102314468], [-75.4119271017337, 40.77328502285216], [-75.41200210028624, 40.77331502256758], [-75.41202509971751, 40.77333402299766], [-75.41206310025959, 40.77338702301635], [-75.41207910054358, 40.77349902277031], [-75.41207710061865, 40.77358202255902], [-75.412077065161, 40.77358229209633], [-75.4120770004779, 40.77358499961079], [-75.41206300047617, 40.77368299998875], [-75.41202299964323, 40.77382200011847], [-75.41195600018925, 40.77399400027341], [-75.41193699972787, 40.77406600000413], [-75.41192300013846, 40.77416500029569], [-75.41187600054762, 40.774248000383025], [-75.41167500015482, 40.77470100040439], [-75.41164799984041, 40.774751999961005], [-75.41153455684152, 40.775206763468425], [-75.41153400018774, 40.7752089998478], [-75.41222003851614, 40.77632743187198], [-75.4122209994607, 40.776328999751776], [-75.41179434602508, 40.77689421673369], [-75.41189309980587, 40.77698902335616], [-75.41198410017128, 40.77713302250902], [-75.41243010064147, 40.7783490233523], [-75.41245810064403, 40.77850102275217], [-75.41249309968347, 40.77861702327457], [-75.41263509976885, 40.7798730231789], [-75.41305110068363, 40.78154202275094], [-75.41426209991738, 40.78630902262138], [-75.41426316746919, 40.78631325368104], [-75.41450199985428, 40.787260000158874], [-75.41351599960966, 40.78789500008619], [-75.41233500028216, 40.78864399961986], [-75.411308000313, 40.789296000024756], [-75.40997200040363, 40.78884100036083], [-75.40955100056695, 40.78824800026522], [-75.40782499955223, 40.7889149999931], [-75.40742699942538, 40.78900599974144], [-75.40719899977226, 40.78901299993638], [-75.40562200013726, 40.78923799986351], [-75.39247400003688, 40.79112099980424], [-75.38646599967446, 40.79144199996271], [-75.38634599986149, 40.79159799986636], [-75.38591900055366, 40.792109999890855], [-75.38418899942045, 40.79225299967435], [-75.36800899943539, 40.79452099998884], [-75.3678470001095, 40.79454100023458], [-75.36771599995008, 40.794582000411], [-75.36581905084005, 40.79481396325169], [-75.36779093710634, 40.79124803440009], [-75.36782209815205, 40.79123528775289], [-75.36782759859135, 40.79123299799405], [-75.36794068052271, 40.791046806988994], [-75.36797532453902, 40.790989765124344], [-75.36824241267911, 40.790513528338174], [-75.36860365580947, 40.789850999571506], [-75.36861144761028, 40.78983670885294], [-75.36844278267542, 40.78924496787903], [-75.36687064479426, 40.784103136296], [-75.36677634398153, 40.78379468931861], [-75.36661891516238, 40.78327975470402], [-75.36659719642391, 40.783209333063134], [-75.36590038937427, 40.78094991305892], [-75.36534917490795, 40.779162467401875], [-75.36527822857512, 40.778926745142954], [-75.36498891217592, 40.77796546542217], [-75.36497118728501, 40.77790657240194], [-75.36444622488082, 40.7762131347743], [-75.36422876915961, 40.77549926801638], [-75.36300856326653, 40.771493259921236], [-75.36281493261741, 40.77086925120417], [-75.36230623901629, 40.76922983981001], [-75.36207179893952, 40.768453329014385], [-75.36186522563311, 40.76776910089647], [-75.3616252911372, 40.76601165730662], [-75.36154987447098, 40.7657713928212], [-75.36145362525458, 40.76545690640348], [-75.36125399406541, 40.76507919829207], [-75.36073302163047, 40.76409080228198], [-75.36048862259675, 40.763626708335465], [-75.36018218903287, 40.76300328226582], [-75.36008759978327, 40.76281994048869], [-75.35999469585981, 40.762614666884076], [-75.35987409612996, 40.7623758734689], [-75.35984858213588, 40.76232421852569], [-75.35984719852473, 40.762321417217], [-75.35746921590136, 40.75750658900118], [-75.35590265423076, 40.75432536089694], [-75.35349638438575, 40.750472069384365], [-75.35286102031134, 40.749458880852735], [-75.35257101981757, 40.74899641727888], [-75.35051770025994, 40.74572178763209], [-75.34825764341716, 40.742137904721424], [-75.34814244770979, 40.74192683835461], [-75.34900124157122, 40.74183277444262], [-75.35475498924997, 40.74120239709811], [-75.35892521069326, 40.740730361470824], [-75.35902579665266, 40.740718970027416], [-75.36253851154561, 40.740334778362765], [-75.36626807256798, 40.73991700749516], [-75.37198846412241, 40.73929614383119], [-75.37273523156497, 40.73920821466416], [-75.374890597794, 40.738972544743696], [-75.37685478496473, 40.73875773979061], [-75.37979710309553, 40.73843590353742], [-75.38113916656363, 40.73828908037265], [-75.38220578217489, 40.738164285820126], [-75.38328801242164, 40.73804628606594], [-75.38337990250908, 40.73803626656454]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 430, \"PRECINCTID\": \"080001-1\", \"NAME\": \"EAST ALLEN TWP EASTERN DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-2-08\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"GREEN BRIAR VILLAGE\", \"SiteAddress\": \"63A GREEN BRIAR DR N\", \"City\": \"BATH\", \"STATISTICS Registered Voters - Total\": \"1803\", \"STATISTICS Ballots Cast - Total\": 1404.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"77.87%\", \"Presidential Electors DEM Biden and Harris\": \"526\", \"Presidential Electors REP Trump and Pence\": \"858\", \"Presidential Electors LIB Jorgensen and Cohen\": \"15\", \"Presidential Electors Write-In Totals\": \"1\", \"Attorney General DEM Josh Shapiro\": \"540\", \"Attorney General REP Heather Heidelbaugh\": \"793\", \"Attorney General LIB Daniel Wassmer\": \"16\", \"Attorney General GRE Richard L Weiss\": \"12\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"474\", \"Auditor General REP Timothy Defoor\": \"835\", \"Auditor General LIB Jennifer Moore\": \"38\", \"Auditor General GRE Olivia Faison\": \"9\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"484\", \"State Treasurer REP Stacy L. Garrity\": \"813\", \"State Treasurer LIB Joe Soloski\": \"36\", \"State Treasurer GRE Timothy Runkle\": \"15\", \"State Treasurer Write-In Totals\": \"3\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"523\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"850\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"529\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"836\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 37.464387464387464, \"Presidential Electors Pct REP\": 61.111111111111114, \"Presidential Electors Pct LIB\": 1.0683760683760684, \"PA Attorney General Pct DEM\": 38.46153846153847, \"PA Attorney General Pct REP\": 56.481481481481474, \"PA Attorney General Pct LIB\": 1.1396011396011396, \"PA Attorney General Pct GRE\": 0.8547008547008548, \"PA Auditor General Pct DEM\": 33.76068376068376, \"PA Auditor General Pct REP\": 59.47293447293447, \"PA Auditor General Pct LIB\": 2.7065527065527064, \"PA Auditor General Pct GRE\": 0.641025641025641, \"PA State Treasurer Pct DEM\": 34.472934472934476, \"PA State Treasurer Pct REP\": 57.90598290598291, \"PA State Treasurer Pct LIB\": 2.564102564102564, \"PA State Treasurer Pct GRE\": 1.0683760683760684, \"PA Representative in Congress 7th Congressional District Pct DEM\": 37.250712250712255, \"PA Representative in Congress 7th Congressional District Pct REP\": 60.541310541310544, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.8256492284531427, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37662327776336, 40.694261193691574], [-75.37663619579533, 40.69425498078087], [-75.37677649422555, 40.69418753063774], [-75.38022806136765, 40.69265169433093], [-75.38236862542526, 40.69169214460082], [-75.38326955907014, 40.691282866354165], [-75.38365413286546, 40.69111945029044], [-75.38384818287429, 40.69103699175483], [-75.38454246152175, 40.690724297461784], [-75.38639840929179, 40.689888368942], [-75.39118433339675, 40.687768102386265], [-75.39315434163117, 40.68689525018095], [-75.39391586718286, 40.6865488718977], [-75.40058282442406, 40.6847658936848], [-75.40058555476685, 40.684765176054405], [-75.40101677349688, 40.68464774754225], [-75.40347701685607, 40.68397774025849], [-75.40388852451187, 40.68386663998659], [-75.40388997601647, 40.683866247745996], [-75.40399814648475, 40.68455205697187], [-75.40461830990242, 40.68432553849341], [-75.40503367012089, 40.68417382294441], [-75.40512405403892, 40.68413715211169], [-75.40517850931366, 40.68411505773448], [-75.40564578240837, 40.68395552871708], [-75.40597753636166, 40.68384226486655], [-75.40606778136492, 40.68375861519208], [-75.40612005369648, 40.6837837614769], [-75.40621207712076, 40.683750130918526], [-75.40629660764026, 40.68371923883029], [-75.40666359850424, 40.68358511854338], [-75.40679886392019, 40.68353568360631], [-75.40708182049916, 40.68343227261438], [-75.40743870728511, 40.683301841129214], [-75.40758634869385, 40.68324788251334], [-75.40770992721853, 40.68320271749596], [-75.40787025576746, 40.68314412128647], [-75.40800451974663, 40.683095050318315], [-75.40805892575602, 40.683075166134536], [-75.40874949098013, 40.68282277503508], [-75.40894759112477, 40.6827503711668], [-75.40930443108311, 40.6826199493365], [-75.40936448660378, 40.68259799939596], [-75.40942202740722, 40.682576967998955], [-75.40947224343176, 40.68255861384729], [-75.40957398903541, 40.68252142660591], [-75.40963044855415, 40.68250079038512], [-75.40966186661171, 40.68248930692978], [-75.41021837380354, 40.68228590139768], [-75.41044019662723, 40.682270043064236], [-75.4104736441669, 40.68226762873791], [-75.41140093987394, 40.681895308611345], [-75.41623108226354, 40.67993109551994], [-75.41645300185998, 40.679840017022], [-75.4164520689071, 40.67984313323372], [-75.41624694440979, 40.680383188440004], [-75.41613424802716, 40.68066412404324], [-75.4161341768319, 40.68066430007941], [-75.41606136296102, 40.680845813307336], [-75.41562845111845, 40.681923339779466], [-75.41520659949363, 40.68297330034965], [-75.4159918627786, 40.68472809553013], [-75.4161559378747, 40.684895200883965], [-75.41619300121795, 40.68493294846149], [-75.41673532510966, 40.68462689360066], [-75.41676390678136, 40.6846116801815], [-75.41677362811468, 40.68460650574329], [-75.41696028438984, 40.6848478182019], [-75.41703930291182, 40.68494997475955], [-75.41712939821403, 40.68555420478032], [-75.41713101238365, 40.685904999952115], [-75.41713101303026, 40.68590504951221], [-75.41714768679196, 40.685970254620116], [-75.41718378841075, 40.68609926173172], [-75.41722399123893, 40.68616210867598], [-75.4172797045389, 40.68621969125928], [-75.41728000033297, 40.68621999989594], [-75.41730146238359, 40.68623481190856], [-75.41735102842553, 40.68626926206031], [-75.41742645868618, 40.68630441522328], [-75.41746333171832, 40.68631410137073], [-75.41751135275074, 40.68632671606586], [-75.41757745337652, 40.686339625853265], [-75.4176107752078, 40.68634613438851], [-75.41768797867286, 40.68635618195281], [-75.41774509260607, 40.686358446591505], [-75.41775822001185, 40.68635896730449], [-75.4178782026027, 40.68635760438904], [-75.41796901573315, 40.68635369550018], [-75.41796906789241, 40.68635369294549], [-75.41802603068484, 40.68635124113012], [-75.41802631513328, 40.68635122883208], [-75.41810049907703, 40.686942126709006], [-75.4191379995238, 40.68843699973092], [-75.42067800022593, 40.6903400002373], [-75.42117600028051, 40.690127999766005], [-75.42225099979709, 40.69185699996847], [-75.42225149667908, 40.691859055777606], [-75.42261099987, 40.69334500005508], [-75.42457700049562, 40.696363000319955], [-75.42847800054427, 40.7023480002623], [-75.42847836937094, 40.702348562565994], [-75.43392900057817, 40.71065300012834], [-75.43413999947234, 40.71138299978264], [-75.43501300054474, 40.71129900022318], [-75.43521400022931, 40.71293600044897], [-75.43542599988598, 40.71293600009582], [-75.43584998670276, 40.712899001179984], [-75.43585507532605, 40.71293944610532], [-75.43597545026712, 40.71389463695713], [-75.43602416794319, 40.71433982397453], [-75.43602398170073, 40.71433983467391], [-75.43602399968837, 40.714339999887194], [-75.4380148668156, 40.71696082468464], [-75.43801500047822, 40.71696100030966], [-75.43918900009243, 40.718629000190774], [-75.44064099964098, 40.72090300037529], [-75.4419270000329, 40.722855999783654], [-75.44192747495899, 40.72285671999288], [-75.44281544928363, 40.724203165778185], [-75.44281599964302, 40.72420400008786], [-75.4428509254747, 40.724297798990186], [-75.44285100028729, 40.72429799956319], [-75.44298569343677, 40.724586835466084], [-75.4430380326847, 40.7246988107864], [-75.44312716495696, 40.72486206809438], [-75.44322896517654, 40.7249717771434], [-75.44339058370831, 40.725073665722775], [-75.44389116591996, 40.725263032421566], [-75.44457896897957, 40.72549198403792], [-75.44457900289355, 40.72549199642255], [-75.44520786424474, 40.72572868351675], [-75.44542809664893, 40.72583173227315], [-75.44560113471705, 40.72594285370283], [-75.44608300004688, 40.726329000256534], [-75.44608324317967, 40.72632919606102], [-75.44679147755376, 40.726989108241064], [-75.44730375654306, 40.727453789849626], [-75.44792386072169, 40.72801626602557], [-75.4482085812188, 40.72831794034656], [-75.4484236066103, 40.72857335655183], [-75.44864482555836, 40.72899037930355], [-75.44886229174396, 40.72944906563736], [-75.44886252689993, 40.72944956395882], [-75.44915142765959, 40.73005891307347], [-75.44987991198383, 40.73149968735916], [-75.45009004039595, 40.73189855392793], [-75.4502461615026, 40.73216180818186], [-75.45040597786367, 40.73234964980174], [-75.45054100051487, 40.732508000248494], [-75.45073940070999, 40.73268812708598], [-75.45076336596938, 40.73270988499009], [-75.45020751430371, 40.732737049910504], [-75.44559978528667, 40.73358299230302], [-75.44205211572223, 40.734249482634475], [-75.4418392156304, 40.734287969543544], [-75.44016245783315, 40.73459106580484], [-75.43584176042799, 40.73540132193743], [-75.43526660907543, 40.73551495761729], [-75.43503799043141, 40.7355616415793], [-75.4349021704051, 40.73558937565017], [-75.43406579041702, 40.73576764056663], [-75.42775712001101, 40.73696170950378], [-75.42109417997389, 40.736006440598295], [-75.42041252089602, 40.73590868761863], [-75.42012506929248, 40.73587039757913], [-75.41957613120785, 40.735903824333285], [-75.41614492282204, 40.73608391679531], [-75.41614372687728, 40.736083979229576], [-75.41573738530893, 40.73610530007658], [-75.40989549230218, 40.736427509733105], [-75.40779548740676, 40.736557279713054], [-75.40633298894997, 40.736624291135264], [-75.40342236764101, 40.73676148897565], [-75.4024955706903, 40.736805160425845], [-75.40017986906813, 40.73691424508548], [-75.3996222244841, 40.73693796340364], [-75.39927766579179, 40.73695861492418], [-75.3992694804254, 40.736960422913675], [-75.3989806842299, 40.73702802815451], [-75.3987526497848, 40.737081409458746], [-75.39380862629615, 40.73735829166087], [-75.39345564295783, 40.73737805140341], [-75.39344660829256, 40.73737864181073], [-75.39068323558831, 40.737559072561446], [-75.38720208148868, 40.73777399746113], [-75.38498757898236, 40.73792324897278], [-75.38488638754367, 40.737926507594025], [-75.3842133292574, 40.73796913897464], [-75.38366261131925, 40.738004018808724], [-75.38338204413776, 40.73803602195667], [-75.38338205228303, 40.73803609329012], [-75.38337990250908, 40.73803626656454], [-75.38336914769673, 40.73793170685786], [-75.38322354628217, 40.73663434770443], [-75.3831933842044, 40.736439667181244], [-75.38286109768815, 40.7342948212747], [-75.38286135741158, 40.73429474369304], [-75.38289180735936, 40.734285679613535], [-75.38530319702447, 40.733567827930685], [-75.38530325091226, 40.733567811011504], [-75.38835024739413, 40.73266065024929], [-75.38885961075701, 40.73380408728582], [-75.38893787942528, 40.73383665528847], [-75.38894997051815, 40.73384043709384], [-75.38982959120355, 40.734115557365314], [-75.38983226941242, 40.73411638385558], [-75.39365951739649, 40.73532275520341], [-75.39368687026567, 40.73533155417942], [-75.39409615933712, 40.73546321586289], [-75.39425740233814, 40.73551508403342], [-75.39880646269324, 40.73554434051336], [-75.39923327492072, 40.735548677622525], [-75.40028449680612, 40.73555935384947], [-75.40032844229583, 40.73555980024872], [-75.40066842918912, 40.7355632509267], [-75.40094548565413, 40.73556302356541], [-75.40095366417107, 40.735373013539295], [-75.40105954417331, 40.73291292513866], [-75.40106590282244, 40.73276517935432], [-75.40108445880581, 40.73226041421624], [-75.40113120204542, 40.73123348866942], [-75.40115378693496, 40.7305360842025], [-75.401169639017, 40.73013440331123], [-75.40124011139787, 40.72966741347461], [-75.40139666623108, 40.72645473750303], [-75.40133507997851, 40.72638048709287], [-75.4012858424366, 40.72632112448993], [-75.40022979395896, 40.725221849650566], [-75.39965549923417, 40.72464115207702], [-75.39920891596715, 40.72404673572692], [-75.39838633211801, 40.7232135372959], [-75.39810091613276, 40.72293857848348], [-75.39895621629746, 40.7192213639224], [-75.39908736487055, 40.71865134123584], [-75.39918120534756, 40.71826539428445], [-75.39918959214604, 40.71823090114675], [-75.39900620853983, 40.71831496598275], [-75.39848241438665, 40.718638998176566], [-75.39823307559612, 40.718786192144286], [-75.39753904917377, 40.71919589601172], [-75.39526894780414, 40.72053777400103], [-75.39497409529513, 40.72071284243577], [-75.39403028691707, 40.72128068776079], [-75.3927536223534, 40.72125458514499], [-75.3915878553512, 40.72123073222372], [-75.39147187542972, 40.72124476343494], [-75.38992807354545, 40.72138919384762], [-75.3898361388555, 40.721397793833255], [-75.3853646760929, 40.721805474593374], [-75.38328068413695, 40.72200410810297], [-75.3830984317003, 40.72205522166095], [-75.38286562234826, 40.72213276090549], [-75.38261997178901, 40.722219926438655], [-75.38182165843648, 40.722503193705116], [-75.38162300174893, 40.72257368188692], [-75.38110632512216, 40.72274208506279], [-75.3810680443518, 40.72275456154607], [-75.38104305717921, 40.72264439099092], [-75.38097745802246, 40.722246647507454], [-75.38100733125857, 40.72225674337722], [-75.38066062899837, 40.72013999112518], [-75.38026048177521, 40.71767749695624], [-75.38019547676431, 40.71728241028854], [-75.37999691999273, 40.71611813498109], [-75.37982256423993, 40.71497234065827], [-75.37979554842741, 40.71497511028383], [-75.379617663829, 40.71386122723489], [-75.37956542642497, 40.713534122653854], [-75.37952852944025, 40.71335257257305], [-75.37949644968575, 40.71315432164525], [-75.37883829749595, 40.70908663923653], [-75.37849914583529, 40.707015614888], [-75.37821816279315, 40.70513721316326], [-75.37815397016116, 40.704681465330964], [-75.37804149071914, 40.703983782770024], [-75.37771971511775, 40.701830818386355], [-75.37750593573286, 40.70040102138039], [-75.3773205894865, 40.699161338483805], [-75.37709956474326, 40.697630131393076], [-75.37682690798694, 40.695671402850195], [-75.37662327776336, 40.694261193691574]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 431, \"PRECINCTID\": \"080002-1\", \"NAME\": \"EAST ALLEN TWP WESTERN DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-2-08\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"EAST ALLEN VOLUNTEER FIRE COMPANY\", \"SiteAddress\": \"5354 NOR-BATH BLVD\", \"City\": \"NORTHAMPTON\", \"STATISTICS Registered Voters - Total\": \"1958\", \"STATISTICS Ballots Cast - Total\": 1627.0, \"STATISTICS Ballots Cast - Blank\": \"2\", \"STATISTICS Voter Turnout - Total\": \"83.10%\", \"Presidential Electors DEM Biden and Harris\": \"692\", \"Presidential Electors REP Trump and Pence\": \"904\", \"Presidential Electors LIB Jorgensen and Cohen\": \"24\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"686\", \"Attorney General REP Heather Heidelbaugh\": \"855\", \"Attorney General LIB Daniel Wassmer\": \"26\", \"Attorney General GRE Richard L Weiss\": \"8\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"615\", \"Auditor General REP Timothy Defoor\": \"905\", \"Auditor General LIB Jennifer Moore\": \"40\", \"Auditor General GRE Olivia Faison\": \"7\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"640\", \"State Treasurer REP Stacy L. Garrity\": \"881\", \"State Treasurer LIB Joe Soloski\": \"37\", \"State Treasurer GRE Timothy Runkle\": \"7\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"674\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"909\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"685\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"896\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 42.53226797787339, \"Presidential Electors Pct REP\": 55.562384757221885, \"Presidential Electors Pct LIB\": 1.4751075599262446, \"PA Attorney General Pct DEM\": 42.16349108789183, \"PA Attorney General Pct REP\": 52.55070682237246, \"PA Attorney General Pct LIB\": 1.5980331899200986, \"PA Attorney General Pct GRE\": 0.4917025199754148, \"PA Auditor General Pct DEM\": 37.79963122311002, \"PA Auditor General Pct REP\": 55.62384757221881, \"PA Auditor General Pct LIB\": 2.458512599877074, \"PA Auditor General Pct GRE\": 0.43023970497848807, \"PA State Treasurer Pct DEM\": 39.336201598033185, \"PA State Treasurer Pct REP\": 54.14874001229256, \"PA State Treasurer Pct LIB\": 2.2741241548862936, \"PA State Treasurer Pct GRE\": 0.43023970497848807, \"PA Representative in Congress 7th Congressional District Pct DEM\": 41.4259373079287, \"PA Representative in Congress 7th Congressional District Pct REP\": 55.86969883220652, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.9567886714339481, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.43585507532605, 40.71293944610532], [-75.43584998670276, 40.712899001179984], [-75.43542599988598, 40.71293600009582], [-75.43521400022931, 40.71293600044897], [-75.43501300054474, 40.71129900022318], [-75.43413999947234, 40.71138299978264], [-75.43392900057817, 40.71065300012834], [-75.42847836937094, 40.702348562565994], [-75.42847800054427, 40.7023480002623], [-75.42457700049562, 40.696363000319955], [-75.42261099987, 40.69334500005508], [-75.42225149667908, 40.691859055777606], [-75.42225099979709, 40.69185699996847], [-75.42117600028051, 40.690127999766005], [-75.42067800022593, 40.6903400002373], [-75.4191379995238, 40.68843699973092], [-75.41810049907703, 40.686942126709006], [-75.41802631513328, 40.68635122883208], [-75.41802603068484, 40.68635124113012], [-75.41796906789241, 40.68635369294549], [-75.41796901573315, 40.68635369550018], [-75.4178782026027, 40.68635760438904], [-75.41775822001185, 40.68635896730449], [-75.41774509260607, 40.686358446591505], [-75.41768797867286, 40.68635618195281], [-75.4176107752078, 40.68634613438851], [-75.41757745337652, 40.686339625853265], [-75.41751135275074, 40.68632671606586], [-75.41746333171832, 40.68631410137073], [-75.41742645868618, 40.68630441522328], [-75.41735102842553, 40.68626926206031], [-75.41730146238359, 40.68623481190856], [-75.41728000033297, 40.68621999989594], [-75.4172797045389, 40.68621969125928], [-75.41722399123893, 40.68616210867598], [-75.41718378841075, 40.68609926173172], [-75.41714768679196, 40.685970254620116], [-75.41713101303026, 40.68590504951221], [-75.41713101238365, 40.685904999952115], [-75.41712939821403, 40.68555420478032], [-75.41703930291182, 40.68494997475955], [-75.41696028438984, 40.6848478182019], [-75.41677362811468, 40.68460650574329], [-75.41676390678136, 40.6846116801815], [-75.41673532510966, 40.68462689360066], [-75.41619300121795, 40.68493294846149], [-75.4161559378747, 40.684895200883965], [-75.4159918627786, 40.68472809553013], [-75.41520659949363, 40.68297330034965], [-75.41562845111845, 40.681923339779466], [-75.41606136296102, 40.680845813307336], [-75.4161341768319, 40.68066430007941], [-75.41613424802716, 40.68066412404324], [-75.41624694440979, 40.680383188440004], [-75.4164520689071, 40.67984313323372], [-75.41645300185998, 40.679840017022], [-75.41645330677386, 40.679839891632106], [-75.41777146325835, 40.679298892514225], [-75.4184062569431, 40.67903835188265], [-75.41882229911725, 40.67887166915633], [-75.41913026417704, 40.67875335359681], [-75.421067341692, 40.67796414956129], [-75.42637944117065, 40.67578653329571], [-75.42642792748686, 40.67576624281092], [-75.42648984374625, 40.675740330695305], [-75.42651758601517, 40.67572872138333], [-75.4265541832237, 40.675713323011216], [-75.42796801156672, 40.67513678979368], [-75.428073257691, 40.67509161845033], [-75.42879683539118, 40.67483871676678], [-75.42880805398978, 40.674834795586904], [-75.43048063187571, 40.674250178697804], [-75.43048253613665, 40.674249513219316], [-75.43443472394799, 40.672816025157594], [-75.4370972596208, 40.67185019310738], [-75.44333099061731, 40.669588565375115], [-75.44333459912725, 40.669587255250086], [-75.44333502545064, 40.66958803666224], [-75.44439810942107, 40.67153665941939], [-75.44598358276885, 40.67449390777542], [-75.446045262306, 40.67458831902689], [-75.44647898814394, 40.67540239751653], [-75.44722544392772, 40.67614176998158], [-75.44730583148835, 40.67629375502031], [-75.4480866403936, 40.67776996336838], [-75.44907574104684, 40.6796139994944], [-75.45036444366781, 40.68203243111675], [-75.45092915552227, 40.68307973332775], [-75.45093000381726, 40.68308129509709], [-75.45133324245441, 40.68442099506577], [-75.45282609033504, 40.68717964893305], [-75.4536140129865, 40.68863556329139], [-75.45383053870657, 40.68904024331588], [-75.45425880227576, 40.689840636491375], [-75.45430741207775, 40.689931483109284], [-75.45449793955515, 40.69032034979138], [-75.45530422030443, 40.691824087000505], [-75.4559345289333, 40.693015094673086], [-75.45717025210175, 40.695309254164854], [-75.45804685463648, 40.696949501494764], [-75.45830276872401, 40.69742330180738], [-75.45830416701702, 40.69742589142674], [-75.45833444245889, 40.6974819426743], [-75.45833662760056, 40.69750053959138], [-75.45838601122757, 40.69792071041448], [-75.45844917069259, 40.69845808529881], [-75.4584494623769, 40.69846056927735], [-75.4589879335805, 40.703041669090446], [-75.45902860853526, 40.703387681763196], [-75.45908111582177, 40.7038343573654], [-75.45908189148699, 40.7038380625259], [-75.45908217667879, 40.70404134016899], [-75.45905084481862, 40.704298909623205], [-75.45899690654302, 40.70461103347356], [-75.45865133988055, 40.70622144840408], [-75.45855076828613, 40.70669012145706], [-75.4583311311941, 40.70775803903892], [-75.45818188274937, 40.70844168877219], [-75.45816917847236, 40.70890765671246], [-75.4582443316192, 40.70927701712768], [-75.45834524291986, 40.70954611557261], [-75.45844575922176, 40.70977999677906], [-75.45861767665228, 40.710173297015885], [-75.4586224060244, 40.710184509475766], [-75.45866814704294, 40.710323454717866], [-75.45882569123253, 40.710696220729155], [-75.45894143916442, 40.71096504661703], [-75.4590182720688, 40.71112796525236], [-75.45925838569755, 40.71163710830348], [-75.45973427346166, 40.712844616273095], [-75.45973688044914, 40.712850864598686], [-75.45981799201697, 40.713045328783004], [-75.45984422715848, 40.7131225565929], [-75.45986319090515, 40.71320569000901], [-75.45986425487085, 40.71321035392976], [-75.45988189931425, 40.713287702241004], [-75.45987566216493, 40.71344528621443], [-75.45987546338141, 40.71345031887843], [-75.45987545992747, 40.713450385472306], [-75.45987539742147, 40.713451976020046], [-75.45987513543216, 40.71345417429985], [-75.45987436105989, 40.713460672077666], [-75.45986546766564, 40.7135353427057], [-75.45986522229383, 40.713537400782634], [-75.45985391292238, 40.7136323430345], [-75.45955474151057, 40.71523665473498], [-75.45951752013735, 40.71544462617108], [-75.45944645538688, 40.71584168654305], [-75.45934099022689, 40.71643094255873], [-75.45931735925433, 40.71656297579987], [-75.45914849916302, 40.71750866762034], [-75.45894034390187, 40.71867439472225], [-75.45889030658388, 40.71895461581686], [-75.45885686097337, 40.719141914287654], [-75.45884653305572, 40.71919974862088], [-75.4587399862678, 40.71979641975043], [-75.4582953302366, 40.72228639461979], [-75.45829532154012, 40.72228644129157], [-75.45829257271637, 40.72230183545794], [-75.45829230334067, 40.72230334534579], [-75.45782182498428, 40.72503019861703], [-75.45773102055631, 40.725570405818544], [-75.45768068266916, 40.72586114733125], [-75.45766071579314, 40.72597801928129], [-75.45758674028107, 40.726410588094964], [-75.45755888161831, 40.726565916665834], [-75.4572992061659, 40.7280330537251], [-75.45713594778002, 40.7289608105905], [-75.45711256428008, 40.729122662071475], [-75.45709540127648, 40.7292674764211], [-75.45708774113974, 40.72938173118891], [-75.45708840038188, 40.72947255382884], [-75.4570900606266, 40.72958913851455], [-75.45710001536567, 40.729793121254374], [-75.45711343586237, 40.73000575290595], [-75.45714683884157, 40.730514091096985], [-75.45717280062813, 40.73079990476237], [-75.45719759002213, 40.73095484264297], [-75.45722443602646, 40.731102647787836], [-75.45725359272012, 40.731258148454536], [-75.45731914524056, 40.7315865743531], [-75.45745337432315, 40.7322667246539], [-75.45745478140103, 40.73227424649016], [-75.45739803868221, 40.732277983892715], [-75.45732775864171, 40.73228246460032], [-75.45651024479528, 40.73233458302444], [-75.45492920588472, 40.73243536246964], [-75.45338363606042, 40.732533858559236], [-75.45096851469475, 40.732697119298614], [-75.45082216420876, 40.732707011295346], [-75.45076341106288, 40.73270988228003], [-75.45076336596938, 40.73270988499009], [-75.45073940070999, 40.73268812708598], [-75.45054100051487, 40.732508000248494], [-75.45040597786367, 40.73234964980174], [-75.4502461615026, 40.73216180818186], [-75.45009004039595, 40.73189855392793], [-75.44987991198383, 40.73149968735916], [-75.44915142765959, 40.73005891307347], [-75.44886252689993, 40.72944956395882], [-75.44886229174396, 40.72944906563736], [-75.44864482555836, 40.72899037930355], [-75.4484236066103, 40.72857335655183], [-75.4482085812188, 40.72831794034656], [-75.44792386072169, 40.72801626602557], [-75.44730375654306, 40.727453789849626], [-75.44679147755376, 40.726989108241064], [-75.44608324317967, 40.72632919606102], [-75.44608300004688, 40.726329000256534], [-75.44560113471705, 40.72594285370283], [-75.44542809664893, 40.72583173227315], [-75.44520786424474, 40.72572868351675], [-75.44457900289355, 40.72549199642255], [-75.44457896897957, 40.72549198403792], [-75.44389116591996, 40.725263032421566], [-75.44339058370831, 40.725073665722775], [-75.44322896517654, 40.7249717771434], [-75.44312716495696, 40.72486206809438], [-75.4430380326847, 40.7246988107864], [-75.44298569343677, 40.724586835466084], [-75.44285100028729, 40.72429799956319], [-75.4428509254747, 40.724297798990186], [-75.44281599964302, 40.72420400008786], [-75.44281544928363, 40.724203165778185], [-75.44192747495899, 40.72285671999288], [-75.4419270000329, 40.722855999783654], [-75.44064099964098, 40.72090300037529], [-75.43918900009243, 40.718629000190774], [-75.43801500047822, 40.71696100030966], [-75.4380148668156, 40.71696082468464], [-75.43602399968837, 40.714339999887194], [-75.43602398170073, 40.71433983467391], [-75.43602416794319, 40.71433982397453], [-75.43597545026712, 40.71389463695713], [-75.43585507532605, 40.71293944610532]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 432, \"PRECINCTID\": \"030000-1\", \"NAME\": \"BATH BOROUGH\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-2-08\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"ST JOHN'S LUTHERAN CHURCH (FELLOWSHIP HALL)\", \"SiteAddress\": \"206 E MAIN ST\", \"City\": \"BATH\", \"STATISTICS Registered Voters - Total\": \"1768\", \"STATISTICS Ballots Cast - Total\": 1284.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"72.62%\", \"Presidential Electors DEM Biden and Harris\": \"587\", \"Presidential Electors REP Trump and Pence\": \"673\", \"Presidential Electors LIB Jorgensen and Cohen\": \"18\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"558\", \"Attorney General REP Heather Heidelbaugh\": \"636\", \"Attorney General LIB Daniel Wassmer\": \"28\", \"Attorney General GRE Richard L Weiss\": \"12\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"513\", \"Auditor General REP Timothy Defoor\": \"648\", \"Auditor General LIB Jennifer Moore\": \"52\", \"Auditor General GRE Olivia Faison\": \"14\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"525\", \"State Treasurer REP Stacy L. Garrity\": \"656\", \"State Treasurer LIB Joe Soloski\": \"34\", \"State Treasurer GRE Timothy Runkle\": \"17\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"568\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"678\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"4\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"557\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"686\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"3\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 45.716510903426794, \"Presidential Electors Pct REP\": 52.41433021806854, \"Presidential Electors Pct LIB\": 1.4018691588785046, \"PA Attorney General Pct DEM\": 43.45794392523364, \"PA Attorney General Pct REP\": 49.532710280373834, \"PA Attorney General Pct LIB\": 2.1806853582554515, \"PA Attorney General Pct GRE\": 0.9345794392523363, \"PA Auditor General Pct DEM\": 39.953271028037385, \"PA Auditor General Pct REP\": 50.467289719626166, \"PA Auditor General Pct LIB\": 4.049844236760125, \"PA Auditor General Pct GRE\": 1.0903426791277258, \"PA State Treasurer Pct DEM\": 40.887850467289724, \"PA State Treasurer Pct REP\": 51.09034267912772, \"PA State Treasurer Pct LIB\": 2.64797507788162, \"PA State Treasurer Pct GRE\": 1.32398753894081, \"PA Representative in Congress 7th Congressional District Pct DEM\": 44.23676012461059, \"PA Representative in Congress 7th Congressional District Pct REP\": 52.80373831775701, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.7550809183289424, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38286109768815, 40.7342948212747], [-75.38284955162054, 40.73421970589008], [-75.38275560057127, 40.73360846987273], [-75.38248155193263, 40.73182546674494], [-75.3821622894388, 40.72974817672685], [-75.38207703303905, 40.72914621973153], [-75.38206369288396, 40.72905735019821], [-75.38205218826596, 40.72898070668926], [-75.3819971041943, 40.728597914518225], [-75.38199143539019, 40.72855395149749], [-75.38198328656635, 40.728500862652155], [-75.38174268383587, 40.726933306567716], [-75.38118643986479, 40.72338860275761], [-75.38113255392555, 40.723100029334795], [-75.3810680443518, 40.72275456154607], [-75.38110632512216, 40.72274208506279], [-75.38162300174893, 40.72257368188692], [-75.38182165843648, 40.722503193705116], [-75.38261997178901, 40.722219926438655], [-75.38286562234826, 40.72213276090549], [-75.3830984317003, 40.72205522166095], [-75.38328068413695, 40.72200410810297], [-75.3853646760929, 40.721805474593374], [-75.3898361388555, 40.721397793833255], [-75.38992807354545, 40.72138919384762], [-75.39147187542972, 40.72124476343494], [-75.3915878553512, 40.72123073222372], [-75.3927536223534, 40.72125458514499], [-75.39403028691707, 40.72128068776079], [-75.39497409529513, 40.72071284243577], [-75.39526894780414, 40.72053777400103], [-75.39753904917377, 40.71919589601172], [-75.39823307559612, 40.718786192144286], [-75.39848241438665, 40.718638998176566], [-75.39900620853983, 40.71831496598275], [-75.39918959214604, 40.71823090114675], [-75.39918120534756, 40.71826539428445], [-75.39908736487055, 40.71865134123584], [-75.39895621629746, 40.7192213639224], [-75.39810091613276, 40.72293857848348], [-75.39838633211801, 40.7232135372959], [-75.39920891596715, 40.72404673572692], [-75.39965549923417, 40.72464115207702], [-75.40022979395896, 40.725221849650566], [-75.4012858424366, 40.72632112448993], [-75.40133507997851, 40.72638048709287], [-75.40139666623108, 40.72645473750303], [-75.40124011139787, 40.72966741347461], [-75.401169639017, 40.73013440331123], [-75.40115378693496, 40.7305360842025], [-75.40113120204542, 40.73123348866942], [-75.40108445880581, 40.73226041421624], [-75.40106590282244, 40.73276517935432], [-75.40105954417331, 40.73291292513866], [-75.40095366417107, 40.735373013539295], [-75.40094548565413, 40.73556302356541], [-75.40066842918912, 40.7355632509267], [-75.40032844229583, 40.73555980024872], [-75.40028449680612, 40.73555935384947], [-75.39923327492072, 40.735548677622525], [-75.39880646269324, 40.73554434051336], [-75.39425740233814, 40.73551508403342], [-75.39409615933712, 40.73546321586289], [-75.39368687026567, 40.73533155417942], [-75.39365951739649, 40.73532275520341], [-75.38983226941242, 40.73411638385558], [-75.38982959120355, 40.734115557365314], [-75.38894997051815, 40.73384043709384], [-75.38893787942528, 40.73383665528847], [-75.38885961075701, 40.73380408728582], [-75.38835024739413, 40.73266065024929], [-75.38530325091226, 40.733567811011504], [-75.38530319702447, 40.733567827930685], [-75.38289180735936, 40.734285679613535], [-75.38286135741158, 40.73429474369304], [-75.38286109768815, 40.7342948212747]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 433, \"PRECINCTID\": \"060003-1\", \"NAME\": \"BUSHKILL TWP CLEARFIELD DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-02\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BUSHKILL TOWNSHIP MUNICIPAL BUILDING\", \"SiteAddress\": \"1114 BUSHKILL CENTER RD\", \"City\": \"NAZARETH\", \"STATISTICS Registered Voters - Total\": \"1420\", \"STATISTICS Ballots Cast - Total\": 1143.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"80.49%\", \"Presidential Electors DEM Biden and Harris\": \"362\", \"Presidential Electors REP Trump and Pence\": \"764\", \"Presidential Electors LIB Jorgensen and Cohen\": \"11\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"350\", \"Attorney General REP Heather Heidelbaugh\": \"737\", \"Attorney General LIB Daniel Wassmer\": \"18\", \"Attorney General GRE Richard L Weiss\": \"3\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"320\", \"Auditor General REP Timothy Defoor\": \"746\", \"Auditor General LIB Jennifer Moore\": \"34\", \"Auditor General GRE Olivia Faison\": \"5\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"338\", \"State Treasurer REP Stacy L. Garrity\": \"730\", \"State Treasurer LIB Joe Soloski\": \"26\", \"State Treasurer GRE Timothy Runkle\": \"7\", \"State Treasurer Write-In Totals\": \"1\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"353\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"757\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"343\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"762\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 31.671041119860018, \"Presidential Electors Pct REP\": 66.84164479440071, \"Presidential Electors Pct LIB\": 0.9623797025371827, \"PA Attorney General Pct DEM\": 30.621172353455815, \"PA Attorney General Pct REP\": 64.47944006999126, \"PA Attorney General Pct LIB\": 1.574803149606299, \"PA Attorney General Pct GRE\": 0.26246719160104987, \"PA Auditor General Pct DEM\": 27.99650043744532, \"PA Auditor General Pct REP\": 65.26684164479441, \"PA Auditor General Pct LIB\": 2.974628171478565, \"PA Auditor General Pct GRE\": 0.4374453193350831, \"PA State Treasurer Pct DEM\": 29.571303587051617, \"PA State Treasurer Pct REP\": 63.86701662292214, \"PA State Treasurer Pct LIB\": 2.2747156605424323, \"PA State Treasurer Pct GRE\": 0.6124234470691163, \"PA Representative in Congress 7th Congressional District Pct DEM\": 30.88363954505687, \"PA Representative in Congress 7th Congressional District Pct REP\": 66.22922134733157, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.6721631539330072, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.36677634398153, 40.78379468931861], [-75.36687064479426, 40.784103136296], [-75.36844278267542, 40.78924496787903], [-75.36861144761028, 40.78983670885294], [-75.36860365580947, 40.789850999571506], [-75.36824241267911, 40.790513528338174], [-75.36797532453902, 40.790989765124344], [-75.36794068052271, 40.791046806988994], [-75.36782759859135, 40.79123299799405], [-75.36782209815205, 40.79123528775289], [-75.36779093710634, 40.79124803440009], [-75.36581905084005, 40.79481396325169], [-75.36509215167541, 40.796128372302384], [-75.36516786714051, 40.79646319475453], [-75.36532208504055, 40.79702907342318], [-75.36548093816496, 40.79769338027027], [-75.36597415537035, 40.799599288150624], [-75.3661932899812, 40.80042322720143], [-75.36620468643439, 40.80047916103509], [-75.36621790397936, 40.80054403075448], [-75.36648667145613, 40.801598430874606], [-75.36652437676085, 40.80175760038784], [-75.367068575263, 40.80388300734123], [-75.36708888188619, 40.80392169335952], [-75.36747073316803, 40.80548105561263], [-75.36765696106754, 40.80618967851965], [-75.36816627766207, 40.80828175422532], [-75.3683085589211, 40.808803621193164], [-75.36847495056563, 40.80943529712533], [-75.36892791399363, 40.811258328150274], [-75.36894757459802, 40.811340760525205], [-75.36896340293988, 40.81140389406498], [-75.3689792313116, 40.81146702760145], [-75.36920939434994, 40.812389686657255], [-75.36947005264935, 40.81347153699708], [-75.36957314365101, 40.81385084787071], [-75.36963658584094, 40.81412535006915], [-75.3700768288238, 40.81592666159108], [-75.37010489250012, 40.816028326516815], [-75.37010902588767, 40.8160433002097], [-75.37013447453211, 40.81613549060969], [-75.37014640159443, 40.816206781222625], [-75.37073735654018, 40.818752700507225], [-75.37113790825805, 40.82035000640951], [-75.37160357967656, 40.82227744568907], [-75.37177652787841, 40.823006378103734], [-75.37182105581812, 40.823177697575375], [-75.37245367141668, 40.82580099051511], [-75.37269018903947, 40.82675105226503], [-75.37331674545449, 40.82936872101621], [-75.37445463019368, 40.83401311458057], [-75.37451383408686, 40.834254746548886], [-75.37451449937886, 40.83425746083799], [-75.37403057208564, 40.83442209687798], [-75.37249367813189, 40.834919915062486], [-75.35900577497438, 40.8395543887884], [-75.3524123156019, 40.84182627661343], [-75.35016106218448, 40.84260046348382], [-75.3489253523437, 40.84303211814046], [-75.3475739330815, 40.843488824644226], [-75.34670371585345, 40.84378471396754], [-75.34475156178623, 40.8444822659493], [-75.34373572598919, 40.844830206134624], [-75.34245657747661, 40.84526089442541], [-75.34159425805493, 40.84556205723551], [-75.34146427049834, 40.84560741424873], [-75.34125623650084, 40.8456865075652], [-75.34061318301659, 40.84589764934368], [-75.33964093854851, 40.84623873586871], [-75.33599636461774, 40.848645461422045], [-75.33459287733326, 40.848960906723775], [-75.33300448517583, 40.84976604169677], [-75.328682863876, 40.85193348762041], [-75.32402764500843, 40.85426800254344], [-75.32228713412375, 40.85514739093988], [-75.32086822627554, 40.85585774215469], [-75.31969581759225, 40.856102158100036], [-75.31461403052496, 40.85714580066495], [-75.31450087502823, 40.85688762301034], [-75.31416737162482, 40.856126687075275], [-75.31405417979705, 40.85588285940203], [-75.31361496426116, 40.8548584073454], [-75.31311470210137, 40.853723013965215], [-75.31307513080617, 40.853617845317586], [-75.31282877519814, 40.853058377396934], [-75.3128299659025, 40.85302562514749], [-75.31222208532479, 40.851668308133206], [-75.3107760190734, 40.848378394682186], [-75.31000782181385, 40.84656764508794], [-75.30985771426845, 40.846213809592456], [-75.30963747233668, 40.845534409484046], [-75.3095372176609, 40.84510996912536], [-75.3095195346093, 40.84499976667035], [-75.30951443716613, 40.844941139744606], [-75.30951449958475, 40.84493942494126], [-75.30840596343218, 40.84251547198338], [-75.30662204334759, 40.8386355989651], [-75.30660716770579, 40.83858479008445], [-75.30658989136555, 40.83852577715212], [-75.30616368716676, 40.83762168876039], [-75.30488118733392, 40.83479486473678], [-75.30436133597543, 40.83365952309164], [-75.30380212684241, 40.832414376764184], [-75.30342438067417, 40.83157135922384], [-75.30339754989582, 40.83151145894827], [-75.30339764743378, 40.83151141866123], [-75.30389262084539, 40.83130714036739], [-75.30432513229005, 40.83112863893366], [-75.30433000018363, 40.83112700000906], [-75.30456199941077, 40.83103100011809], [-75.3048011074631, 40.83092968385052], [-75.30521099731139, 40.83075620752866], [-75.30554206138297, 40.83061914661265], [-75.30617905199183, 40.830355427152384], [-75.30639260789478, 40.83026727872441], [-75.3068111543928, 40.83009451579556], [-75.30681137957976, 40.83009442233601], [-75.30709291511042, 40.829978212143274], [-75.3071924196105, 40.82993776156943], [-75.30719262425639, 40.829937678487646], [-75.30719276751175, 40.82993762024043], [-75.30719291679101, 40.82993755941727], [-75.30719314428147, 40.82993746780711], [-75.30769100319895, 40.82973507752138], [-75.30814776581656, 40.829550923463216], [-75.30823398554357, 40.82951406659262], [-75.30875732558387, 40.8292903488797], [-75.3094434855917, 40.828985902813734], [-75.30945528985505, 40.828981725686944], [-75.3102637780302, 40.82869559383494], [-75.31058455649584, 40.82860114658625], [-75.31073331573316, 40.82855734683355], [-75.31102108015997, 40.8284722590588], [-75.3112633537952, 40.82842036738086], [-75.311454771687, 40.82838836746003], [-75.31155431021159, 40.82837172704331], [-75.31180576810289, 40.828340621276055], [-75.31214553542812, 40.82829163047143], [-75.31229688096298, 40.82826655042181], [-75.31229694182655, 40.82826653998725], [-75.31239465267056, 40.8282503478873], [-75.31269044477013, 40.82817302938077], [-75.3127751133593, 40.82815089712676], [-75.31309151377448, 40.82804855711481], [-75.31323659892706, 40.82798071726231], [-75.313487741999, 40.82786328542027], [-75.31359751850432, 40.827794289670415], [-75.31380217918316, 40.82766565725714], [-75.31385436492475, 40.82762500565252], [-75.31397702273239, 40.82752945852428], [-75.31421235366129, 40.82732021781852], [-75.31447120926785, 40.827085979141884], [-75.314471269329, 40.82708592544853], [-75.3145076249258, 40.82705302698088], [-75.31481478758892, 40.82683156129045], [-75.31497858936211, 40.826714404356636], [-75.31500034340888, 40.826698845690075], [-75.31533737780737, 40.82650083021792], [-75.31556593967257, 40.82640316401961], [-75.31593029257333, 40.82627402062377], [-75.31645343895849, 40.82612692020098], [-75.3167112085226, 40.82605925537071], [-75.31671260578455, 40.82605888914987], [-75.31691783375142, 40.82600501582654], [-75.31745898576413, 40.825884544949396], [-75.31756449885638, 40.82586478326852], [-75.31756454901912, 40.825864773508115], [-75.31789662585798, 40.825802577175516], [-75.31831981712251, 40.825720305481184], [-75.31856117218784, 40.825668379662574], [-75.3188159903867, 40.825594082204404], [-75.31898045432942, 40.82554432259563], [-75.31936091295826, 40.825419280078606], [-75.3194670757136, 40.825382372704816], [-75.31998536945122, 40.825169256255045], [-75.32034825412252, 40.82503028626696], [-75.32054898662938, 40.82494159394232], [-75.32063937491033, 40.824901655945986], [-75.32080791594522, 40.82483756814189], [-75.32102695999527, 40.82475427636286], [-75.32115128016409, 40.82470119925426], [-75.32137298929018, 40.82460654156821], [-75.321719204854, 40.82447854455911], [-75.32213499890237, 40.82430068945837], [-75.32242174104736, 40.82416801579808], [-75.32243159412941, 40.82416216429035], [-75.32264338057827, 40.82403638526193], [-75.32293007389427, 40.82383008839692], [-75.32309309419364, 40.823701149784405], [-75.32321101440301, 40.82360788245396], [-75.32325286977579, 40.823568363240746], [-75.32343649431901, 40.82339498670441], [-75.3236072046997, 40.8232223050901], [-75.32362952651377, 40.823198306750704], [-75.32380652754416, 40.823008004058075], [-75.32405063581362, 40.822754651553055], [-75.32427566738995, 40.82252904561604], [-75.32431370520183, 40.822501695198035], [-75.32476867020091, 40.822064655472474], [-75.32500492060467, 40.821853525604496], [-75.32513003464084, 40.8217579147558], [-75.32520843518515, 40.82169800091936], [-75.32548205018087, 40.821478039421386], [-75.3256062819196, 40.8213962349971], [-75.3258624884713, 40.82122752721526], [-75.32635234481472, 40.82097053131311], [-75.32635293227494, 40.820970222861924], [-75.32635296370134, 40.8209702064012], [-75.32635305554574, 40.820970158769846], [-75.32635438519594, 40.820969460414545], [-75.32649986862472, 40.820893133991156], [-75.32704079902494, 40.8206270891733], [-75.32706660250285, 40.82061248386538], [-75.3274891137713, 40.82037335293168], [-75.32796644066586, 40.82001673829235], [-75.32807224188379, 40.81993797494326], [-75.32828957574546, 40.81977617936447], [-75.32856463383199, 40.819515740596046], [-75.32869604023792, 40.81937074291959], [-75.32886671627946, 40.819182413535216], [-75.32911805372797, 40.81890311734281], [-75.32934624071092, 40.81861424256282], [-75.32940264925121, 40.81853096565648], [-75.32940271059219, 40.81853087594841], [-75.32966501662392, 40.8181436287043], [-75.32987528399411, 40.817838188772946], [-75.32994535767233, 40.817736397280186], [-75.33026512002968, 40.817238172452114], [-75.33043137011856, 40.81697621785112], [-75.3304835458631, 40.81689400539614], [-75.330622890882, 40.81671469093157], [-75.33067305121877, 40.816650142613156], [-75.33097643489124, 40.816280113384046], [-75.33127603880644, 40.81595871270156], [-75.33132889602581, 40.81590200897804], [-75.33185457657741, 40.815380608543094], [-75.3320000326309, 40.81525561289555], [-75.33260612773202, 40.814633600940596], [-75.3326145906399, 40.814624968491586], [-75.33261462139609, 40.81462493760168], [-75.33310701649516, 40.81412266247934], [-75.33334543763164, 40.813874836569674], [-75.33361616418705, 40.813526442799706], [-75.33382483361463, 40.81325790656554], [-75.33402523467245, 40.8129617519168], [-75.33408644096794, 40.81287151622489], [-75.33408660752659, 40.81287127015262], [-75.33408664882954, 40.812871209753645], [-75.33408681035716, 40.81287097168438], [-75.33433342711375, 40.812507381319634], [-75.33493401998841, 40.811635376767825], [-75.33521027925741, 40.81123194355896], [-75.33522391626565, 40.811212028120224], [-75.33540082609005, 40.81099089304393], [-75.33557294356845, 40.81072709754099], [-75.33557300044667, 40.810726999629445], [-75.33559355010641, 40.81070225959911], [-75.33574425069231, 40.81052060235043], [-75.33575932193287, 40.81050243546868], [-75.3358075028251, 40.81044435612881], [-75.33582794192591, 40.81041971826015], [-75.33584478999552, 40.81040320981037], [-75.33602928630252, 40.810222429095866], [-75.33615322730164, 40.810111874331376], [-75.33621410254469, 40.81005757364164], [-75.33664374023166, 40.809692212094795], [-75.3370126256744, 40.80938307690867], [-75.33737187684116, 40.80909055850097], [-75.33859937057409, 40.80804393250994], [-75.33867948262538, 40.80797562342351], [-75.33889956118834, 40.80780960834235], [-75.33929625087666, 40.80749639654142], [-75.33936167485594, 40.80744473893896], [-75.3402472426095, 40.80675967059393], [-75.34037134710188, 40.80664966711083], [-75.34053380616677, 40.80652337425932], [-75.3405342025711, 40.80652306538077], [-75.34098286077155, 40.806174282761525], [-75.34108389035653, 40.806082151316865], [-75.34185612772853, 40.80537791442345], [-75.34192608377406, 40.805315416665515], [-75.34192610949222, 40.805315393776475], [-75.34195412619485, 40.805290363302305], [-75.34232731129235, 40.80491042584859], [-75.34252893696362, 40.80472943433596], [-75.34265396233798, 40.8046253724671], [-75.34277477254349, 40.8045248184246], [-75.34301321015495, 40.80433563162908], [-75.34305279687442, 40.804304222051066], [-75.34323639958313, 40.80417228013405], [-75.34336068871936, 40.80408841731472], [-75.34350857878538, 40.80398862973229], [-75.34362684137234, 40.80389580539836], [-75.34362689504648, 40.8038957632693], [-75.34362694872067, 40.80389572114019], [-75.3436619527983, 40.80386824594576], [-75.34366180676201, 40.803868152836465], [-75.34338761714017, 40.80369344236924], [-75.34314813817593, 40.80354084810315], [-75.34479900011478, 40.80172799981576], [-75.3444179994168, 40.801284000402006], [-75.34393099962139, 40.800691000358334], [-75.34615300047321, 40.7998440000399], [-75.3467999998445, 40.7996289999584], [-75.34673259848056, 40.799180180487994], [-75.34671500038856, 40.7990629998379], [-75.346701117004, 40.79894940752936], [-75.34669299987424, 40.79888300022769], [-75.3466811754171, 40.79878652428309], [-75.34660499973398, 40.79816499975231], [-75.34660546842812, 40.79816488783351], [-75.35029200030468, 40.79728499982367], [-75.35042900033797, 40.79396100031105], [-75.35202600016962, 40.792815000320076], [-75.35275599963579, 40.792319999896215], [-75.35283199994782, 40.79224699956039], [-75.35378000015415, 40.79137699977579], [-75.35404799981696, 40.790933999625935], [-75.35455599966208, 40.78987600037907], [-75.35584332656974, 40.788967886521036], [-75.35584600024345, 40.788966000297506], [-75.35600700046075, 40.78888699980012], [-75.35619180521405, 40.78876047801639], [-75.35647714736173, 40.788565123574806], [-75.3565080001676, 40.7885440001967], [-75.35654899979554, 40.78851599980542], [-75.35687700031926, 40.78830200016539], [-75.35760972487357, 40.78782309945444], [-75.358253999416, 40.78740200026995], [-75.35891599984565, 40.78697000010461], [-75.36109896041704, 40.7855450264667], [-75.36109900046115, 40.78554500026481], [-75.36109120130514, 40.78552693821782], [-75.36108000012543, 40.78550100035651], [-75.3610800615835, 40.78550097189249], [-75.36126100012535, 40.78541699993278], [-75.36135100041501, 40.78537400021104], [-75.36194200021993, 40.78509000007522], [-75.36357200021345, 40.78435200039307], [-75.36479900046695, 40.78416100030442], [-75.36583699994569, 40.78413499985912], [-75.36677634398153, 40.78379468931861]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 434, \"PRECINCTID\": \"060001-1\", \"NAME\": \"BUSHKILL TWP BUSHKILL CENTER DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-02\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BUSHKILL TOWNSHIP VOLUNTEER FIRE COMPANY\", \"SiteAddress\": \"155 FIREHOUSE LN\", \"City\": \"NAZARETH\", \"STATISTICS Registered Voters - Total\": \"2821\", \"STATISTICS Ballots Cast - Total\": 2318.0, \"STATISTICS Ballots Cast - Blank\": \"1\", \"STATISTICS Voter Turnout - Total\": \"82.17%\", \"Presidential Electors DEM Biden and Harris\": \"897\", \"Presidential Electors REP Trump and Pence\": \"1390\", \"Presidential Electors LIB Jorgensen and Cohen\": \"23\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"849\", \"Attorney General REP Heather Heidelbaugh\": \"1331\", \"Attorney General LIB Daniel Wassmer\": \"48\", \"Attorney General GRE Richard L Weiss\": \"17\", \"Attorney General Write-In Totals\": \"3\", \"Auditor General DEM Nina Ahmad\": \"747\", \"Auditor General REP Timothy Defoor\": \"1392\", \"Auditor General LIB Jennifer Moore\": \"71\", \"Auditor General GRE Olivia Faison\": \"20\", \"Auditor General Write-In Totals\": \"2\", \"State Treasurer DEM Joe Torsella\": \"796\", \"State Treasurer REP Stacy L. Garrity\": \"1369\", \"State Treasurer LIB Joe Soloski\": \"53\", \"State Treasurer GRE Timothy Runkle\": \"18\", \"State Treasurer Write-In Totals\": \"2\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"852\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"1415\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"8\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"832\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"1437\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"5\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 38.69715271786022, \"Presidential Electors Pct REP\": 59.965487489214844, \"Presidential Electors Pct LIB\": 0.992234685073339, \"PA Attorney General Pct DEM\": 36.62640207075064, \"PA Attorney General Pct REP\": 57.42018981880932, \"PA Attorney General Pct LIB\": 2.070750647109577, \"PA Attorney General Pct GRE\": 0.7333908541846419, \"PA Auditor General Pct DEM\": 32.226056945642796, \"PA Auditor General Pct REP\": 60.05176876617774, \"PA Auditor General Pct LIB\": 3.062985332182916, \"PA Auditor General Pct GRE\": 0.8628127696289906, \"PA State Treasurer Pct DEM\": 34.33994823123383, \"PA State Treasurer Pct REP\": 59.0595340811044, \"PA State Treasurer Pct LIB\": 2.286453839516825, \"PA State Treasurer Pct GRE\": 0.7765314926660914, \"PA Representative in Congress 7th Congressional District Pct DEM\": 36.755823986195, \"PA Representative in Congress 7th Congressional District Pct REP\": 61.044003451251086, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 1.3631445238991342, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.35984719852473, 40.762321417217], [-75.35984858213588, 40.76232421852569], [-75.35987409612996, 40.7623758734689], [-75.35999469585981, 40.762614666884076], [-75.36008759978327, 40.76281994048869], [-75.36018218903287, 40.76300328226582], [-75.36048862259675, 40.763626708335465], [-75.36073302163047, 40.76409080228198], [-75.36125399406541, 40.76507919829207], [-75.36145362525458, 40.76545690640348], [-75.36154987447098, 40.7657713928212], [-75.3616252911372, 40.76601165730662], [-75.36186522563311, 40.76776910089647], [-75.36207179893952, 40.768453329014385], [-75.36230623901629, 40.76922983981001], [-75.36281493261741, 40.77086925120417], [-75.36300856326653, 40.771493259921236], [-75.36422876915961, 40.77549926801638], [-75.36444622488082, 40.7762131347743], [-75.36497118728501, 40.77790657240194], [-75.36498891217592, 40.77796546542217], [-75.36527822857512, 40.778926745142954], [-75.36534917490795, 40.779162467401875], [-75.36590038937427, 40.78094991305892], [-75.36659719642391, 40.783209333063134], [-75.36661891516238, 40.78327975470402], [-75.36677634398153, 40.78379468931861], [-75.36583699994569, 40.78413499985912], [-75.36479900046695, 40.78416100030442], [-75.36357200021345, 40.78435200039307], [-75.36194200021993, 40.78509000007522], [-75.36135100041501, 40.78537400021104], [-75.36126100012535, 40.78541699993278], [-75.3610800615835, 40.78550097189249], [-75.36108000012543, 40.78550100035651], [-75.36109120130514, 40.78552693821782], [-75.36109900046115, 40.78554500026481], [-75.36109896041704, 40.7855450264667], [-75.35891599984565, 40.78697000010461], [-75.358253999416, 40.78740200026995], [-75.35760972487357, 40.78782309945444], [-75.35687700031926, 40.78830200016539], [-75.35654899979554, 40.78851599980542], [-75.3565080001676, 40.7885440001967], [-75.35647714736173, 40.788565123574806], [-75.35619180521405, 40.78876047801639], [-75.35600700046075, 40.78888699980012], [-75.35584600024345, 40.788966000297506], [-75.35584332656974, 40.788967886521036], [-75.35455599966208, 40.78987600037907], [-75.35404799981696, 40.790933999625935], [-75.35378000015415, 40.79137699977579], [-75.35283199994782, 40.79224699956039], [-75.35275599963579, 40.792319999896215], [-75.35202600016962, 40.792815000320076], [-75.35042900033797, 40.79396100031105], [-75.35029200030468, 40.79728499982367], [-75.34660546842812, 40.79816488783351], [-75.34660499973398, 40.79816499975231], [-75.3466811754171, 40.79878652428309], [-75.34669299987424, 40.79888300022769], [-75.346701117004, 40.79894940752936], [-75.34671500038856, 40.7990629998379], [-75.34673259848056, 40.799180180487994], [-75.3467999998445, 40.7996289999584], [-75.34615300047321, 40.7998440000399], [-75.34393099962139, 40.800691000358334], [-75.3444179994168, 40.801284000402006], [-75.34479900011478, 40.80172799981576], [-75.34314813817593, 40.80354084810315], [-75.34338761714017, 40.80369344236924], [-75.34366180676201, 40.803868152836465], [-75.3436619527983, 40.80386824594576], [-75.34362694872067, 40.80389572114019], [-75.34362689504648, 40.8038957632693], [-75.34362684137234, 40.80389580539836], [-75.34350857878538, 40.80398862973229], [-75.34336068871936, 40.80408841731472], [-75.34323639958313, 40.80417228013405], [-75.34305279687442, 40.804304222051066], [-75.34301321015495, 40.80433563162908], [-75.34277477254349, 40.8045248184246], [-75.34265396233798, 40.8046253724671], [-75.34252893696362, 40.80472943433596], [-75.34232731129235, 40.80491042584859], [-75.34195412619485, 40.805290363302305], [-75.34192610949222, 40.805315393776475], [-75.34192608377406, 40.805315416665515], [-75.34185612772853, 40.80537791442345], [-75.34108389035653, 40.806082151316865], [-75.34098286077155, 40.806174282761525], [-75.3405342025711, 40.80652306538077], [-75.34053380616677, 40.80652337425932], [-75.34037134710188, 40.80664966711083], [-75.3402472426095, 40.80675967059393], [-75.33936167485594, 40.80744473893896], [-75.33929625087666, 40.80749639654142], [-75.33889956118834, 40.80780960834235], [-75.33867948262538, 40.80797562342351], [-75.33859937057409, 40.80804393250994], [-75.33737187684116, 40.80909055850097], [-75.3370126256744, 40.80938307690867], [-75.33664374023166, 40.809692212094795], [-75.33621410254469, 40.81005757364164], [-75.33615322730164, 40.810111874331376], [-75.33602928630252, 40.810222429095866], [-75.33584478999552, 40.81040320981037], [-75.33582794192591, 40.81041971826015], [-75.3358075028251, 40.81044435612881], [-75.33575932193287, 40.81050243546868], [-75.33574425069231, 40.81052060235043], [-75.33559355010641, 40.81070225959911], [-75.33557300044667, 40.810726999629445], [-75.33557294356845, 40.81072709754099], [-75.33540082609005, 40.81099089304393], [-75.33522391626565, 40.811212028120224], [-75.33521027925741, 40.81123194355896], [-75.33493401998841, 40.811635376767825], [-75.33433342711375, 40.812507381319634], [-75.33408681035716, 40.81287097168438], [-75.33408664882954, 40.812871209753645], [-75.33408660752659, 40.81287127015262], [-75.33408644096794, 40.81287151622489], [-75.33402523467245, 40.8129617519168], [-75.33382483361463, 40.81325790656554], [-75.33361616418705, 40.813526442799706], [-75.33334543763164, 40.813874836569674], [-75.33310701649516, 40.81412266247934], [-75.33261462139609, 40.81462493760168], [-75.3326145906399, 40.814624968491586], [-75.33260612773202, 40.814633600940596], [-75.3320000326309, 40.81525561289555], [-75.33185457657741, 40.815380608543094], [-75.33132889602581, 40.81590200897804], [-75.33127603880644, 40.81595871270156], [-75.33097643489124, 40.816280113384046], [-75.33067305121877, 40.816650142613156], [-75.330622890882, 40.81671469093157], [-75.3304835458631, 40.81689400539614], [-75.33043137011856, 40.81697621785112], [-75.33026512002968, 40.817238172452114], [-75.32994535767233, 40.817736397280186], [-75.32987528399411, 40.817838188772946], [-75.32966501662392, 40.8181436287043], [-75.32940271059219, 40.81853087594841], [-75.32940264925121, 40.81853096565648], [-75.32934624071092, 40.81861424256282], [-75.32911805372797, 40.81890311734281], [-75.32886671627946, 40.819182413535216], [-75.32869604023792, 40.81937074291959], [-75.32856463383199, 40.819515740596046], [-75.32828957574546, 40.81977617936447], [-75.32807224188379, 40.81993797494326], [-75.32796644066586, 40.82001673829235], [-75.3274891137713, 40.82037335293168], [-75.32706660250285, 40.82061248386538], [-75.32704079902494, 40.8206270891733], [-75.32649986862472, 40.820893133991156], [-75.32635438519594, 40.820969460414545], [-75.32635305554574, 40.820970158769846], [-75.32635296370134, 40.8209702064012], [-75.32635293227494, 40.820970222861924], [-75.32635234481472, 40.82097053131311], [-75.3258624884713, 40.82122752721526], [-75.3256062819196, 40.8213962349971], [-75.32548205018087, 40.821478039421386], [-75.32520843518515, 40.82169800091936], [-75.32513003464084, 40.8217579147558], [-75.32500492060467, 40.821853525604496], [-75.32476867020091, 40.822064655472474], [-75.32431370520183, 40.822501695198035], [-75.32427566738995, 40.82252904561604], [-75.32405063581362, 40.822754651553055], [-75.32380652754416, 40.823008004058075], [-75.32362952651377, 40.823198306750704], [-75.3236072046997, 40.8232223050901], [-75.32343649431901, 40.82339498670441], [-75.32325286977579, 40.823568363240746], [-75.32321101440301, 40.82360788245396], [-75.32309309419364, 40.823701149784405], [-75.32293007389427, 40.82383008839692], [-75.32264338057827, 40.82403638526193], [-75.32243159412941, 40.82416216429035], [-75.32242174104736, 40.82416801579808], [-75.32213499890237, 40.82430068945837], [-75.321719204854, 40.82447854455911], [-75.32137298929018, 40.82460654156821], [-75.32115128016409, 40.82470119925426], [-75.32102695999527, 40.82475427636286], [-75.32080791594522, 40.82483756814189], [-75.32063937491033, 40.824901655945986], [-75.32054898662938, 40.82494159394232], [-75.32034825412252, 40.82503028626696], [-75.31998536945122, 40.825169256255045], [-75.3194670757136, 40.825382372704816], [-75.31936091295826, 40.825419280078606], [-75.31898045432942, 40.82554432259563], [-75.3188159903867, 40.825594082204404], [-75.31856117218784, 40.825668379662574], [-75.31831981712251, 40.825720305481184], [-75.31789662585798, 40.825802577175516], [-75.31756454901912, 40.825864773508115], [-75.31756449885638, 40.82586478326852], [-75.31745898576413, 40.825884544949396], [-75.31691783375142, 40.82600501582654], [-75.31671260578455, 40.82605888914987], [-75.3167112085226, 40.82605925537071], [-75.31645343895849, 40.82612692020098], [-75.31593029257333, 40.82627402062377], [-75.31556593967257, 40.82640316401961], [-75.31533737780737, 40.82650083021792], [-75.31500034340888, 40.826698845690075], [-75.31497858936211, 40.826714404356636], [-75.31481478758892, 40.82683156129045], [-75.3145076249258, 40.82705302698088], [-75.314471269329, 40.82708592544853], [-75.31447120926785, 40.827085979141884], [-75.31421235366129, 40.82732021781852], [-75.31397702273239, 40.82752945852428], [-75.31385436492475, 40.82762500565252], [-75.31380217918316, 40.82766565725714], [-75.31359751850432, 40.827794289670415], [-75.313487741999, 40.82786328542027], [-75.31323659892706, 40.82798071726231], [-75.31309151377448, 40.82804855711481], [-75.3127751133593, 40.82815089712676], [-75.31269044477013, 40.82817302938077], [-75.31239465267056, 40.8282503478873], [-75.31229694182655, 40.82826653998725], [-75.31229688096298, 40.82826655042181], [-75.31214553542812, 40.82829163047143], [-75.31180576810289, 40.828340621276055], [-75.31155431021159, 40.82837172704331], [-75.311454771687, 40.82838836746003], [-75.3112633537952, 40.82842036738086], [-75.31102108015997, 40.8284722590588], [-75.31073331573316, 40.82855734683355], [-75.31058455649584, 40.82860114658625], [-75.3102637780302, 40.82869559383494], [-75.30945528985505, 40.828981725686944], [-75.3094434855917, 40.828985902813734], [-75.30875732558387, 40.8292903488797], [-75.30823398554357, 40.82951406659262], [-75.30814776581656, 40.829550923463216], [-75.30769100319895, 40.82973507752138], [-75.30719314428147, 40.82993746780711], [-75.30719291679101, 40.82993755941727], [-75.30719276751175, 40.82993762024043], [-75.30719262425639, 40.829937678487646], [-75.3071924196105, 40.82993776156943], [-75.30709291511042, 40.829978212143274], [-75.30681137957976, 40.83009442233601], [-75.3068111543928, 40.83009451579556], [-75.30639260789478, 40.83026727872441], [-75.30617905199183, 40.830355427152384], [-75.30554206138297, 40.83061914661265], [-75.30521099731139, 40.83075620752866], [-75.3048011074631, 40.83092968385052], [-75.30456199941077, 40.83103100011809], [-75.30433000018363, 40.83112700000906], [-75.30432513229005, 40.83112863893366], [-75.30389262084539, 40.83130714036739], [-75.30339764743378, 40.83151141866123], [-75.30339754989582, 40.83151145894827], [-75.30337006123385, 40.83145008723789], [-75.30297847163709, 40.83059047276443], [-75.30206080505579, 40.82859519995605], [-75.30203077121689, 40.82852632596654], [-75.30201994352733, 40.82850149651653], [-75.30197978360498, 40.82841330033833], [-75.30180469223417, 40.828010955070624], [-75.30165008560019, 40.827641648257], [-75.30075222156913, 40.825700150010995], [-75.30002334465142, 40.82410629024744], [-75.29957184087333, 40.823108107280476], [-75.29944426040424, 40.82281590573397], [-75.29829770273781, 40.82029011520975], [-75.29824862145789, 40.820192107073474], [-75.29820927891726, 40.82011354666529], [-75.2980622333752, 40.819760867825124], [-75.29801228714557, 40.81965225353904], [-75.29781007422416, 40.81921250639675], [-75.29764371329465, 40.81885072240954], [-75.29708346569315, 40.817615979277136], [-75.29689654407639, 40.817217494074576], [-75.29689487003326, 40.81721385530609], [-75.29657415442186, 40.81664436306678], [-75.29547149637106, 40.81413456453439], [-75.29545751604657, 40.814102503148106], [-75.29542648266872, 40.81403133200552], [-75.29422408881173, 40.81128670188755], [-75.29420633960952, 40.81124617724472], [-75.29378635561721, 40.81028723610713], [-75.29184791066481, 40.80537646460242], [-75.2882835940461, 40.79634480557773], [-75.28828111279991, 40.79633857486457], [-75.28826261500974, 40.796301114081906], [-75.28822528316731, 40.79621074003844], [-75.28817256071014, 40.796096700212935], [-75.28813522282726, 40.7960064971669], [-75.2880716732683, 40.79586751529362], [-75.28805684266747, 40.79582858719718], [-75.28801929442113, 40.79574716218354], [-75.28801584445951, 40.795739679449895], [-75.28797850695285, 40.795649477244694], [-75.2878248996335, 40.79530625121974], [-75.28778756774942, 40.79521587698552], [-75.2877573471048, 40.79515328301677], [-75.2877200102718, 40.79506308071377], [-75.28766819213705, 40.79494905975271], [-75.28763085557051, 40.79485885651577], [-75.28756640558346, 40.79471985519118], [-75.2875407988535, 40.794654613106594], [-75.2874763492491, 40.794515611724115], [-75.28746242184822, 40.7944767026689], [-75.28738720232671, 40.79431121537637], [-75.28737236615655, 40.79427245910744], [-75.28731964667125, 40.79415841883332], [-75.28719315778065, 40.79386399084909], [-75.28712870965545, 40.79372498924319], [-75.287113880075, 40.7936860610032], [-75.28709628621205, 40.79364861914176], [-75.28706887522716, 40.79358333956449], [-75.28703865598797, 40.79352074538037], [-75.28702472904727, 40.793481836261954], [-75.28697201077362, 40.79336779580502], [-75.28684462354568, 40.793073348266105], [-75.2867810794365, 40.79293436557346], [-75.28675457161704, 40.792869104146064], [-75.28672525430827, 40.79280652988041], [-75.2866879264797, 40.79271615525513], [-75.28662348053615, 40.79257715242449], [-75.28659787550716, 40.79251191099342], [-75.28653433247352, 40.792372927244024], [-75.28649699883087, 40.79228272447829], [-75.28644428242889, 40.792168682843766], [-75.2864294472768, 40.7921299264314], [-75.28637673107654, 40.79201588566155], [-75.28633939787736, 40.79192568193607], [-75.28627585590093, 40.7917866989229], [-75.28625025154444, 40.7917214565007], [-75.28618580742938, 40.791582454289056], [-75.28617097765175, 40.79154352678063], [-75.28609575832148, 40.79137820954882], [-75.28608183233887, 40.79133930119437], [-75.28602911106987, 40.79122543127346], [-75.28590081062866, 40.79093147827681], [-75.28583726422083, 40.79079266601706], [-75.28582242972341, 40.79075390951235], [-75.28580393484468, 40.79071644828013], [-75.28577652634726, 40.79065116744469], [-75.2857463033194, 40.790588744805305], [-75.28573237142213, 40.790550007432095], [-75.28571728513488, 40.790518110179995], [-75.28568797103756, 40.79045553473676], [-75.28564020637485, 40.790354298101036], [-75.28562356590493, 40.790315503249055], [-75.28558753582767, 40.79023905606973], [-75.28556407968807, 40.79018913323118], [-75.28553977775206, 40.790137648354985], [-75.28550459369526, 40.79006276317838], [-75.2854938185634, 40.790036449043534], [-75.28543924394117, 40.78992391237339], [-75.28542260487846, 40.78988511751312], [-75.28538657522807, 40.789808671162504], [-75.28536311938839, 40.78975874827745], [-75.28533881148036, 40.789707434384745], [-75.28530362787329, 40.78963254913835], [-75.28523849486415, 40.78951240931249], [-75.28489629255755, 40.78874729240152], [-75.28463869632232, 40.78816245085555], [-75.2870890005634, 40.78735199979426], [-75.28710490565197, 40.78734669849337], [-75.28745199985835, 40.7872309996532], [-75.28746612672357, 40.7872262876101], [-75.29100099964056, 40.78604699994776], [-75.29124499974665, 40.78599699957168], [-75.29287157849588, 40.785413151164136], [-75.29289375738198, 40.78547258387492], [-75.29289399694386, 40.7854730006387], [-75.29293450003169, 40.785543808833644], [-75.29314622204463, 40.78575525508428], [-75.29318596779449, 40.785787226104006], [-75.29336818020417, 40.785933796129456], [-75.29395957151696, 40.78638254853424], [-75.29421820055467, 40.78658087147741], [-75.29421826513064, 40.78658092058858], [-75.29426704594873, 40.786618327070464], [-75.29440990549685, 40.78673912467471], [-75.29441018482171, 40.786739362102274], [-75.29441032394138, 40.786739479453274], [-75.29453599182936, 40.786845740126836], [-75.29476405086469, 40.7870058719431], [-75.29481517289538, 40.78703751887913], [-75.29490182278055, 40.78709116002463], [-75.29491176773001, 40.787096225885456], [-75.29494083459727, 40.78711103337167], [-75.29501611324741, 40.78715175260105], [-75.2950334345172, 40.78715790584244], [-75.29515787292571, 40.78720211429027], [-75.29523664874147, 40.787226750248074], [-75.29526145543811, 40.78723450843267], [-75.29527753209548, 40.78723836515273], [-75.29534382320921, 40.7872542681635], [-75.29554112900345, 40.78729224602182], [-75.29570923730766, 40.78731308836557], [-75.29589986408614, 40.787336722339866], [-75.29626242728835, 40.787399984877915], [-75.29650371140454, 40.78744558349436], [-75.29662687241955, 40.7874613590656], [-75.29671226807874, 40.78747229742714], [-75.2968054764824, 40.7874704417757], [-75.29689212803018, 40.787468716938015], [-75.29697452185057, 40.78746307704813], [-75.29707018963545, 40.78745723274032], [-75.29733569060596, 40.787441014632996], [-75.29766349993713, 40.787418052240376], [-75.29774044062101, 40.787412662435536], [-75.29812204591471, 40.787365008438044], [-75.29814600241458, 40.7873620169482], [-75.29830334640535, 40.78733204383744], [-75.29837212802504, 40.78729987976714], [-75.29840166407591, 40.787286067683084], [-75.29846622095947, 40.78724950285369], [-75.29862598284383, 40.78693075312436], [-75.29877426778006, 40.78667024604664], [-75.29914422975705, 40.78602028688895], [-75.2992450462722, 40.78575743987168], [-75.29929644206648, 40.785537141142854], [-75.29932147900611, 40.78532143470848], [-75.2992989995489, 40.78467600033608], [-75.29929899405138, 40.78467585878425], [-75.29927362557174, 40.784134049347074], [-75.29926195336141, 40.78367532465567], [-75.29926102339668, 40.78363877042815], [-75.29926101664601, 40.78363850092686], [-75.29928476167676, 40.783408694718716], [-75.29935573100157, 40.78312222135505], [-75.29948761062573, 40.78259347853649], [-75.29960435711352, 40.78212540579965], [-75.29983821946281, 40.78120874351239], [-75.2998878588029, 40.78101417027747], [-75.299964699638, 40.78069040824809], [-75.29996490625058, 40.78069039729168], [-75.30106226069714, 40.780631866442555], [-75.30258872043075, 40.78055008907177], [-75.30278952798706, 40.78051639289511], [-75.30289029485049, 40.780489048687905], [-75.30301663845461, 40.78045476336112], [-75.3031188774892, 40.78039994024948], [-75.30332556713368, 40.78020487796039], [-75.30359405359286, 40.77993666134859], [-75.30359442753715, 40.779936286357284], [-75.3044145710843, 40.7791169481425], [-75.3051522302635, 40.77837685678152], [-75.30516025544634, 40.77836892513228], [-75.30538923064404, 40.77814261437184], [-75.30569356478055, 40.7778447452306], [-75.30591555445358, 40.77763016707081], [-75.30591562697467, 40.77763009562681], [-75.30597435860489, 40.777573324839054], [-75.30609526263665, 40.77746132308956], [-75.30622668786019, 40.77733957452514], [-75.3064638743899, 40.777100013419506], [-75.3065395097713, 40.77698198872777], [-75.30658697305041, 40.77686886297309], [-75.30658699955332, 40.77681364409427], [-75.30658707129592, 40.77666773155411], [-75.30655344910424, 40.77640067795135], [-75.30653313816926, 40.77627461864831], [-75.3065306153354, 40.776258958077285], [-75.30648226178918, 40.775801273127605], [-75.30644879296545, 40.77545562211495], [-75.30681743305506, 40.77544964850822], [-75.30726073612418, 40.77542719980648], [-75.30726099018275, 40.77542718713279], [-75.30726150188507, 40.77542716095993], [-75.30726166572059, 40.77542715269463], [-75.30726187231583, 40.77542714172523], [-75.30757644818658, 40.77541121090194], [-75.3084095068728, 40.775298300094896], [-75.30887230892066, 40.77516129762075], [-75.31005258197395, 40.77476221068537], [-75.3104874945214, 40.77459732967519], [-75.31106270382197, 40.77448621754172], [-75.31112132446263, 40.774474894142024], [-75.31281981404888, 40.77420198603372], [-75.31262662359512, 40.77395200745843], [-75.31246307960964, 40.77373113879291], [-75.31246299093675, 40.77373100270295], [-75.31240919392583, 40.773648491275104], [-75.31240914446315, 40.77364822177934], [-75.31239712398998, 40.77358302436223], [-75.31239929131794, 40.773523347046265], [-75.31240607001517, 40.773503037901996], [-75.31241550272853, 40.773474777579835], [-75.3124461506278, 40.77342651021759], [-75.31247431398056, 40.773403127528574], [-75.31249735783616, 40.773383994863806], [-75.31254555747992, 40.77335273662773], [-75.3125704127381, 40.77333661752207], [-75.31292227077573, 40.77315418962842], [-75.31367843938122, 40.77276213227653], [-75.31419267418968, 40.7725046633058], [-75.31450154214717, 40.77235001709734], [-75.31453401759535, 40.772327647743715], [-75.31459970853778, 40.77228240022658], [-75.31471368106124, 40.77220224318177], [-75.31471376326829, 40.77220216562961], [-75.31483199368806, 40.77209099722898], [-75.31483240593873, 40.77209060859231], [-75.31505029761196, 40.77190863179155], [-75.31510598102135, 40.771869255903866], [-75.31528105017757, 40.771745458604805], [-75.31552281103332, 40.77162730760319], [-75.31676832053803, 40.77111833351413], [-75.31676836381668, 40.77111831640366], [-75.31680953927173, 40.77116121792992], [-75.31696587083964, 40.77132410201728], [-75.31727821745932, 40.77157519658994], [-75.31758954647961, 40.77172982070632], [-75.31843860755569, 40.77209563627224], [-75.31859354574294, 40.77216211720351], [-75.31859361340838, 40.772162146546925], [-75.31859384676679, 40.772162246924076], [-75.3188653910181, 40.77227876041878], [-75.3193332230218, 40.772425502224834], [-75.31981829655246, 40.77259491185098], [-75.31997743058224, 40.77263891387125], [-75.32011417231662, 40.77265293039564], [-75.32022077073219, 40.772651557268055], [-75.32038799919525, 40.77262159069841], [-75.3205508826618, 40.77256201534011], [-75.32106195052651, 40.77228765370223], [-75.32246880896308, 40.771542467134246], [-75.32260669451824, 40.771469430050914], [-75.32351549154367, 40.77097004644771], [-75.32446574314842, 40.77044786786231], [-75.32475314121372, 40.77030723242885], [-75.3247531749849, 40.770307216017784], [-75.32475333542253, 40.77030713738989], [-75.32475336435998, 40.770307123580466], [-75.32475378293164, 40.770306918817596], [-75.32475427029487, 40.770306679456915], [-75.3256009207402, 40.769892372081294], [-75.32564506420867, 40.769870126186156], [-75.3256801605175, 40.76984837786263], [-75.325707449442, 40.76983541840511], [-75.32572793146875, 40.769825692371526], [-75.32580434675657, 40.76978489842481], [-75.32584407334348, 40.7697650619463], [-75.32584756307985, 40.76976331955727], [-75.32587298477647, 40.76975202551435], [-75.32595492666645, 40.76971562052311], [-75.32606984164941, 40.76967546787716], [-75.32610728017984, 40.76966238595836], [-75.32610734256218, 40.76966236473888], [-75.3261588506606, 40.769644366786885], [-75.32619923309959, 40.76963067784503], [-75.32623563518767, 40.76961833908486], [-75.32624276131966, 40.769617026619194], [-75.32628835479694, 40.76960862726227], [-75.32634944857521, 40.76960166304876], [-75.32636088632131, 40.769600359483285], [-75.32641343485113, 40.76960145617326], [-75.32643306492024, 40.76960186584749], [-75.32649487317717, 40.76961551196272], [-75.32656493577143, 40.76963844251351], [-75.32662872842074, 40.76965932064285], [-75.32674809351334, 40.769704372679], [-75.32692559285998, 40.769770815085636], [-75.32692565832109, 40.76977083987389], [-75.32694230438902, 40.7697770707236], [-75.32694750518199, 40.76977864223776], [-75.3269476036661, 40.769778671318484], [-75.32694767047371, 40.76977869163051], [-75.32694775721497, 40.76977871776367], [-75.32694779823379, 40.769778730330685], [-75.32706556243478, 40.76981430850277], [-75.32714799957782, 40.76982200836922], [-75.32714835147837, 40.769822041836065], [-75.32716422154454, 40.76982199998214], [-75.32722871852437, 40.76982183123489], [-75.3272511525522, 40.76981789765999], [-75.32725119313434, 40.769817889498015], [-75.32736865429443, 40.76979729234411], [-75.3274731973886, 40.769777677791495], [-75.32802350165954, 40.769674844128986], [-75.32829770059986, 40.76962360374322], [-75.32880108879273, 40.76956064931052], [-75.32979999998706, 40.76952758479138], [-75.3301435466774, 40.7695189086982], [-75.33014362376933, 40.76951890670114], [-75.33014365935519, 40.76951890564097], [-75.33032868504222, 40.769514232558535], [-75.3306419369664, 40.76952136086184], [-75.33064222702184, 40.769521367805524], [-75.33064264495282, 40.76952137741333], [-75.33064309958876, 40.769521387785794], [-75.33122183477629, 40.76953455502452], [-75.33152538257512, 40.76953664390372], [-75.33159103463068, 40.76953709586748], [-75.3317637319654, 40.76954341640074], [-75.33261358910708, 40.769574517984466], [-75.33388742481894, 40.76965457114698], [-75.33403604060538, 40.76966469877469], [-75.33407840871986, 40.76965847602201], [-75.33407848498419, 40.769658464095684], [-75.33414042722956, 40.76964936580325], [-75.33431089295895, 40.76962940129116], [-75.3343803120164, 40.769616351385395], [-75.33444816224909, 40.76960359671895], [-75.33454055066586, 40.769574057710656], [-75.33455046522634, 40.76957088751092], [-75.334699132468, 40.76950430360269], [-75.3348625368571, 40.7694145180805], [-75.33501691946108, 40.76932968862622], [-75.33602633973294, 40.76871399478481], [-75.33602688490845, 40.76871366198935], [-75.33668505491848, 40.76831220160165], [-75.33696523211428, 40.768158772706975], [-75.33743292416551, 40.767902653894794], [-75.33831714364797, 40.76736726546849], [-75.33831738831344, 40.76736711740372], [-75.33831781465359, 40.76736685960374], [-75.33831902469834, 40.76736612621092], [-75.33867892597193, 40.76714820434187], [-75.34026501042392, 40.76620001264839], [-75.34030303610017, 40.766177271312294], [-75.3403033569632, 40.76617707978177], [-75.34117937269298, 40.76565317244539], [-75.3413799335723, 40.76553375924681], [-75.3414127813874, 40.765514201894966], [-75.34167093234441, 40.765415386305605], [-75.34220654651588, 40.765258140277446], [-75.3439319049763, 40.76480446067314], [-75.34440276775254, 40.76466508370526], [-75.34440283896059, 40.764665047344415], [-75.34450391771017, 40.76461380691212], [-75.345077990183, 40.7648947883196], [-75.3457239941203, 40.765237104564015], [-75.34654880971009, 40.76567416234952], [-75.34658679249874, 40.76568719744443], [-75.34658687440977, 40.765687226165454], [-75.34661213425716, 40.76569589451878], [-75.34778093304934, 40.7654547653401], [-75.34832306920907, 40.76534198899116], [-75.34832368160738, 40.7653418611234], [-75.34914809146406, 40.76517035975909], [-75.35174507888651, 40.764521156955155], [-75.35224178670643, 40.764396980713045], [-75.35687174668283, 40.76313070104061], [-75.3575653381397, 40.76294098600673], [-75.35761977185135, 40.76292620653868], [-75.35984714467162, 40.76232143232388], [-75.35984719852473, 40.762321417217]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 435, \"PRECINCTID\": \"060002-1\", \"NAME\": \"BUSHKILL TWP CHERRYHILL DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-02\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BUSHKILL TOWNSHIP VOLUNTEER FIRE COMPANY\", \"SiteAddress\": \"155 FIREHOUSE LN\", \"City\": \"NAZARETH\", \"STATISTICS Registered Voters - Total\": \"2362\", \"STATISTICS Ballots Cast - Total\": 1982.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"83.91%\", \"Presidential Electors DEM Biden and Harris\": \"792\", \"Presidential Electors REP Trump and Pence\": \"1155\", \"Presidential Electors LIB Jorgensen and Cohen\": \"28\", \"Presidential Electors Write-In Totals\": \"1\", \"Attorney General DEM Josh Shapiro\": \"781\", \"Attorney General REP Heather Heidelbaugh\": \"1111\", \"Attorney General LIB Daniel Wassmer\": \"27\", \"Attorney General GRE Richard L Weiss\": \"9\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"683\", \"Auditor General REP Timothy Defoor\": \"1158\", \"Auditor General LIB Jennifer Moore\": \"56\", \"Auditor General GRE Olivia Faison\": \"18\", \"Auditor General Write-In Totals\": \"2\", \"State Treasurer DEM Joe Torsella\": \"722\", \"State Treasurer REP Stacy L. Garrity\": \"1139\", \"State Treasurer LIB Joe Soloski\": \"43\", \"State Treasurer GRE Timothy Runkle\": \"18\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"770\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"1175\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"3\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"741\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"1203\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 39.95963673057518, \"Presidential Electors Pct REP\": 58.2744702320888, \"Presidential Electors Pct LIB\": 1.4127144298688195, \"PA Attorney General Pct DEM\": 39.404641775983855, \"PA Attorney General Pct REP\": 56.054490413723514, \"PA Attorney General Pct LIB\": 1.3622603430877902, \"PA Attorney General Pct GRE\": 0.45408678102926336, \"PA Auditor General Pct DEM\": 34.460141271442986, \"PA Auditor General Pct REP\": 58.42583249243189, \"PA Auditor General Pct LIB\": 2.825428859737639, \"PA Auditor General Pct GRE\": 0.9081735620585267, \"PA State Treasurer Pct DEM\": 36.42785065590313, \"PA State Treasurer Pct REP\": 57.467204843592334, \"PA State Treasurer Pct LIB\": 2.169525731584258, \"PA State Treasurer Pct GRE\": 0.9081735620585267, \"PA Representative in Congress 7th Congressional District Pct DEM\": 38.84964682139253, \"PA Representative in Congress 7th Congressional District Pct REP\": 59.28355196770938, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 1.1655532555513737, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.34814244770979, 40.74192683835461], [-75.34825764341716, 40.742137904721424], [-75.35051770025994, 40.74572178763209], [-75.35257101981757, 40.74899641727888], [-75.35286102031134, 40.749458880852735], [-75.35349638438575, 40.750472069384365], [-75.35590265423076, 40.75432536089694], [-75.35746921590136, 40.75750658900118], [-75.35984719852473, 40.762321417217], [-75.35984714467162, 40.76232143232388], [-75.35761977185135, 40.76292620653868], [-75.3575653381397, 40.76294098600673], [-75.35687174668283, 40.76313070104061], [-75.35224178670643, 40.764396980713045], [-75.35174507888651, 40.764521156955155], [-75.34914809146406, 40.76517035975909], [-75.34832368160738, 40.7653418611234], [-75.34832306920907, 40.76534198899116], [-75.34778093304934, 40.7654547653401], [-75.34661213425716, 40.76569589451878], [-75.34658687440977, 40.765687226165454], [-75.34658679249874, 40.76568719744443], [-75.34654880971009, 40.76567416234952], [-75.3457239941203, 40.765237104564015], [-75.345077990183, 40.7648947883196], [-75.34450391771017, 40.76461380691212], [-75.34440283896059, 40.764665047344415], [-75.34440276775254, 40.76466508370526], [-75.3439319049763, 40.76480446067314], [-75.34220654651588, 40.765258140277446], [-75.34167093234441, 40.765415386305605], [-75.3414127813874, 40.765514201894966], [-75.3413799335723, 40.76553375924681], [-75.34117937269298, 40.76565317244539], [-75.3403033569632, 40.76617707978177], [-75.34030303610017, 40.766177271312294], [-75.34026501042392, 40.76620001264839], [-75.33867892597193, 40.76714820434187], [-75.33831902469834, 40.76736612621092], [-75.33831781465359, 40.76736685960374], [-75.33831738831344, 40.76736711740372], [-75.33831714364797, 40.76736726546849], [-75.33743292416551, 40.767902653894794], [-75.33696523211428, 40.768158772706975], [-75.33668505491848, 40.76831220160165], [-75.33602688490845, 40.76871366198935], [-75.33602633973294, 40.76871399478481], [-75.33501691946108, 40.76932968862622], [-75.3348625368571, 40.7694145180805], [-75.334699132468, 40.76950430360269], [-75.33455046522634, 40.76957088751092], [-75.33454055066586, 40.769574057710656], [-75.33444816224909, 40.76960359671895], [-75.3343803120164, 40.769616351385395], [-75.33431089295895, 40.76962940129116], [-75.33414042722956, 40.76964936580325], [-75.33407848498419, 40.769658464095684], [-75.33407840871986, 40.76965847602201], [-75.33403604060538, 40.76966469877469], [-75.33388742481894, 40.76965457114698], [-75.33261358910708, 40.769574517984466], [-75.3317637319654, 40.76954341640074], [-75.33159103463068, 40.76953709586748], [-75.33152538257512, 40.76953664390372], [-75.33122183477629, 40.76953455502452], [-75.33064309958876, 40.769521387785794], [-75.33064264495282, 40.76952137741333], [-75.33064222702184, 40.769521367805524], [-75.3306419369664, 40.76952136086184], [-75.33032868504222, 40.769514232558535], [-75.33014365935519, 40.76951890564097], [-75.33014362376933, 40.76951890670114], [-75.3301435466774, 40.7695189086982], [-75.32979999998706, 40.76952758479138], [-75.32880108879273, 40.76956064931052], [-75.32829770059986, 40.76962360374322], [-75.32802350165954, 40.769674844128986], [-75.3274731973886, 40.769777677791495], [-75.32736865429443, 40.76979729234411], [-75.32725119313434, 40.769817889498015], [-75.3272511525522, 40.76981789765999], [-75.32722871852437, 40.76982183123489], [-75.32716422154454, 40.76982199998214], [-75.32714835147837, 40.769822041836065], [-75.32714799957782, 40.76982200836922], [-75.32706556243478, 40.76981430850277], [-75.32694779823379, 40.769778730330685], [-75.32694775721497, 40.76977871776367], [-75.32694767047371, 40.76977869163051], [-75.3269476036661, 40.769778671318484], [-75.32694750518199, 40.76977864223776], [-75.32694230438902, 40.7697770707236], [-75.32692565832109, 40.76977083987389], [-75.32692559285998, 40.769770815085636], [-75.32674809351334, 40.769704372679], [-75.32662872842074, 40.76965932064285], [-75.32656493577143, 40.76963844251351], [-75.32649487317717, 40.76961551196272], [-75.32643306492024, 40.76960186584749], [-75.32641343485113, 40.76960145617326], [-75.32636088632131, 40.769600359483285], [-75.32634944857521, 40.76960166304876], [-75.32628835479694, 40.76960862726227], [-75.32624276131966, 40.769617026619194], [-75.32623563518767, 40.76961833908486], [-75.32619923309959, 40.76963067784503], [-75.3261588506606, 40.769644366786885], [-75.32610734256218, 40.76966236473888], [-75.32610728017984, 40.76966238595836], [-75.32606984164941, 40.76967546787716], [-75.32595492666645, 40.76971562052311], [-75.32587298477647, 40.76975202551435], [-75.32584756307985, 40.76976331955727], [-75.32584407334348, 40.7697650619463], [-75.32580434675657, 40.76978489842481], [-75.32572793146875, 40.769825692371526], [-75.325707449442, 40.76983541840511], [-75.3256801605175, 40.76984837786263], [-75.32564506420867, 40.769870126186156], [-75.3256009207402, 40.769892372081294], [-75.32475427029487, 40.770306679456915], [-75.32475378293164, 40.770306918817596], [-75.32475336435998, 40.770307123580466], [-75.32475333542253, 40.77030713738989], [-75.3247531749849, 40.770307216017784], [-75.32475314121372, 40.77030723242885], [-75.32446574314842, 40.77044786786231], [-75.32351549154367, 40.77097004644771], [-75.32260669451824, 40.771469430050914], [-75.32246880896308, 40.771542467134246], [-75.32106195052651, 40.77228765370223], [-75.3205508826618, 40.77256201534011], [-75.32038799919525, 40.77262159069841], [-75.32022077073219, 40.772651557268055], [-75.32011417231662, 40.77265293039564], [-75.31997743058224, 40.77263891387125], [-75.31981829655246, 40.77259491185098], [-75.3193332230218, 40.772425502224834], [-75.3188653910181, 40.77227876041878], [-75.31859384676679, 40.772162246924076], [-75.31859361340838, 40.772162146546925], [-75.31859354574294, 40.77216211720351], [-75.31843860755569, 40.77209563627224], [-75.31758954647961, 40.77172982070632], [-75.31727821745932, 40.77157519658994], [-75.31696587083964, 40.77132410201728], [-75.31680953927173, 40.77116121792992], [-75.31676836381668, 40.77111831640366], [-75.31676832053803, 40.77111833351413], [-75.31552281103332, 40.77162730760319], [-75.31528105017757, 40.771745458604805], [-75.31510598102135, 40.771869255903866], [-75.31505029761196, 40.77190863179155], [-75.31483240593873, 40.77209060859231], [-75.31483199368806, 40.77209099722898], [-75.31471376326829, 40.77220216562961], [-75.31471368106124, 40.77220224318177], [-75.31459970853778, 40.77228240022658], [-75.31453401759535, 40.772327647743715], [-75.31450154214717, 40.77235001709734], [-75.31419267418968, 40.7725046633058], [-75.31367843938122, 40.77276213227653], [-75.31292227077573, 40.77315418962842], [-75.3125704127381, 40.77333661752207], [-75.31254555747992, 40.77335273662773], [-75.31249735783616, 40.773383994863806], [-75.31247431398056, 40.773403127528574], [-75.3124461506278, 40.77342651021759], [-75.31241550272853, 40.773474777579835], [-75.31240607001517, 40.773503037901996], [-75.31239929131794, 40.773523347046265], [-75.31239712398998, 40.77358302436223], [-75.31240914446315, 40.77364822177934], [-75.31240919392583, 40.773648491275104], [-75.31246299093675, 40.77373100270295], [-75.31246307960964, 40.77373113879291], [-75.31262662359512, 40.77395200745843], [-75.31281981404888, 40.77420198603372], [-75.31112132446263, 40.774474894142024], [-75.31106270382197, 40.77448621754172], [-75.3104874945214, 40.77459732967519], [-75.31005258197395, 40.77476221068537], [-75.30887230892066, 40.77516129762075], [-75.3084095068728, 40.775298300094896], [-75.30757644818658, 40.77541121090194], [-75.30726187231583, 40.77542714172523], [-75.30726166572059, 40.77542715269463], [-75.30726150188507, 40.77542716095993], [-75.30726099018275, 40.77542718713279], [-75.30726073612418, 40.77542719980648], [-75.30681743305506, 40.77544964850822], [-75.30644879296545, 40.77545562211495], [-75.30648226178918, 40.775801273127605], [-75.3065306153354, 40.776258958077285], [-75.30653313816926, 40.77627461864831], [-75.30655344910424, 40.77640067795135], [-75.30658707129592, 40.77666773155411], [-75.30658699955332, 40.77681364409427], [-75.30658697305041, 40.77686886297309], [-75.3065395097713, 40.77698198872777], [-75.3064638743899, 40.777100013419506], [-75.30622668786019, 40.77733957452514], [-75.30609526263665, 40.77746132308956], [-75.30597435860489, 40.777573324839054], [-75.30591562697467, 40.77763009562681], [-75.30591555445358, 40.77763016707081], [-75.30569356478055, 40.7778447452306], [-75.30538923064404, 40.77814261437184], [-75.30516025544634, 40.77836892513228], [-75.3051522302635, 40.77837685678152], [-75.3044145710843, 40.7791169481425], [-75.30359442753715, 40.779936286357284], [-75.30359405359286, 40.77993666134859], [-75.30332556713368, 40.78020487796039], [-75.3031188774892, 40.78039994024948], [-75.30301663845461, 40.78045476336112], [-75.30289029485049, 40.780489048687905], [-75.30278952798706, 40.78051639289511], [-75.30258872043075, 40.78055008907177], [-75.30106226069714, 40.780631866442555], [-75.29996490625058, 40.78069039729168], [-75.299964699638, 40.78069040824809], [-75.2998878588029, 40.78101417027747], [-75.29983821946281, 40.78120874351239], [-75.29960435711352, 40.78212540579965], [-75.29948761062573, 40.78259347853649], [-75.29935573100157, 40.78312222135505], [-75.29928476167676, 40.783408694718716], [-75.29926101664601, 40.78363850092686], [-75.29926102339668, 40.78363877042815], [-75.29926195336141, 40.78367532465567], [-75.29927362557174, 40.784134049347074], [-75.29929899405138, 40.78467585878425], [-75.2992989995489, 40.78467600033608], [-75.29932147900611, 40.78532143470848], [-75.29929644206648, 40.785537141142854], [-75.2992450462722, 40.78575743987168], [-75.29914422975705, 40.78602028688895], [-75.29877426778006, 40.78667024604664], [-75.29862598284383, 40.78693075312436], [-75.29846622095947, 40.78724950285369], [-75.29840166407591, 40.787286067683084], [-75.29837212802504, 40.78729987976714], [-75.29830334640535, 40.78733204383744], [-75.29814600241458, 40.7873620169482], [-75.29812204591471, 40.787365008438044], [-75.29774044062101, 40.787412662435536], [-75.29766349993713, 40.787418052240376], [-75.29733569060596, 40.787441014632996], [-75.29707018963545, 40.78745723274032], [-75.29697452185057, 40.78746307704813], [-75.29689212803018, 40.787468716938015], [-75.2968054764824, 40.7874704417757], [-75.29671226807874, 40.78747229742714], [-75.29662687241955, 40.7874613590656], [-75.29650371140454, 40.78744558349436], [-75.29626242728835, 40.787399984877915], [-75.29589986408614, 40.787336722339866], [-75.29570923730766, 40.78731308836557], [-75.29554112900345, 40.78729224602182], [-75.29534382320921, 40.7872542681635], [-75.29527753209548, 40.78723836515273], [-75.29526145543811, 40.78723450843267], [-75.29523664874147, 40.787226750248074], [-75.29515787292571, 40.78720211429027], [-75.2950334345172, 40.78715790584244], [-75.29501611324741, 40.78715175260105], [-75.29494083459727, 40.78711103337167], [-75.29491176773001, 40.787096225885456], [-75.29490182278055, 40.78709116002463], [-75.29481517289538, 40.78703751887913], [-75.29476405086469, 40.7870058719431], [-75.29453599182936, 40.786845740126836], [-75.29441032394138, 40.786739479453274], [-75.29441018482171, 40.786739362102274], [-75.29440990549685, 40.78673912467471], [-75.29426704594873, 40.786618327070464], [-75.29421826513064, 40.78658092058858], [-75.29421820055467, 40.78658087147741], [-75.29395957151696, 40.78638254853424], [-75.29336818020417, 40.785933796129456], [-75.29318596779449, 40.785787226104006], [-75.29314622204463, 40.78575525508428], [-75.29293450003169, 40.785543808833644], [-75.29289399694386, 40.7854730006387], [-75.29289375738198, 40.78547258387492], [-75.29287157849588, 40.785413151164136], [-75.29124499974665, 40.78599699957168], [-75.29100099964056, 40.78604699994776], [-75.28746612672357, 40.7872262876101], [-75.28745199985835, 40.7872309996532], [-75.28710490565197, 40.78734669849337], [-75.2870890005634, 40.78735199979426], [-75.28463869632232, 40.78816245085555], [-75.284049903884, 40.78683314464246], [-75.28390835861379, 40.786506814979006], [-75.28356572672409, 40.78572967065034], [-75.2834499818925, 40.78546326799501], [-75.28253238536362, 40.78337563358555], [-75.28222018320963, 40.782655934780905], [-75.28218583975773, 40.782582955268595], [-75.2815306625589, 40.78107236722147], [-75.28141088246, 40.7807933476713], [-75.28131894094608, 40.7805837264263], [-75.2812642399132, 40.78045901102601], [-75.28103883024602, 40.77993487434356], [-75.28098804619708, 40.779816786867244], [-75.28094304743675, 40.77971440472663], [-75.28027091442664, 40.77815076101621], [-75.27998462496468, 40.77748892589232], [-75.27994844428481, 40.77739239365772], [-75.2798509511251, 40.777146109786244], [-75.27945289454347, 40.776209025839165], [-75.27921863226194, 40.77565521231299], [-75.27896504099509, 40.775037831151806], [-75.27892014950599, 40.774932705280825], [-75.27863824879557, 40.774250536254556], [-75.27834083235868, 40.77352393108674], [-75.27771191748435, 40.77200559755303], [-75.27759037434024, 40.77171215719756], [-75.27749247605473, 40.77115866725414], [-75.27744445388707, 40.770897241503846], [-75.2773262580286, 40.77025379551145], [-75.27717035935602, 40.769387585112575], [-75.27716580332235, 40.76936297797766], [-75.27710484297756, 40.769033689109875], [-75.27705590454033, 40.76874450100735], [-75.27695269407059, 40.76796779495721], [-75.27680039950934, 40.766906016799695], [-75.27676618043633, 40.766658501971165], [-75.27672009834586, 40.76634088679943], [-75.27668538836352, 40.76608220678981], [-75.2765713692452, 40.76528055659626], [-75.27620034948502, 40.762608464174], [-75.27608802307911, 40.76185919135951], [-75.27589785647633, 40.7604784234982], [-75.2758496974942, 40.760119402808435], [-75.27578733821261, 40.7596802778673], [-75.27570687264345, 40.759095577824645], [-75.27563182385582, 40.7585325456589], [-75.27561210420166, 40.758384605654015], [-75.2761046510944, 40.75834802593367], [-75.27615797309458, 40.75834406577832], [-75.27663873342192, 40.75830642638875], [-75.27928492360401, 40.75810602684727], [-75.28066186790605, 40.75800197250505], [-75.28150929804032, 40.757935727897035], [-75.2815545525178, 40.75793257120928], [-75.28197280606666, 40.757900617695704], [-75.28243637153486, 40.75786396187167], [-75.28424038881136, 40.75770870380027], [-75.28546374331755, 40.75760869111765], [-75.2856185340831, 40.75759603567854], [-75.28573996681543, 40.75758598366427], [-75.28574001318205, 40.75758597924308], [-75.28576703955308, 40.75758374211788], [-75.2861889978541, 40.75754910626583], [-75.2878698087697, 40.75740507813347], [-75.28815784022885, 40.75737909383878], [-75.28971728210864, 40.75724567967696], [-75.29335133312381, 40.75693734866097], [-75.29414726894514, 40.756871295732665], [-75.2947775633323, 40.7568171802423], [-75.29549015024654, 40.756759138184464], [-75.29558781631086, 40.7567540877413], [-75.29591886461607, 40.75673696639101], [-75.29675944685519, 40.75668419660267], [-75.29694037195866, 40.75667394677181], [-75.2980778146064, 40.75660032286417], [-75.2987701016688, 40.75655418845597], [-75.30024066553905, 40.756455484117545], [-75.30060982873293, 40.75643238089462], [-75.30069409298358, 40.75642384084548], [-75.30152226417309, 40.75633990475276], [-75.30163467464324, 40.75632700098838], [-75.30176147521611, 40.75631560231588], [-75.3020351627349, 40.75628653548835], [-75.30268388003155, 40.75622195350123], [-75.30305624721416, 40.75618518170323], [-75.30540226488489, 40.75594285412561], [-75.30591595952095, 40.7558922295592], [-75.30640349294806, 40.75584105303549], [-75.3065828598657, 40.75582389083261], [-75.3071881642245, 40.755761289045935], [-75.30782864706617, 40.755699423188496], [-75.3078938434909, 40.75569392990595], [-75.30810767309563, 40.75567234176824], [-75.3083225617182, 40.75564648466747], [-75.30850470648491, 40.75562819058879], [-75.30926212430244, 40.755552116010016], [-75.30970823044758, 40.75550848335466], [-75.31091729243025, 40.75539022056991], [-75.31335915906632, 40.755151329757055], [-75.31335973567894, 40.75515127339236], [-75.31336020411088, 40.75515122736939], [-75.31336106607037, 40.7551511427602], [-75.31345265983478, 40.755142179794824], [-75.31345453116185, 40.75514199655209], [-75.31511270837713, 40.75497974452584], [-75.31529474085772, 40.75496286719391], [-75.3164034227308, 40.7548600744299], [-75.31641382390146, 40.75485919789125], [-75.3167053486902, 40.754834635329004], [-75.31688785668179, 40.754819257318665], [-75.31713398931912, 40.754793618094354], [-75.31764085679389, 40.75474081795233], [-75.31784075113696, 40.7547223785015], [-75.31827759399243, 40.7546820811291], [-75.31827976431984, 40.7546818842525], [-75.3187743257066, 40.754637793187634], [-75.31938145990557, 40.75458366088354], [-75.32227432379455, 40.754325693316666], [-75.3238815166524, 40.754182341917605], [-75.32443318084174, 40.75413313209483], [-75.32456760671977, 40.75412011760665], [-75.32505272758839, 40.75407314790095], [-75.32594508274939, 40.75398674350493], [-75.3262871713697, 40.75394949976571], [-75.3265323430131, 40.75392280632219], [-75.32692006590507, 40.75386330699625], [-75.32692489403966, 40.75386256545248], [-75.32692609006672, 40.75386238141334], [-75.3269262901721, 40.75386235135672], [-75.32703341040545, 40.75384591201356], [-75.32709855395035, 40.75384177983222], [-75.32741913425103, 40.75378840437361], [-75.32935083677997, 40.7534900992595], [-75.33063666004783, 40.75330409889311], [-75.3377476894271, 40.752234458153275], [-75.33819762790431, 40.752172929690644], [-75.33866510920166, 40.74962867137365], [-75.33869008340659, 40.74949274180739], [-75.33875412758483, 40.74914416334998], [-75.34603599790664, 40.746891515320414], [-75.34633171599657, 40.74680002220197], [-75.34694615561632, 40.74660474652323], [-75.34692666964017, 40.74654393410478], [-75.34635903485355, 40.74553484586627], [-75.3461589952912, 40.74517922624023], [-75.34527025522512, 40.74359922239505], [-75.34457481922293, 40.7423272221534], [-75.34681460515445, 40.742075870955], [-75.34698525999893, 40.742056717427076], [-75.34814244770979, 40.74192683835461]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 436, \"PRECINCTID\": \"260004-1\", \"NAME\": \"PLAINFIELD TWP PLAINFIELD CHURCH DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-02\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"ST PETER'S EVANGELICAL LUTHERAN CHURCH\", \"SiteAddress\": \"1422 CHURCH RD\", \"City\": \"PEN ARGYL\", \"STATISTICS Registered Voters - Total\": \"1144\", \"STATISTICS Ballots Cast - Total\": 920.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"80.42%\", \"Presidential Electors DEM Biden and Harris\": \"301\", \"Presidential Electors REP Trump and Pence\": \"599\", \"Presidential Electors LIB Jorgensen and Cohen\": \"14\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"324\", \"Attorney General REP Heather Heidelbaugh\": \"550\", \"Attorney General LIB Daniel Wassmer\": \"14\", \"Attorney General GRE Richard L Weiss\": \"7\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"284\", \"Auditor General REP Timothy Defoor\": \"556\", \"Auditor General LIB Jennifer Moore\": \"41\", \"Auditor General GRE Olivia Faison\": \"6\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"301\", \"State Treasurer REP Stacy L. Garrity\": \"558\", \"State Treasurer LIB Joe Soloski\": \"21\", \"State Treasurer GRE Timothy Runkle\": \"8\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"310\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"585\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"303\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"606\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 32.71739130434783, \"Presidential Electors Pct REP\": 65.1086956521739, \"Presidential Electors Pct LIB\": 1.5217391304347827, \"PA Attorney General Pct DEM\": 35.21739130434783, \"PA Attorney General Pct REP\": 59.78260869565217, \"PA Attorney General Pct LIB\": 1.5217391304347827, \"PA Attorney General Pct GRE\": 0.7608695652173914, \"PA Auditor General Pct DEM\": 30.869565217391305, \"PA Auditor General Pct REP\": 60.43478260869565, \"PA Auditor General Pct LIB\": 4.456521739130435, \"PA Auditor General Pct GRE\": 0.6521739130434783, \"PA State Treasurer Pct DEM\": 32.71739130434783, \"PA State Treasurer Pct REP\": 60.652173913043484, \"PA State Treasurer Pct LIB\": 2.282608695652174, \"PA State Treasurer Pct GRE\": 0.8695652173913043, \"PA Representative in Congress 7th Congressional District Pct DEM\": 33.69565217391305, \"PA Representative in Congress 7th Congressional District Pct REP\": 63.58695652173913, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5410237109522017, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.29420633960952, 40.81124617724472], [-75.29422408881173, 40.81128670188755], [-75.29542648266872, 40.81403133200552], [-75.29545751604657, 40.814102503148106], [-75.29547149637106, 40.81413456453439], [-75.29657415442186, 40.81664436306678], [-75.29689487003326, 40.81721385530609], [-75.29689654407639, 40.817217494074576], [-75.29708346569315, 40.817615979277136], [-75.29764371329465, 40.81885072240954], [-75.29781007422416, 40.81921250639675], [-75.29801228714557, 40.81965225353904], [-75.2980622333752, 40.819760867825124], [-75.29820927891726, 40.82011354666529], [-75.29824862145789, 40.820192107073474], [-75.29829770273781, 40.82029011520975], [-75.29944426040424, 40.82281590573397], [-75.29957184087333, 40.823108107280476], [-75.30002334465142, 40.82410629024744], [-75.30075222156913, 40.825700150010995], [-75.30165008560019, 40.827641648257], [-75.30180469223417, 40.828010955070624], [-75.30197978360498, 40.82841330033833], [-75.30201994352733, 40.82850149651653], [-75.30203077121689, 40.82852632596654], [-75.30206080505579, 40.82859519995605], [-75.30297847163709, 40.83059047276443], [-75.30337006123385, 40.83145008723789], [-75.30339754989582, 40.83151145894827], [-75.30342438067417, 40.83157135922384], [-75.30380212684241, 40.832414376764184], [-75.30436133597543, 40.83365952309164], [-75.30488118733392, 40.83479486473678], [-75.30616368716676, 40.83762168876039], [-75.30658989136555, 40.83852577715212], [-75.30660716770579, 40.83858479008445], [-75.30662204334759, 40.8386355989651], [-75.30840596343218, 40.84251547198338], [-75.30951449958475, 40.84493942494126], [-75.30951443716613, 40.844941139744606], [-75.3095195346093, 40.84499976667035], [-75.3095372176609, 40.84510996912536], [-75.30963747233668, 40.845534409484046], [-75.30985771426845, 40.846213809592456], [-75.31000782181385, 40.84656764508794], [-75.3107760190734, 40.848378394682186], [-75.31222208532479, 40.851668308133206], [-75.3128299659025, 40.85302562514749], [-75.31282877519814, 40.853058377396934], [-75.31307513080617, 40.853617845317586], [-75.31311470210137, 40.853723013965215], [-75.31361496426116, 40.8548584073454], [-75.31405417979705, 40.85588285940203], [-75.31416737162482, 40.856126687075275], [-75.31450087502823, 40.85688762301034], [-75.31461403052496, 40.85714580066495], [-75.31461444903516, 40.85714685440718], [-75.31461272050238, 40.85714720917104], [-75.31213787872633, 40.85765343009704], [-75.30855548469903, 40.858382439724124], [-75.30463102952677, 40.85919184235805], [-75.30349488487148, 40.859430166527304], [-75.30283513494189, 40.859695324823115], [-75.30144750395917, 40.85971416612991], [-75.3008403122858, 40.859728322862026], [-75.29773908016459, 40.86096532525141], [-75.29659568174158, 40.8614181999597], [-75.29562709146838, 40.86180182340422], [-75.29512353199095, 40.8619984215923], [-75.29512291596848, 40.86199777889646], [-75.29394731346704, 40.86077077588321], [-75.2936425112975, 40.86044952787022], [-75.29354338834104, 40.86034505634856], [-75.29355192707439, 40.86032730264849], [-75.29380959794783, 40.859791568458704], [-75.29391841064046, 40.85958552952142], [-75.29454575201416, 40.858354935319724], [-75.29502503418833, 40.857389442164], [-75.29508357163246, 40.857272266055375], [-75.29508755577669, 40.857262224637395], [-75.29511940363675, 40.857182582804015], [-75.29516617683126, 40.85709038473651], [-75.29521335178895, 40.856987211994614], [-75.29532415868321, 40.8567264702301], [-75.29535527132913, 40.85666689180975], [-75.29540224476878, 40.8565692063057], [-75.29544941899655, 40.85646603345204], [-75.2954893659168, 40.8563627089233], [-75.29564654815078, 40.85602057131052], [-75.2959976305448, 40.855320940674154], [-75.29609197526663, 40.855114594385036], [-75.2961461734985, 40.85501706195122], [-75.29673087615897, 40.85382164240008], [-75.29794315352873, 40.851343003809234], [-75.29896286712965, 40.84939027991806], [-75.2992516755526, 40.84880962609913], [-75.2994688362633, 40.84840834115244], [-75.30052542777406, 40.84630803278732], [-75.30052556849205, 40.846307752885366], [-75.30063174247586, 40.846096690269846], [-75.3006581672924, 40.846050896475525], [-75.3013970116789, 40.84477046004174], [-75.3014578278312, 40.84450510839126], [-75.30150669007205, 40.84429191276242], [-75.30167037738363, 40.8439184995175], [-75.30211140957549, 40.84300468507187], [-75.30243708104202, 40.84232886809773], [-75.30383155957593, 40.83938709568534], [-75.30418719045944, 40.83865716047409], [-75.30424846755515, 40.83853832130779], [-75.3046050763412, 40.83778128980767], [-75.30481407709539, 40.83735408155478], [-75.30493199467855, 40.8371034877135], [-75.30515502896525, 40.83662949738168], [-75.30534035340638, 40.83625653401781], [-75.30484073044181, 40.836300942589276], [-75.3032821534332, 40.836460354034536], [-75.30025980061653, 40.83678128460405], [-75.29974441618634, 40.836836321557264], [-75.29970086545814, 40.836840895177936], [-75.2967370818828, 40.83714100390554], [-75.29680845280487, 40.83672188662681], [-75.29687742008589, 40.836368447476424], [-75.29703379938186, 40.83555263879271], [-75.2969856139674, 40.835486238069024], [-75.29695680876125, 40.83545834337162], [-75.29691651661167, 40.83541315671388], [-75.29689264708227, 40.83538638952459], [-75.29685262615929, 40.83534150764892], [-75.29620413853047, 40.8346130527947], [-75.29611380572054, 40.83451298259342], [-75.29591464380476, 40.834670094860854], [-75.29577369061762, 40.83474852104564], [-75.29540352937197, 40.83495447695618], [-75.29524761560928, 40.83504111049107], [-75.29503846740248, 40.83515653962573], [-75.29414159900796, 40.835651516043654], [-75.29415965124645, 40.83572620525342], [-75.29429997438004, 40.836336851365], [-75.29431406396975, 40.8363963558084], [-75.29433101878463, 40.836476342225225], [-75.29447434846958, 40.837103697407194], [-75.2945239308945, 40.83732292240567], [-75.2945459138466, 40.837420118567366], [-75.29453174841892, 40.83742211112641], [-75.29353927690674, 40.83756171220812], [-75.29332847537698, 40.83759166021806], [-75.29267068461358, 40.83768510747544], [-75.29238591310859, 40.83768680955582], [-75.29216531391911, 40.8376874165295], [-75.2921201565688, 40.8376875409812], [-75.29162552997333, 40.83769372781938], [-75.29142671882616, 40.837692784351034], [-75.2913796550213, 40.83769453477501], [-75.29124661071948, 40.83769944296358], [-75.2910359782121, 40.83770047930915], [-75.2909979885952, 40.83770122068381], [-75.29087136684387, 40.83770351849659], [-75.2906381055401, 40.83770544832866], [-75.29011010538792, 40.83770972182629], [-75.28994559579988, 40.83771001605383], [-75.28969968932519, 40.837711676405235], [-75.28910952154692, 40.838424765207264], [-75.28902152604637, 40.838532048124996], [-75.28878493777727, 40.83882152781171], [-75.28876124483529, 40.83885140210203], [-75.28858710680487, 40.839064633698364], [-75.28842144981867, 40.83926843431228], [-75.28799969725267, 40.83978542734662], [-75.28799966119455, 40.83978547252653], [-75.28744185182634, 40.840469230119346], [-75.28662692657035, 40.841467743272574], [-75.28620721777598, 40.84199256575582], [-75.28611833377562, 40.84209914128119], [-75.28562212341788, 40.84271312396745], [-75.28513734020831, 40.84331104413216], [-75.28453776022162, 40.84405617337827], [-75.28425735224877, 40.84440546585075], [-75.28425544489257, 40.84440817120177], [-75.2839794341273, 40.844736104245904], [-75.28367897681777, 40.8449176472226], [-75.28136418341899, 40.84635797864487], [-75.28136415664478, 40.84635799699429], [-75.28088227803748, 40.84665782126618], [-75.28046400634055, 40.84692060115256], [-75.28051495883416, 40.84843499470736], [-75.28050433139366, 40.848433616789364], [-75.2800060005873, 40.84836899977036], [-75.27933000000895, 40.84828099993709], [-75.27797899973493, 40.84812299972005], [-75.27733799962844, 40.84805499985299], [-75.27697000033062, 40.84800200043159], [-75.27670999864546, 40.847951000903485], [-75.27628499944565, 40.84784200029284], [-75.27596800046628, 40.84772700032007], [-75.27582190034397, 40.847661090874325], [-75.27556899953807, 40.847546999764056], [-75.27527700017573, 40.84739600018382], [-75.27507439253361, 40.847269863775935], [-75.27501999967734, 40.847236000317075], [-75.27494856431832, 40.84719583738709], [-75.2747870000681, 40.84710500040048], [-75.27437710170994, 40.84683021327881], [-75.27415899946409, 40.84668400027688], [-75.2740110228818, 40.84656525288365], [-75.27399699996322, 40.84655399982791], [-75.27398770883703, 40.84654317455249], [-75.27389400017385, 40.84643400030931], [-75.27379544521875, 40.846303963418386], [-75.27367800015132, 40.84614900005757], [-75.27346299926637, 40.845837000318824], [-75.27329124313947, 40.84566124902082], [-75.27329099967015, 40.845660999701906], [-75.27281800058361, 40.84476199966775], [-75.27273591594462, 40.84460000700142], [-75.27266699998133, 40.84446399994002], [-75.27254803527703, 40.84417808299779], [-75.27254800037328, 40.84417800027596], [-75.27253499946647, 40.84280900024066], [-75.26728799976884, 40.838472999718405], [-75.26718999983467, 40.838391000353056], [-75.26700499980453, 40.838213999954505], [-75.26693299942582, 40.838166000145634], [-75.26546399976918, 40.836876000421526], [-75.26483999983485, 40.83598999963126], [-75.26397712086205, 40.835428078668315], [-75.26397700040756, 40.83542800041976], [-75.26365699964038, 40.83524399989233], [-75.26303600008568, 40.834837999709734], [-75.25906499963081, 40.82963299976137], [-75.25871000051684, 40.829197000086445], [-75.25437600054548, 40.823512000344714], [-75.2537710002348, 40.823675000439664], [-75.2528630003484, 40.82386100010633], [-75.25273500011338, 40.823070000413246], [-75.25263700038899, 40.82269600058554], [-75.25258500056573, 40.8226780000076], [-75.25255200011888, 40.822647000047304], [-75.25252200048568, 40.82260999991057], [-75.25253800031496, 40.82249300012062], [-75.25257300056978, 40.82230800022043], [-75.25260000026526, 40.822198999579136], [-75.25261499950442, 40.82216599963934], [-75.25263699943828, 40.82214200027013], [-75.25269399991433, 40.822116999896025], [-75.25286199963239, 40.82205700025081], [-75.25302499957259, 40.82198900043343], [-75.25299600021503, 40.8218849999381], [-75.252890000396, 40.82175699984468], [-75.25279099936772, 40.82166300018963], [-75.25269599952986, 40.8215820003815], [-75.25260799964846, 40.821491999878226], [-75.25241999946681, 40.82115800016535], [-75.2525530001439, 40.821129999955126], [-75.25400699965031, 40.82077900029112], [-75.25640199955772, 40.82020800009205], [-75.25680299956085, 40.820131000233665], [-75.25715300021267, 40.82002799967025], [-75.2589339995823, 40.819607000006485], [-75.25909099985601, 40.81967099991123], [-75.25924799957137, 40.81979100023764], [-75.25932200030897, 40.819984999876795], [-75.26003599984251, 40.81973399963941], [-75.25989299961725, 40.819403999982065], [-75.26047599997429, 40.81925899971721], [-75.261756999556, 40.818962000035015], [-75.2645830002792, 40.81828299981635], [-75.26494899997677, 40.81819599974108], [-75.26705300024999, 40.81766800015622], [-75.26714599971743, 40.81764999959441], [-75.26811700047541, 40.817422000019754], [-75.26823499957433, 40.81739299961651], [-75.26835300043258, 40.81736599995622], [-75.2685010004457, 40.817264000457385], [-75.26864100005507, 40.81717499970993], [-75.26867600011242, 40.81715300016684], [-75.26885100044647, 40.81714400017306], [-75.26903599941636, 40.81718099987938], [-75.26949700043329, 40.81709800023903], [-75.27129600015472, 40.816701000118414], [-75.27149899962878, 40.81656300030633], [-75.27202999983221, 40.81638999991181], [-75.2721189997452, 40.81647699966459], [-75.27236600031468, 40.81629499963288], [-75.27253200029934, 40.81625799976633], [-75.27274400038749, 40.816305000376246], [-75.27337899956188, 40.816177000109654], [-75.27347899971977, 40.81615699969175], [-75.27412799994042, 40.81602800011961], [-75.27475299957268, 40.81587800010572], [-75.27590900042878, 40.815602999572306], [-75.27591800010899, 40.81556699985641], [-75.27602899953993, 40.81547400019908], [-75.27618599977305, 40.8153820004227], [-75.27631500016246, 40.815391000278964], [-75.27650799995264, 40.81548400029981], [-75.28065100054458, 40.81447800007213], [-75.28129699975389, 40.81376800004534], [-75.2816559998199, 40.81381400024885], [-75.28185900015298, 40.81381399960432], [-75.28208999941069, 40.8139710001492], [-75.28236199986915, 40.81408799962955], [-75.28301299976911, 40.813942999710505], [-75.28334499998346, 40.814017000418104], [-75.28365799955442, 40.813777000373996], [-75.28496800003143, 40.8135280001583], [-75.28533700035263, 40.813426000282526], [-75.28820699985728, 40.81269699983169], [-75.28846500033798, 40.81288199977985], [-75.28890799969113, 40.81252200007516], [-75.2892500001952, 40.81243300024169], [-75.29073399942439, 40.81211600021967], [-75.29420633960952, 40.81124617724472]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 437, \"PRECINCTID\": \"380000-1\", \"NAME\": \"WIND GAP BOROUGH\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-02\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"WIND GAP FIRE HALL\", \"SiteAddress\": \"111 NORTH BROADWAY\", \"City\": \"WIND GAP\", \"STATISTICS Registered Voters - Total\": \"1814\", \"STATISTICS Ballots Cast - Total\": 1329.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"73.26%\", \"Presidential Electors DEM Biden and Harris\": \"526\", \"Presidential Electors REP Trump and Pence\": \"781\", \"Presidential Electors LIB Jorgensen and Cohen\": \"15\", \"Presidential Electors Write-In Totals\": \"1\", \"Attorney General DEM Josh Shapiro\": \"511\", \"Attorney General REP Heather Heidelbaugh\": \"726\", \"Attorney General LIB Daniel Wassmer\": \"23\", \"Attorney General GRE Richard L Weiss\": \"14\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"453\", \"Auditor General REP Timothy Defoor\": \"757\", \"Auditor General LIB Jennifer Moore\": \"38\", \"Auditor General GRE Olivia Faison\": \"20\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"489\", \"State Treasurer REP Stacy L. Garrity\": \"742\", \"State Treasurer LIB Joe Soloski\": \"30\", \"State Treasurer GRE Timothy Runkle\": \"12\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"503\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"781\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"474\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"820\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 39.57863054928518, \"Presidential Electors Pct REP\": 58.76598946576374, \"Presidential Electors Pct LIB\": 1.1286681715575622, \"PA Attorney General Pct DEM\": 38.449962377727616, \"PA Attorney General Pct REP\": 54.627539503386004, \"PA Attorney General Pct LIB\": 1.7306245297215952, \"PA Attorney General Pct GRE\": 1.0534236267870578, \"PA Auditor General Pct DEM\": 34.08577878103837, \"PA Auditor General Pct REP\": 56.96012039127163, \"PA Auditor General Pct LIB\": 2.8592927012791574, \"PA Auditor General Pct GRE\": 1.5048908954100828, \"PA State Treasurer Pct DEM\": 36.794582392776526, \"PA State Treasurer Pct REP\": 55.83145221971407, \"PA State Treasurer Pct LIB\": 2.2573363431151243, \"PA State Treasurer Pct GRE\": 0.9029345372460496, \"PA Representative in Congress 7th Congressional District Pct DEM\": 37.84800601956358, \"PA Representative in Congress 7th Congressional District Pct REP\": 58.76598946576374, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.7815440346255176, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.28051495883416, 40.84843499470736], [-75.28046400634055, 40.84692060115256], [-75.28088227803748, 40.84665782126618], [-75.28136415664478, 40.84635799699429], [-75.28136418341899, 40.84635797864487], [-75.28367897681777, 40.8449176472226], [-75.2839794341273, 40.844736104245904], [-75.28425544489257, 40.84440817120177], [-75.28425735224877, 40.84440546585075], [-75.28453776022162, 40.84405617337827], [-75.28513734020831, 40.84331104413216], [-75.28562212341788, 40.84271312396745], [-75.28611833377562, 40.84209914128119], [-75.28620721777598, 40.84199256575582], [-75.28662692657035, 40.841467743272574], [-75.28744185182634, 40.840469230119346], [-75.28799966119455, 40.83978547252653], [-75.28799969725267, 40.83978542734662], [-75.28842144981867, 40.83926843431228], [-75.28858710680487, 40.839064633698364], [-75.28876124483529, 40.83885140210203], [-75.28878493777727, 40.83882152781171], [-75.28902152604637, 40.838532048124996], [-75.28910952154692, 40.838424765207264], [-75.28969968932519, 40.837711676405235], [-75.28994559579988, 40.83771001605383], [-75.29011010538792, 40.83770972182629], [-75.2906381055401, 40.83770544832866], [-75.29087136684387, 40.83770351849659], [-75.2909979885952, 40.83770122068381], [-75.2910359782121, 40.83770047930915], [-75.29124661071948, 40.83769944296358], [-75.2913796550213, 40.83769453477501], [-75.29142671882616, 40.837692784351034], [-75.29162552997333, 40.83769372781938], [-75.2921201565688, 40.8376875409812], [-75.29216531391911, 40.8376874165295], [-75.29238591310859, 40.83768680955582], [-75.29267068461358, 40.83768510747544], [-75.29332847537698, 40.83759166021806], [-75.29353927690674, 40.83756171220812], [-75.29453174841892, 40.83742211112641], [-75.2945459138466, 40.837420118567366], [-75.2945239308945, 40.83732292240567], [-75.29447434846958, 40.837103697407194], [-75.29433101878463, 40.836476342225225], [-75.29431406396975, 40.8363963558084], [-75.29429997438004, 40.836336851365], [-75.29415965124645, 40.83572620525342], [-75.29414159900796, 40.835651516043654], [-75.29503846740248, 40.83515653962573], [-75.29524761560928, 40.83504111049107], [-75.29540352937197, 40.83495447695618], [-75.29577369061762, 40.83474852104564], [-75.29591464380476, 40.834670094860854], [-75.29611380572054, 40.83451298259342], [-75.29620413853047, 40.8346130527947], [-75.29685262615929, 40.83534150764892], [-75.29689264708227, 40.83538638952459], [-75.29691651661167, 40.83541315671388], [-75.29695680876125, 40.83545834337162], [-75.2969856139674, 40.835486238069024], [-75.29703379938186, 40.83555263879271], [-75.29687742008589, 40.836368447476424], [-75.29680845280487, 40.83672188662681], [-75.2967370818828, 40.83714100390554], [-75.29970086545814, 40.836840895177936], [-75.29974441618634, 40.836836321557264], [-75.30025980061653, 40.83678128460405], [-75.3032821534332, 40.836460354034536], [-75.30484073044181, 40.836300942589276], [-75.30534035340638, 40.83625653401781], [-75.30515502896525, 40.83662949738168], [-75.30493199467855, 40.8371034877135], [-75.30481407709539, 40.83735408155478], [-75.3046050763412, 40.83778128980767], [-75.30424846755515, 40.83853832130779], [-75.30418719045944, 40.83865716047409], [-75.30383155957593, 40.83938709568534], [-75.30243708104202, 40.84232886809773], [-75.30211140957549, 40.84300468507187], [-75.30167037738363, 40.8439184995175], [-75.30150669007205, 40.84429191276242], [-75.3014578278312, 40.84450510839126], [-75.3013970116789, 40.84477046004174], [-75.3006581672924, 40.846050896475525], [-75.30063174247586, 40.846096690269846], [-75.30052556849205, 40.846307752885366], [-75.30052542777406, 40.84630803278732], [-75.2994688362633, 40.84840834115244], [-75.2992516755526, 40.84880962609913], [-75.29896286712965, 40.84939027991806], [-75.29794315352873, 40.851343003809234], [-75.29673087615897, 40.85382164240008], [-75.2961461734985, 40.85501706195122], [-75.29609197526663, 40.855114594385036], [-75.2959976305448, 40.855320940674154], [-75.29564654815078, 40.85602057131052], [-75.2954893659168, 40.8563627089233], [-75.29544941899655, 40.85646603345204], [-75.29540224476878, 40.8565692063057], [-75.29535527132913, 40.85666689180975], [-75.29532415868321, 40.8567264702301], [-75.29521335178895, 40.856987211994614], [-75.29516617683126, 40.85709038473651], [-75.29511940363675, 40.857182582804015], [-75.29508755577669, 40.857262224637395], [-75.29508357163246, 40.857272266055375], [-75.29502503418833, 40.857389442164], [-75.29454575201416, 40.858354935319724], [-75.29391841064046, 40.85958552952142], [-75.29380959794783, 40.859791568458704], [-75.29355192707439, 40.86032730264849], [-75.29354338834104, 40.86034505634856], [-75.2936425112975, 40.86044952787022], [-75.29394731346704, 40.86077077588321], [-75.29512291596848, 40.86199777889646], [-75.29512353199095, 40.8619984215923], [-75.29512166973178, 40.861999148900864], [-75.29489139504066, 40.86213429270219], [-75.29486760792882, 40.862148252704415], [-75.29441940396894, 40.86241129191727], [-75.29441223369497, 40.86241536728433], [-75.29362989157273, 40.86286002803718], [-75.2920285463536, 40.863773490323446], [-75.29041917035421, 40.86391896927197], [-75.29041813824252, 40.86391776643232], [-75.29034679554317, 40.86383461193879], [-75.28850933740267, 40.861692848658315], [-75.28704756452989, 40.85998782256361], [-75.28651412008344, 40.85937279165426], [-75.28624694720547, 40.859061220798175], [-75.28599133740605, 40.85876313135183], [-75.28589075766507, 40.858646192153486], [-75.28536432502372, 40.85816069840077], [-75.28531131640712, 40.85810242852944], [-75.28528181730262, 40.8580686817132], [-75.28499318940676, 40.8577303228062], [-75.28497417837453, 40.857706408504136], [-75.28485888618255, 40.85757165109301], [-75.2848398752101, 40.85754773766801], [-75.2847046137232, 40.85739059039673], [-75.28468560289026, 40.85736667604507], [-75.28457031304791, 40.85723191835938], [-75.28428174161894, 40.85689218575048], [-75.28420553547063, 40.85680098827137], [-75.28418471819579, 40.856777035520075], [-75.28410755845461, 40.856687190643726], [-75.28408854803399, 40.85666327618944], [-75.2839914180176, 40.856551041372434], [-75.28387709112138, 40.85641475927007], [-75.28378081358369, 40.8563039143299], [-75.28368554813811, 40.856190174710314], [-75.28343325686743, 40.855896685087714], [-75.2833388959699, 40.85578296433321], [-75.28308660653005, 40.85548947479819], [-75.28299133715818, 40.85537590471059], [-75.28293921726295, 40.85531816686123], [-75.28285267914256, 40.855213020182696], [-75.28281364936926, 40.855168087254604], [-75.28260751993413, 40.85492242655128], [-75.28256849049424, 40.85487749353704], [-75.28224367211577, 40.85449150830894], [-75.28214655466253, 40.85437909995041], [-75.28195511797175, 40.854151940679365], [-75.28187903416156, 40.854061681852585], [-75.28171517317064, 40.85386729041168], [-75.28155909842516, 40.85368652904841], [-75.28154008973105, 40.85366261505649], [-75.2814057396797, 40.85350565394827], [-75.2813867310915, 40.85348173992999], [-75.28127054491364, 40.85334713066767], [-75.28122990233014, 40.853299529702106], [-75.28113534445495, 40.853188779151004], [-75.28100105430912, 40.85303027472294], [-75.28086585394024, 40.852871922852906], [-75.28071250011327, 40.85269104682017], [-75.28059812329698, 40.85255647612264], [-75.28023332723905, 40.852127417891474], [-75.28019435152376, 40.85208111311636], [-75.27986439332237, 40.8516931004573], [-75.2797758355699, 40.85158896046593], [-75.28036910511855, 40.85119020628111], [-75.28062211667105, 40.85102156483062], [-75.28057227344539, 40.84984684510978], [-75.280517517344, 40.848511046921864], [-75.28051496383306, 40.84843514885962], [-75.28051495883416, 40.84843499470736]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 440, \"PRECINCTID\": \"250300-1\", \"NAME\": \"PEN ARGYL BOROUGH 3RD WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-03\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"LOOKOUT FIRE CO & MUNICIPAL BUILDING\", \"SiteAddress\": \"11-13 N ROBINSON AVE\", \"City\": \"PEN ARGYL\", \"STATISTICS Registered Voters - Total\": \"645\", \"STATISTICS Ballots Cast - Total\": 500.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"77.52%\", \"Presidential Electors DEM Biden and Harris\": \"207\", \"Presidential Electors REP Trump and Pence\": \"284\", \"Presidential Electors LIB Jorgensen and Cohen\": \"6\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"211\", \"Attorney General REP Heather Heidelbaugh\": \"250\", \"Attorney General LIB Daniel Wassmer\": \"9\", \"Attorney General GRE Richard L Weiss\": \"10\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"194\", \"Auditor General REP Timothy Defoor\": \"258\", \"Auditor General LIB Jennifer Moore\": \"19\", \"Auditor General GRE Olivia Faison\": \"6\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"201\", \"State Treasurer REP Stacy L. Garrity\": \"256\", \"State Treasurer LIB Joe Soloski\": \"12\", \"State Treasurer GRE Timothy Runkle\": \"7\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"210\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"273\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"6\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"210\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"275\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"6\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 41.4, \"Presidential Electors Pct REP\": 56.8, \"Presidential Electors Pct LIB\": 1.2, \"PA Attorney General Pct DEM\": 42.199999999999996, \"PA Attorney General Pct REP\": 50.0, \"PA Attorney General Pct LIB\": 1.7999999999999998, \"PA Attorney General Pct GRE\": 2.0, \"PA Auditor General Pct DEM\": 38.800000000000004, \"PA Auditor General Pct REP\": 51.6, \"PA Auditor General Pct LIB\": 3.8, \"PA Auditor General Pct GRE\": 1.2, \"PA State Treasurer Pct DEM\": 40.2, \"PA State Treasurer Pct REP\": 51.2, \"PA State Treasurer Pct LIB\": 2.4, \"PA State Treasurer Pct GRE\": 1.4000000000000001, \"PA Representative in Congress 7th Congressional District Pct DEM\": 42.0, \"PA Representative in Congress 7th Congressional District Pct REP\": 54.6, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.2940346255175009, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.25459251598734, 40.86787520752815], [-75.25440040430097, 40.86748890949194], [-75.25437883394538, 40.867445536118126], [-75.25430124408948, 40.86729508202112], [-75.25419820698305, 40.86708941596199], [-75.25414384889628, 40.86698091231403], [-75.2539115469245, 40.866517203102866], [-75.253912019314, 40.866517041178], [-75.25394881941098, 40.866504410938475], [-75.25418449826924, 40.866423525399156], [-75.25436837262193, 40.8663665481358], [-75.25472082565452, 40.866254278888064], [-75.25476460568851, 40.86624033336353], [-75.25516224333428, 40.86612495948429], [-75.2554658052347, 40.8660342606072], [-75.25555452237157, 40.866007753203014], [-75.25586263648832, 40.86591905986528], [-75.25605997600859, 40.86586225344693], [-75.25665958055464, 40.86568942471653], [-75.25702491647432, 40.865584620867125], [-75.25710377513992, 40.86556199896951], [-75.25710380385895, 40.86556205633907], [-75.25721616037337, 40.86578239629859], [-75.25721625988905, 40.8657825921158], [-75.2572164932333, 40.8657830502482], [-75.25730435169575, 40.86595534661695], [-75.25749927041798, 40.86633072390041], [-75.25769405171432, 40.8666904526574], [-75.25770910998455, 40.86671826227614], [-75.25787984578126, 40.86703889077885], [-75.25789291416613, 40.8670649767303], [-75.2580298744699, 40.86733835919512], [-75.25805661800614, 40.86739174039017], [-75.25810872136621, 40.86749806051668], [-75.25821546980532, 40.86771588911202], [-75.25963407433834, 40.86733114256665], [-75.26112141909216, 40.866921077626124], [-75.26147286024015, 40.86683197969259], [-75.26190926486802, 40.866719471815934], [-75.26214381709286, 40.86665004565332], [-75.26214385069406, 40.86665003556183], [-75.26214394546868, 40.86665000786109], [-75.26216069412857, 40.86664505020317], [-75.26216782013839, 40.86664223432518], [-75.2623625871821, 40.86656527861247], [-75.2625260610531, 40.86649738429596], [-75.26269589235143, 40.86640439819122], [-75.26288245611717, 40.86629907123702], [-75.26309998636796, 40.86618280317448], [-75.26335110080295, 40.86604858350262], [-75.26357459064845, 40.8659250351798], [-75.2635746633271, 40.865924995294385], [-75.2637462132988, 40.86583015895907], [-75.26395629135057, 40.86570027666618], [-75.26413996044674, 40.86558096767779], [-75.26419441382707, 40.86554559476108], [-75.26434051044717, 40.86540888411846], [-75.26434347998881, 40.86541376445641], [-75.26436440455532, 40.86544814777083], [-75.26544850369687, 40.86720292389399], [-75.2658305915154, 40.86782136729093], [-75.26695005883823, 40.86963324650366], [-75.26696056792245, 40.86965071588822], [-75.26701479709507, 40.86974085715031], [-75.26703876914507, 40.86977723546853], [-75.26705411849262, 40.8698022753427], [-75.26708400259527, 40.86984993512004], [-75.26714954320177, 40.86996030860248], [-75.26747481782586, 40.87048020270841], [-75.26770544764564, 40.87069895418583], [-75.26746283195051, 40.870803779777425], [-75.2662886101683, 40.87140149285857], [-75.2661338208265, 40.871478845071096], [-75.26613195010053, 40.871480521243235], [-75.26608885982205, 40.87152078796031], [-75.26605148337111, 40.871553282522754], [-75.26601381714183, 40.871581587326915], [-75.2644812565857, 40.87273321055063], [-75.26247923435795, 40.87409368849606], [-75.26059478489596, 40.87537873661684], [-75.25881461766868, 40.8765784411646], [-75.2581260005368, 40.875144999851855], [-75.25812700011944, 40.8751079997889], [-75.25812800000361, 40.87504600014436], [-75.25785699990053, 40.874499999741275], [-75.25757999947135, 40.873937999596485], [-75.25730404277863, 40.8733750876807], [-75.25730419752634, 40.87337504325187], [-75.25687541317319, 40.872479127486166], [-75.25655025468791, 40.8718365022551], [-75.25624010444447, 40.871212396729966], [-75.25622806253533, 40.87118809380994], [-75.2562279995804, 40.871187999671996], [-75.25621037291678, 40.871152691971396], [-75.25590910184881, 40.87054852603892], [-75.25576296534132, 40.87025511937878], [-75.25576288694616, 40.87025496184956], [-75.25576283615209, 40.870254859864396], [-75.2557627864768, 40.87025475970497], [-75.25558683979851, 40.869901497515514], [-75.25526371752714, 40.86925341970938], [-75.25501767064385, 40.86875883175372], [-75.25493812826765, 40.86859893768436], [-75.2548937672049, 40.86850333571659], [-75.25489356511156, 40.8685028989699], [-75.25489352004786, 40.868502802512346], [-75.25489338933163, 40.86850252044254], [-75.2547656844939, 40.868227298599635], [-75.25467901207375, 40.8680403238249], [-75.25462924835882, 40.867932971244144], [-75.25461812979593, 40.86791548578321], [-75.25459251598734, 40.86787520752815]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 441, \"PRECINCTID\": \"250200-1\", \"NAME\": \"PEN ARGYL BOROUGH 2ND WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-03\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"ST JOHN'S EVANGELICAL LUTHERAN CHURCH\", \"SiteAddress\": \"12 N WESTBROOK AVE\", \"City\": \"PEN ARGYL\", \"STATISTICS Registered Voters - Total\": \"906\", \"STATISTICS Ballots Cast - Total\": 723.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"79.80%\", \"Presidential Electors DEM Biden and Harris\": \"250\", \"Presidential Electors REP Trump and Pence\": \"458\", \"Presidential Electors LIB Jorgensen and Cohen\": \"11\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"243\", \"Attorney General REP Heather Heidelbaugh\": \"416\", \"Attorney General LIB Daniel Wassmer\": \"23\", \"Attorney General GRE Richard L Weiss\": \"16\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"211\", \"Auditor General REP Timothy Defoor\": \"451\", \"Auditor General LIB Jennifer Moore\": \"29\", \"Auditor General GRE Olivia Faison\": \"6\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"225\", \"State Treasurer REP Stacy L. Garrity\": \"443\", \"State Treasurer LIB Joe Soloski\": \"20\", \"State Treasurer GRE Timothy Runkle\": \"7\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"241\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"461\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"235\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"473\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 34.57814661134163, \"Presidential Electors Pct REP\": 63.347164591977865, \"Presidential Electors Pct LIB\": 1.5214384508990317, \"PA Attorney General Pct DEM\": 33.60995850622407, \"PA Attorney General Pct REP\": 57.53803596127247, \"PA Attorney General Pct LIB\": 3.18118948824343, \"PA Attorney General Pct GRE\": 2.2130013831258646, \"PA Auditor General Pct DEM\": 29.18395573997234, \"PA Auditor General Pct REP\": 62.3789764868603, \"PA Auditor General Pct LIB\": 4.011065006915629, \"PA Auditor General Pct GRE\": 0.8298755186721992, \"PA State Treasurer Pct DEM\": 31.12033195020747, \"PA State Treasurer Pct REP\": 61.272475795297375, \"PA State Treasurer Pct LIB\": 2.7662517289073305, \"PA State Treasurer Pct GRE\": 0.9681881051175657, \"PA Representative in Congress 7th Congressional District Pct DEM\": 33.33333333333333, \"PA Representative in Congress 7th Congressional District Pct REP\": 63.76210235131396, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.42517406849830636, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.2539115469245, 40.866517203102866], [-75.25414384889628, 40.86698091231403], [-75.25419820698305, 40.86708941596199], [-75.25430124408948, 40.86729508202112], [-75.25437883394538, 40.867445536118126], [-75.25440040430097, 40.86748890949194], [-75.25459251598734, 40.86787520752815], [-75.25461812979593, 40.86791548578321], [-75.25462924835882, 40.867932971244144], [-75.25467901207375, 40.8680403238249], [-75.2547656844939, 40.868227298599635], [-75.25489338933163, 40.86850252044254], [-75.25489352004786, 40.868502802512346], [-75.25489356511156, 40.8685028989699], [-75.2548937672049, 40.86850333571659], [-75.25493812826765, 40.86859893768436], [-75.25501767064385, 40.86875883175372], [-75.25526371752714, 40.86925341970938], [-75.25558683979851, 40.869901497515514], [-75.2557627864768, 40.87025475970497], [-75.25576283615209, 40.870254859864396], [-75.25576288694616, 40.87025496184956], [-75.25576296534132, 40.87025511937878], [-75.25590910184881, 40.87054852603892], [-75.25621037291678, 40.871152691971396], [-75.2562279995804, 40.871187999671996], [-75.25622806253533, 40.87118809380994], [-75.25624010444447, 40.871212396729966], [-75.25655025468791, 40.8718365022551], [-75.25687541317319, 40.872479127486166], [-75.25730419752634, 40.87337504325187], [-75.25730404277863, 40.8733750876807], [-75.25757999947135, 40.873937999596485], [-75.25785699990053, 40.874499999741275], [-75.25812800000361, 40.87504600014436], [-75.25812700011944, 40.8751079997889], [-75.2581260005368, 40.875144999851855], [-75.25881461766868, 40.8765784411646], [-75.25822568941891, 40.87697532084885], [-75.25818883995687, 40.877017777792595], [-75.25755219801493, 40.877428706896346], [-75.25754571525526, 40.87743289117785], [-75.25693047420002, 40.877829999750595], [-75.25649663859043, 40.878114330877715], [-75.25647223067301, 40.878138347789424], [-75.2564002677503, 40.87820081702383], [-75.25632924565846, 40.878252001578105], [-75.25632169281013, 40.878257444767016], [-75.25585475414208, 40.87859395570222], [-75.25577427671583, 40.878642169765], [-75.25570012497218, 40.87869051851783], [-75.25369010698624, 40.880061662143895], [-75.25366518049931, 40.88004647302693], [-75.25366460605953, 40.88004612197821], [-75.25301005067021, 40.87964724631469], [-75.25031730975815, 40.878006241553976], [-75.25028459675572, 40.87798614674121], [-75.2491435555262, 40.87705704559509], [-75.24857914509265, 40.876598714362984], [-75.24784144795561, 40.87599450194841], [-75.24773957504354, 40.87591106038338], [-75.24771730285069, 40.875892818157055], [-75.24769969124699, 40.875878393123834], [-75.24733392257384, 40.87557880202532], [-75.24695932309086, 40.875269215618665], [-75.24681183514745, 40.875150203142255], [-75.24670994128152, 40.87506958253274], [-75.24647391158551, 40.87487572698451], [-75.24635568564179, 40.87477915796752], [-75.24635438537776, 40.8747780966961], [-75.2461588622981, 40.87461839001735], [-75.24607283156837, 40.87454892237395], [-75.24578869557175, 40.874311469593216], [-75.24556314813408, 40.874127620134125], [-75.2453490937158, 40.87395088312851], [-75.2452006951352, 40.873832191154285], [-75.24519692246054, 40.87375020122773], [-75.245196702841, 40.873745439969646], [-75.24518731285445, 40.873455888561466], [-75.24518763556219, 40.87345573245595], [-75.245271043096, 40.87340175385446], [-75.24533832086686, 40.87336520808123], [-75.24544273584534, 40.87330848910074], [-75.24562501375851, 40.87319811951896], [-75.24574950402501, 40.87311636978753], [-75.24605062871787, 40.87291639793776], [-75.24611313743252, 40.87287936619603], [-75.24647326068052, 40.87266601544072], [-75.24662275601007, 40.872578912325125], [-75.24662579379749, 40.872577142662244], [-75.24663070070443, 40.87257432589416], [-75.24663079284426, 40.872574273825876], [-75.24682263417996, 40.872464166822255], [-75.24704157756771, 40.872340511901506], [-75.24743981124539, 40.872113626819505], [-75.24784006858528, 40.87188526330517], [-75.24784024198722, 40.871885164337904], [-75.2478403875106, 40.87188508098627], [-75.24789257137546, 40.87185530781728], [-75.24789900378434, 40.871851679711945], [-75.24813552134441, 40.87171826621935], [-75.24824161754124, 40.87166202779447], [-75.24841617624551, 40.87156964291768], [-75.248522990167, 40.87151311248862], [-75.24871498354527, 40.871436634733854], [-75.24879195183848, 40.871405975333126], [-75.24887411380381, 40.87136821080322], [-75.24887493127085, 40.87136783470789], [-75.24908085925964, 40.871273181241314], [-75.25061436898042, 40.87055087475123], [-75.25063176296057, 40.870542251686125], [-75.25087879085393, 40.870419780643445], [-75.25105485618295, 40.86994201606782], [-75.25109402816905, 40.869826276014486], [-75.25114123640836, 40.869686794459845], [-75.25119284606151, 40.86953091906284], [-75.25119285668876, 40.86953088866205], [-75.25137153753133, 40.86899121611411], [-75.25148420913547, 40.868653770291985], [-75.25152218999028, 40.86854001880933], [-75.25157635716633, 40.868396856114636], [-75.25190843670578, 40.868002928738775], [-75.25278200431862, 40.86705400387926], [-75.25278204509094, 40.867053960612715], [-75.25280702937022, 40.86702574081654], [-75.25368069333777, 40.86603893770233], [-75.25368082115749, 40.866039201694605], [-75.2539115469245, 40.866517203102866]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 442, \"PRECINCTID\": \"250400-1\", \"NAME\": \"PEN ARGYL BOROUGH 4TH WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-03\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"LOOKOUT FIRE CO & MUNICIPAL BUILDING\", \"SiteAddress\": \"11-13 N ROBINSON AVE\", \"City\": \"PEN ARGYL\", \"STATISTICS Registered Voters - Total\": \"431\", \"STATISTICS Ballots Cast - Total\": 311.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"72.16%\", \"Presidential Electors DEM Biden and Harris\": \"132\", \"Presidential Electors REP Trump and Pence\": \"170\", \"Presidential Electors LIB Jorgensen and Cohen\": \"7\", \"Presidential Electors Write-In Totals\": \"0\", \"Attorney General DEM Josh Shapiro\": \"136\", \"Attorney General REP Heather Heidelbaugh\": \"146\", \"Attorney General LIB Daniel Wassmer\": \"5\", \"Attorney General GRE Richard L Weiss\": \"10\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"116\", \"Auditor General REP Timothy Defoor\": \"157\", \"Auditor General LIB Jennifer Moore\": \"14\", \"Auditor General GRE Olivia Faison\": \"7\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"127\", \"State Treasurer REP Stacy L. Garrity\": \"153\", \"State Treasurer LIB Joe Soloski\": \"9\", \"State Treasurer GRE Timothy Runkle\": \"5\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"129\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"171\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"135\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"170\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 42.443729903536976, \"Presidential Electors Pct REP\": 54.662379421221864, \"Presidential Electors Pct LIB\": 2.2508038585209005, \"PA Attorney General Pct DEM\": 43.729903536977496, \"PA Attorney General Pct REP\": 46.94533762057878, \"PA Attorney General Pct LIB\": 1.607717041800643, \"PA Attorney General Pct GRE\": 3.215434083601286, \"PA Auditor General Pct DEM\": 37.29903536977492, \"PA Auditor General Pct REP\": 50.482315112540185, \"PA Auditor General Pct LIB\": 4.501607717041801, \"PA Auditor General Pct GRE\": 2.2508038585209005, \"PA State Treasurer Pct DEM\": 40.836012861736336, \"PA State Treasurer Pct REP\": 49.19614147909968, \"PA State Treasurer Pct LIB\": 2.8938906752411575, \"PA State Treasurer Pct GRE\": 1.607717041800643, \"PA Representative in Congress 7th Congressional District Pct DEM\": 41.47909967845659, \"PA Representative in Congress 7th Congressional District Pct REP\": 54.983922829581985, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.1828895370718856, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.25710377513992, 40.86556199896951], [-75.25837868121505, 40.86519855700339], [-75.25849145148655, 40.865200973033915], [-75.25855034733478, 40.86520223479603], [-75.2592405917476, 40.865000230917474], [-75.26003219973616, 40.86476855618852], [-75.26151606913551, 40.864328724150944], [-75.26156870300852, 40.864312934141005], [-75.26336029290272, 40.863775448565434], [-75.26357387718336, 40.86413831509469], [-75.2637695497016, 40.86447129161533], [-75.2638256305985, 40.86456672445477], [-75.26385717078487, 40.86461836728368], [-75.2639023984901, 40.864691068310364], [-75.26403713060297, 40.86491035267388], [-75.26415495881622, 40.865103975926615], [-75.26434051044717, 40.86540888411846], [-75.26419441382707, 40.86554559476108], [-75.26413996044674, 40.86558096767779], [-75.26395629135057, 40.86570027666618], [-75.2637462132988, 40.86583015895907], [-75.2635746633271, 40.865924995294385], [-75.26357459064845, 40.8659250351798], [-75.26335110080295, 40.86604858350262], [-75.26309998636796, 40.86618280317448], [-75.26288245611717, 40.86629907123702], [-75.26269589235143, 40.86640439819122], [-75.2625260610531, 40.86649738429596], [-75.2623625871821, 40.86656527861247], [-75.26216782013839, 40.86664223432518], [-75.26216069412857, 40.86664505020317], [-75.26214394546868, 40.86665000786109], [-75.26214385069406, 40.86665003556183], [-75.26214381709286, 40.86665004565332], [-75.26190926486802, 40.866719471815934], [-75.26147286024015, 40.86683197969259], [-75.26112141909216, 40.866921077626124], [-75.25963407433834, 40.86733114256665], [-75.25821546980532, 40.86771588911202], [-75.25810872136621, 40.86749806051668], [-75.25805661800614, 40.86739174039017], [-75.2580298744699, 40.86733835919512], [-75.25789291416613, 40.8670649767303], [-75.25787984578126, 40.86703889077885], [-75.25770910998455, 40.86671826227614], [-75.25769405171432, 40.8666904526574], [-75.25749927041798, 40.86633072390041], [-75.25730435169575, 40.86595534661695], [-75.2572164932333, 40.8657830502482], [-75.25721625988905, 40.8657825921158], [-75.25721616037337, 40.86578239629859], [-75.25710380385895, 40.86556205633907], [-75.25710377513992, 40.86556199896951]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 443, \"PRECINCTID\": \"250100-1\", \"NAME\": \"PEN ARGYL BOROUGH 1ST WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-3-03\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"WEONA PARK YOUTH CENTER\", \"SiteAddress\": \"25 S MAIN ST\", \"City\": \"PEN ARGYL\", \"STATISTICS Registered Voters - Total\": \"383\", \"STATISTICS Ballots Cast - Total\": 267.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"69.71%\", \"Presidential Electors DEM Biden and Harris\": \"90\", \"Presidential Electors REP Trump and Pence\": \"172\", \"Presidential Electors LIB Jorgensen and Cohen\": \"5\", \"Presidential Electors Write-In Totals\": \"0\", \"Attorney General DEM Josh Shapiro\": \"89\", \"Attorney General REP Heather Heidelbaugh\": \"165\", \"Attorney General LIB Daniel Wassmer\": \"7\", \"Attorney General GRE Richard L Weiss\": \"2\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"85\", \"Auditor General REP Timothy Defoor\": \"154\", \"Auditor General LIB Jennifer Moore\": \"17\", \"Auditor General GRE Olivia Faison\": \"4\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"90\", \"State Treasurer REP Stacy L. Garrity\": \"159\", \"State Treasurer LIB Joe Soloski\": \"11\", \"State Treasurer GRE Timothy Runkle\": \"2\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"92\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"171\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"91\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"174\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 33.70786516853933, \"Presidential Electors Pct REP\": 64.41947565543072, \"Presidential Electors Pct LIB\": 1.8726591760299627, \"PA Attorney General Pct DEM\": 33.33333333333333, \"PA Attorney General Pct REP\": 61.79775280898876, \"PA Attorney General Pct LIB\": 2.6217228464419478, \"PA Attorney General Pct GRE\": 0.7490636704119851, \"PA Auditor General Pct DEM\": 31.835205992509362, \"PA Auditor General Pct REP\": 57.67790262172284, \"PA Auditor General Pct LIB\": 6.367041198501873, \"PA Auditor General Pct GRE\": 1.4981273408239701, \"PA State Treasurer Pct DEM\": 33.70786516853933, \"PA State Treasurer Pct REP\": 59.55056179775281, \"PA State Treasurer Pct LIB\": 4.119850187265917, \"PA State Treasurer Pct GRE\": 0.7490636704119851, \"PA Representative in Congress 7th Congressional District Pct DEM\": 34.45692883895131, \"PA Representative in Congress 7th Congressional District Pct REP\": 64.04494382022472, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.15701449002634552, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.26336029290272, 40.863775448565434], [-75.26156870300852, 40.864312934141005], [-75.26151606913551, 40.864328724150944], [-75.26003219973616, 40.86476855618852], [-75.2592405917476, 40.865000230917474], [-75.25855034733478, 40.86520223479603], [-75.25849145148655, 40.865200973033915], [-75.25837868121505, 40.86519855700339], [-75.25710377513992, 40.86556199896951], [-75.25702491647432, 40.865584620867125], [-75.25665958055464, 40.86568942471653], [-75.25605997600859, 40.86586225344693], [-75.25586263648832, 40.86591905986528], [-75.25555452237157, 40.866007753203014], [-75.2554658052347, 40.8660342606072], [-75.25516224333428, 40.86612495948429], [-75.25476460568851, 40.86624033336353], [-75.25472082565452, 40.866254278888064], [-75.25436837262193, 40.8663665481358], [-75.25418449826924, 40.866423525399156], [-75.25394881941098, 40.866504410938475], [-75.253912019314, 40.866517041178], [-75.2539115469245, 40.866517203102866], [-75.25368082115749, 40.866039201694605], [-75.25368069333777, 40.86603893770233], [-75.25280702937022, 40.86702574081654], [-75.25278204509094, 40.867053960612715], [-75.25278200431862, 40.86705400387926], [-75.25190843670578, 40.868002928738775], [-75.25157635716633, 40.868396856114636], [-75.25152218999028, 40.86854001880933], [-75.25148420913547, 40.868653770291985], [-75.25137153753133, 40.86899121611411], [-75.25119285668876, 40.86953088866205], [-75.25119284606151, 40.86953091906284], [-75.25114123640836, 40.869686794459845], [-75.25109402816905, 40.869826276014486], [-75.25105485618295, 40.86994201606782], [-75.25087879085393, 40.870419780643445], [-75.25063176296057, 40.870542251686125], [-75.25061436898042, 40.87055087475123], [-75.24908085925964, 40.871273181241314], [-75.24887493127085, 40.87136783470789], [-75.24887411380381, 40.87136821080322], [-75.24879195183848, 40.871405975333126], [-75.24871498354527, 40.871436634733854], [-75.248522990167, 40.87151311248862], [-75.24841617624551, 40.87156964291768], [-75.24824161754124, 40.87166202779447], [-75.24813552134441, 40.87171826621935], [-75.24789900378434, 40.871851679711945], [-75.24789257137546, 40.87185530781728], [-75.2478403875106, 40.87188508098627], [-75.24784024198722, 40.871885164337904], [-75.24784006858528, 40.87188526330517], [-75.24743981124539, 40.872113626819505], [-75.24704157756771, 40.872340511901506], [-75.24682263417996, 40.872464166822255], [-75.24663079284426, 40.872574273825876], [-75.24663070070443, 40.87257432589416], [-75.24662579379749, 40.872577142662244], [-75.24662275601007, 40.872578912325125], [-75.24647326068052, 40.87266601544072], [-75.24611313743252, 40.87287936619603], [-75.24605062871787, 40.87291639793776], [-75.24574950402501, 40.87311636978753], [-75.24562501375851, 40.87319811951896], [-75.24544273584534, 40.87330848910074], [-75.24533832086686, 40.87336520808123], [-75.245271043096, 40.87340175385446], [-75.24518763556219, 40.87345573245595], [-75.24518731285445, 40.873455888561466], [-75.24515259093717, 40.87238513781318], [-75.24511010855274, 40.87102967441509], [-75.24510024923194, 40.870918475411784], [-75.24509611344429, 40.870871831774274], [-75.24508631691455, 40.87048068421375], [-75.24508401247155, 40.87041231797011], [-75.24508074248382, 40.87031529984043], [-75.24507259245257, 40.8700494655899], [-75.24507104866959, 40.869921408604085], [-75.24506889582321, 40.869858036370445], [-75.24506667233264, 40.869820748781514], [-75.24506666755454, 40.86948215458557], [-75.24530059671284, 40.86901837134412], [-75.24532450125194, 40.86897097757401], [-75.24491928665344, 40.86936073796907], [-75.24462338257611, 40.86956783158151], [-75.24462121346234, 40.86956934964697], [-75.24435457856372, 40.86975941717128], [-75.24430165257702, 40.86979637514989], [-75.244198511104, 40.869870349436084], [-75.2440879345727, 40.869949655073405], [-75.2439777244233, 40.87001918697648], [-75.24393541641847, 40.86999601602522], [-75.24392455596823, 40.86999006785982], [-75.24383545145218, 40.8699062885707], [-75.24376816665254, 40.86984357214129], [-75.24372539282889, 40.86980249280071], [-75.24367996611714, 40.86975981130004], [-75.2436126751804, 40.86969726670351], [-75.24353835514606, 40.86962724028793], [-75.24352357668732, 40.869613315216995], [-75.24349208762708, 40.869584835167224], [-75.24288152915258, 40.869009123469446], [-75.24260213910037, 40.86874241856039], [-75.24209028817842, 40.86825995858964], [-75.24197586485539, 40.86815212020781], [-75.24177339894347, 40.8679564039407], [-75.24152942264995, 40.867722859383555], [-75.24143555436088, 40.867633003515905], [-75.24130985469868, 40.867512392916574], [-75.24128880469446, 40.867422528441274], [-75.2412612132322, 40.867193342594945], [-75.2412200996854, 40.866866388297616], [-75.2411867183188, 40.86659863685561], [-75.24118178659029, 40.86656128978318], [-75.2411541380631, 40.86633364758183], [-75.24111936101369, 40.86605488266103], [-75.2410722816984, 40.865669965090625], [-75.24105373322546, 40.865537422124945], [-75.24103874746397, 40.86540632892358], [-75.24101442335459, 40.86511405935891], [-75.24116352381049, 40.86499245717252], [-75.24121122218531, 40.864953555487794], [-75.24152875568186, 40.864683762334785], [-75.24203896180337, 40.86424273406775], [-75.24214091880489, 40.864151917986504], [-75.24219431629838, 40.8641022717267], [-75.24235799501875, 40.863932642229834], [-75.24355236802458, 40.862925868695555], [-75.24401519314964, 40.862535728401426], [-75.2440065975587, 40.8624236904605], [-75.24396563828829, 40.86188978266779], [-75.24372462190166, 40.858747941132734], [-75.24404327676987, 40.85873730402321], [-75.24403774146721, 40.858721438567635], [-75.24390444779726, 40.858339426415654], [-75.24368194705765, 40.85761625266675], [-75.24353022825782, 40.85715219665362], [-75.24559876392276, 40.856888203612044], [-75.24578771197721, 40.856864299361334], [-75.24684823860672, 40.85671895202722], [-75.2475005686544, 40.856440046093944], [-75.24942778682116, 40.85562497919602], [-75.24945855142849, 40.85566287878798], [-75.24992048427438, 40.8562319337491], [-75.25040356216257, 40.85685463877895], [-75.25140450355308, 40.857531374541246], [-75.25185495591124, 40.85784137692589], [-75.252129902472, 40.85803297043217], [-75.2522641716933, 40.8581177139183], [-75.25254727277425, 40.858260399988644], [-75.25273996781102, 40.85833009485261], [-75.25306936901781, 40.858419199843105], [-75.25326238154379, 40.85845612286245], [-75.25372308820764, 40.85851543855621], [-75.2543049451315, 40.85859914708809], [-75.25490235934214, 40.85867786691582], [-75.25557115086679, 40.85875794362373], [-75.25596080719923, 40.85878294849251], [-75.25655854626773, 40.858828716902536], [-75.25699737238808, 40.858893041958524], [-75.25726112910195, 40.85899703125922], [-75.25771729909098, 40.85915422544853], [-75.25810371904139, 40.85926633242425], [-75.2587200996253, 40.859394520263365], [-75.25884325773768, 40.859413634497244], [-75.25915081841501, 40.85948251807724], [-75.25949330223597, 40.859560558290084], [-75.25972631799485, 40.859612371535185], [-75.2597623227311, 40.85962037825922], [-75.2601236780009, 40.85970156652049], [-75.2603478339905, 40.85975218704212], [-75.26046802069126, 40.85977827070531], [-75.26055212248386, 40.85980220974041], [-75.26072533692665, 40.85986117723528], [-75.2609776324576, 40.85995753271104], [-75.26107908895348, 40.86000106349789], [-75.26117321109837, 40.860047354194045], [-75.26118970336438, 40.860076550799896], [-75.26128095628084, 40.86023809145524], [-75.26143317879638, 40.86049722485089], [-75.26152247573391, 40.860649126589244], [-75.26154805106968, 40.86069086103891], [-75.26173843013844, 40.8610182539719], [-75.26208973619569, 40.86161395384277], [-75.26208997512035, 40.86161435803358], [-75.26222243763978, 40.86183896820859], [-75.26302941061284, 40.86321592170293], [-75.26319281292717, 40.863490907685645], [-75.26335596518061, 40.863768096036544], [-75.26336029290272, 40.863775448565434]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 801, \"PRECINCTID\": \"140001-1\", \"NAME\": \"HANOVER DISTRICT 1\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"ADVENT MORAVIAN CHURCH\", \"SiteAddress\": \"3730 JACKSONVILLE RD.\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"2010\", \"STATISTICS Ballots Cast - Total\": 1663.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"82.74%\", \"Presidential Electors DEM Biden and Harris\": \"936\", \"Presidential Electors REP Trump and Pence\": \"699\", \"Presidential Electors LIB Jorgensen and Cohen\": \"20\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"892\", \"Attorney General REP Heather Heidelbaugh\": \"688\", \"Attorney General LIB Daniel Wassmer\": \"30\", \"Attorney General GRE Richard L Weiss\": \"7\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"834\", \"Auditor General REP Timothy Defoor\": \"714\", \"Auditor General LIB Jennifer Moore\": \"44\", \"Auditor General GRE Olivia Faison\": \"19\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"871\", \"State Treasurer REP Stacy L. Garrity\": \"704\", \"State Treasurer LIB Joe Soloski\": \"24\", \"State Treasurer GRE Timothy Runkle\": \"16\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"914\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"717\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"895\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"730\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 56.28382441371016, \"Presidential Electors Pct REP\": 42.03247143716175, \"Presidential Electors Pct LIB\": 1.2026458208057726, \"PA Attorney General Pct DEM\": 53.63800360793747, \"PA Attorney General Pct REP\": 41.371016235718585, \"PA Attorney General Pct LIB\": 1.8039687312086592, \"PA Attorney General Pct GRE\": 0.4209260372820205, \"PA Auditor General Pct DEM\": 50.150330727600725, \"PA Auditor General Pct REP\": 42.93445580276609, \"PA Auditor General Pct LIB\": 2.6458208057727, \"PA Auditor General Pct GRE\": 1.142513529765484, \"PA State Treasurer Pct DEM\": 52.3752254960914, \"PA State Treasurer Pct REP\": 42.3331328923632, \"PA State Treasurer Pct LIB\": 1.4431749849669273, \"PA State Treasurer Pct GRE\": 0.9621166566446182, \"PA Representative in Congress 7th Congressional District Pct DEM\": 54.960914010823814, \"PA Representative in Congress 7th Congressional District Pct REP\": 43.11485267588695, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.9779591644712081, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38068953932137, 40.65034956689741], [-75.38065214350134, 40.65028539006468], [-75.38045296571023, 40.6499014447104], [-75.38041528005019, 40.64981992904925], [-75.38034621068525, 40.649682682491125], [-75.38031180737234, 40.64958475780419], [-75.38030209938591, 40.64952775474803], [-75.38025387223985, 40.64941290109278], [-75.38021740517819, 40.64934797102441], [-75.38017881662817, 40.649292092794035], [-75.38014961836657, 40.64925107995965], [-75.3799340964225, 40.64899860173618], [-75.37980314851285, 40.64885262405921], [-75.37969709222045, 40.64874199381365], [-75.37962357961031, 40.64865416702759], [-75.37955811242922, 40.648542650464236], [-75.37952177335497, 40.648499689676015], [-75.37947701346597, 40.648414338095726], [-75.37945495762779, 40.64834970245671], [-75.37945033388017, 40.64830189849592], [-75.37945181801109, 40.64825979675598], [-75.37948161147699, 40.64815606317012], [-75.37952433063977, 40.64809472599705], [-75.37956936168085, 40.64804450512884], [-75.37977026698927, 40.647867728603416], [-75.37981472045247, 40.64783388544066], [-75.37987094228856, 40.64779856672342], [-75.38001471083986, 40.647734146084986], [-75.3800706726254, 40.647706201018295], [-75.38020967900225, 40.6476490636436], [-75.38028223839848, 40.647610474339665], [-75.38052069079356, 40.64751898596809], [-75.38067583976948, 40.647464064454624], [-75.38079702669583, 40.64742664084384], [-75.38084063655963, 40.64741671988777], [-75.38087916897345, 40.64739742874981], [-75.38096941363929, 40.64736846777525], [-75.38107458494127, 40.64735070965738], [-75.38128654737723, 40.6473203747348], [-75.38136200453671, 40.64730183708448], [-75.38153221681058, 40.647279830286806], [-75.38170538932442, 40.64725050376362], [-75.38180136695144, 40.64723787771638], [-75.38186910569135, 40.647233769900616], [-75.38202362472161, 40.64724791005093], [-75.38229161818099, 40.64723879659726], [-75.38233484730148, 40.64723967959559], [-75.38240445061169, 40.647233807805556], [-75.3828440806918, 40.64723901095142], [-75.38292088881093, 40.64723328598448], [-75.38302419781219, 40.647217204246985], [-75.38309373766964, 40.64721313249621], [-75.38338759613853, 40.647211752545736], [-75.3834514758489, 40.6472148584907], [-75.38350165331639, 40.64722317728489], [-75.38372828643988, 40.64723689916711], [-75.38386839916105, 40.64725065717955], [-75.38401596158961, 40.64728318723011], [-75.38427905053094, 40.64731103910993], [-75.38434530342488, 40.6473235458595], [-75.38438808016336, 40.64733729053427], [-75.38442654694848, 40.64734545461285], [-75.38448585440976, 40.647350440487955], [-75.38484060685077, 40.647360167667316], [-75.38490293582733, 40.647356119765405], [-75.38499447148524, 40.6473416833881], [-75.38509437070951, 40.647320038522174], [-75.3852510000863, 40.64727415170406], [-75.38567226522107, 40.647109583738725], [-75.38581783092842, 40.64704510801234], [-75.38601048166322, 40.64694872673556], [-75.38620866321439, 40.64684885444395], [-75.38640356306638, 40.646739733211476], [-75.38660309527326, 40.64660136018225], [-75.38669391955469, 40.646530189038344], [-75.38686739684218, 40.64636382574966], [-75.3869349424794, 40.64628823221718], [-75.38700114471115, 40.64619956932644], [-75.38705145521403, 40.64612714318362], [-75.38709938621022, 40.646045486818906], [-75.38713818466105, 40.64596724776172], [-75.38719204054885, 40.64581955474684], [-75.38720272147893, 40.645772063150595], [-75.38720233927305, 40.64573163950544], [-75.3878585617545, 40.64567679658876], [-75.38814221402467, 40.64579743612618], [-75.3881711278326, 40.64580973301304], [-75.38823266083767, 40.64578452095516], [-75.3887087894703, 40.6455894340666], [-75.39034157894862, 40.645416573227834], [-75.39249615686187, 40.64517565537024], [-75.39262995365998, 40.64516069334822], [-75.39295547368398, 40.64512429117683], [-75.39590075638036, 40.64478728315443], [-75.39637034205587, 40.644734351085695], [-75.39660449169712, 40.64471336299034], [-75.39683523208916, 40.6446868135067], [-75.39681489048903, 40.644562878601484], [-75.3968142245259, 40.64455882557855], [-75.39678694580778, 40.64439262692861], [-75.39673737351433, 40.644109483188245], [-75.39669012223267, 40.64383728525518], [-75.396646474015, 40.64359090190987], [-75.39662484355736, 40.643462179656225], [-75.39658402652537, 40.64321216377321], [-75.3964838588678, 40.64262371707098], [-75.39647198856261, 40.642556124232435], [-75.39644252970437, 40.64238836495629], [-75.39643689995614, 40.642355186875776], [-75.39643689198225, 40.64235514437293], [-75.39638574940803, 40.64205376089802], [-75.3962440972284, 40.64123450596201], [-75.39620510224228, 40.64100975476135], [-75.3961748156503, 40.64079367560079], [-75.39616528112866, 40.640679872182446], [-75.39611486148472, 40.640369595285335], [-75.39606746815106, 40.64007585493585], [-75.3960243228294, 40.63981523757856], [-75.39597737745179, 40.639508721066], [-75.39542522433982, 40.63957876571452], [-75.39526863494636, 40.639598495438534], [-75.39491738416315, 40.63964430205034], [-75.3942710833238, 40.639726500691566], [-75.39404127476442, 40.63978500233859], [-75.3940101248721, 40.63979293193804], [-75.39333669541256, 40.63995489033246], [-75.39315244584999, 40.6395038255474], [-75.39306804639178, 40.6392893051713], [-75.393055997679, 40.639263431230674], [-75.3930559812145, 40.63926339486094], [-75.39303452337467, 40.63921731669267], [-75.39260713265455, 40.639327210883046], [-75.39254144748371, 40.63924727461763], [-75.39204491594604, 40.63865608039319], [-75.39141600720063, 40.63790842079953], [-75.39123945344153, 40.6377009474999], [-75.38835255204937, 40.63425323806036], [-75.38834329462846, 40.634439940397954], [-75.38832850642214, 40.634578820595124], [-75.3883836548048, 40.634968960114016], [-75.38841006978504, 40.635155828084365], [-75.38843052495237, 40.63524050910748], [-75.38848127360923, 40.63536064512206], [-75.38858669172183, 40.63554058791154], [-75.38867313761905, 40.63572194668512], [-75.38870548923457, 40.63582712077946], [-75.38872099416959, 40.63592448607809], [-75.38871964630924, 40.636014214532274], [-75.38871334387642, 40.6360653990281], [-75.38869102615494, 40.636136423295035], [-75.38864761549385, 40.63621791477257], [-75.38861449180864, 40.63626306105381], [-75.38856477738908, 40.636318768062026], [-75.38843067612744, 40.63644243099295], [-75.38832867148585, 40.63652453105009], [-75.38827959797655, 40.63656197316137], [-75.38812324164033, 40.63665214627474], [-75.38801338797028, 40.63670113482487], [-75.38793028911137, 40.63673239161941], [-75.38773920326663, 40.63678513136225], [-75.38762581050612, 40.636806588763896], [-75.38752714626656, 40.636819164573076], [-75.38741156700162, 40.6368259046535], [-75.38732776017143, 40.636825997952656], [-75.38717217489446, 40.63681724878258], [-75.38572477032568, 40.63656694554034], [-75.38549374361942, 40.63652542084011], [-75.38432055759907, 40.63631870740195], [-75.38424980494294, 40.63640882095404], [-75.38408789948879, 40.63660536435034], [-75.38354336404575, 40.63709948771029], [-75.38352682477073, 40.63723661460107], [-75.38313034776883, 40.63762023533716], [-75.38298525734217, 40.637518076807645], [-75.38286891311965, 40.637444050382584], [-75.38272671801238, 40.63733645980665], [-75.38294360377908, 40.637216553443054], [-75.38308041155118, 40.63714435047902], [-75.38321007861964, 40.63707019978411], [-75.38356711337408, 40.6368598802849], [-75.38365008323855, 40.63680674257353], [-75.38375106081834, 40.636728401113565], [-75.38379338270757, 40.636678037796585], [-75.38385866709207, 40.63658970110571], [-75.38392176576349, 40.636486645395266], [-75.38395488969938, 40.63644158597906], [-75.38405271835813, 40.6363246522367], [-75.38408172450451, 40.6362941821852], [-75.38425895547978, 40.636148664621864], [-75.38463459313358, 40.635921559111736], [-75.3847299110394, 40.63587596706208], [-75.38476367837184, 40.63586387007718], [-75.38490909291824, 40.63582865315207], [-75.38507386910553, 40.63578095942914], [-75.38525234385303, 40.63575371017923], [-75.38533634045909, 40.63574821612676], [-75.38541564067431, 40.635748117930405], [-75.3855063875358, 40.63575563318512], [-75.38556980130015, 40.635771685973985], [-75.38583213642954, 40.6358196842199], [-75.38602128607567, 40.6358733114047], [-75.3861355770384, 40.635903186854584], [-75.3863498790006, 40.635933386655665], [-75.38669648323844, 40.63596817132613], [-75.3867613824402, 40.6359676064756], [-75.3869107260714, 40.635948770308126], [-75.38704070959952, 40.635916754008676], [-75.38711924233337, 40.63588720651358], [-75.3871843314127, 40.63585558313549], [-75.3872460113881, 40.6358183984879], [-75.38735303358213, 40.635721729105356], [-75.38744789792784, 40.63561202567182], [-75.38750153989268, 40.635521475875315], [-75.38753749182169, 40.635472783148984], [-75.38760676039786, 40.63539911262768], [-75.38770143112087, 40.63532055369622], [-75.38775102016938, 40.63526844979141], [-75.38782672089444, 40.63516556335222], [-75.38788010000093, 40.635082473580674], [-75.38790659523312, 40.635020801885325], [-75.38791579223486, 40.63496418467321], [-75.38791025994871, 40.6349164480713], [-75.38788189733695, 40.63485168536658], [-75.38785726308245, 40.63480905115981], [-75.38766836508775, 40.634543056195284], [-75.3876506816094, 40.6345077715195], [-75.38763351013816, 40.634457909408574], [-75.38762508704527, 40.63441552000703], [-75.38762245206502, 40.63436226512206], [-75.38761113499048, 40.63429965154033], [-75.38761544453179, 40.63422826125956], [-75.38759191002961, 40.63410301573401], [-75.3875609130457, 40.634036310990844], [-75.38748901770052, 40.63385130109886], [-75.38747371361642, 40.63379958968493], [-75.38746728128056, 40.633751835593564], [-75.38743363796593, 40.63358090505384], [-75.38741851794494, 40.63347264944076], [-75.38740583790168, 40.63321796935024], [-75.3873882152805, 40.63315531275797], [-75.38737587044974, 40.63311086144268], [-75.38737541692488, 40.63310922972034], [-75.38738406042498, 40.63311032302323], [-75.38746295842314, 40.633120306895094], [-75.38816036127855, 40.633208549592155], [-75.3883179976909, 40.63322990931935], [-75.38837031327347, 40.63323699867057], [-75.38886434979553, 40.6333039391437], [-75.38935221085886, 40.63337004180995], [-75.38950707458704, 40.63339896122208], [-75.38975427224717, 40.63344512265073], [-75.38975577598879, 40.633445403719065], [-75.38984569676431, 40.63346219583593], [-75.3900799896193, 40.633505946966025], [-75.39022951092119, 40.633533868348174], [-75.39029746003342, 40.633545833572114], [-75.39049297730901, 40.63358026394791], [-75.3904930725183, 40.633580280300336], [-75.39055544281759, 40.63359126334556], [-75.39056891935535, 40.633593636751755], [-75.39069891566079, 40.63362094650275], [-75.39070842272788, 40.63362294359585], [-75.39103423391829, 40.63369138939896], [-75.3910501502671, 40.6336947331039], [-75.39106551681485, 40.633697569233924], [-75.39109561308308, 40.63370312492503], [-75.3912733922036, 40.633735941601415], [-75.3913890719918, 40.63375729448757], [-75.39138912366943, 40.63375730454806], [-75.39138916717006, 40.6337573117395], [-75.39138921766592, 40.633757321775924], [-75.3913939372662, 40.63375819257999], [-75.39139774955515, 40.633759005280005], [-75.39139779535594, 40.63375901432001], [-75.39139783876188, 40.633759024212125], [-75.39161254940758, 40.633804782603924], [-75.39166740876348, 40.63381647433181], [-75.39177586812609, 40.63383958884672], [-75.3917821018847, 40.633840916558874], [-75.3919891210794, 40.63391412411298], [-75.39203826483845, 40.63393150189768], [-75.39209183660488, 40.63395044628421], [-75.39220200524876, 40.63399507740633], [-75.39241662184028, 40.634093317271606], [-75.39244944217035, 40.63411232130991], [-75.39250626761643, 40.63414522406057], [-75.39261091673714, 40.6342058176915], [-75.39266132141921, 40.63424016718629], [-75.39275520367856, 40.634304144267794], [-75.39278340833383, 40.63432336512576], [-75.39285100208343, 40.63437442311432], [-75.39291576540415, 40.634429113472386], [-75.39297937955688, 40.634485520907454], [-75.39297942319882, 40.63448555782998], [-75.3930494760765, 40.634547674381935], [-75.39316504264413, 40.63465924742657], [-75.39316975394217, 40.634663799857265], [-75.39322873226328, 40.6347207353721], [-75.3933170578665, 40.63480600822425], [-75.39332358343802, 40.63481230829958], [-75.39346521891086, 40.6349493878337], [-75.39367347795172, 40.63512635481684], [-75.39375137186065, 40.635187201544944], [-75.39378997872889, 40.63521735942315], [-75.39379000521402, 40.63521737978086], [-75.39396818123642, 40.63535656365651], [-75.39406342793514, 40.63543328586834], [-75.39438007583891, 40.635688347931584], [-75.39502557341656, 40.63619417681062], [-75.39544376060985, 40.63652668577661], [-75.39599045140824, 40.63697106643608], [-75.3962007838633, 40.637142033903714], [-75.39622856273735, 40.63716486582431], [-75.39622859267459, 40.637164888954146], [-75.39640028403184, 40.637306001022786], [-75.39647504355509, 40.637367444278354], [-75.39682120869723, 40.637651949004066], [-75.39727838818489, 40.63802768892233], [-75.3973097175653, 40.638053437590905], [-75.39741266153378, 40.63813676964413], [-75.39759480105288, 40.63828420880944], [-75.3976979274062, 40.63836768843185], [-75.39774751667481, 40.63840782963713], [-75.3977475868095, 40.638407886914585], [-75.39774761323405, 40.63840790907181], [-75.39775050673292, 40.63841025060492], [-75.39779250538416, 40.63844534329975], [-75.39781078155457, 40.63846061462764], [-75.39807988794024, 40.63868547130218], [-75.39856915152164, 40.639094278263116], [-75.39941301953958, 40.63980454641448], [-75.39952654244729, 40.63990009509814], [-75.39978020759999, 40.64011359510737], [-75.40006894143399, 40.64035660906524], [-75.4001839482158, 40.640453404216274], [-75.40035420323004, 40.64059669880579], [-75.4006972636345, 40.640885430690936], [-75.40089837849136, 40.641065483819766], [-75.40207271005119, 40.64211680774283], [-75.40307814025375, 40.64300855315438], [-75.40340182358162, 40.643295630931995], [-75.40415555245777, 40.64396410677415], [-75.40463842601532, 40.644397563981684], [-75.40468361531322, 40.64443812825683], [-75.40513249626156, 40.64484106587839], [-75.40582014533273, 40.64545832023568], [-75.40617416885087, 40.64577609579838], [-75.40644289024387, 40.64601185756384], [-75.40649969801882, 40.64606169708058], [-75.40673807809127, 40.64627083662952], [-75.40689326451616, 40.64640698674802], [-75.40747818078214, 40.64692014494604], [-75.40777801188608, 40.64719759086484], [-75.40784979472635, 40.64726401362054], [-75.40839737490245, 40.647770702690494], [-75.40854671470295, 40.64790888897895], [-75.4088587840594, 40.648200880317454], [-75.40892279388366, 40.648260770831435], [-75.4088501811719, 40.64829405704101], [-75.4088500824989, 40.648294105496625], [-75.40878155008676, 40.64833211803864], [-75.40878148124386, 40.648332158988914], [-75.40871756791388, 40.6483746078635], [-75.40871751820116, 40.64837464289407], [-75.40865877853095, 40.64842115824389], [-75.40865868955464, 40.64842123392125], [-75.40860547524585, 40.648471531878066], [-75.40860544092943, 40.648471566318676], [-75.40855823949886, 40.64852519909727], [-75.40855818887695, 40.64852526023455], [-75.40851735194587, 40.648581810636436], [-75.4085172932606, 40.64858189953766], [-75.40848306138771, 40.64864104901741], [-75.40757962005752, 40.650401270511296], [-75.40754274297241, 40.650498548585986], [-75.40754269902254, 40.650498655801826], [-75.4074978413932, 40.650593967261315], [-75.40749778801884, 40.65059407338584], [-75.40744506582007, 40.65068714399933], [-75.40738480330114, 40.65077739114294], [-75.40738473114033, 40.650777493284274], [-75.40731711317332, 40.65086466844036], [-75.40731703532202, 40.650864764160595], [-75.40724224949209, 40.65094860895586], [-75.40716077109522, 40.65102858525623], [-75.40716065862122, 40.65102869018617], [-75.40707271828617, 40.65110459453901], [-75.40707259897106, 40.65110469212365], [-75.40697842285415, 40.65117631377869], [-75.40688855187855, 40.651230829346325], [-75.4068884528861, 40.651230886802594], [-75.40679403903286, 40.65128070524719], [-75.40679390781312, 40.65128077106063], [-75.40669536783662, 40.65132567738056], [-75.40669520815511, 40.651325745321174], [-75.40659290638872, 40.65136556940021], [-75.40659279259482, 40.651365610341394], [-75.40648711564518, 40.65140018791962], [-75.40637875269861, 40.65142929329048], [-75.40637864649835, 40.65142931997116], [-75.40626804007753, 40.651452847663535], [-75.4062678686172, 40.651452880231616], [-75.40615544049474, 40.65147074327458], [-75.40615527647138, 40.65147076608335], [-75.40604147053455, 40.65148288786413], [-75.4060413673256, 40.65148289658767], [-75.40592665165711, 40.65148921900191], [-75.40438004539232, 40.65166832334538], [-75.40326828374768, 40.65179368262855], [-75.4019115535841, 40.65194664952139], [-75.40178208371665, 40.65196044349134], [-75.39981902248651, 40.65216956376634], [-75.39833215056154, 40.65231557416964], [-75.39569624144862, 40.65261064486043], [-75.39520130869913, 40.6526660422308], [-75.39456872264707, 40.652735704936724], [-75.39166346222109, 40.653055598718865], [-75.38983122174618, 40.65323059923232], [-75.38923282381833, 40.653291226703395], [-75.38850967010087, 40.653364490392335], [-75.38665278795949, 40.6535658354516], [-75.38665125029412, 40.653566002295484], [-75.38665006766371, 40.65356613043287], [-75.38518819628335, 40.65372462146889], [-75.38338696826432, 40.6539137115893], [-75.38109675468151, 40.65414100655091], [-75.38110368698695, 40.65411788677539], [-75.38111309615974, 40.654086508863905], [-75.38118019277523, 40.65397289703324], [-75.38123796257581, 40.65389376106965], [-75.38139930907212, 40.65368888684138], [-75.38149059597578, 40.65355380221146], [-75.38153748969606, 40.65345075995141], [-75.38160342481937, 40.65324213433809], [-75.3816274801538, 40.65312215118507], [-75.38163455669479, 40.6530491872352], [-75.38162966021905, 40.652932301660535], [-75.38161054473683, 40.65275849311631], [-75.38160301271398, 40.65263966635732], [-75.38162533086569, 40.65244104654404], [-75.38163769870705, 40.652115485027274], [-75.38162695940267, 40.652087721429254], [-75.38157808889082, 40.65191424814054], [-75.38153017496369, 40.651790391928145], [-75.3814767938019, 40.65166822572922], [-75.38147615528051, 40.651635175865785], [-75.38146323059337, 40.65159269417422], [-75.3813428395476, 40.65127471697265], [-75.38126142720526, 40.65102721233536], [-75.38117974201629, 40.65091536545319], [-75.38108821755695, 40.65080142920461], [-75.38106480611101, 40.650775208321654], [-75.38100022697377, 40.65071511019892], [-75.38090491276803, 40.650580845605745], [-75.38079292842224, 40.65048485435798], [-75.38075202384248, 40.650443516866005], [-75.38071928557298, 40.650400630103874], [-75.3806896550761, 40.65034977286076], [-75.38068953932137, 40.65034956689741]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 802, \"PRECINCTID\": \"041401-1\", \"NAME\": \"BETHLEHEM 14TH WARD 1ST DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"WESLEY UNITED METHODIST CHURCH (GYM)\", \"SiteAddress\": \"2540 CENTER ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1464\", \"STATISTICS Ballots Cast - Total\": 1152.0, \"STATISTICS Ballots Cast - Blank\": \"1\", \"STATISTICS Voter Turnout - Total\": \"78.69%\", \"Presidential Electors DEM Biden and Harris\": \"699\", \"Presidential Electors REP Trump and Pence\": \"430\", \"Presidential Electors LIB Jorgensen and Cohen\": \"15\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"669\", \"Attorney General REP Heather Heidelbaugh\": \"403\", \"Attorney General LIB Daniel Wassmer\": \"29\", \"Attorney General GRE Richard L Weiss\": \"14\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"624\", \"Auditor General REP Timothy Defoor\": \"443\", \"Auditor General LIB Jennifer Moore\": \"31\", \"Auditor General GRE Olivia Faison\": \"11\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"639\", \"State Treasurer REP Stacy L. Garrity\": \"423\", \"State Treasurer LIB Joe Soloski\": \"30\", \"State Treasurer GRE Timothy Runkle\": \"19\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"676\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"444\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"697\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"421\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 60.677083333333336, \"Presidential Electors Pct REP\": 37.32638888888889, \"Presidential Electors Pct LIB\": 1.3020833333333335, \"PA Attorney General Pct DEM\": 58.072916666666664, \"PA Attorney General Pct REP\": 34.98263888888889, \"PA Attorney General Pct LIB\": 2.517361111111111, \"PA Attorney General Pct GRE\": 1.215277777777778, \"PA Auditor General Pct DEM\": 54.166666666666664, \"PA Auditor General Pct REP\": 38.45486111111111, \"PA Auditor General Pct LIB\": 2.6909722222222223, \"PA Auditor General Pct GRE\": 0.9548611111111112, \"PA State Treasurer Pct DEM\": 55.46875, \"PA State Treasurer Pct REP\": 36.71875, \"PA State Treasurer Pct LIB\": 2.604166666666667, \"PA State Treasurer Pct GRE\": 1.6493055555555556, \"PA Representative in Congress 7th Congressional District Pct DEM\": 58.68055555555556, \"PA Representative in Congress 7th Congressional District Pct REP\": 38.54166666666667, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.6774557771923222, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38737541692488, 40.63310922972034], [-75.38737587044974, 40.63311086144268], [-75.3873882152805, 40.63315531275797], [-75.38740583790168, 40.63321796935024], [-75.38741851794494, 40.63347264944076], [-75.38743363796593, 40.63358090505384], [-75.38746728128056, 40.633751835593564], [-75.38747371361642, 40.63379958968493], [-75.38748901770052, 40.63385130109886], [-75.3875609130457, 40.634036310990844], [-75.38759191002961, 40.63410301573401], [-75.38761544453179, 40.63422826125956], [-75.38761113499048, 40.63429965154033], [-75.38762245206502, 40.63436226512206], [-75.38762508704527, 40.63441552000703], [-75.38763351013816, 40.634457909408574], [-75.3876506816094, 40.6345077715195], [-75.38766836508775, 40.634543056195284], [-75.38785726308245, 40.63480905115981], [-75.38788189733695, 40.63485168536658], [-75.38791025994871, 40.6349164480713], [-75.38791579223486, 40.63496418467321], [-75.38790659523312, 40.635020801885325], [-75.38788010000093, 40.635082473580674], [-75.38782672089444, 40.63516556335222], [-75.38775102016938, 40.63526844979141], [-75.38770143112087, 40.63532055369622], [-75.38760676039786, 40.63539911262768], [-75.38753749182169, 40.635472783148984], [-75.38750153989268, 40.635521475875315], [-75.38744789792784, 40.63561202567182], [-75.38735303358213, 40.635721729105356], [-75.3872460113881, 40.6358183984879], [-75.3871843314127, 40.63585558313549], [-75.38711924233337, 40.63588720651358], [-75.38704070959952, 40.635916754008676], [-75.3869107260714, 40.635948770308126], [-75.3867613824402, 40.6359676064756], [-75.38669648323844, 40.63596817132613], [-75.3863498790006, 40.635933386655665], [-75.3861355770384, 40.635903186854584], [-75.38602128607567, 40.6358733114047], [-75.38583213642954, 40.6358196842199], [-75.38556980130015, 40.635771685973985], [-75.3855063875358, 40.63575563318512], [-75.38541564067431, 40.635748117930405], [-75.38533634045909, 40.63574821612676], [-75.38525234385303, 40.63575371017923], [-75.38507386910553, 40.63578095942914], [-75.38490909291824, 40.63582865315207], [-75.38476367837184, 40.63586387007718], [-75.3847299110394, 40.63587596706208], [-75.38463459313358, 40.635921559111736], [-75.38425895547978, 40.636148664621864], [-75.38408172450451, 40.6362941821852], [-75.38405271835813, 40.6363246522367], [-75.38395488969938, 40.63644158597906], [-75.38392176576349, 40.636486645395266], [-75.38385866709207, 40.63658970110571], [-75.38379338270757, 40.636678037796585], [-75.38375106081834, 40.636728401113565], [-75.38365008323855, 40.63680674257353], [-75.38356711337408, 40.6368598802849], [-75.38321007861964, 40.63707019978411], [-75.38308041155118, 40.63714435047902], [-75.38294360377908, 40.637216553443054], [-75.38272671801238, 40.63733645980665], [-75.38286891311965, 40.637444050382584], [-75.38298525734217, 40.637518076807645], [-75.38313034776883, 40.63762023533716], [-75.38352682477073, 40.63723661460107], [-75.38354336404575, 40.63709948771029], [-75.38408789948879, 40.63660536435034], [-75.38424980494294, 40.63640882095404], [-75.38432055759907, 40.63631870740195], [-75.38549374361942, 40.63652542084011], [-75.38572477032568, 40.63656694554034], [-75.38717217489446, 40.63681724878258], [-75.38732776017143, 40.636825997952656], [-75.38741156700162, 40.6368259046535], [-75.38752714626656, 40.636819164573076], [-75.38762581050612, 40.636806588763896], [-75.38773920326663, 40.63678513136225], [-75.38793028911137, 40.63673239161941], [-75.38801338797028, 40.63670113482487], [-75.38812324164033, 40.63665214627474], [-75.38827959797655, 40.63656197316137], [-75.38832867148585, 40.63652453105009], [-75.38843067612744, 40.63644243099295], [-75.38856477738908, 40.636318768062026], [-75.38861449180864, 40.63626306105381], [-75.38864761549385, 40.63621791477257], [-75.38869102615494, 40.636136423295035], [-75.38871334387642, 40.6360653990281], [-75.38871964630924, 40.636014214532274], [-75.38872099416959, 40.63592448607809], [-75.38870548923457, 40.63582712077946], [-75.38867313761905, 40.63572194668512], [-75.38858669172183, 40.63554058791154], [-75.38848127360923, 40.63536064512206], [-75.38843052495237, 40.63524050910748], [-75.38841006978504, 40.635155828084365], [-75.3883836548048, 40.634968960114016], [-75.38832850642214, 40.634578820595124], [-75.38834329462846, 40.634439940397954], [-75.38835255204937, 40.63425323806036], [-75.39123945344153, 40.6377009474999], [-75.39141600720063, 40.63790842079953], [-75.39204491594604, 40.63865608039319], [-75.39254144748371, 40.63924727461763], [-75.39260713265455, 40.639327210883046], [-75.39303452337467, 40.63921731669267], [-75.3930559812145, 40.63926339486094], [-75.393055997679, 40.639263431230674], [-75.39306804639178, 40.6392893051713], [-75.39315244584999, 40.6395038255474], [-75.39333669541256, 40.63995489033246], [-75.3940101248721, 40.63979293193804], [-75.39404127476442, 40.63978500233859], [-75.3942710833238, 40.639726500691566], [-75.39491738416315, 40.63964430205034], [-75.39526863494636, 40.639598495438534], [-75.39542522433982, 40.63957876571452], [-75.39597737745179, 40.639508721066], [-75.3960243228294, 40.63981523757856], [-75.39606746815106, 40.64007585493585], [-75.39611486148472, 40.640369595285335], [-75.39616528112866, 40.640679872182446], [-75.3961748156503, 40.64079367560079], [-75.39620510224228, 40.64100975476135], [-75.3962440972284, 40.64123450596201], [-75.39638574940803, 40.64205376089802], [-75.39643689198225, 40.64235514437293], [-75.39643689995614, 40.642355186875776], [-75.39644252970437, 40.64238836495629], [-75.39647198856261, 40.642556124232435], [-75.3964838588678, 40.64262371707098], [-75.39658402652537, 40.64321216377321], [-75.39662484355736, 40.643462179656225], [-75.396646474015, 40.64359090190987], [-75.39669012223267, 40.64383728525518], [-75.39673737351433, 40.644109483188245], [-75.39678694580778, 40.64439262692861], [-75.3968142245259, 40.64455882557855], [-75.39681489048903, 40.644562878601484], [-75.39683523208916, 40.6446868135067], [-75.39660449169712, 40.64471336299034], [-75.39637034205587, 40.644734351085695], [-75.39590075638036, 40.64478728315443], [-75.39295547368398, 40.64512429117683], [-75.39262995365998, 40.64516069334822], [-75.39249615686187, 40.64517565537024], [-75.39034157894862, 40.645416573227834], [-75.3887087894703, 40.6455894340666], [-75.38823266083767, 40.64578452095516], [-75.3881711278326, 40.64580973301304], [-75.38814221402467, 40.64579743612618], [-75.3878585617545, 40.64567679658876], [-75.38720233927305, 40.64573163950544], [-75.38720272147893, 40.645772063150595], [-75.38719204054885, 40.64581955474684], [-75.38713818466105, 40.64596724776172], [-75.38709938621022, 40.646045486818906], [-75.38705145521403, 40.64612714318362], [-75.38700114471115, 40.64619956932644], [-75.3869349424794, 40.64628823221718], [-75.38686739684218, 40.64636382574966], [-75.38669391955469, 40.646530189038344], [-75.38660309527326, 40.64660136018225], [-75.38640356306638, 40.646739733211476], [-75.38620866321439, 40.64684885444395], [-75.38601048166322, 40.64694872673556], [-75.38581783092842, 40.64704510801234], [-75.38567226522107, 40.647109583738725], [-75.3852510000863, 40.64727415170406], [-75.38509437070951, 40.647320038522174], [-75.38499447148524, 40.6473416833881], [-75.38490293582733, 40.647356119765405], [-75.38484060685077, 40.647360167667316], [-75.38448585440976, 40.647350440487955], [-75.38442654694848, 40.64734545461285], [-75.38438808016336, 40.64733729053427], [-75.38434530342488, 40.6473235458595], [-75.38427905053094, 40.64731103910993], [-75.38401596158961, 40.64728318723011], [-75.38386839916105, 40.64725065717955], [-75.38372828643988, 40.64723689916711], [-75.38350165331639, 40.64722317728489], [-75.3834514758489, 40.6472148584907], [-75.38338759613853, 40.647211752545736], [-75.38309373766964, 40.64721313249621], [-75.38302419781219, 40.647217204246985], [-75.38292088881093, 40.64723328598448], [-75.3828440806918, 40.64723901095142], [-75.38240445061169, 40.647233807805556], [-75.38233484730148, 40.64723967959559], [-75.38229161818099, 40.64723879659726], [-75.38202362472161, 40.64724791005093], [-75.38186910569135, 40.647233769900616], [-75.38180136695144, 40.64723787771638], [-75.38170538932442, 40.64725050376362], [-75.38153221681058, 40.647279830286806], [-75.38136200453671, 40.64730183708448], [-75.38128654737723, 40.6473203747348], [-75.38107458494127, 40.64735070965738], [-75.38096941363929, 40.64736846777525], [-75.38087916897345, 40.64739742874981], [-75.38084063655963, 40.64741671988777], [-75.38079702669583, 40.64742664084384], [-75.38067583976948, 40.647464064454624], [-75.38052069079356, 40.64751898596809], [-75.38028223839848, 40.647610474339665], [-75.38020967900225, 40.6476490636436], [-75.3800706726254, 40.647706201018295], [-75.38001471083986, 40.647734146084986], [-75.37987094228856, 40.64779856672342], [-75.37981472045247, 40.64783388544066], [-75.37977026698927, 40.647867728603416], [-75.37956936168085, 40.64804450512884], [-75.37952433063977, 40.64809472599705], [-75.37948161147699, 40.64815606317012], [-75.37945181801109, 40.64825979675598], [-75.37945033388017, 40.64830189849592], [-75.37945495762779, 40.64834970245671], [-75.37947701346597, 40.648414338095726], [-75.37952177335497, 40.648499689676015], [-75.37955811242922, 40.648542650464236], [-75.37962357961031, 40.64865416702759], [-75.37969709222045, 40.64874199381365], [-75.37980314851285, 40.64885262405921], [-75.3799340964225, 40.64899860173618], [-75.38014961836657, 40.64925107995965], [-75.38017881662817, 40.649292092794035], [-75.38021740517819, 40.64934797102441], [-75.38025387223985, 40.64941290109278], [-75.38030209938591, 40.64952775474803], [-75.38031180737234, 40.64958475780419], [-75.38034621068525, 40.649682682491125], [-75.38041528005019, 40.64981992904925], [-75.38045296571023, 40.6499014447104], [-75.38065214350134, 40.65028539006468], [-75.38068953932137, 40.65034956689741], [-75.38023452402457, 40.65039672727469], [-75.37913642926858, 40.650509480513016], [-75.37847693507936, 40.650577192475986], [-75.37717062116961, 40.650714183545574], [-75.37715283666267, 40.650587269166735], [-75.37715282242755, 40.65058716977914], [-75.37705542139173, 40.64989209713664], [-75.37654527882101, 40.64634290913878], [-75.37636545035917, 40.64497770179187], [-75.37631201602129, 40.64461693553671], [-75.37631196737628, 40.644616604819916], [-75.37618932656754, 40.64378856282558], [-75.3761219774849, 40.64332218631967], [-75.37588671696713, 40.641613036411954], [-75.3758286201848, 40.64120991751481], [-75.37569634135845, 40.64029205922364], [-75.37559644517356, 40.639445912506716], [-75.37546321814554, 40.63858735589395], [-75.37546310748041, 40.63858663832997], [-75.37538575341952, 40.63808813484752], [-75.37530963537306, 40.6375012327073], [-75.37520017824572, 40.63665724661535], [-75.37519302044173, 40.63660475623601], [-75.37516632081959, 40.636430152306716], [-75.37506271266199, 40.63575257875936], [-75.37501679780266, 40.635357395533916], [-75.37499913383567, 40.63520536078416], [-75.37500098313409, 40.63508329543855], [-75.37500658092188, 40.63471374283051], [-75.3750245272295, 40.63346542001372], [-75.37505231642984, 40.63254991204703], [-75.37505233119883, 40.63254942677599], [-75.37505234755153, 40.63254886316094], [-75.37506316578761, 40.63219246475884], [-75.37508217698976, 40.63146244872182], [-75.37508595779167, 40.63131725224876], [-75.37509431701578, 40.63110946282671], [-75.37509444679948, 40.63110622232162], [-75.37510805184529, 40.63076800390459], [-75.37510805874794, 40.63076784188785], [-75.37691850774965, 40.630913563141355], [-75.3770501277625, 40.630923450945424], [-75.37752779773699, 40.630959333010814], [-75.37807382859843, 40.63101041105476], [-75.37867999993588, 40.6310560010943], [-75.37868042212817, 40.6310560331562], [-75.37925714345133, 40.63110558859511], [-75.37941072030654, 40.63111979935829], [-75.37982160781836, 40.631154144535344], [-75.37983206785603, 40.631155018812], [-75.38041239545461, 40.631204556640675], [-75.3809891978604, 40.6312518735926], [-75.38156905919539, 40.631314695714806], [-75.38213577738534, 40.631358096422545], [-75.3824371262406, 40.631381173594356], [-75.38325214829531, 40.63144441573489], [-75.38368441836761, 40.63147348307749], [-75.38386790704874, 40.631485821253655], [-75.38411770277236, 40.63150256590463], [-75.38448636775087, 40.631527278637996], [-75.384702575014, 40.631542830114256], [-75.38470294889227, 40.631542857564455], [-75.38470299136742, 40.63154286023315], [-75.38508764629924, 40.63157052706002], [-75.38542631555732, 40.63159966236537], [-75.3856851408389, 40.63169581450717], [-75.38675941600957, 40.632176630852705], [-75.38697443454092, 40.632263048202226], [-75.38730269542218, 40.63269267421491], [-75.38730575509528, 40.63283502446167], [-75.38731495740342, 40.632932175993545], [-75.38733084518547, 40.6330185659302], [-75.38734460728938, 40.63305057532848], [-75.38734833837839, 40.63305925205097], [-75.38737531696357, 40.63310904570564], [-75.38737541692488, 40.63310922972034]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 803, \"PRECINCTID\": \"041402-1\", \"NAME\": \"BETHLEHEM 14TH WARD 2ND DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"WESLEY UNITED METHODIST CHURCH (GYM)\", \"SiteAddress\": \"2540 CENTER ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1982\", \"STATISTICS Ballots Cast - Total\": 1650.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"83.25%\", \"Presidential Electors DEM Biden and Harris\": \"981\", \"Presidential Electors REP Trump and Pence\": \"651\", \"Presidential Electors LIB Jorgensen and Cohen\": \"8\", \"Presidential Electors Write-In Totals\": \"7\", \"Attorney General DEM Josh Shapiro\": \"933\", \"Attorney General REP Heather Heidelbaugh\": \"638\", \"Attorney General LIB Daniel Wassmer\": \"14\", \"Attorney General GRE Richard L Weiss\": \"11\", \"Attorney General Write-In Totals\": \"2\", \"Auditor General DEM Nina Ahmad\": \"861\", \"Auditor General REP Timothy Defoor\": \"677\", \"Auditor General LIB Jennifer Moore\": \"29\", \"Auditor General GRE Olivia Faison\": \"13\", \"Auditor General Write-In Totals\": \"2\", \"State Treasurer DEM Joe Torsella\": \"897\", \"State Treasurer REP Stacy L. Garrity\": \"655\", \"State Treasurer LIB Joe Soloski\": \"24\", \"State Treasurer GRE Timothy Runkle\": \"13\", \"State Treasurer Write-In Totals\": \"2\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"944\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"660\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"5\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"960\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"649\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 59.45454545454546, \"Presidential Electors Pct REP\": 39.45454545454545, \"Presidential Electors Pct LIB\": 0.48484848484848486, \"PA Attorney General Pct DEM\": 56.54545454545455, \"PA Attorney General Pct REP\": 38.666666666666664, \"PA Attorney General Pct LIB\": 0.8484848484848486, \"PA Attorney General Pct GRE\": 0.6666666666666667, \"PA Auditor General Pct DEM\": 52.18181818181819, \"PA Auditor General Pct REP\": 41.03030303030303, \"PA Auditor General Pct LIB\": 1.7575757575757573, \"PA Auditor General Pct GRE\": 0.787878787878788, \"PA State Treasurer Pct DEM\": 54.36363636363636, \"PA State Treasurer Pct REP\": 39.696969696969695, \"PA State Treasurer Pct LIB\": 1.4545454545454546, \"PA State Treasurer Pct GRE\": 0.787878787878788, \"PA Representative in Congress 7th Congressional District Pct DEM\": 57.21212121212121, \"PA Representative in Congress 7th Congressional District Pct REP\": 40.0, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.9703142642077531, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37569634135845, 40.64029205922364], [-75.3758286201848, 40.64120991751481], [-75.37588671696713, 40.641613036411954], [-75.3761219774849, 40.64332218631967], [-75.37618932656754, 40.64378856282558], [-75.37631196737628, 40.644616604819916], [-75.37631201602129, 40.64461693553671], [-75.37636545035917, 40.64497770179187], [-75.37654527882101, 40.64634290913878], [-75.37705542139173, 40.64989209713664], [-75.37715282242755, 40.65058716977914], [-75.37715283666267, 40.650587269166735], [-75.37717062116961, 40.650714183545574], [-75.37847693507936, 40.650577192475986], [-75.37913642926858, 40.650509480513016], [-75.38023452402457, 40.65039672727469], [-75.38068953932137, 40.65034956689741], [-75.3806896550761, 40.65034977286076], [-75.38071928557298, 40.650400630103874], [-75.38075202384248, 40.650443516866005], [-75.38079292842224, 40.65048485435798], [-75.38090491276803, 40.650580845605745], [-75.38100022697377, 40.65071511019892], [-75.38106480611101, 40.650775208321654], [-75.38108821755695, 40.65080142920461], [-75.38117974201629, 40.65091536545319], [-75.38126142720526, 40.65102721233536], [-75.3813428395476, 40.65127471697265], [-75.38146323059337, 40.65159269417422], [-75.38147615528051, 40.651635175865785], [-75.3814767938019, 40.65166822572922], [-75.38153017496369, 40.651790391928145], [-75.38157808889082, 40.65191424814054], [-75.38162695940267, 40.652087721429254], [-75.38163769870705, 40.652115485027274], [-75.38162533086569, 40.65244104654404], [-75.38160301271398, 40.65263966635732], [-75.38161054473683, 40.65275849311631], [-75.38162966021905, 40.652932301660535], [-75.38163455669479, 40.6530491872352], [-75.3816274801538, 40.65312215118507], [-75.38160342481937, 40.65324213433809], [-75.38153748969606, 40.65345075995141], [-75.38149059597578, 40.65355380221146], [-75.38139930907212, 40.65368888684138], [-75.38123796257581, 40.65389376106965], [-75.38118019277523, 40.65397289703324], [-75.38111309615974, 40.654086508863905], [-75.38110368698695, 40.65411788677539], [-75.38109675468151, 40.65414100655091], [-75.38109674306016, 40.65414103424047], [-75.38108061220454, 40.65417786831471], [-75.3810722482953, 40.654196967968765], [-75.38106980044898, 40.654215280435096], [-75.38106838920031, 40.65422975384452], [-75.38104206747397, 40.654286106074835], [-75.38096342171748, 40.65442050548154], [-75.3809302778519, 40.65446582131842], [-75.38087294223965, 40.65453260963979], [-75.38071546721206, 40.65475541038054], [-75.38062511981431, 40.65486374149647], [-75.38058972385731, 40.65492179729681], [-75.38050675358647, 40.6551021002701], [-75.38046556452299, 40.655171106649284], [-75.38029523086274, 40.65542616552077], [-75.38022881745066, 40.65554588342761], [-75.38013711151547, 40.655743856564285], [-75.38009707530995, 40.65585682013784], [-75.38006990901755, 40.65596266684562], [-75.38005973531116, 40.656021151614105], [-75.3800683379699, 40.65613510947643], [-75.38006832608842, 40.65618659409692], [-75.38006253199087, 40.65622311503535], [-75.38004837138419, 40.656266845787236], [-75.38002514005566, 40.65631219194942], [-75.38000519113201, 40.65634113095471], [-75.37999190270328, 40.656354947140876], [-75.37993699942118, 40.65636400008232], [-75.37973800013708, 40.65638100033599], [-75.37800825581309, 40.65653297754096], [-75.37800819205603, 40.65653257174447], [-75.37668630500825, 40.65664778842468], [-75.37611598392579, 40.65669162972755], [-75.37558897134319, 40.656759780670676], [-75.37531574018237, 40.65681399327641], [-75.37487511565017, 40.656911712365606], [-75.37449281466115, 40.65701697425563], [-75.3741325751903, 40.657135559615696], [-75.37384238945677, 40.65723584337624], [-75.37384219458902, 40.657235934874855], [-75.37346110765313, 40.657414145865836], [-75.37341575611471, 40.65743741546279], [-75.37341569826144, 40.657437445807425], [-75.37319303750894, 40.65755169290765], [-75.3729763154617, 40.65766463617353], [-75.37289347737818, 40.65771357401803], [-75.37281796797988, 40.657758181130006], [-75.37273623363038, 40.6578136016661], [-75.3727361233238, 40.65781367687941], [-75.3727182258189, 40.65782581221426], [-75.37258579796301, 40.65792555215365], [-75.37245569414826, 40.65803606541646], [-75.37226463050264, 40.65821354610676], [-75.3720336087194, 40.658441284676634], [-75.37192746700363, 40.65854591697862], [-75.3716488538991, 40.65882843190964], [-75.37151887639683, 40.658950195072315], [-75.37137009182851, 40.65908957710931], [-75.37115087108197, 40.65927291419114], [-75.37114193995733, 40.659279794691706], [-75.37102947597673, 40.65936644295517], [-75.3708832276654, 40.659474478264116], [-75.37082118214026, 40.65951700372734], [-75.37082114332527, 40.65951703085789], [-75.37079084493803, 40.65953779674629], [-75.3704258905384, 40.65971264999208], [-75.37018678819777, 40.65982083710803], [-75.36995088760057, 40.65989733725016], [-75.36992051502996, 40.65990718640015], [-75.36968224679438, 40.659966307277884], [-75.36953783442857, 40.65999445394938], [-75.36953769027676, 40.659994482520204], [-75.3694544160437, 40.6600107126938], [-75.36933186960412, 40.66003177767299], [-75.36921316753467, 40.66005218094982], [-75.36898143661737, 40.66007942837665], [-75.36725036777455, 40.66026645165082], [-75.36713352222387, 40.660278600220174], [-75.36702779503248, 40.660289593454365], [-75.36680098529582, 40.66030654340805], [-75.36678105006514, 40.660308033566864], [-75.3667565728294, 40.660308670918035], [-75.3665987909584, 40.660312781256664], [-75.36640512382023, 40.66030879976669], [-75.36631720033729, 40.66030204178177], [-75.36613992350136, 40.66028841693348], [-75.36598520682273, 40.66026923696772], [-75.36597478440466, 40.66026794520515], [-75.36595674516632, 40.66026464011171], [-75.36579118333006, 40.66023430835242], [-75.36570584999598, 40.66021846378317], [-75.365648793086, 40.66020786901871], [-75.36562454544307, 40.66020193265854], [-75.36562451259913, 40.66020192477608], [-75.36562443167129, 40.660201905094205], [-75.36562431087063, 40.66020187558354], [-75.36562417131566, 40.66020184118281], [-75.36562410211332, 40.660201824444684], [-75.36562397195142, 40.660201792038926], [-75.36551563460431, 40.66017526820416], [-75.36540244648714, 40.660138788916065], [-75.36529106007322, 40.6601023456729], [-75.36512384967263, 40.660040501535676], [-75.36507929757778, 40.66002402334451], [-75.36478277593153, 40.65989556001275], [-75.36475918217, 40.65988403527344], [-75.36454087802232, 40.659777401547814], [-75.3643778254116, 40.659692470414925], [-75.36435324328, 40.659679665827184], [-75.36416433880706, 40.65956688785644], [-75.3635033498779, 40.659218199930386], [-75.36335789852147, 40.65915110751594], [-75.36320868802068, 40.65908831307899], [-75.36318976243861, 40.65908112994254], [-75.36307794137457, 40.65903868382549], [-75.36295680188697, 40.65899774749259], [-75.36280143373395, 40.6589561062401], [-75.36277108685036, 40.65894805364226], [-75.36277103879988, 40.658948040941496], [-75.36277097551, 40.65894802432336], [-75.36277085950515, 40.65894799310668], [-75.36262194017145, 40.65890847623467], [-75.36258221739423, 40.65889998457512], [-75.36249579689053, 40.65888150896413], [-75.36234185019481, 40.6588506221952], [-75.36222010554381, 40.65882674783112], [-75.36211975069116, 40.658809750663806], [-75.36207635094542, 40.65880533523632], [-75.36198861793805, 40.65879640943025], [-75.36188454060012, 40.65879116389613], [-75.36177266379694, 40.6587855251756], [-75.36160695144059, 40.65878412399073], [-75.36159603955903, 40.658784031621984], [-75.36157247172578, 40.658785822609524], [-75.36157226294173, 40.65878583902846], [-75.36157202096314, 40.65878585746616], [-75.36157183355274, 40.65878587162277], [-75.36157171138133, 40.658785880817284], [-75.36144148032602, 40.658795778545105], [-75.35965024654698, 40.65897655774788], [-75.35827632679519, 40.659107654136086], [-75.35811041086787, 40.659121859587685], [-75.35804937910709, 40.65912708493225], [-75.35767907820302, 40.65914724638911], [-75.35742698537447, 40.65914542429445], [-75.35735915492711, 40.65914493433816], [-75.35731652503505, 40.65914265458365], [-75.35731648605788, 40.65914265287834], [-75.35731622868069, 40.65914263855778], [-75.35703256081011, 40.65912746787693], [-75.35679807010833, 40.6591055514857], [-75.35655194482095, 40.659081249434145], [-75.35634027556621, 40.65905130886695], [-75.35620120192341, 40.659024646100114], [-75.35610301765611, 40.65900582189887], [-75.35578109805361, 40.658933016453396], [-75.3557810043195, 40.65893299109484], [-75.35577607554133, 40.658931710959514], [-75.35556673964797, 40.65887736099661], [-75.35534179441595, 40.65880910748836], [-75.35515919625335, 40.65875370187566], [-75.35459442573344, 40.65856483846559], [-75.35573040273118, 40.656660865645776], [-75.35577768074116, 40.65658232865571], [-75.35586942784023, 40.656430945121755], [-75.35693317950657, 40.654676312643794], [-75.3570512286206, 40.65449983754191], [-75.35735980377031, 40.65398448863568], [-75.35761695317294, 40.65354642083148], [-75.35793058076248, 40.6530225001729], [-75.35809801495552, 40.65274279333905], [-75.35817360545911, 40.65260691035109], [-75.3582578579079, 40.65245545685776], [-75.35834979959108, 40.652303240345034], [-75.35878683204298, 40.65157138196628], [-75.35889606415458, 40.651383443284466], [-75.35891259928333, 40.65135499224711], [-75.35903877172638, 40.651148207822544], [-75.35904009561155, 40.65114603698298], [-75.35911127403773, 40.65102938176448], [-75.35974760090025, 40.64998647920111], [-75.36021133416209, 40.64922642549476], [-75.36062859276579, 40.648532312261594], [-75.36081098194016, 40.64822890060257], [-75.36129698949429, 40.64741077530608], [-75.36141367528285, 40.64721105940832], [-75.36176526990279, 40.64660927160524], [-75.3618916705687, 40.64640022230009], [-75.3620716652095, 40.64610253314694], [-75.36245198039366, 40.645493572143145], [-75.36290469322047, 40.644749064544214], [-75.36321770389156, 40.64422689853449], [-75.36321794144455, 40.644226503435554], [-75.36369088561744, 40.64343730875993], [-75.36382719006521, 40.643209854565576], [-75.36464916110431, 40.641861210195465], [-75.36470745392869, 40.641767590460496], [-75.36492209003863, 40.641407490741344], [-75.3650848441667, 40.641147758557985], [-75.36509597505395, 40.64113005468046], [-75.36594560756565, 40.64141387455868], [-75.36594600436321, 40.641413990825974], [-75.3660428285598, 40.64144230336565], [-75.36609020073347, 40.641453318019565], [-75.36612453799214, 40.64145771876385], [-75.36612608496252, 40.641457917243876], [-75.36612790846624, 40.641457954748795], [-75.3661756138293, 40.641458935919054], [-75.36625233894534, 40.64145545096376], [-75.36633855679915, 40.64144607123829], [-75.36665763071659, 40.641411357186385], [-75.36720032230464, 40.6413554123664], [-75.36745442171994, 40.64133094566133], [-75.36758119564404, 40.64131859967843], [-75.36758513803454, 40.641318214959746], [-75.37131033898349, 40.640955357358884], [-75.37270718632556, 40.64082715819252], [-75.3728696098495, 40.64081424670688], [-75.3732168786639, 40.64078664056683], [-75.37333831012775, 40.64077327249137], [-75.37364660730647, 40.640739332743784], [-75.37390571629035, 40.64070906476478], [-75.37403028778935, 40.64069451262732], [-75.37411840628549, 40.64067562402562], [-75.37421552892881, 40.64065480466458], [-75.37447435791017, 40.64059832766998], [-75.374785214162, 40.64052309431319], [-75.37569602034671, 40.64029214093362], [-75.37569634135845, 40.64029205922364]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 805, \"PRECINCTID\": \"041403-1\", \"NAME\": \"BETHLEHEM 14TH WARD 3RD DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"CHURCH OF NAZARENE (GYM)\", \"SiteAddress\": \"1500 LINDEN ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1512\", \"STATISTICS Ballots Cast - Total\": 1200.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"79.37%\", \"Presidential Electors DEM Biden and Harris\": \"744\", \"Presidential Electors REP Trump and Pence\": \"437\", \"Presidential Electors LIB Jorgensen and Cohen\": \"11\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"714\", \"Attorney General REP Heather Heidelbaugh\": \"411\", \"Attorney General LIB Daniel Wassmer\": \"13\", \"Attorney General GRE Richard L Weiss\": \"12\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"687\", \"Auditor General REP Timothy Defoor\": \"418\", \"Auditor General LIB Jennifer Moore\": \"21\", \"Auditor General GRE Olivia Faison\": \"10\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"678\", \"State Treasurer REP Stacy L. Garrity\": \"429\", \"State Treasurer LIB Joe Soloski\": \"22\", \"State Treasurer GRE Timothy Runkle\": \"12\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"732\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"431\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"726\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"429\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 62.0, \"Presidential Electors Pct REP\": 36.41666666666667, \"Presidential Electors Pct LIB\": 0.9166666666666666, \"PA Attorney General Pct DEM\": 59.5, \"PA Attorney General Pct REP\": 34.25, \"PA Attorney General Pct LIB\": 1.0833333333333335, \"PA Attorney General Pct GRE\": 1.0, \"PA Auditor General Pct DEM\": 57.25, \"PA Auditor General Pct REP\": 34.833333333333336, \"PA Auditor General Pct LIB\": 1.7500000000000002, \"PA Auditor General Pct GRE\": 0.8333333333333334, \"PA State Treasurer Pct DEM\": 56.49999999999999, \"PA State Treasurer Pct REP\": 35.75, \"PA State Treasurer Pct LIB\": 1.8333333333333333, \"PA State Treasurer Pct GRE\": 1.0, \"PA Representative in Congress 7th Congressional District Pct DEM\": 61.0, \"PA Representative in Congress 7th Congressional District Pct REP\": 35.91666666666667, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.7056831012420023, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.36594560756565, 40.64141387455868], [-75.36509597505395, 40.64113005468046], [-75.3650848441667, 40.641147758557985], [-75.36492209003863, 40.641407490741344], [-75.36492177111332, 40.64140737967645], [-75.36462179544472, 40.64130236367318], [-75.3640150506939, 40.641089949836655], [-75.36138717052147, 40.64017764639947], [-75.36102442907254, 40.64006410942392], [-75.36100326384887, 40.63992423388014], [-75.36085910327483, 40.63902450976719], [-75.36085880526824, 40.639022645105854], [-75.36075984939143, 40.63840503289799], [-75.36182477751116, 40.63803062503197], [-75.3619221201169, 40.63799542710949], [-75.36192216083904, 40.6379954126336], [-75.36204660150112, 40.63795041552566], [-75.36214716723583, 40.637912996489625], [-75.36216897133491, 40.63790488374116], [-75.36219073854471, 40.637895211704134], [-75.36219083107179, 40.63789517036816], [-75.36219088635808, 40.637895145381634], [-75.36226327592512, 40.637862978047], [-75.36232043714834, 40.63783680851666], [-75.3623402217473, 40.637827751449066], [-75.36241651359359, 40.63778556012961], [-75.36244349549719, 40.63776767223106], [-75.36248480455059, 40.63774028688933], [-75.36252451373092, 40.63771162986475], [-75.36254954222126, 40.63769356747122], [-75.36261310850509, 40.637642365427844], [-75.36261633337728, 40.63763976795138], [-75.36270116773304, 40.637559997388344], [-75.36293449445792, 40.63733337592883], [-75.36324013928773, 40.63702406501255], [-75.36346716136033, 40.63678678409344], [-75.36373706367023, 40.636504683047676], [-75.36446401355671, 40.63582579620095], [-75.3656298888689, 40.6347609314183], [-75.36562995242211, 40.63476087326767], [-75.3664598138212, 40.63392302768963], [-75.36662576813349, 40.63374066379785], [-75.36741363554799, 40.63296940061162], [-75.36746120274991, 40.63292283455206], [-75.368582291196, 40.631849409054915], [-75.36936117695755, 40.63107502438608], [-75.36988199729905, 40.63061617525542], [-75.3700181529909, 40.63052069273527], [-75.37001836636738, 40.63052054396774], [-75.37012180366864, 40.630448005062824], [-75.37021462370365, 40.63038291272908], [-75.37021502573681, 40.630382946209735], [-75.3712818754494, 40.63047269954847], [-75.37233249681653, 40.630548749095915], [-75.37284305767999, 40.630585050635226], [-75.373295986521, 40.63061725270766], [-75.37363767787117, 40.630642802749996], [-75.3736381165691, 40.630642836069725], [-75.37417038453869, 40.630682634441605], [-75.3744344175501, 40.630709981801196], [-75.37451332661624, 40.63071815413926], [-75.3747719447088, 40.63073976103294], [-75.37477219818193, 40.630739782443996], [-75.37477293739589, 40.63073984444081], [-75.3747735811223, 40.63073989817431], [-75.37510800097635, 40.630767837100365], [-75.37510805874794, 40.63076784188785], [-75.37510805184529, 40.63076800390459], [-75.37509444679948, 40.63110622232162], [-75.37509431701578, 40.63110946282671], [-75.37508595779167, 40.63131725224876], [-75.37508217698976, 40.63146244872182], [-75.37506316578761, 40.63219246475884], [-75.37505234755153, 40.63254886316094], [-75.37505233119883, 40.63254942677599], [-75.37505231642984, 40.63254991204703], [-75.3750245272295, 40.63346542001372], [-75.37500658092188, 40.63471374283051], [-75.37500098313409, 40.63508329543855], [-75.37499913383567, 40.63520536078416], [-75.37501679780266, 40.635357395533916], [-75.37506271266199, 40.63575257875936], [-75.37516632081959, 40.636430152306716], [-75.37519302044173, 40.63660475623601], [-75.37520017824572, 40.63665724661535], [-75.37530963537306, 40.6375012327073], [-75.37538575341952, 40.63808813484752], [-75.37546310748041, 40.63858663832997], [-75.37546321814554, 40.63858735589395], [-75.37559644517356, 40.639445912506716], [-75.37569634135845, 40.64029205922364], [-75.37569602034671, 40.64029214093362], [-75.374785214162, 40.64052309431319], [-75.37447435791017, 40.64059832766998], [-75.37421552892881, 40.64065480466458], [-75.37411840628549, 40.64067562402562], [-75.37403028778935, 40.64069451262732], [-75.37390571629035, 40.64070906476478], [-75.37364660730647, 40.640739332743784], [-75.37333831012775, 40.64077327249137], [-75.3732168786639, 40.64078664056683], [-75.3728696098495, 40.64081424670688], [-75.37270718632556, 40.64082715819252], [-75.37131033898349, 40.640955357358884], [-75.36758513803454, 40.641318214959746], [-75.36758119564404, 40.64131859967843], [-75.36745442171994, 40.64133094566133], [-75.36720032230464, 40.6413554123664], [-75.36665763071659, 40.641411357186385], [-75.36633855679915, 40.64144607123829], [-75.36625233894534, 40.64145545096376], [-75.3661756138293, 40.641458935919054], [-75.36612790846624, 40.641457954748795], [-75.36612608496252, 40.641457917243876], [-75.36612453799214, 40.64145771876385], [-75.36609020073347, 40.641453318019565], [-75.3660428285598, 40.64144230336565], [-75.36594600436321, 40.641413990825974], [-75.36594560756565, 40.64141387455868]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 806, \"PRECINCTID\": \"041407-1\", \"NAME\": \"BETHLEHEM 14TH WARD 7TH DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"FIRST BAPTIST CHURCH\", \"SiteAddress\": \"3235 LINDEN ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1429\", \"STATISTICS Ballots Cast - Total\": 1203.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"84.18%\", \"Presidential Electors DEM Biden and Harris\": \"683\", \"Presidential Electors REP Trump and Pence\": \"501\", \"Presidential Electors LIB Jorgensen and Cohen\": \"11\", \"Presidential Electors Write-In Totals\": \"5\", \"Attorney General DEM Josh Shapiro\": \"673\", \"Attorney General REP Heather Heidelbaugh\": \"476\", \"Attorney General LIB Daniel Wassmer\": \"14\", \"Attorney General GRE Richard L Weiss\": \"10\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"629\", \"Auditor General REP Timothy Defoor\": \"510\", \"Auditor General LIB Jennifer Moore\": \"21\", \"Auditor General GRE Olivia Faison\": \"5\", \"Auditor General Write-In Totals\": \"2\", \"State Treasurer DEM Joe Torsella\": \"641\", \"State Treasurer REP Stacy L. Garrity\": \"497\", \"State Treasurer LIB Joe Soloski\": \"18\", \"State Treasurer GRE Timothy Runkle\": \"9\", \"State Treasurer Write-In Totals\": \"1\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"667\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"510\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"706\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"475\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 56.77472984206151, \"Presidential Electors Pct REP\": 41.64588528678304, \"Presidential Electors Pct LIB\": 0.914380714879468, \"PA Attorney General Pct DEM\": 55.94347464671654, \"PA Attorney General Pct REP\": 39.56774729842061, \"PA Attorney General Pct LIB\": 1.1637572734829593, \"PA Attorney General Pct GRE\": 0.8312551953449709, \"PA Auditor General Pct DEM\": 52.28595178719867, \"PA Auditor General Pct REP\": 42.394014962593516, \"PA Auditor General Pct LIB\": 1.7456359102244388, \"PA Auditor General Pct GRE\": 0.41562759767248547, \"PA State Treasurer Pct DEM\": 53.28345802161264, \"PA State Treasurer Pct REP\": 41.31338320864506, \"PA State Treasurer Pct LIB\": 1.4962593516209477, \"PA State Treasurer Pct GRE\": 0.7481296758104738, \"PA Representative in Congress 7th Congressional District Pct DEM\": 55.44472152950956, \"PA Representative in Congress 7th Congressional District Pct REP\": 42.394014962593516, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.7074473089951073, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.35459442573344, 40.65856483846559], [-75.35515919625335, 40.65875370187566], [-75.35534179441595, 40.65880910748836], [-75.35556673964797, 40.65887736099661], [-75.35577607554133, 40.658931710959514], [-75.3557810043195, 40.65893299109484], [-75.35578109805361, 40.658933016453396], [-75.35610301765611, 40.65900582189887], [-75.35620120192341, 40.659024646100114], [-75.35634027556621, 40.65905130886695], [-75.35655194482095, 40.659081249434145], [-75.35679807010833, 40.6591055514857], [-75.35703256081011, 40.65912746787693], [-75.35731622868069, 40.65914263855778], [-75.35731648605788, 40.65914265287834], [-75.35731652503505, 40.65914265458365], [-75.35735915492711, 40.65914493433816], [-75.35742698537447, 40.65914542429445], [-75.35767907820302, 40.65914724638911], [-75.35804937910709, 40.65912708493225], [-75.35811041086787, 40.659121859587685], [-75.35827632679519, 40.659107654136086], [-75.35965024654698, 40.65897655774788], [-75.36144148032602, 40.658795778545105], [-75.36157171138133, 40.658785880817284], [-75.36157183355274, 40.65878587162277], [-75.36157202096314, 40.65878585746616], [-75.36157226294173, 40.65878583902846], [-75.36157247172578, 40.658785822609524], [-75.36159603955903, 40.658784031621984], [-75.36160695144059, 40.65878412399073], [-75.36177266379694, 40.6587855251756], [-75.36188454060012, 40.65879116389613], [-75.36198861793805, 40.65879640943025], [-75.36207635094542, 40.65880533523632], [-75.36211975069116, 40.658809750663806], [-75.36222010554381, 40.65882674783112], [-75.36234185019481, 40.6588506221952], [-75.36249579689053, 40.65888150896413], [-75.36258221739423, 40.65889998457512], [-75.36262194017145, 40.65890847623467], [-75.36277085950515, 40.65894799310668], [-75.36277097551, 40.65894802432336], [-75.36277103879988, 40.658948040941496], [-75.36277108685036, 40.65894805364226], [-75.36280143373395, 40.6589561062401], [-75.36295680188697, 40.65899774749259], [-75.36307794137457, 40.65903868382549], [-75.36318976243861, 40.65908112994254], [-75.36320868802068, 40.65908831307899], [-75.36335789852147, 40.65915110751594], [-75.3635033498779, 40.659218199930386], [-75.36416433880706, 40.65956688785644], [-75.36435324328, 40.659679665827184], [-75.3643778254116, 40.659692470414925], [-75.36454087802232, 40.659777401547814], [-75.36475918217, 40.65988403527344], [-75.36478277593153, 40.65989556001275], [-75.36507929757778, 40.66002402334451], [-75.36512384967263, 40.660040501535676], [-75.36529106007322, 40.6601023456729], [-75.36540244648714, 40.660138788916065], [-75.36551563460431, 40.66017526820416], [-75.36562397195142, 40.660201792038926], [-75.36562410211332, 40.660201824444684], [-75.36562417131566, 40.66020184118281], [-75.36562431087063, 40.66020187558354], [-75.36562443167129, 40.660201905094205], [-75.36562451259913, 40.66020192477608], [-75.36562454544307, 40.66020193265854], [-75.365648793086, 40.66020786901871], [-75.36570584999598, 40.66021846378317], [-75.36579118333006, 40.66023430835242], [-75.36595674516632, 40.66026464011171], [-75.36597478440466, 40.66026794520515], [-75.36598520682273, 40.66026923696772], [-75.36613992350136, 40.66028841693348], [-75.36631720033729, 40.66030204178177], [-75.36640512382023, 40.66030879976669], [-75.3665987909584, 40.660312781256664], [-75.3667565728294, 40.660308670918035], [-75.36678105006514, 40.660308033566864], [-75.36680098529582, 40.66030654340805], [-75.36702779503248, 40.660289593454365], [-75.36713352222387, 40.660278600220174], [-75.36725036777455, 40.66026645165082], [-75.36898143661737, 40.66007942837665], [-75.36921316753467, 40.66005218094982], [-75.36933186960412, 40.66003177767299], [-75.3694544160437, 40.6600107126938], [-75.36953769027676, 40.659994482520204], [-75.36953783442857, 40.65999445394938], [-75.36968224679438, 40.659966307277884], [-75.36992051502996, 40.65990718640015], [-75.36995088760057, 40.65989733725016], [-75.37018678819777, 40.65982083710803], [-75.3704258905384, 40.65971264999208], [-75.37079084493803, 40.65953779674629], [-75.37082114332527, 40.65951703085789], [-75.37082118214026, 40.65951700372734], [-75.3708832276654, 40.659474478264116], [-75.37102947597673, 40.65936644295517], [-75.37114193995733, 40.659279794691706], [-75.37115087108197, 40.65927291419114], [-75.37137009182851, 40.65908957710931], [-75.37151887639683, 40.658950195072315], [-75.3716488538991, 40.65882843190964], [-75.37192746700363, 40.65854591697862], [-75.3720336087194, 40.658441284676634], [-75.37226463050264, 40.65821354610676], [-75.37245569414826, 40.65803606541646], [-75.37258579796301, 40.65792555215365], [-75.3727182258189, 40.65782581221426], [-75.3727361233238, 40.65781367687941], [-75.37273623363038, 40.6578136016661], [-75.37281796797988, 40.657758181130006], [-75.37289347737818, 40.65771357401803], [-75.3729763154617, 40.65766463617353], [-75.37319303750894, 40.65755169290765], [-75.37341569826144, 40.657437445807425], [-75.37341575611471, 40.65743741546279], [-75.37346110765313, 40.657414145865836], [-75.37384219458902, 40.657235934874855], [-75.37384238945677, 40.65723584337624], [-75.3741325751903, 40.657135559615696], [-75.37449281466115, 40.65701697425563], [-75.37487511565017, 40.656911712365606], [-75.37531574018237, 40.65681399327641], [-75.37558897134319, 40.656759780670676], [-75.37611598392579, 40.65669162972755], [-75.37668630500825, 40.65664778842468], [-75.37800819205603, 40.65653257174447], [-75.37800825581309, 40.65653297754096], [-75.37973800013708, 40.65638100033599], [-75.37993699942118, 40.65636400008232], [-75.37999190270328, 40.656354947140876], [-75.37985828983206, 40.656493869678314], [-75.37979992674586, 40.65656415529617], [-75.37977688859432, 40.656604013641726], [-75.37971162465767, 40.6567677740943], [-75.37964623648578, 40.65690948041423], [-75.37961051203132, 40.65702793721239], [-75.37960348425645, 40.65709944350833], [-75.37960656719008, 40.657139836799644], [-75.37962379898967, 40.65718798400981], [-75.37967499895308, 40.657244205670445], [-75.37972163488833, 40.65727647889338], [-75.37977824549968, 40.6573070686993], [-75.37981786904406, 40.65733370679654], [-75.37984578717656, 40.65736001998966], [-75.37987080848143, 40.65739176567032], [-75.37988923842518, 40.65742445403594], [-75.37990643924512, 40.65745496328468], [-75.37997197612741, 40.65756476449171], [-75.38003488218497, 40.65769125098006], [-75.38011507189535, 40.65785248693328], [-75.38014227895157, 40.657898950630695], [-75.38018482407216, 40.657948802524416], [-75.3802253811932, 40.6579963255495], [-75.38024231352071, 40.65804755110896], [-75.3802424867119, 40.65804807445225], [-75.38026943405475, 40.65810191184841], [-75.3802909897158, 40.65813627838992], [-75.38029162362453, 40.65813728951327], [-75.38035002342147, 40.658245057253005], [-75.38037677451219, 40.658304467905346], [-75.38039008061521, 40.658357257103226], [-75.38040840783684, 40.658429965404984], [-75.38054352462517, 40.65873957744342], [-75.38059098239138, 40.658876467295364], [-75.38062416647816, 40.658957977102595], [-75.38071311482213, 40.65914531231439], [-75.38081086930283, 40.65936414709799], [-75.38087924172629, 40.65947031655015], [-75.38097470262706, 40.65960080717061], [-75.38107338278391, 40.65974781609508], [-75.38121280088825, 40.6599555129666], [-75.38133355379418, 40.660110117424395], [-75.38143488210737, 40.66022759998749], [-75.38148976034725, 40.66030749239377], [-75.38153196194249, 40.66038892844657], [-75.38157602864248, 40.66049425764967], [-75.38159712629542, 40.66056067474565], [-75.38160053378306, 40.66059189287445], [-75.38159911719136, 40.66063210765142], [-75.38158167204378, 40.66071790248627], [-75.38156609957404, 40.66075053463012], [-75.38153270529294, 40.66080288221548], [-75.38145284759668, 40.660894696369866], [-75.38136784896895, 40.66097893902318], [-75.38133812044325, 40.66100398847728], [-75.38126048793772, 40.6610838348497], [-75.38123715783014, 40.66110785197914], [-75.38123699211982, 40.66110802246165], [-75.38115946840817, 40.66118782955206], [-75.38105103326201, 40.66127202284911], [-75.3808627390877, 40.66139688733161], [-75.3807993884691, 40.66145150536735], [-75.3807586126546, 40.66148666012095], [-75.3807211545646, 40.66152639602428], [-75.38066847569782, 40.6615897047653], [-75.38054795290675, 40.66173454497673], [-75.3804551384654, 40.66186144656719], [-75.37997788629565, 40.662486070841894], [-75.37993297584083, 40.66253260528671], [-75.37980293867805, 40.66266689655467], [-75.37970378564917, 40.6627689552932], [-75.37964812850905, 40.662839037614155], [-75.3795769565596, 40.662940037719544], [-75.3795170457527, 40.66305405318451], [-75.37950378420298, 40.66309780131625], [-75.37950158628844, 40.66316013900467], [-75.37947256329312, 40.66321626536463], [-75.37944740370246, 40.66323951954387], [-75.37934999686526, 40.66329201623443], [-75.37919565996128, 40.66332284042396], [-75.37913126345867, 40.663308395233344], [-75.37907041312998, 40.66327008096793], [-75.37897926337881, 40.66322179510945], [-75.37889898187807, 40.66319767209368], [-75.3788195948664, 40.663199308812075], [-75.37875872583255, 40.66321265175925], [-75.3787003657116, 40.66323153679882], [-75.37858253838051, 40.66330069122706], [-75.37830061509327, 40.66349837564143], [-75.37821695832207, 40.66354437361061], [-75.37812364883523, 40.66360845183563], [-75.37793419005891, 40.66376598053959], [-75.37784844556525, 40.66386419149014], [-75.37779891019899, 40.66392092838088], [-75.3777364840138, 40.66397834381317], [-75.37765700967593, 40.66403352306645], [-75.37759343030788, 40.664072551465225], [-75.37755660427823, 40.6640900901377], [-75.3774384756232, 40.66414635121257], [-75.37731247037932, 40.66424279561532], [-75.37726278646811, 40.66429678158894], [-75.37714403866127, 40.66444297091574], [-75.37694896416093, 40.664682845323775], [-75.37689316027323, 40.66475695748097], [-75.37683967139556, 40.66484209952047], [-75.37681154744487, 40.66487267241553], [-75.37671469078933, 40.66496053112564], [-75.37667028498348, 40.66499265804178], [-75.37653964876728, 40.66506695441311], [-75.37646306846847, 40.665116699508204], [-75.37642876547844, 40.665143541436045], [-75.37629368052154, 40.66526725746954], [-75.37627102479502, 40.66529614044335], [-75.37622995720194, 40.66536137140085], [-75.37619377988472, 40.665441291178446], [-75.37615232459088, 40.66551749759828], [-75.37613500280023, 40.66557403389919], [-75.3761200551312, 40.665665457309224], [-75.37610536923916, 40.66572393489764], [-75.37608451056872, 40.66577851054981], [-75.37603257021601, 40.66587080712957], [-75.37599447407783, 40.66592846215754], [-75.3758463420822, 40.66608966608615], [-75.37573238428607, 40.66617665854986], [-75.3755623168858, 40.6662952809979], [-75.37541696146003, 40.66637785553412], [-75.37529232605353, 40.66643528301477], [-75.37508725863535, 40.666523841165805], [-75.37503617116087, 40.66654090047857], [-75.37494731405673, 40.66655529789025], [-75.3748650840516, 40.66656073578563], [-75.37471362573993, 40.666560807838984], [-75.37461106666734, 40.666554760088026], [-75.37452034912182, 40.66654526487661], [-75.37429342160688, 40.66651255606774], [-75.3742359027806, 40.66650751549741], [-75.37417598922603, 40.66649367476009], [-75.37412143967505, 40.66648114386528], [-75.37408142209426, 40.66646556488307], [-75.37401978385142, 40.6664495428457], [-75.37382129274873, 40.666403000052306], [-75.37356373558295, 40.666369662989474], [-75.37340416750652, 40.666344167919945], [-75.37329729556274, 40.66633262446286], [-75.37319467028966, 40.66632846141963], [-75.37312280160151, 40.66632132439182], [-75.37293434143513, 40.66629703904024], [-75.37286503623345, 40.66627692869281], [-75.37285224461797, 40.666273217002676], [-75.37279967909492, 40.666255578568375], [-75.37255473018108, 40.66622266800329], [-75.37276850101323, 40.667774689083856], [-75.3717813474895, 40.66825814010794], [-75.37075906184282, 40.66876552527431], [-75.36799041693534, 40.6701395864719], [-75.36715837713328, 40.670543553021496], [-75.36633803932372, 40.670947753420485], [-75.36594227935583, 40.6711501909943], [-75.36567434281044, 40.67128197592054], [-75.36558392649825, 40.67133475469242], [-75.36534106947444, 40.67147651464688], [-75.36497748998991, 40.67166116182824], [-75.36409848273802, 40.67211725650516], [-75.36324168800626, 40.67253141130517], [-75.36290794536112, 40.67268800681323], [-75.36253081107549, 40.67287313955862], [-75.36029774104222, 40.67223326200857], [-75.35938933638765, 40.67196835307186], [-75.3563799999043, 40.67110224682173], [-75.35598572249677, 40.670983671641004], [-75.35471244232214, 40.670611052813804], [-75.35153106981402, 40.66966781191372], [-75.35093379184855, 40.66949436272754], [-75.34896576845632, 40.668922820421606], [-75.3488047765878, 40.668876064304406], [-75.34842851461029, 40.66876678702375], [-75.3483728152117, 40.668751573367764], [-75.34836729061846, 40.66875006438105], [-75.34879924299712, 40.66808787203196], [-75.34899060417216, 40.667794505168175], [-75.34900018930982, 40.66777981122541], [-75.34932180814488, 40.66725699002614], [-75.34998215745141, 40.666183501761914], [-75.35020745191642, 40.66581698763782], [-75.350207814945, 40.66581639606726], [-75.35036882417143, 40.665554460191736], [-75.35122789760615, 40.664116145428004], [-75.3512279893016, 40.66411599597747], [-75.35166904661462, 40.66339647958777], [-75.35173520888938, 40.663288545445454], [-75.35315001341728, 40.66095145049036], [-75.35340603164056, 40.660532538947045], [-75.35343049614208, 40.66049250781085], [-75.35459442573344, 40.65856483846559]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 807, \"PRECINCTID\": \"320002-1\", \"NAME\": \"UPPER NAZARETH WESTERN DISTRICT\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"137th District\", \"MDJ\": \"03-2-08\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"911 COMPLEX\", \"SiteAddress\": \"500 GRACEDALE AVE\", \"City\": \"NAZARETH\", \"STATISTICS Registered Voters - Total\": \"2310\", \"STATISTICS Ballots Cast - Total\": 1807.0, \"STATISTICS Ballots Cast - Blank\": \"3\", \"STATISTICS Voter Turnout - Total\": \"78.23%\", \"Presidential Electors DEM Biden and Harris\": \"865\", \"Presidential Electors REP Trump and Pence\": \"905\", \"Presidential Electors LIB Jorgensen and Cohen\": \"26\", \"Presidential Electors Write-In Totals\": \"5\", \"Attorney General DEM Josh Shapiro\": \"821\", \"Attorney General REP Heather Heidelbaugh\": \"878\", \"Attorney General LIB Daniel Wassmer\": \"35\", \"Attorney General GRE Richard L Weiss\": \"13\", \"Attorney General Write-In Totals\": \"2\", \"Auditor General DEM Nina Ahmad\": \"753\", \"Auditor General REP Timothy Defoor\": \"900\", \"Auditor General LIB Jennifer Moore\": \"65\", \"Auditor General GRE Olivia Faison\": \"20\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"779\", \"State Treasurer REP Stacy L. Garrity\": \"889\", \"State Treasurer LIB Joe Soloski\": \"53\", \"State Treasurer GRE Timothy Runkle\": \"12\", \"State Treasurer Write-In Totals\": \"2\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"837\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"926\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": \"697\", \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": \"1071\", \"Representative in the General Assembly 137th Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 47.8693967902601, \"Presidential Electors Pct REP\": 50.08301051466519, \"Presidential Electors Pct LIB\": 1.4388489208633095, \"PA Attorney General Pct DEM\": 45.4344216934145, \"PA Attorney General Pct REP\": 48.58882125069176, \"PA Attorney General Pct LIB\": 1.936912008854455, \"PA Attorney General Pct GRE\": 0.7194244604316548, \"PA Auditor General Pct DEM\": 41.67127836192584, \"PA Auditor General Pct REP\": 49.806308799114554, \"PA Auditor General Pct LIB\": 3.597122302158273, \"PA Auditor General Pct GRE\": 1.1068068622025455, \"PA State Treasurer Pct DEM\": 43.11012728278915, \"PA State Treasurer Pct REP\": 49.197565024903156, \"PA State Treasurer Pct LIB\": 2.9330381848367457, \"PA State Treasurer Pct GRE\": 0.6640841173215274, \"PA Representative in Congress 7th Congressional District Pct DEM\": 46.319867183176534, \"PA Representative in Congress 7th Congressional District Pct REP\": 51.24515771997786, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 1.0626411366202484, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.32159605711644, 40.742225992175086], [-75.32139488338012, 40.74107599626909], [-75.32139500051682, 40.74107599962069], [-75.32140533745522, 40.741076150127135], [-75.32146408804547, 40.74107753514289], [-75.32230113835864, 40.74109726511134], [-75.32253778930934, 40.741102843961244], [-75.32275202049867, 40.74110789406682], [-75.32287450759219, 40.741115005545566], [-75.32290270161447, 40.7411166436721], [-75.32293214963781, 40.741118355757514], [-75.32332662976638, 40.741141273859334], [-75.32338877370756, 40.74114489002358], [-75.32349873737435, 40.741148904905224], [-75.32378063024585, 40.74116552298042], [-75.32401285215501, 40.74118299050204], [-75.3246853742018, 40.74124561966769], [-75.32523528345183, 40.74129682818836], [-75.32527526651278, 40.74123931412724], [-75.32554468619908, 40.740876482775505], [-75.32556529936969, 40.740849265651505], [-75.32558543747254, 40.74082267461493], [-75.32582260838505, 40.74050301616737], [-75.32593094622305, 40.740352025595264], [-75.32616070223077, 40.740037704234524], [-75.32620117716998, 40.73998072804791], [-75.3262053909866, 40.73997479643249], [-75.32643514635507, 40.73966038805467], [-75.3264637144209, 40.739619024768835], [-75.32648443016838, 40.73957680115886], [-75.32648825652228, 40.73956900205105], [-75.32653093183453, 40.73948201961817], [-75.32670726385429, 40.73922244286764], [-75.32676626419459, 40.739143667551204], [-75.32676794777544, 40.739141419897116], [-75.32679838714462, 40.73909820737757], [-75.32774662320814, 40.737730227229775], [-75.32785406400015, 40.73757887298641], [-75.32927472008294, 40.7355217478407], [-75.33080552401175, 40.73332065577751], [-75.33080515801892, 40.733320591394225], [-75.33045362879082, 40.733258947689926], [-75.33033704943466, 40.73323849727807], [-75.33016889302728, 40.73319689286109], [-75.33010685839447, 40.733165395147076], [-75.32996738508761, 40.73312919369213], [-75.3298038298833, 40.73306005501377], [-75.32968772857562, 40.73297637017995], [-75.32968768832488, 40.732976336909296], [-75.32966309843368, 40.7329586121206], [-75.32885922616359, 40.73220252469917], [-75.32871810534907, 40.7321119702697], [-75.3285765880056, 40.732032391691554], [-75.32850523805165, 40.73200902186417], [-75.32837637542798, 40.73197896031323], [-75.32816795992125, 40.73195281683223], [-75.32759084408322, 40.731941029697765], [-75.32729481145303, 40.73191800708102], [-75.32725296225715, 40.7319147525076], [-75.32720929322947, 40.731911356330144], [-75.32692231533093, 40.73186168935169], [-75.3267445520623, 40.73183635439473], [-75.32635270585949, 40.73176251697001], [-75.32631261661804, 40.73175496291658], [-75.32546014083626, 40.731594322959346], [-75.32518800256071, 40.73154335448056], [-75.32492950621366, 40.7314949405936], [-75.3264203276378, 40.73136845139113], [-75.32676275523565, 40.73133183892106], [-75.32722820784556, 40.73129789184442], [-75.32734724308891, 40.73128921034538], [-75.33050472466569, 40.7310139890488], [-75.3361739523996, 40.730500918829236], [-75.33572301405685, 40.72843532516613], [-75.3356858328274, 40.728264737946645], [-75.33564242468812, 40.728066561782384], [-75.33549280705064, 40.72738402192324], [-75.335186475901, 40.72604084670786], [-75.33517012691428, 40.72596520644975], [-75.33516685562012, 40.72595007404229], [-75.33516684454604, 40.72595001975968], [-75.33515553026538, 40.72589767534102], [-75.33490606314324, 40.7247802407473], [-75.33486187027698, 40.72460401539755], [-75.33478109169766, 40.7242407395239], [-75.33461311594596, 40.723492086139444], [-75.33455012447061, 40.72321138366733], [-75.3344880382049, 40.722930614389085], [-75.33442536040131, 40.72266630875138], [-75.3343630747395, 40.72239111248401], [-75.33431947691538, 40.72219842402425], [-75.33429357870381, 40.72211568047311], [-75.33423090245783, 40.72185137377498], [-75.3342052851131, 40.72173577227803], [-75.3341675193664, 40.721581647075574], [-75.33407914505561, 40.721229109080795], [-75.33405604762667, 40.721160725075826], [-75.33405634309536, 40.72116067447246], [-75.33411894152688, 40.7211511501414], [-75.33438450865029, 40.721117635764756], [-75.33473088580371, 40.72107394008493], [-75.33476489844148, 40.72106964906926], [-75.33476518510909, 40.72106961269482], [-75.33485763484678, 40.72105797962733], [-75.33535353785544, 40.72099210115404], [-75.33539433404637, 40.720986686286125], [-75.33573901973634, 40.72093585176812], [-75.33595668537585, 40.72090443622966], [-75.33596718207492, 40.72090288798464], [-75.33604739649937, 40.72089105530203], [-75.33752678382, 40.720723946938776], [-75.33775857651835, 40.720701221455236], [-75.33812078869548, 40.72066473116288], [-75.34058569881326, 40.720364123702346], [-75.34188286217741, 40.72022063505108], [-75.34255678724061, 40.720146579233095], [-75.34389055843924, 40.71999944055401], [-75.34394088734413, 40.71999388794594], [-75.34378905863854, 40.71931758474378], [-75.34377281893565, 40.719245247881695], [-75.3433955062883, 40.71746222877581], [-75.34334741971477, 40.71719273823008], [-75.34849775777369, 40.716672446126196], [-75.35582838454134, 40.71594692262829], [-75.35618910845724, 40.71591120896195], [-75.35735869994144, 40.715795404861076], [-75.36069145426684, 40.71546535296526], [-75.36343238591456, 40.715182648782246], [-75.3664336178475, 40.714885835732346], [-75.3691863105655, 40.71460075001933], [-75.3769864856386, 40.71380670263847], [-75.37744015673839, 40.71375875008997], [-75.37956542642497, 40.713534122653854], [-75.379617663829, 40.71386122723489], [-75.37979554842741, 40.71497511028383], [-75.37982256423993, 40.71497234065827], [-75.37999691999273, 40.71611813498109], [-75.38019547676431, 40.71728241028854], [-75.38026048177521, 40.71767749695624], [-75.38066062899837, 40.72013999112518], [-75.38100733125857, 40.72225674337722], [-75.38097745802246, 40.722246647507454], [-75.38104305717921, 40.72264439099092], [-75.3810680443518, 40.72275456154607], [-75.38113255392555, 40.723100029334795], [-75.38118643986479, 40.72338860275761], [-75.38174268383587, 40.726933306567716], [-75.38198328656635, 40.728500862652155], [-75.38199143539019, 40.72855395149749], [-75.3819971041943, 40.728597914518225], [-75.38205218826596, 40.72898070668926], [-75.38206369288396, 40.72905735019821], [-75.38207703303905, 40.72914621973153], [-75.3821622894388, 40.72974817672685], [-75.38248155193263, 40.73182546674494], [-75.38275560057127, 40.73360846987273], [-75.38284955162054, 40.73421970589008], [-75.38286109768815, 40.7342948212747], [-75.3831933842044, 40.736439667181244], [-75.38322354628217, 40.73663434770443], [-75.38336914769673, 40.73793170685786], [-75.38337990250908, 40.73803626656454], [-75.38328801242164, 40.73804628606594], [-75.38220578217489, 40.738164285820126], [-75.38113916656363, 40.73828908037265], [-75.37979710309553, 40.73843590353742], [-75.37685478496473, 40.73875773979061], [-75.374890597794, 40.738972544743696], [-75.37273523156497, 40.73920821466416], [-75.37198846412241, 40.73929614383119], [-75.36626807256798, 40.73991700749516], [-75.36253851154561, 40.740334778362765], [-75.35902579665266, 40.740718970027416], [-75.35892521069326, 40.740730361470824], [-75.35475498924997, 40.74120239709811], [-75.34900124157122, 40.74183277444262], [-75.34814244770979, 40.74192683835461], [-75.34698525999893, 40.742056717427076], [-75.34681460515445, 40.742075870955], [-75.34457481922293, 40.7423272221534], [-75.34527025522512, 40.74359922239505], [-75.3461589952912, 40.74517922624023], [-75.34635903485355, 40.74553484586627], [-75.34692666964017, 40.74654393410478], [-75.34694615561632, 40.74660474652323], [-75.34633171599657, 40.74680002220197], [-75.34603599790664, 40.746891515320414], [-75.33875412758483, 40.74914416334998], [-75.33869008340659, 40.74949274180739], [-75.33866510920166, 40.74962867137365], [-75.33819762790431, 40.752172929690644], [-75.3377476894271, 40.752234458153275], [-75.33063666004783, 40.75330409889311], [-75.32935083677997, 40.7534900992595], [-75.32741913425103, 40.75378840437361], [-75.32709855395035, 40.75384177983222], [-75.32703341040545, 40.75384591201356], [-75.3269262901721, 40.75386235135672], [-75.32688328367959, 40.753678543929496], [-75.32687482919789, 40.75362673889406], [-75.32685888922622, 40.753529072231046], [-75.32682959186988, 40.753340370908255], [-75.32681740531056, 40.753231895611165], [-75.32680636283297, 40.75313360414686], [-75.3268097642749, 40.75295871267749], [-75.32681269161576, 40.75280818241665], [-75.32679608623229, 40.75199950363548], [-75.32679305116238, 40.75185170463267], [-75.32676808979491, 40.75169295378661], [-75.32671843156945, 40.75156818248297], [-75.32669679140349, 40.75152836385653], [-75.32665664032707, 40.75145448537876], [-75.32658197392202, 40.751347383173275], [-75.3264476979467, 40.7512162122198], [-75.32631276015574, 40.75110338962974], [-75.32614772927788, 40.75099903463479], [-75.32590013225185, 40.75085640098261], [-75.3256187586943, 40.750714131666015], [-75.32533721998598, 40.75057177711018], [-75.32262784122254, 40.74937287631707], [-75.32261342133613, 40.74928660593751], [-75.32258912777685, 40.7491596170939], [-75.32234488482337, 40.74762644459015], [-75.32233343610373, 40.74754365774951], [-75.32231575774358, 40.74743345424143], [-75.32205286583346, 40.74581725710874], [-75.32200774684138, 40.74544253410926], [-75.3219852416377, 40.745266157110024], [-75.32185875944002, 40.744296027245184], [-75.32184247796016, 40.744147238813866], [-75.32182480439184, 40.74403694961455], [-75.32177849724933, 40.743695151629346], [-75.32177307120912, 40.743645527268995], [-75.32173278589589, 40.74333689095452], [-75.32171590842354, 40.743204565084255], [-75.32168144948957, 40.74293449337654], [-75.32167602048999, 40.74288495451961], [-75.3216361360612, 40.74256525749631], [-75.32162776438433, 40.74248494643691], [-75.32162005393975, 40.74241098141809], [-75.32159683804304, 40.7422293552418], [-75.32159605711644, 40.742225992175086]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 809, \"PRECINCTID\": \"180001-1\", \"NAME\": \"LOWER NAZARETH DISTRICT 1\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-2-08\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"DRYLAND UNITED CHURCH OF CHRIST\", \"SiteAddress\": \"4415 NEWBURG RD\", \"City\": \"NAZARETH\", \"STATISTICS Registered Voters - Total\": \"3634\", \"STATISTICS Ballots Cast - Total\": 3067.0, \"STATISTICS Ballots Cast - Blank\": \"1\", \"STATISTICS Voter Turnout - Total\": \"84.40%\", \"Presidential Electors DEM Biden and Harris\": \"1351\", \"Presidential Electors REP Trump and Pence\": \"1658\", \"Presidential Electors LIB Jorgensen and Cohen\": \"37\", \"Presidential Electors Write-In Totals\": \"6\", \"Attorney General DEM Josh Shapiro\": \"1324\", \"Attorney General REP Heather Heidelbaugh\": \"1595\", \"Attorney General LIB Daniel Wassmer\": \"36\", \"Attorney General GRE Richard L Weiss\": \"26\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"1204\", \"Auditor General REP Timothy Defoor\": \"1671\", \"Auditor General LIB Jennifer Moore\": \"64\", \"Auditor General GRE Olivia Faison\": \"29\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"1253\", \"State Treasurer REP Stacy L. Garrity\": \"1630\", \"State Treasurer LIB Joe Soloski\": \"50\", \"State Treasurer GRE Timothy Runkle\": \"35\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"1314\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"1696\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"1306\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"1694\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 44.04955983045321, \"Presidential Electors Pct REP\": 54.0593413759374, \"Presidential Electors Pct LIB\": 1.206390609716335, \"PA Attorney General Pct DEM\": 43.169220736876426, \"PA Attorney General Pct REP\": 52.00521682425824, \"PA Attorney General Pct LIB\": 1.17378545810238, \"PA Attorney General Pct GRE\": 0.8477339419628301, \"PA Auditor General Pct DEM\": 39.25660254320182, \"PA Auditor General Pct REP\": 54.48320834691881, \"PA Auditor General Pct LIB\": 2.0867297032931202, \"PA Auditor General Pct GRE\": 0.9455493968046952, \"PA State Treasurer Pct DEM\": 40.85425497228562, \"PA State Treasurer Pct REP\": 53.14639713074666, \"PA State Treasurer Pct LIB\": 1.6302575806977502, \"PA State Treasurer Pct GRE\": 1.1411803064884252, \"PA Representative in Congress 7th Congressional District Pct DEM\": 42.843169220736876, \"PA Representative in Congress 7th Congressional District Pct REP\": 55.29833713726768, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 1.8036083929243507, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.33867207454217, 40.68575299483167], [-75.34025175313278, 40.68558335707401], [-75.3416234478173, 40.68543002020652], [-75.34372186760994, 40.68520387914682], [-75.34556337561722, 40.68499991883628], [-75.34647232893718, 40.68489999940155], [-75.34699635203168, 40.68482170270759], [-75.34952489600327, 40.68446870478043], [-75.35334360330603, 40.68397027477815], [-75.36322493406935, 40.68290666070616], [-75.36458371372935, 40.6827581939033], [-75.36759835562115, 40.68242364088934], [-75.37203729630875, 40.681947379028074], [-75.37209535606512, 40.68193749958798], [-75.3747671898457, 40.681656055498436], [-75.37495880262226, 40.682960313603516], [-75.37517416840184, 40.68442618640012], [-75.37521787223037, 40.68472364871604], [-75.37538881466823, 40.68583226719581], [-75.37568031206665, 40.687868017167204], [-75.37610771119004, 40.69075458408121], [-75.37635545661217, 40.69248986155669], [-75.3763701548865, 40.69259280605738], [-75.37662327776336, 40.694261193691574], [-75.37682690798694, 40.695671402850195], [-75.37709956474326, 40.697630131393076], [-75.3773205894865, 40.699161338483805], [-75.37750593573286, 40.70040102138039], [-75.37771971511775, 40.701830818386355], [-75.37804149071914, 40.703983782770024], [-75.37815397016116, 40.704681465330964], [-75.37821816279315, 40.70513721316326], [-75.37849914583529, 40.707015614888], [-75.37883829749595, 40.70908663923653], [-75.37949644968575, 40.71315432164525], [-75.37952852944025, 40.71335257257305], [-75.37956542642497, 40.713534122653854], [-75.37744015673839, 40.71375875008997], [-75.3769864856386, 40.71380670263847], [-75.3691863105655, 40.71460075001933], [-75.3664336178475, 40.714885835732346], [-75.36343238591456, 40.715182648782246], [-75.36069145426684, 40.71546535296526], [-75.35735869994144, 40.715795404861076], [-75.35618910845724, 40.71591120896195], [-75.35582838454134, 40.71594692262829], [-75.34849775777369, 40.716672446126196], [-75.34334741971477, 40.71719273823008], [-75.3433955062883, 40.71746222877581], [-75.34377281893565, 40.719245247881695], [-75.34378905863854, 40.71931758474378], [-75.34394088734413, 40.71999388794594], [-75.34389055843924, 40.71999944055401], [-75.34255678724061, 40.720146579233095], [-75.34188286217741, 40.72022063505108], [-75.34058569881326, 40.720364123702346], [-75.33812078869548, 40.72066473116288], [-75.33775857651835, 40.720701221455236], [-75.33752678382, 40.720723946938776], [-75.33604739649937, 40.72089105530203], [-75.33596718207492, 40.72090288798464], [-75.33595668537585, 40.72090443622966], [-75.33519456415152, 40.71900492884686], [-75.33497709820345, 40.718462897503024], [-75.33495716058881, 40.71841332922298], [-75.33495705195206, 40.71841305760155], [-75.33495703019882, 40.718413003997384], [-75.33495698132683, 40.71841288136262], [-75.33462015047886, 40.717575419466975], [-75.33420239002366, 40.716523504360985], [-75.33419491839672, 40.7165046908489], [-75.33417992077747, 40.71646768699519], [-75.33375904214638, 40.71542927642927], [-75.33343586678134, 40.71462654806587], [-75.33333335618876, 40.714371920115475], [-75.33303351930633, 40.713639479523266], [-75.33303343664923, 40.71363927600599], [-75.3327586657926, 40.712968052893025], [-75.33237060091285, 40.71201933617202], [-75.33194585677107, 40.71096207815719], [-75.33187760098012, 40.71079541016681], [-75.33151465543197, 40.70990914635866], [-75.3312675621948, 40.70930959058106], [-75.33126753929683, 40.70930953605125], [-75.3312674054259, 40.7093092098466], [-75.33121598705836, 40.70918444516669], [-75.33110746456536, 40.708908585332765], [-75.33104325587698, 40.70874536672181], [-75.33093663954837, 40.70842436484665], [-75.3308150053305, 40.70806189142193], [-75.33081496360376, 40.70806176803289], [-75.33081486313537, 40.70806146774848], [-75.33081481716304, 40.708061330757815], [-75.33081477122309, 40.70806119286694], [-75.33078185205582, 40.70796309216647], [-75.330610935245, 40.70754076007859], [-75.33041902569686, 40.70706654988189], [-75.33014427203913, 40.706384611815935], [-75.33007786919643, 40.70621979809825], [-75.33002598308404, 40.706086651107405], [-75.32989703307719, 40.70575574894864], [-75.32955605042817, 40.704904536664756], [-75.32954869601605, 40.70489009894173], [-75.32945663961597, 40.70470939319505], [-75.3293795341472, 40.70454612045299], [-75.32924558649783, 40.704433318718664], [-75.32925855699, 40.704373982901245], [-75.32926610732197, 40.704339444107866], [-75.32927274625156, 40.70415517331574], [-75.32927790805093, 40.704011901193425], [-75.32928236819556, 40.70397165933408], [-75.3292952818794, 40.70385514822222], [-75.32932721449123, 40.703644810413664], [-75.32934275482422, 40.703518769675064], [-75.32934400000153, 40.703510000402346], [-75.32937299964179, 40.703357999769615], [-75.3294204439952, 40.703203184062545], [-75.32942048559336, 40.7032030479973], [-75.32942992759628, 40.703172346751174], [-75.3294556338191, 40.703086916090605], [-75.32947706357261, 40.70301570031059], [-75.32950455406706, 40.702903606696125], [-75.32955088044045, 40.702769424698], [-75.32959671863014, 40.70264878978263], [-75.32965427706449, 40.70252831378669], [-75.3297584814409, 40.702313986472674], [-75.32979845728747, 40.702231764160686], [-75.32987771427524, 40.70208673060029], [-75.3303594940316, 40.701205096397985], [-75.3309205147861, 40.70017842658417], [-75.33148029310894, 40.69916073701487], [-75.33218410302412, 40.69788127659401], [-75.33218416259835, 40.697881167027866], [-75.33233536457556, 40.697606289849425], [-75.33302633375567, 40.69635029047495], [-75.33342247616905, 40.69561750063848], [-75.33349009648666, 40.695489819098654], [-75.33397111002716, 40.69458154796581], [-75.33440239944704, 40.69377250071198], [-75.33455331280975, 40.693489400537956], [-75.3346043648584, 40.693393160800085], [-75.33460442192992, 40.693393054784124], [-75.33463457749004, 40.693336207668686], [-75.33475580217315, 40.69310001208964], [-75.33524653512997, 40.692193449895996], [-75.33580199896912, 40.69116664071627], [-75.33636211488782, 40.69013537814779], [-75.33702777715243, 40.68891345888143], [-75.33708525597876, 40.68880794663165], [-75.3374861966114, 40.68801440427079], [-75.33768024064494, 40.68763324491457], [-75.33801399050563, 40.68700279810154], [-75.33867205659755, 40.68575303319632], [-75.33867207454217, 40.68575299483167]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 810, \"PRECINCTID\": \"180002-1\", \"NAME\": \"LOWER NAZARETH DISTRICT 2\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"138th District\", \"MDJ\": \"03-2-08\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"LOWER NAZARETH TOWNSHIP BUILDING\", \"SiteAddress\": \"306 BUTZTOWN RD\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1743\", \"STATISTICS Ballots Cast - Total\": 1425.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"81.76%\", \"Presidential Electors DEM Biden and Harris\": \"567\", \"Presidential Electors REP Trump and Pence\": \"845\", \"Presidential Electors LIB Jorgensen and Cohen\": \"7\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"553\", \"Attorney General REP Heather Heidelbaugh\": \"798\", \"Attorney General LIB Daniel Wassmer\": \"28\", \"Attorney General GRE Richard L Weiss\": \"10\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"504\", \"Auditor General REP Timothy Defoor\": \"827\", \"Auditor General LIB Jennifer Moore\": \"37\", \"Auditor General GRE Olivia Faison\": \"14\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"517\", \"State Treasurer REP Stacy L. Garrity\": \"824\", \"State Treasurer LIB Joe Soloski\": \"31\", \"State Treasurer GRE Timothy Runkle\": \"10\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"557\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"845\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": \"535\", \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": \"858\", \"Representative in the General Assembly 138th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 39.78947368421053, \"Presidential Electors Pct REP\": 59.29824561403508, \"Presidential Electors Pct LIB\": 0.4912280701754386, \"PA Attorney General Pct DEM\": 38.80701754385965, \"PA Attorney General Pct REP\": 56.00000000000001, \"PA Attorney General Pct LIB\": 1.9649122807017545, \"PA Attorney General Pct GRE\": 0.7017543859649122, \"PA Auditor General Pct DEM\": 35.368421052631575, \"PA Auditor General Pct REP\": 58.035087719298254, \"PA Auditor General Pct LIB\": 2.5964912280701755, \"PA Auditor General Pct GRE\": 0.9824561403508772, \"PA State Treasurer Pct DEM\": 36.280701754385966, \"PA State Treasurer Pct REP\": 57.82456140350877, \"PA State Treasurer Pct LIB\": 2.175438596491228, \"PA State Treasurer Pct GRE\": 0.7017543859649122, \"PA Representative in Congress 7th Congressional District Pct DEM\": 39.08771929824562, \"PA Representative in Congress 7th Congressional District Pct REP\": 59.29824561403508, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.8379986827248778, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.33867207454217, 40.68575299483167], [-75.33867205659755, 40.68575303319632], [-75.33801399050563, 40.68700279810154], [-75.33768024064494, 40.68763324491457], [-75.3374861966114, 40.68801440427079], [-75.33708525597876, 40.68880794663165], [-75.33702777715243, 40.68891345888143], [-75.33636211488782, 40.69013537814779], [-75.33580199896912, 40.69116664071627], [-75.33524653512997, 40.692193449895996], [-75.33475580217315, 40.69310001208964], [-75.33463457749004, 40.693336207668686], [-75.33460442192992, 40.693393054784124], [-75.3346043648584, 40.693393160800085], [-75.33455331280975, 40.693489400537956], [-75.33440239944704, 40.69377250071198], [-75.33397111002716, 40.69458154796581], [-75.33349009648666, 40.695489819098654], [-75.33342247616905, 40.69561750063848], [-75.33302633375567, 40.69635029047495], [-75.33233536457556, 40.697606289849425], [-75.33218416259835, 40.697881167027866], [-75.33218410302412, 40.69788127659401], [-75.33148029310894, 40.69916073701487], [-75.3309205147861, 40.70017842658417], [-75.3303594940316, 40.701205096397985], [-75.32987771427524, 40.70208673060029], [-75.32979845728747, 40.702231764160686], [-75.3297584814409, 40.702313986472674], [-75.32965427706449, 40.70252831378669], [-75.32959671863014, 40.70264878978263], [-75.32955088044045, 40.702769424698], [-75.32950455406706, 40.702903606696125], [-75.32947706357261, 40.70301570031059], [-75.3294556338191, 40.703086916090605], [-75.32942992759628, 40.703172346751174], [-75.32942048559336, 40.7032030479973], [-75.3294204439952, 40.703203184062545], [-75.32937299964179, 40.703357999769615], [-75.32934400000153, 40.703510000402346], [-75.32934275482422, 40.703518769675064], [-75.32932721449123, 40.703644810413664], [-75.3292952818794, 40.70385514822222], [-75.32928236819556, 40.70397165933408], [-75.32927790805093, 40.704011901193425], [-75.32927274625156, 40.70415517331574], [-75.32926610732197, 40.704339444107866], [-75.32925855699, 40.704373982901245], [-75.32924558649783, 40.704433318718664], [-75.3293795341472, 40.70454612045299], [-75.32945663961597, 40.70470939319505], [-75.32954869601605, 40.70489009894173], [-75.32955605042817, 40.704904536664756], [-75.32989703307719, 40.70575574894864], [-75.33002598308404, 40.706086651107405], [-75.33007786919643, 40.70621979809825], [-75.33014427203913, 40.706384611815935], [-75.33041902569686, 40.70706654988189], [-75.330610935245, 40.70754076007859], [-75.33078185205582, 40.70796309216647], [-75.33081477122309, 40.70806119286694], [-75.33081481716304, 40.708061330757815], [-75.33081486313537, 40.70806146774848], [-75.33081496360376, 40.70806176803289], [-75.3308150053305, 40.70806189142193], [-75.33093663954837, 40.70842436484665], [-75.33104325587698, 40.70874536672181], [-75.33110746456536, 40.708908585332765], [-75.33121598705836, 40.70918444516669], [-75.3312674054259, 40.7093092098466], [-75.33126753929683, 40.70930953605125], [-75.3312675621948, 40.70930959058106], [-75.33151465543197, 40.70990914635866], [-75.33187760098012, 40.71079541016681], [-75.33194585677107, 40.71096207815719], [-75.33237060091285, 40.71201933617202], [-75.3327586657926, 40.712968052893025], [-75.33303343664923, 40.71363927600599], [-75.33303351930633, 40.713639479523266], [-75.33333335618876, 40.714371920115475], [-75.33343586678134, 40.71462654806587], [-75.33375904214638, 40.71542927642927], [-75.33417992077747, 40.71646768699519], [-75.33419491839672, 40.7165046908489], [-75.33420239002366, 40.716523504360985], [-75.33462015047886, 40.717575419466975], [-75.33495698132683, 40.71841288136262], [-75.33495703019882, 40.718413003997384], [-75.33495705195206, 40.71841305760155], [-75.33495716058881, 40.71841332922298], [-75.33497709820345, 40.718462897503024], [-75.33519456415152, 40.71900492884686], [-75.33595668537585, 40.72090443622966], [-75.33573901973634, 40.72093585176812], [-75.33539433404637, 40.720986686286125], [-75.33535353785544, 40.72099210115404], [-75.33485763484678, 40.72105797962733], [-75.33476518510909, 40.72106961269482], [-75.33476489844148, 40.72106964906926], [-75.33473088580371, 40.72107394008493], [-75.33438450865029, 40.721117635764756], [-75.33411894152688, 40.7211511501414], [-75.33405634309536, 40.72116067447246], [-75.33405604762667, 40.721160725075826], [-75.33407914505561, 40.721229109080795], [-75.3341675193664, 40.721581647075574], [-75.3342052851131, 40.72173577227803], [-75.33423090245783, 40.72185137377498], [-75.33429357870381, 40.72211568047311], [-75.33431947691538, 40.72219842402425], [-75.3343630747395, 40.72239111248401], [-75.33442536040131, 40.72266630875138], [-75.3344880382049, 40.722930614389085], [-75.33455012447061, 40.72321138366733], [-75.33461311594596, 40.723492086139444], [-75.33478109169766, 40.7242407395239], [-75.33486187027698, 40.72460401539755], [-75.33490606314324, 40.7247802407473], [-75.33515553026538, 40.72589767534102], [-75.33516684454604, 40.72595001975968], [-75.33516685562012, 40.72595007404229], [-75.33517012691428, 40.72596520644975], [-75.335186475901, 40.72604084670786], [-75.33549280705064, 40.72738402192324], [-75.33564242468812, 40.728066561782384], [-75.3356858328274, 40.728264737946645], [-75.33572301405685, 40.72843532516613], [-75.3361739523996, 40.730500918829236], [-75.33050472466569, 40.7310139890488], [-75.32734724308891, 40.73128921034538], [-75.32722820784556, 40.73129789184442], [-75.32676275523565, 40.73133183892106], [-75.3264203276378, 40.73136845139113], [-75.32492950621366, 40.7314949405936], [-75.32427749889695, 40.73154993644375], [-75.32422586563835, 40.7315542913382], [-75.32421683542832, 40.7315550530191], [-75.31981260859362, 40.73192644429443], [-75.31771284218736, 40.73212186419616], [-75.31771012768348, 40.732122064958794], [-75.31633583959984, 40.73224419307548], [-75.31437561418227, 40.73242334343741], [-75.3127505844947, 40.73256841860888], [-75.3118750469443, 40.73264657272183], [-75.31155364276404, 40.732675260993624], [-75.31131189886568, 40.73269683777657], [-75.31132811990688, 40.73264775302748], [-75.31156690460065, 40.73188710053236], [-75.31173645974717, 40.73134294714967], [-75.31122677582717, 40.73138784216173], [-75.30948668844451, 40.73155631408783], [-75.3093458629756, 40.73156994778155], [-75.30870667540032, 40.731627381839374], [-75.30870395778099, 40.731627667909216], [-75.3064774846952, 40.73183240506841], [-75.30646161680018, 40.73181967583669], [-75.30625505633193, 40.731653969947985], [-75.3060597734138, 40.73149731080783], [-75.30598734456773, 40.73143920699223], [-75.30501169787101, 40.73064297590238], [-75.30490502840732, 40.730555921044896], [-75.3049049108966, 40.73055592847886], [-75.30430265476082, 40.73059376992352], [-75.30329307738816, 40.73066250479537], [-75.30253502342747, 40.73071310890011], [-75.29970647291074, 40.7308981522924], [-75.297536993493, 40.731031793382066], [-75.29753654720882, 40.73103182088766], [-75.29707998832434, 40.731059940011555], [-75.29762318347623, 40.73385402807813], [-75.29741857536482, 40.73387434458964], [-75.29738398665702, 40.73387777934913], [-75.29156291773708, 40.73445562587596], [-75.29054836746184, 40.73455949834708], [-75.28928860649668, 40.73468090361035], [-75.28544140151014, 40.735004909160395], [-75.28525027005313, 40.735021002343345], [-75.28483835205068, 40.73505635964636], [-75.28377413207333, 40.7351605777934], [-75.28367519341344, 40.73456175837603], [-75.28325287091958, 40.73180920581407], [-75.28251164607404, 40.72681334686599], [-75.28230029334891, 40.72538869446002], [-75.28190912891678, 40.72280499130103], [-75.28185433630851, 40.72244306556166], [-75.28154517338109, 40.720400833247744], [-75.28044329549638, 40.71308269788527], [-75.2804080714346, 40.71284872902838], [-75.2801033798656, 40.710928170486376], [-75.2800458795783, 40.710504590998774], [-75.27995673779526, 40.709945486485296], [-75.27993445117089, 40.709805700394085], [-75.27987745080608, 40.70939311493919], [-75.27978480207904, 40.70875218334173], [-75.27977964136768, 40.708716481142424], [-75.2805176228358, 40.708665860679574], [-75.28051222380644, 40.70861640498379], [-75.2804890611514, 40.70826486351239], [-75.28080035776854, 40.70823836704248], [-75.28074975784816, 40.70784788453044], [-75.28072316873006, 40.7075895463751], [-75.28068476293714, 40.707039116377274], [-75.28066005897986, 40.706754045642185], [-75.28063746692857, 40.706485151150645], [-75.28061431403644, 40.706206977246985], [-75.28059185783647, 40.705934396451326], [-75.28056877149393, 40.70565442212962], [-75.2805481499472, 40.70540556381571], [-75.2805353225927, 40.70523916314271], [-75.28050809862808, 40.70489997709205], [-75.28048650564257, 40.70462844425962], [-75.28046498140287, 40.70435511018384], [-75.28043945876493, 40.70404324909707], [-75.28041516039751, 40.703771743275055], [-75.28039086219331, 40.703500238329624], [-75.28036881417988, 40.70323228572064], [-75.28036857178877, 40.70322934726262], [-75.28036218048359, 40.703151668894364], [-75.27982374921382, 40.703198470599474], [-75.27965531119484, 40.70321358286906], [-75.27965463301014, 40.70321364410253], [-75.27964365046087, 40.70321462914332], [-75.27890348405846, 40.70327720969112], [-75.2788365176662, 40.703283077762414], [-75.27829897336133, 40.700463996871925], [-75.27829896450427, 40.7004639480351], [-75.27827620526675, 40.70034458960332], [-75.27822840309017, 40.70012381124798], [-75.27822846931839, 40.70012201087637], [-75.27802051530423, 40.69886054771536], [-75.27774363474563, 40.69711922291564], [-75.27752859176626, 40.69574788765035], [-75.27713438757205, 40.693233879701744], [-75.27698747481465, 40.69234896125748], [-75.27753574958862, 40.692296302289385], [-75.27820119748526, 40.69223238655016], [-75.28309593058687, 40.6917604622099], [-75.28893714476403, 40.691072201880125], [-75.28899288097355, 40.691065633212396], [-75.28934719777217, 40.69102387437086], [-75.29215376465125, 40.69069306150885], [-75.29276773179092, 40.69062465755311], [-75.30854578167505, 40.68886554471015], [-75.30856793204636, 40.6888630731748], [-75.31939068913444, 40.687655137279265], [-75.32836534468655, 40.68688480726962], [-75.32972383782747, 40.68673244427824], [-75.32972391863149, 40.68673243515387], [-75.32972398159967, 40.686732428359946], [-75.33011469138236, 40.68668860546975], [-75.33041890876726, 40.68665496765308], [-75.3304189930864, 40.68665495950245], [-75.33041899990602, 40.68665500018431], [-75.33042039276833, 40.68665480492246], [-75.33484810623027, 40.68616515302085], [-75.33676553446188, 40.68595810962464], [-75.33741915760207, 40.68588752696691], [-75.33867199968562, 40.68575300318499], [-75.33867207454217, 40.68575299483167]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 813, \"PRECINCTID\": \"210300-1\", \"NAME\": \"NAZARETH BOROUGH 3RD WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"137th District\", \"MDJ\": \"03-2-08\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"ST JOHN'S LUTHERAN CHURCH\", \"SiteAddress\": \"200 S BROAD ST\", \"City\": \"NAZARETH\", \"STATISTICS Registered Voters - Total\": \"1280\", \"STATISTICS Ballots Cast - Total\": 953.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"74.45%\", \"Presidential Electors DEM Biden and Harris\": \"432\", \"Presidential Electors REP Trump and Pence\": \"505\", \"Presidential Electors LIB Jorgensen and Cohen\": \"14\", \"Presidential Electors Write-In Totals\": \"1\", \"Attorney General DEM Josh Shapiro\": \"436\", \"Attorney General REP Heather Heidelbaugh\": \"451\", \"Attorney General LIB Daniel Wassmer\": \"24\", \"Attorney General GRE Richard L Weiss\": \"9\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"398\", \"Auditor General REP Timothy Defoor\": \"471\", \"Auditor General LIB Jennifer Moore\": \"37\", \"Auditor General GRE Olivia Faison\": \"12\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"419\", \"State Treasurer REP Stacy L. Garrity\": \"467\", \"State Treasurer LIB Joe Soloski\": \"24\", \"State Treasurer GRE Timothy Runkle\": \"11\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"417\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"503\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": \"364\", \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": \"556\", \"Representative in the General Assembly 137th Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 45.3305351521511, \"Presidential Electors Pct REP\": 52.99055613850997, \"Presidential Electors Pct LIB\": 1.4690451206715633, \"PA Attorney General Pct DEM\": 45.750262329485835, \"PA Attorney General Pct REP\": 47.32423924449108, \"PA Attorney General Pct LIB\": 2.5183630640083945, \"PA Attorney General Pct GRE\": 0.944386149003148, \"PA Auditor General Pct DEM\": 41.76285414480588, \"PA Auditor General Pct REP\": 49.422875131164744, \"PA Auditor General Pct LIB\": 3.882476390346275, \"PA Auditor General Pct GRE\": 1.2591815320041972, \"PA State Treasurer Pct DEM\": 43.96642182581322, \"PA State Treasurer Pct REP\": 49.00314795383001, \"PA State Treasurer Pct LIB\": 2.5183630640083945, \"PA State Treasurer Pct GRE\": 1.154249737670514, \"PA Representative in Congress 7th Congressional District Pct DEM\": 43.75655823714585, \"PA Representative in Congress 7th Congressional District Pct REP\": 52.7806925498426, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5604299962363568, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.32140533745522, 40.741076150127135], [-75.32139486661342, 40.74107590312871], [-75.32111263163956, 40.74106879697852], [-75.32099288735893, 40.74106818315042], [-75.32081936245719, 40.74106729416212], [-75.32068817128454, 40.74106227754947], [-75.32054176596826, 40.74105667841049], [-75.32051559083726, 40.74105577743529], [-75.31952878950797, 40.74102181935017], [-75.31946612376325, 40.74101498849435], [-75.31946603660592, 40.74101497495807], [-75.31940467051581, 40.74100342279461], [-75.31940454719056, 40.74100339408701], [-75.319345046133, 40.74098724056108], [-75.31934493608723, 40.74098720492455], [-75.31928785121409, 40.74096660301667], [-75.31897931936696, 40.74082308793698], [-75.31891692658122, 40.740790794887864], [-75.31891683845855, 40.7407907425935], [-75.31885896666583, 40.740754032637824], [-75.31880599808855, 40.74071314441055], [-75.3177405801004, 40.74068462594895], [-75.31716177895004, 40.74066912901263], [-75.3171541693391, 40.74066892538205], [-75.31625302203354, 40.7406308139455], [-75.31625373612219, 40.7405470559978], [-75.31625690945386, 40.740174910430596], [-75.31625378792438, 40.73973808180138], [-75.31625400108523, 40.73973808266719], [-75.31645353837492, 40.73973873564507], [-75.31652500020881, 40.73973896990576], [-75.31652513375073, 40.73887496217429], [-75.31649045285145, 40.73887423509209], [-75.3162536868549, 40.73886927103521], [-75.3162585590779, 40.73821200077285], [-75.31625856070548, 40.738211825137], [-75.31480092021977, 40.73821488998908], [-75.31432837189277, 40.73820497503768], [-75.31394926639652, 40.738206544224475], [-75.31352719003502, 40.73821194607517], [-75.31335243958392, 40.73821418210749], [-75.31293838741735, 40.738210896488496], [-75.31293747805209, 40.73821089000775], [-75.31293704825507, 40.73821088638904], [-75.31188720754976, 40.738202549664344], [-75.31071323065993, 40.738197877466604], [-75.31066180791109, 40.73819779857323], [-75.3104578376472, 40.7381974874066], [-75.30950733119853, 40.73820239038262], [-75.30858101320084, 40.738212170794995], [-75.30767056509346, 40.73820743314093], [-75.30691501683826, 40.738203640711404], [-75.30677093992806, 40.738202917058736], [-75.30628342294382, 40.73820245667665], [-75.30587479108665, 40.73820206980163], [-75.30586784363398, 40.736954696444755], [-75.3058620156475, 40.73659409215928], [-75.3033454792372, 40.73660594518166], [-75.30317421194252, 40.737826379095985], [-75.3025118718586, 40.73764100981755], [-75.30205419724355, 40.737531413427135], [-75.30110388348561, 40.73730544517912], [-75.30071316624205, 40.737136232489654], [-75.30101488439868, 40.7356292118137], [-75.3010214037636, 40.735596647543474], [-75.30028776043893, 40.73560390118165], [-75.29953450913274, 40.73561134431201], [-75.29934474550213, 40.73561806366087], [-75.29924180622999, 40.73561966574242], [-75.29929722692245, 40.73536220848121], [-75.29932919761657, 40.735225352889444], [-75.29935605087289, 40.73511040037308], [-75.29843508126024, 40.735061240453945], [-75.29782395604428, 40.735028615897804], [-75.29778676722512, 40.734860760605834], [-75.29762651958208, 40.73387456021205], [-75.29762603705026, 40.73387159063194], [-75.29762318347623, 40.73385402807813], [-75.29707998832434, 40.731059940011555], [-75.29753654720882, 40.73103182088766], [-75.297536993493, 40.731031793382066], [-75.29970647291074, 40.7308981522924], [-75.30253502342747, 40.73071310890011], [-75.30329307738816, 40.73066250479537], [-75.30430265476082, 40.73059376992352], [-75.3049049108966, 40.73055592847886], [-75.30490502840732, 40.730555921044896], [-75.30501169787101, 40.73064297590238], [-75.30598734456773, 40.73143920699223], [-75.3060597734138, 40.73149731080783], [-75.30625505633193, 40.731653969947985], [-75.30646161680018, 40.73181967583669], [-75.3064774846952, 40.73183240506841], [-75.30870395778099, 40.731627667909216], [-75.30870667540032, 40.731627381839374], [-75.3093458629756, 40.73156994778155], [-75.30948668844451, 40.73155631408783], [-75.31122677582717, 40.73138784216173], [-75.31173645974717, 40.73134294714967], [-75.31156690460065, 40.73188710053236], [-75.31132811990688, 40.73264775302748], [-75.31131189886568, 40.73269683777657], [-75.31155364276404, 40.732675260993624], [-75.3118750469443, 40.73264657272183], [-75.3127505844947, 40.73256841860888], [-75.31437561418227, 40.73242334343741], [-75.31633583959984, 40.73224419307548], [-75.31771012768348, 40.732122064958794], [-75.31771284218736, 40.73212186419616], [-75.31981260859362, 40.73192644429443], [-75.32421683542832, 40.7315550530191], [-75.32422586563835, 40.7315542913382], [-75.32427749889695, 40.73154993644375], [-75.32492950621366, 40.7314949405936], [-75.32518800256071, 40.73154335448056], [-75.32546014083626, 40.731594322959346], [-75.32631261661804, 40.73175496291658], [-75.32635270585949, 40.73176251697001], [-75.3267445520623, 40.73183635439473], [-75.32692231533093, 40.73186168935169], [-75.32720929322947, 40.731911356330144], [-75.32725296225715, 40.7319147525076], [-75.32729481145303, 40.73191800708102], [-75.32759084408322, 40.731941029697765], [-75.32816795992125, 40.73195281683223], [-75.32837637542798, 40.73197896031323], [-75.32850523805165, 40.73200902186417], [-75.3285765880056, 40.732032391691554], [-75.32871810534907, 40.7321119702697], [-75.32885922616359, 40.73220252469917], [-75.32966309843368, 40.7329586121206], [-75.32968768832488, 40.732976336909296], [-75.32968772857562, 40.73297637017995], [-75.3298038298833, 40.73306005501377], [-75.32996738508761, 40.73312919369213], [-75.33010685839447, 40.733165395147076], [-75.33016889302728, 40.73319689286109], [-75.33033704943466, 40.73323849727807], [-75.33045362879082, 40.733258947689926], [-75.33080515801892, 40.733320591394225], [-75.33080552401175, 40.73332065577751], [-75.32927472008294, 40.7355217478407], [-75.32785406400015, 40.73757887298641], [-75.32774662320814, 40.737730227229775], [-75.32679838714462, 40.73909820737757], [-75.32676794777544, 40.739141419897116], [-75.32676626419459, 40.739143667551204], [-75.32670726385429, 40.73922244286764], [-75.32653093183453, 40.73948201961817], [-75.32648825652228, 40.73956900205105], [-75.32648443016838, 40.73957680115886], [-75.3264637144209, 40.739619024768835], [-75.32643514635507, 40.73966038805467], [-75.3262053909866, 40.73997479643249], [-75.32620117716998, 40.73998072804791], [-75.32616070223077, 40.740037704234524], [-75.32593094622305, 40.740352025595264], [-75.32582260838505, 40.74050301616737], [-75.32558543747254, 40.74082267461493], [-75.32556529936969, 40.740849265651505], [-75.32554468619908, 40.740876482775505], [-75.32527526651278, 40.74123931412724], [-75.32523528345183, 40.74129682818836], [-75.3246853742018, 40.74124561966769], [-75.32401285215501, 40.74118299050204], [-75.32378063024585, 40.74116552298042], [-75.32349873737435, 40.741148904905224], [-75.32338877370756, 40.74114489002358], [-75.32332662976638, 40.741141273859334], [-75.32293214963781, 40.741118355757514], [-75.32290270161447, 40.7411166436721], [-75.32287450759219, 40.741115005545566], [-75.32275202049867, 40.74110789406682], [-75.32253778930934, 40.741102843961244], [-75.32230113835864, 40.74109726511134], [-75.32146408804547, 40.74107753514289], [-75.32140533745522, 40.741076150127135]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 814, \"PRECINCTID\": \"210200-1\", \"NAME\": \"NAZARETH BOROUGH 2ND WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"137th District\", \"MDJ\": \"03-2-08\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"ST JOHN'S UNITED CHURCH OF CHRIST\", \"SiteAddress\": \"183 S BROAD ST\", \"City\": \"NAZARETH\", \"STATISTICS Registered Voters - Total\": \"1459\", \"STATISTICS Ballots Cast - Total\": 1030.0, \"STATISTICS Ballots Cast - Blank\": \"2\", \"STATISTICS Voter Turnout - Total\": \"70.60%\", \"Presidential Electors DEM Biden and Harris\": \"499\", \"Presidential Electors REP Trump and Pence\": \"510\", \"Presidential Electors LIB Jorgensen and Cohen\": \"12\", \"Presidential Electors Write-In Totals\": \"5\", \"Attorney General DEM Josh Shapiro\": \"493\", \"Attorney General REP Heather Heidelbaugh\": \"460\", \"Attorney General LIB Daniel Wassmer\": \"23\", \"Attorney General GRE Richard L Weiss\": \"18\", \"Attorney General Write-In Totals\": \"2\", \"Auditor General DEM Nina Ahmad\": \"450\", \"Auditor General REP Timothy Defoor\": \"476\", \"Auditor General LIB Jennifer Moore\": \"37\", \"Auditor General GRE Olivia Faison\": \"20\", \"Auditor General Write-In Totals\": \"3\", \"State Treasurer DEM Joe Torsella\": \"467\", \"State Treasurer REP Stacy L. Garrity\": \"478\", \"State Treasurer LIB Joe Soloski\": \"25\", \"State Treasurer GRE Timothy Runkle\": \"20\", \"State Treasurer Write-In Totals\": \"4\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"488\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"509\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"5\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": \"390\", \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": \"609\", \"Representative in the General Assembly 137th Legislative District Write-In Totals\": \"5\", \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 48.44660194174757, \"Presidential Electors Pct REP\": 49.51456310679612, \"Presidential Electors Pct LIB\": 1.1650485436893203, \"PA Attorney General Pct DEM\": 47.86407766990291, \"PA Attorney General Pct REP\": 44.66019417475729, \"PA Attorney General Pct LIB\": 2.233009708737864, \"PA Attorney General Pct GRE\": 1.7475728155339807, \"PA Auditor General Pct DEM\": 43.689320388349515, \"PA Auditor General Pct REP\": 46.213592233009706, \"PA Auditor General Pct LIB\": 3.5922330097087376, \"PA Auditor General Pct GRE\": 1.9417475728155338, \"PA State Treasurer Pct DEM\": 45.33980582524272, \"PA State Treasurer Pct REP\": 46.40776699029126, \"PA State Treasurer Pct LIB\": 2.4271844660194173, \"PA State Treasurer Pct GRE\": 1.9417475728155338, \"PA Representative in Congress 7th Congressional District Pct DEM\": 47.37864077669903, \"PA Representative in Congress 7th Congressional District Pct REP\": 49.41747572815534, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.605711328566052, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.30071316624205, 40.737136232489654], [-75.30110388348561, 40.73730544517912], [-75.30205419724355, 40.737531413427135], [-75.3025118718586, 40.73764100981755], [-75.30317421194252, 40.737826379095985], [-75.3033454792372, 40.73660594518166], [-75.3058620156475, 40.73659409215928], [-75.30586784363398, 40.736954696444755], [-75.30587479108665, 40.73820206980163], [-75.30628342294382, 40.73820245667665], [-75.30677093992806, 40.738202917058736], [-75.30691501683826, 40.738203640711404], [-75.30767056509346, 40.73820743314093], [-75.30858101320084, 40.738212170794995], [-75.30950733119853, 40.73820239038262], [-75.3104578376472, 40.7381974874066], [-75.31066180791109, 40.73819779857323], [-75.31071323065993, 40.738197877466604], [-75.31188720754976, 40.738202549664344], [-75.31293704825507, 40.73821088638904], [-75.31293747805209, 40.73821089000775], [-75.31293838741735, 40.738210896488496], [-75.31335243958392, 40.73821418210749], [-75.31352719003502, 40.73821194607517], [-75.31394926639652, 40.738206544224475], [-75.31432837189277, 40.73820497503768], [-75.31480092021977, 40.73821488998908], [-75.31625856070548, 40.738211825137], [-75.3162585590779, 40.73821200077285], [-75.3162536868549, 40.73886927103521], [-75.31649045285145, 40.73887423509209], [-75.31652513375073, 40.73887496217429], [-75.31652500020881, 40.73973896990576], [-75.31645353837492, 40.73973873564507], [-75.31625400108523, 40.73973808266719], [-75.31625378792438, 40.73973808180138], [-75.31625690945386, 40.740174910430596], [-75.31625373612219, 40.7405470559978], [-75.31625302203354, 40.7406308139455], [-75.31625302238137, 40.74063100043315], [-75.31625608542387, 40.742488710274316], [-75.31625600011034, 40.74248871118826], [-75.31577991934603, 40.74249157064525], [-75.31551492860258, 40.74249316188679], [-75.31515797785391, 40.742493001133724], [-75.31515734298142, 40.74249300133005], [-75.31515659915709, 40.74249300104288], [-75.31478748312553, 40.74249283351959], [-75.3147917169143, 40.7416229833283], [-75.31335501351545, 40.741652978967096], [-75.31335044469706, 40.74249760165502], [-75.3133500018209, 40.742497598664706], [-75.31215994805822, 40.74248888911153], [-75.31215994603916, 40.742488977354576], [-75.31188899995345, 40.7424870002276], [-75.31166699981867, 40.74248800009945], [-75.3116496478664, 40.74248805812087], [-75.31164965388628, 40.742487761860396], [-75.31047240421742, 40.74249198464083], [-75.31047200023495, 40.74249198696132], [-75.30949380443556, 40.742498357765946], [-75.30876226751734, 40.7424932436137], [-75.30857072506578, 40.74249190432247], [-75.30802625660293, 40.742486540687224], [-75.30767300523395, 40.74248306007463], [-75.30677384293075, 40.74248902221275], [-75.30672127149778, 40.742488486848586], [-75.30672104297501, 40.742488484741195], [-75.30584996939751, 40.74247961248556], [-75.3049643348795, 40.74248584634946], [-75.30411116530021, 40.74249284310543], [-75.30339003173842, 40.742492576326164], [-75.3030614609261, 40.74249483864818], [-75.30267502798728, 40.74249749811931], [-75.30267112378307, 40.74272178403541], [-75.30266595207414, 40.743018936577705], [-75.30267175276218, 40.743776003297725], [-75.30267175302963, 40.74377606095931], [-75.30202251334859, 40.74378399516381], [-75.30193488668704, 40.7437848120285], [-75.30154850180172, 40.74378841393784], [-75.30124958482241, 40.7437929201066], [-75.30114021784084, 40.743804952196996], [-75.30100218870686, 40.743820137052396], [-75.30082582679795, 40.74384014435573], [-75.30082551874337, 40.74384017929648], [-75.30048558428108, 40.743878741407215], [-75.30010136139968, 40.743922310016046], [-75.30036867761726, 40.74359482308349], [-75.3005510291709, 40.74337127845388], [-75.30057090367042, 40.74334604090344], [-75.30074860573895, 40.743126173436124], [-75.30082894235022, 40.743026957847], [-75.3008752041375, 40.74297112832695], [-75.30090269673356, 40.742934982399646], [-75.30081295288086, 40.742896191797264], [-75.30042642740527, 40.742729289962384], [-75.30033580908697, 40.742690198550356], [-75.29978310028716, 40.74245176500059], [-75.29929289818928, 40.74223230195454], [-75.29895908782548, 40.742080237317055], [-75.29861922620275, 40.74194563439403], [-75.29813600968846, 40.74173283434029], [-75.29775740129335, 40.74156822739363], [-75.29744480351874, 40.74143231854728], [-75.29815844133878, 40.74084656218513], [-75.29937984031939, 40.73984994502286], [-75.29938263028589, 40.73984768687169], [-75.29976057206929, 40.73953199596684], [-75.30034567513587, 40.73905446348158], [-75.30044905429463, 40.738966717913385], [-75.30075411196952, 40.73869427734529], [-75.30104918045996, 40.73842342700611], [-75.30129153186724, 40.738187503370916], [-75.30136894364284, 40.738111994431705], [-75.30136920152556, 40.738111743122204], [-75.30090505117983, 40.73806480481224], [-75.30082879321178, 40.73805709323407], [-75.30054177096818, 40.738033102871626], [-75.30055029466125, 40.73797261593314], [-75.30065725538094, 40.737415486494946], [-75.30071316624205, 40.737136232489654]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 816, \"PRECINCTID\": \"210100-1\", \"NAME\": \"NAZARETH BOROUGH 1ST WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"137th District\", \"MDJ\": \"03-2-08\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"NAZARETH BOROUGH HALL\", \"SiteAddress\": \"159 W CENTER ST\", \"City\": \"NAZARETH\", \"STATISTICS Registered Voters - Total\": \"1476\", \"STATISTICS Ballots Cast - Total\": 1195.0, \"STATISTICS Ballots Cast - Blank\": \"1\", \"STATISTICS Voter Turnout - Total\": \"80.96%\", \"Presidential Electors DEM Biden and Harris\": \"586\", \"Presidential Electors REP Trump and Pence\": \"585\", \"Presidential Electors LIB Jorgensen and Cohen\": \"17\", \"Presidential Electors Write-In Totals\": \"1\", \"Attorney General DEM Josh Shapiro\": \"563\", \"Attorney General REP Heather Heidelbaugh\": \"572\", \"Attorney General LIB Daniel Wassmer\": \"13\", \"Attorney General GRE Richard L Weiss\": \"12\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"510\", \"Auditor General REP Timothy Defoor\": \"598\", \"Auditor General LIB Jennifer Moore\": \"25\", \"Auditor General GRE Olivia Faison\": \"12\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"527\", \"State Treasurer REP Stacy L. Garrity\": \"589\", \"State Treasurer LIB Joe Soloski\": \"21\", \"State Treasurer GRE Timothy Runkle\": \"11\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"565\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"595\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": \"436\", \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": \"730\", \"Representative in the General Assembly 137th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 49.03765690376569, \"Presidential Electors Pct REP\": 48.95397489539749, \"Presidential Electors Pct LIB\": 1.4225941422594142, \"PA Attorney General Pct DEM\": 47.112970711297066, \"PA Attorney General Pct REP\": 47.86610878661088, \"PA Attorney General Pct LIB\": 1.0878661087866108, \"PA Attorney General Pct GRE\": 1.00418410041841, \"PA Auditor General Pct DEM\": 42.67782426778243, \"PA Auditor General Pct REP\": 50.04184100418409, \"PA Auditor General Pct LIB\": 2.092050209205021, \"PA Auditor General Pct GRE\": 1.00418410041841, \"PA State Treasurer Pct DEM\": 44.10041841004184, \"PA State Treasurer Pct REP\": 49.28870292887029, \"PA State Treasurer Pct LIB\": 1.7573221757322177, \"PA State Treasurer Pct GRE\": 0.9205020920502093, \"PA Representative in Congress 7th Congressional District Pct DEM\": 47.28033472803347, \"PA Representative in Congress 7th Congressional District Pct REP\": 49.7907949790795, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.7027427549868273, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.30010136139968, 40.743922310016046], [-75.30048558428108, 40.743878741407215], [-75.30082551874337, 40.74384017929648], [-75.30082582679795, 40.74384014435573], [-75.30100218870686, 40.743820137052396], [-75.30114021784084, 40.743804952196996], [-75.30124958482241, 40.7437929201066], [-75.30154850180172, 40.74378841393784], [-75.30193488668704, 40.7437848120285], [-75.30202251334859, 40.74378399516381], [-75.30267175302963, 40.74377606095931], [-75.30267175276218, 40.743776003297725], [-75.30266595207414, 40.743018936577705], [-75.30267112378307, 40.74272178403541], [-75.30267502798728, 40.74249749811931], [-75.3030614609261, 40.74249483864818], [-75.30339003173842, 40.742492576326164], [-75.30411116530021, 40.74249284310543], [-75.3049643348795, 40.74248584634946], [-75.30584996939751, 40.74247961248556], [-75.30672104297501, 40.742488484741195], [-75.30672127149778, 40.742488486848586], [-75.30677384293075, 40.74248902221275], [-75.30767300523395, 40.74248306007463], [-75.30802625660293, 40.742486540687224], [-75.30857072506578, 40.74249190432247], [-75.30876226751734, 40.7424932436137], [-75.30949380443556, 40.742498357765946], [-75.31047200023495, 40.74249198696132], [-75.31047240421742, 40.74249198464083], [-75.31164965388628, 40.742487761860396], [-75.3116496478664, 40.74248805812087], [-75.31166699981867, 40.74248800009945], [-75.31188899995345, 40.7424870002276], [-75.31215994603916, 40.742488977354576], [-75.31215994805822, 40.74248888911153], [-75.3133500018209, 40.742497598664706], [-75.31335044469706, 40.74249760165502], [-75.31335501351545, 40.741652978967096], [-75.3147917169143, 40.7416229833283], [-75.31478748312553, 40.74249283351959], [-75.31515659915709, 40.74249300104288], [-75.31515734298142, 40.74249300133005], [-75.31515797785391, 40.742493001133724], [-75.31551492860258, 40.74249316188679], [-75.31577991934603, 40.74249157064525], [-75.31625600011034, 40.74248871118826], [-75.31625608542387, 40.742488710274316], [-75.31625302238137, 40.74063100043315], [-75.31625302203354, 40.7406308139455], [-75.3171541693391, 40.74066892538205], [-75.31716177895004, 40.74066912901263], [-75.3177405801004, 40.74068462594895], [-75.31880599808855, 40.74071314441055], [-75.31885896666583, 40.740754032637824], [-75.31891683845855, 40.7407907425935], [-75.31891692658122, 40.740790794887864], [-75.31897931936696, 40.74082308793698], [-75.31928785121409, 40.74096660301667], [-75.31934493608723, 40.74098720492455], [-75.319345046133, 40.74098724056108], [-75.31940454719056, 40.74100339408701], [-75.31940467051581, 40.74100342279461], [-75.31946603660592, 40.74101497495807], [-75.31946612376325, 40.74101498849435], [-75.31952878950797, 40.74102181935017], [-75.32051559083726, 40.74105577743529], [-75.32054176596826, 40.74105667841049], [-75.32068817128454, 40.74106227754947], [-75.32081936245719, 40.74106729416212], [-75.32099288735893, 40.74106818315042], [-75.32111263163956, 40.74106879697852], [-75.32139486661342, 40.74107590312871], [-75.32140533745522, 40.741076150127135], [-75.32139500051682, 40.74107599962069], [-75.32139488338012, 40.74107599626909], [-75.32159605711644, 40.742225992175086], [-75.32159683804304, 40.7422293552418], [-75.32162005393975, 40.74241098141809], [-75.32162776438433, 40.74248494643691], [-75.3216361360612, 40.74256525749631], [-75.32167602048999, 40.74288495451961], [-75.32168144948957, 40.74293449337654], [-75.32171590842354, 40.743204565084255], [-75.32173278589589, 40.74333689095452], [-75.32177307120912, 40.743645527268995], [-75.32177849724933, 40.743695151629346], [-75.32182480439184, 40.74403694961455], [-75.32184247796016, 40.744147238813866], [-75.32185875944002, 40.744296027245184], [-75.3219852416377, 40.745266157110024], [-75.32200774684138, 40.74544253410926], [-75.32205286583346, 40.74581725710874], [-75.32231575774358, 40.74743345424143], [-75.32233343610373, 40.74754365774951], [-75.32234488482337, 40.74762644459015], [-75.32258912777685, 40.7491596170939], [-75.32261342133613, 40.74928660593751], [-75.32262784122254, 40.74937287631707], [-75.32264384880195, 40.749468639896804], [-75.32286326175313, 40.750792711210856], [-75.32294914426623, 40.75131096555528], [-75.32148711007443, 40.75145269351385], [-75.32099492276633, 40.751508983598406], [-75.32068433602181, 40.751535779271705], [-75.32057549558031, 40.75155014797361], [-75.32009091990139, 40.75159561015809], [-75.31951123736971, 40.75165006359275], [-75.31945400854752, 40.75166002003887], [-75.31938165073242, 40.75166399686152], [-75.31917138338954, 40.75168739617654], [-75.31894688156721, 40.75170500535672], [-75.31875195397171, 40.75172855396348], [-75.31867958984772, 40.75173270138378], [-75.31803545991268, 40.75179695236508], [-75.317066102053, 40.751893341033536], [-75.31699373761478, 40.75189748830333], [-75.31519006989662, 40.75200022820338], [-75.31377093989586, 40.752078060802155], [-75.3137644853582, 40.75183302945385], [-75.31320677608744, 40.75172951008004], [-75.31321869547553, 40.75135134731577], [-75.31321824751139, 40.751277553091995], [-75.31321792025267, 40.75122347693138], [-75.31199574974032, 40.751247072091644], [-75.31044916357511, 40.75127980397674], [-75.3103353621136, 40.751282211525705], [-75.30976293398689, 40.75088850646063], [-75.30978232591134, 40.75040461318189], [-75.3096729782484, 40.75028389976566], [-75.3091982585237, 40.7497602722679], [-75.30878386066281, 40.74929076970079], [-75.30864745354359, 40.749263893006336], [-75.30854008787298, 40.74924273934807], [-75.30819601893383, 40.74917269060359], [-75.30806714805549, 40.749142178158245], [-75.30806446089161, 40.74914160723765], [-75.3079626798948, 40.74911080596019], [-75.30766479008348, 40.749061635359716], [-75.30738849879823, 40.74901429135506], [-75.3070960464908, 40.74896454721876], [-75.30680803066747, 40.74891695509673], [-75.30654076513858, 40.74886962693119], [-75.30649322398168, 40.74886141841496], [-75.30651896160957, 40.748774264748846], [-75.30654451534599, 40.74869056745561], [-75.30674236199634, 40.7480425604557], [-75.30680829589214, 40.74784298512991], [-75.30659536811186, 40.74775882247607], [-75.3064505847559, 40.74770159479045], [-75.30608094367902, 40.747168839257405], [-75.30579570494477, 40.74676614553554], [-75.30576658715799, 40.746725038234025], [-75.30571179022827, 40.74664767603899], [-75.30540776525406, 40.746569023337045], [-75.30513324001468, 40.74649828547492], [-75.30500714699537, 40.74646602533092], [-75.30486225004233, 40.74642959432534], [-75.30465836829214, 40.7463770751671], [-75.30445719256895, 40.74632461355057], [-75.30419341928976, 40.7462560728374], [-75.30411894872847, 40.74623665210895], [-75.30410622815216, 40.74623333553848], [-75.30408493845424, 40.74622778352642], [-75.30399224429216, 40.74620361041369], [-75.30377136073986, 40.746147041451096], [-75.30357191839337, 40.746096587707946], [-75.30341813318236, 40.74605644963959], [-75.3033728420425, 40.74611041235388], [-75.30313714816134, 40.74642577100635], [-75.30290979150898, 40.7467299710563], [-75.30259092563604, 40.746612813645704], [-75.30257513358933, 40.746599974781695], [-75.30206417633494, 40.74618416757424], [-75.30185510006903, 40.746014028387684], [-75.3013452798176, 40.74559914802248], [-75.30122581981573, 40.74545635839846], [-75.30002288057057, 40.744018455370934], [-75.30009195055936, 40.74393383899374], [-75.30010136139968, 40.743922310016046]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 817, \"PRECINCTID\": \"320001-1\", \"NAME\": \"UPPER NAZARETH EASTERN DISTRICT\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"40th District\", \"PAStateHouse\": \"137th District\", \"MDJ\": \"03-2-08\", \"CountyCouncil\": \"District 4\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"NAZARETH AREA MIDDLE SCHOOL\", \"SiteAddress\": \"94 FRIEDENSTAHL AVE\", \"City\": \"NAZARETH\", \"STATISTICS Registered Voters - Total\": \"2685\", \"STATISTICS Ballots Cast - Total\": 2192.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"81.64%\", \"Presidential Electors DEM Biden and Harris\": \"1011\", \"Presidential Electors REP Trump and Pence\": \"1146\", \"Presidential Electors LIB Jorgensen and Cohen\": \"24\", \"Presidential Electors Write-In Totals\": \"5\", \"Attorney General DEM Josh Shapiro\": \"993\", \"Attorney General REP Heather Heidelbaugh\": \"1085\", \"Attorney General LIB Daniel Wassmer\": \"35\", \"Attorney General GRE Richard L Weiss\": \"18\", \"Attorney General Write-In Totals\": \"2\", \"Auditor General DEM Nina Ahmad\": \"884\", \"Auditor General REP Timothy Defoor\": \"1139\", \"Auditor General LIB Jennifer Moore\": \"67\", \"Auditor General GRE Olivia Faison\": \"20\", \"Auditor General Write-In Totals\": \"2\", \"State Treasurer DEM Joe Torsella\": \"932\", \"State Treasurer REP Stacy L. Garrity\": \"1108\", \"State Treasurer LIB Joe Soloski\": \"52\", \"State Treasurer GRE Timothy Runkle\": \"27\", \"State Treasurer Write-In Totals\": \"1\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"977\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"1158\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": \"745\", \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": \"1402\", \"Representative in the General Assembly 137th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 46.122262773722625, \"Presidential Electors Pct REP\": 52.28102189781022, \"Presidential Electors Pct LIB\": 1.094890510948905, \"PA Attorney General Pct DEM\": 45.30109489051095, \"PA Attorney General Pct REP\": 49.49817518248175, \"PA Attorney General Pct LIB\": 1.5967153284671534, \"PA Attorney General Pct GRE\": 0.8211678832116789, \"PA Auditor General Pct DEM\": 40.32846715328467, \"PA Auditor General Pct REP\": 51.96167883211679, \"PA Auditor General Pct LIB\": 3.0565693430656937, \"PA Auditor General Pct GRE\": 0.9124087591240875, \"PA State Treasurer Pct DEM\": 42.518248175182485, \"PA State Treasurer Pct REP\": 50.54744525547446, \"PA State Treasurer Pct LIB\": 2.3722627737226274, \"PA State Treasurer Pct GRE\": 1.2317518248175183, \"PA Representative in Congress 7th Congressional District Pct DEM\": 44.57116788321168, \"PA Representative in Congress 7th Congressional District Pct REP\": 52.82846715328468, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 1.289047798268724, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.28377413207333, 40.7351605777934], [-75.28483835205068, 40.73505635964636], [-75.28525027005313, 40.735021002343345], [-75.28544140151014, 40.735004909160395], [-75.28928860649668, 40.73468090361035], [-75.29054836746184, 40.73455949834708], [-75.29156291773708, 40.73445562587596], [-75.29738398665702, 40.73387777934913], [-75.29741857536482, 40.73387434458964], [-75.29762318347623, 40.73385402807813], [-75.29762603705026, 40.73387159063194], [-75.29762651958208, 40.73387456021205], [-75.29778676722512, 40.734860760605834], [-75.29782395604428, 40.735028615897804], [-75.29843508126024, 40.735061240453945], [-75.29935605087289, 40.73511040037308], [-75.29932919761657, 40.735225352889444], [-75.29929722692245, 40.73536220848121], [-75.29924180622999, 40.73561966574242], [-75.29934474550213, 40.73561806366087], [-75.29953450913274, 40.73561134431201], [-75.30028776043893, 40.73560390118165], [-75.3010214037636, 40.735596647543474], [-75.30101488439868, 40.7356292118137], [-75.30071316624205, 40.737136232489654], [-75.30065725538094, 40.737415486494946], [-75.30055029466125, 40.73797261593314], [-75.30054177096818, 40.738033102871626], [-75.30082879321178, 40.73805709323407], [-75.30090505117983, 40.73806480481224], [-75.30136920152556, 40.738111743122204], [-75.30136894364284, 40.738111994431705], [-75.30129153186724, 40.738187503370916], [-75.30104918045996, 40.73842342700611], [-75.30075411196952, 40.73869427734529], [-75.30044905429463, 40.738966717913385], [-75.30034567513587, 40.73905446348158], [-75.29976057206929, 40.73953199596684], [-75.29938263028589, 40.73984768687169], [-75.29937984031939, 40.73984994502286], [-75.29815844133878, 40.74084656218513], [-75.29744480351874, 40.74143231854728], [-75.29775740129335, 40.74156822739363], [-75.29813600968846, 40.74173283434029], [-75.29861922620275, 40.74194563439403], [-75.29895908782548, 40.742080237317055], [-75.29929289818928, 40.74223230195454], [-75.29978310028716, 40.74245176500059], [-75.30033580908697, 40.742690198550356], [-75.30042642740527, 40.742729289962384], [-75.30081295288086, 40.742896191797264], [-75.30090269673356, 40.742934982399646], [-75.3008752041375, 40.74297112832695], [-75.30082894235022, 40.743026957847], [-75.30074860573895, 40.743126173436124], [-75.30057090367042, 40.74334604090344], [-75.3005510291709, 40.74337127845388], [-75.30036867761726, 40.74359482308349], [-75.30010136139968, 40.743922310016046], [-75.30009195055936, 40.74393383899374], [-75.30002288057057, 40.744018455370934], [-75.30122581981573, 40.74545635839846], [-75.3013452798176, 40.74559914802248], [-75.30185510006903, 40.746014028387684], [-75.30206417633494, 40.74618416757424], [-75.30257513358933, 40.746599974781695], [-75.30259092563604, 40.746612813645704], [-75.30290979150898, 40.7467299710563], [-75.30313714816134, 40.74642577100635], [-75.3033728420425, 40.74611041235388], [-75.30341813318236, 40.74605644963959], [-75.30357191839337, 40.746096587707946], [-75.30377136073986, 40.746147041451096], [-75.30399224429216, 40.74620361041369], [-75.30408493845424, 40.74622778352642], [-75.30410622815216, 40.74623333553848], [-75.30411894872847, 40.74623665210895], [-75.30419341928976, 40.7462560728374], [-75.30445719256895, 40.74632461355057], [-75.30465836829214, 40.7463770751671], [-75.30486225004233, 40.74642959432534], [-75.30500714699537, 40.74646602533092], [-75.30513324001468, 40.74649828547492], [-75.30540776525406, 40.746569023337045], [-75.30571179022827, 40.74664767603899], [-75.30576658715799, 40.746725038234025], [-75.30579570494477, 40.74676614553554], [-75.30608094367902, 40.747168839257405], [-75.3064505847559, 40.74770159479045], [-75.30659536811186, 40.74775882247607], [-75.30680829589214, 40.74784298512991], [-75.30674236199634, 40.7480425604557], [-75.30654451534599, 40.74869056745561], [-75.30651896160957, 40.748774264748846], [-75.30649322398168, 40.74886141841496], [-75.30654076513858, 40.74886962693119], [-75.30680803066747, 40.74891695509673], [-75.3070960464908, 40.74896454721876], [-75.30738849879823, 40.74901429135506], [-75.30766479008348, 40.749061635359716], [-75.3079626798948, 40.74911080596019], [-75.30806446089161, 40.74914160723765], [-75.30806714805549, 40.749142178158245], [-75.30819601893383, 40.74917269060359], [-75.30854008787298, 40.74924273934807], [-75.30864745354359, 40.749263893006336], [-75.30878386066281, 40.74929076970079], [-75.3091982585237, 40.7497602722679], [-75.3096729782484, 40.75028389976566], [-75.30978232591134, 40.75040461318189], [-75.30976293398689, 40.75088850646063], [-75.3103353621136, 40.751282211525705], [-75.31044916357511, 40.75127980397674], [-75.31199574974032, 40.751247072091644], [-75.31321792025267, 40.75122347693138], [-75.31321824751139, 40.751277553091995], [-75.31321869547553, 40.75135134731577], [-75.31320677608744, 40.75172951008004], [-75.3137644853582, 40.75183302945385], [-75.31377093989586, 40.752078060802155], [-75.31519006989662, 40.75200022820338], [-75.31699373761478, 40.75189748830333], [-75.317066102053, 40.751893341033536], [-75.31803545991268, 40.75179695236508], [-75.31867958984772, 40.75173270138378], [-75.31875195397171, 40.75172855396348], [-75.31894688156721, 40.75170500535672], [-75.31917138338954, 40.75168739617654], [-75.31938165073242, 40.75166399686152], [-75.31945400854752, 40.75166002003887], [-75.31951123736971, 40.75165006359275], [-75.32009091990139, 40.75159561015809], [-75.32057549558031, 40.75155014797361], [-75.32068433602181, 40.751535779271705], [-75.32099492276633, 40.751508983598406], [-75.32148711007443, 40.75145269351385], [-75.32294914426623, 40.75131096555528], [-75.32286326175313, 40.750792711210856], [-75.32264384880195, 40.749468639896804], [-75.32262784122254, 40.74937287631707], [-75.32533721998598, 40.75057177711018], [-75.3256187586943, 40.750714131666015], [-75.32590013225185, 40.75085640098261], [-75.32614772927788, 40.75099903463479], [-75.32631276015574, 40.75110338962974], [-75.3264476979467, 40.7512162122198], [-75.32658197392202, 40.751347383173275], [-75.32665664032707, 40.75145448537876], [-75.32669679140349, 40.75152836385653], [-75.32671843156945, 40.75156818248297], [-75.32676808979491, 40.75169295378661], [-75.32679305116238, 40.75185170463267], [-75.32679608623229, 40.75199950363548], [-75.32681269161576, 40.75280818241665], [-75.3268097642749, 40.75295871267749], [-75.32680636283297, 40.75313360414686], [-75.32681740531056, 40.753231895611165], [-75.32682959186988, 40.753340370908255], [-75.32685888922622, 40.753529072231046], [-75.32687482919789, 40.75362673889406], [-75.32688328367959, 40.753678543929496], [-75.3269262901721, 40.75386235135672], [-75.32692609006672, 40.75386238141334], [-75.32692489403966, 40.75386256545248], [-75.32692006590507, 40.75386330699625], [-75.3265323430131, 40.75392280632219], [-75.3262871713697, 40.75394949976571], [-75.32594508274939, 40.75398674350493], [-75.32505272758839, 40.75407314790095], [-75.32456760671977, 40.75412011760665], [-75.32443318084174, 40.75413313209483], [-75.3238815166524, 40.754182341917605], [-75.32227432379455, 40.754325693316666], [-75.31938145990557, 40.75458366088354], [-75.3187743257066, 40.754637793187634], [-75.31827976431984, 40.7546818842525], [-75.31827759399243, 40.7546820811291], [-75.31784075113696, 40.7547223785015], [-75.31764085679389, 40.75474081795233], [-75.31713398931912, 40.754793618094354], [-75.31688785668179, 40.754819257318665], [-75.3167053486902, 40.754834635329004], [-75.31641382390146, 40.75485919789125], [-75.3164034227308, 40.7548600744299], [-75.31529474085772, 40.75496286719391], [-75.31511270837713, 40.75497974452584], [-75.31345453116185, 40.75514199655209], [-75.31345265983478, 40.755142179794824], [-75.31336106607037, 40.7551511427602], [-75.31336020411088, 40.75515122736939], [-75.31335973567894, 40.75515127339236], [-75.31335915906632, 40.755151329757055], [-75.31091729243025, 40.75539022056991], [-75.30970823044758, 40.75550848335466], [-75.30926212430244, 40.755552116010016], [-75.30850470648491, 40.75562819058879], [-75.3083225617182, 40.75564648466747], [-75.30810767309563, 40.75567234176824], [-75.3078938434909, 40.75569392990595], [-75.30782864706617, 40.755699423188496], [-75.3071881642245, 40.755761289045935], [-75.3065828598657, 40.75582389083261], [-75.30640349294806, 40.75584105303549], [-75.30591595952095, 40.7558922295592], [-75.30540226488489, 40.75594285412561], [-75.30305624721416, 40.75618518170323], [-75.30268388003155, 40.75622195350123], [-75.3020351627349, 40.75628653548835], [-75.30176147521611, 40.75631560231588], [-75.30163467464324, 40.75632700098838], [-75.30152226417309, 40.75633990475276], [-75.30069409298358, 40.75642384084548], [-75.30060982873293, 40.75643238089462], [-75.30024066553905, 40.756455484117545], [-75.2987701016688, 40.75655418845597], [-75.2980778146064, 40.75660032286417], [-75.29694037195866, 40.75667394677181], [-75.29675944685519, 40.75668419660267], [-75.29591886461607, 40.75673696639101], [-75.29558781631086, 40.7567540877413], [-75.29549015024654, 40.756759138184464], [-75.2947775633323, 40.7568171802423], [-75.29414726894514, 40.756871295732665], [-75.29335133312381, 40.75693734866097], [-75.28971728210864, 40.75724567967696], [-75.28815784022885, 40.75737909383878], [-75.2878698087697, 40.75740507813347], [-75.2861889978541, 40.75754910626583], [-75.28576703955308, 40.75758374211788], [-75.28574001318205, 40.75758597924308], [-75.28573996681543, 40.75758598366427], [-75.2856185340831, 40.75759603567854], [-75.28546374331755, 40.75760869111765], [-75.28424038881136, 40.75770870380027], [-75.28243637153486, 40.75786396187167], [-75.28197280606666, 40.757900617695704], [-75.2815545525178, 40.75793257120928], [-75.28150929804032, 40.757935727897035], [-75.28066186790605, 40.75800197250505], [-75.27928492360401, 40.75810602684727], [-75.27663873342192, 40.75830642638875], [-75.27615797309458, 40.75834406577832], [-75.2761046510944, 40.75834802593367], [-75.27561210420166, 40.758384605654015], [-75.27550021728419, 40.75757476000533], [-75.27534180775045, 40.75641073281049], [-75.27521345879617, 40.75543543848934], [-75.27515010679673, 40.75497449543621], [-75.27508813199027, 40.75455276719169], [-75.27508154585968, 40.75450794947266], [-75.274946393934, 40.75362105306385], [-75.274414302811, 40.75012913347006], [-75.27403861880023, 40.747416761660965], [-75.2738774426196, 40.74628081192098], [-75.27366751530447, 40.74480127636188], [-75.27357276196776, 40.74404207501926], [-75.27765847326884, 40.743731261753936], [-75.27894916788075, 40.74363303961902], [-75.2804618196738, 40.74351223228814], [-75.28161912352063, 40.743433104456074], [-75.28479611052857, 40.743189301803106], [-75.283944855476, 40.73650192422587], [-75.28377413207333, 40.7351605777934]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 818, \"PRECINCTID\": \"040903-1\", \"NAME\": \"BETHLEHEM 9TH WARD 3RD DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-01\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"SALVATION ARMY\", \"SiteAddress\": \"521 PEMBROKE RD\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1530\", \"STATISTICS Ballots Cast - Total\": 1080.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"70.59%\", \"Presidential Electors DEM Biden and Harris\": \"701\", \"Presidential Electors REP Trump and Pence\": \"353\", \"Presidential Electors LIB Jorgensen and Cohen\": \"16\", \"Presidential Electors Write-In Totals\": \"5\", \"Attorney General DEM Josh Shapiro\": \"671\", \"Attorney General REP Heather Heidelbaugh\": \"319\", \"Attorney General LIB Daniel Wassmer\": \"28\", \"Attorney General GRE Richard L Weiss\": \"11\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"655\", \"Auditor General REP Timothy Defoor\": \"325\", \"Auditor General LIB Jennifer Moore\": \"32\", \"Auditor General GRE Olivia Faison\": \"14\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"661\", \"State Treasurer REP Stacy L. Garrity\": \"320\", \"State Treasurer LIB Joe Soloski\": \"24\", \"State Treasurer GRE Timothy Runkle\": \"17\", \"State Treasurer Write-In Totals\": \"2\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"682\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"357\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"708\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"334\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 64.9074074074074, \"Presidential Electors Pct REP\": 32.68518518518518, \"Presidential Electors Pct LIB\": 1.4814814814814816, \"PA Attorney General Pct DEM\": 62.12962962962963, \"PA Attorney General Pct REP\": 29.537037037037038, \"PA Attorney General Pct LIB\": 2.5925925925925926, \"PA Attorney General Pct GRE\": 1.0185185185185186, \"PA Auditor General Pct DEM\": 60.64814814814815, \"PA Auditor General Pct REP\": 30.09259259259259, \"PA Auditor General Pct LIB\": 2.9629629629629632, \"PA Auditor General Pct GRE\": 1.2962962962962963, \"PA State Treasurer Pct DEM\": 61.2037037037037, \"PA State Treasurer Pct REP\": 29.629629629629626, \"PA State Treasurer Pct LIB\": 2.2222222222222223, \"PA State Treasurer Pct GRE\": 1.574074074074074, \"PA Representative in Congress 7th Congressional District Pct DEM\": 63.14814814814815, \"PA Representative in Congress 7th Congressional District Pct REP\": 33.05555555555556, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.6351147911178021, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37048315629961, 40.62345410712778], [-75.37046111645684, 40.62417908515149], [-75.3704451538067, 40.62491053817407], [-75.37043015801557, 40.625487296244515], [-75.37042045466153, 40.62606725294751], [-75.37041087805846, 40.626428361978554], [-75.37040156016792, 40.62677968101183], [-75.37038275323121, 40.627489622530184], [-75.37037396908765, 40.62778396360668], [-75.37036330751839, 40.62814120075867], [-75.37035379421269, 40.62837957310342], [-75.37033952457038, 40.62873708565902], [-75.37031706702393, 40.6295290942173], [-75.37031405191392, 40.629635412803346], [-75.3703012270678, 40.630099805680835], [-75.37029724106091, 40.63021247624488], [-75.37025355866706, 40.63030259068268], [-75.37021462370365, 40.63038291272908], [-75.37012180366864, 40.630448005062824], [-75.36989586169939, 40.6304541960873], [-75.36996207988962, 40.63039008277959], [-75.3694759545863, 40.63035238129848], [-75.3694184548638, 40.63034768218275], [-75.36935645023783, 40.630342976077536], [-75.36935318509919, 40.63051160974653], [-75.36922834078563, 40.6305002920374], [-75.3691592646622, 40.63049175144429], [-75.36872027932854, 40.6304714049979], [-75.36860047512718, 40.630455235329855], [-75.36859899948728, 40.63045499960523], [-75.3684915662583, 40.63044173443317], [-75.36811291587343, 40.63042236792257], [-75.36803703197373, 40.63037704518936], [-75.36796040139419, 40.630454586352705], [-75.3679461884633, 40.63046887136244], [-75.36789830901569, 40.63047970403909], [-75.36789700020698, 40.63047999965117], [-75.36784075830323, 40.6304809849441], [-75.36669800035855, 40.630501000309614], [-75.3666264575164, 40.63051689883607], [-75.36662599985901, 40.630517000232054], [-75.36658868216993, 40.63051521022759], [-75.36611376863476, 40.630491611408566], [-75.3657725242057, 40.630484591156886], [-75.36509886420527, 40.63047570580382], [-75.36458555971797, 40.63046762920104], [-75.36460814318484, 40.62955130947188], [-75.3646298929438, 40.62865848272853], [-75.36462188813202, 40.62822333312777], [-75.36461881363611, 40.62805621737846], [-75.36464168521383, 40.62741123096848], [-75.36414142867282, 40.62741697878555], [-75.36414102921519, 40.62741697326375], [-75.36422800084456, 40.62733700156439], [-75.3642280581652, 40.62733698562774], [-75.36419340262924, 40.62704392030506], [-75.36412149023451, 40.62617481635382], [-75.36410889445472, 40.62602259423878], [-75.36409236353371, 40.62584610958464], [-75.36400041173086, 40.62486442365616], [-75.36397112375121, 40.62450106092954], [-75.36394160154026, 40.624134777175705], [-75.36389394232452, 40.62347195797629], [-75.36388307842316, 40.62332087136516], [-75.3638474450106, 40.622954975126845], [-75.3638474154418, 40.62295467542452], [-75.36405039877054, 40.622943606909715], [-75.36405069969283, 40.62294358968311], [-75.36432944761651, 40.62292838895555], [-75.36475600724742, 40.62290519454925], [-75.36475641357508, 40.622905172283495], [-75.3647612242146, 40.62304900188626], [-75.36479932574615, 40.623405318993804], [-75.36482482458898, 40.62364376810311], [-75.36482494806552, 40.62364352019921], [-75.3648626566769, 40.623567747429426], [-75.36491050167007, 40.62351424322483], [-75.36493714569858, 40.62349226506047], [-75.3649372224295, 40.62349220177622], [-75.36493730040571, 40.62349213671587], [-75.36499402916299, 40.62344534133547], [-75.36500229383398, 40.623440334969594], [-75.36503362105991, 40.623421357625446], [-75.36507402270071, 40.62339987880879], [-75.36512973148288, 40.62337871502691], [-75.36519985091189, 40.62335944147003], [-75.36520524407872, 40.623357958804625], [-75.36520710690202, 40.623357607061024], [-75.36526420131833, 40.623346815676975], [-75.36531920667333, 40.623345459466165], [-75.36536782191372, 40.62334645996278], [-75.3653940777831, 40.62334700029737], [-75.36541373630875, 40.62334740485753], [-75.36544102647898, 40.62335188801186], [-75.36546568824926, 40.62335593960016], [-75.3654925627596, 40.623361208767484], [-75.3655077401584, 40.62336418410734], [-75.365521792475, 40.62336954705656], [-75.36555574150431, 40.62338250488674], [-75.36560014171229, 40.62340075244358], [-75.36564787869747, 40.623426533363464], [-75.36571219651314, 40.62346750109752], [-75.36574616492256, 40.62350046428176], [-75.36579653983691, 40.62355350068393], [-75.36579660715215, 40.62355360296796], [-75.36581457148368, 40.623580895493745], [-75.36584600353444, 40.62362864760778], [-75.36584612468937, 40.623628832078985], [-75.36584842273363, 40.62338603908696], [-75.36626439600929, 40.62339339633052], [-75.3668199612653, 40.62340233490734], [-75.36745093888763, 40.62341342593986], [-75.36825606803976, 40.62342757259037], [-75.36861610510854, 40.62343386530814], [-75.36887012989449, 40.623438304583324], [-75.36965167327011, 40.62344475519847], [-75.36967983889424, 40.623444987853354], [-75.36968000082015, 40.623444989377916], [-75.36975293455602, 40.62344581823517], [-75.37048299673657, 40.62345410565282], [-75.37048315629961, 40.62345410712778]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 819, \"PRECINCTID\": \"040902-1\", \"NAME\": \"BETHLEHEM 9TH WARD 2ND DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-01\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"LIBERTY HIGH SCHOOL CAFETERIA (GYM ENTERANCE)\", \"SiteAddress\": \"1115 LINDEN ST \", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"872\", \"STATISTICS Ballots Cast - Total\": 570.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"65.37%\", \"Presidential Electors DEM Biden and Harris\": \"388\", \"Presidential Electors REP Trump and Pence\": \"169\", \"Presidential Electors LIB Jorgensen and Cohen\": \"10\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"365\", \"Attorney General REP Heather Heidelbaugh\": \"145\", \"Attorney General LIB Daniel Wassmer\": \"17\", \"Attorney General GRE Richard L Weiss\": \"13\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"352\", \"Auditor General REP Timothy Defoor\": \"153\", \"Auditor General LIB Jennifer Moore\": \"20\", \"Auditor General GRE Olivia Faison\": \"10\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"354\", \"State Treasurer REP Stacy L. Garrity\": \"151\", \"State Treasurer LIB Joe Soloski\": \"18\", \"State Treasurer GRE Timothy Runkle\": \"14\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"383\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"163\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"386\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"157\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 68.0701754385965, \"Presidential Electors Pct REP\": 29.64912280701754, \"Presidential Electors Pct LIB\": 1.7543859649122806, \"PA Attorney General Pct DEM\": 64.03508771929825, \"PA Attorney General Pct REP\": 25.438596491228072, \"PA Attorney General Pct LIB\": 2.982456140350877, \"PA Attorney General Pct GRE\": 2.280701754385965, \"PA Auditor General Pct DEM\": 61.75438596491228, \"PA Auditor General Pct REP\": 26.842105263157894, \"PA Auditor General Pct LIB\": 3.508771929824561, \"PA Auditor General Pct GRE\": 1.7543859649122806, \"PA State Treasurer Pct DEM\": 62.10526315789474, \"PA State Treasurer Pct REP\": 26.49122807017544, \"PA State Treasurer Pct LIB\": 3.1578947368421053, \"PA State Treasurer Pct GRE\": 2.456140350877193, \"PA Representative in Congress 7th Congressional District Pct DEM\": 67.19298245614034, \"PA Representative in Congress 7th Congressional District Pct REP\": 28.596491228070175, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.33519947308995107, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37021462370365, 40.63038291272908], [-75.37025355866706, 40.63030259068268], [-75.37029724106091, 40.63021247624488], [-75.3703012270678, 40.630099805680835], [-75.37031405191392, 40.629635412803346], [-75.37031706702393, 40.6295290942173], [-75.37033952457038, 40.62873708565902], [-75.37035379421269, 40.62837957310342], [-75.37036330751839, 40.62814120075867], [-75.37037396908765, 40.62778396360668], [-75.37038275323121, 40.627489622530184], [-75.37040156016792, 40.62677968101183], [-75.37041087805846, 40.626428361978554], [-75.37042045466153, 40.62606725294751], [-75.37043015801557, 40.625487296244515], [-75.3704451538067, 40.62491053817407], [-75.37046111645684, 40.62417908515149], [-75.37048315629961, 40.62345410712778], [-75.37102263740802, 40.62346588796569], [-75.37238987689621, 40.623495735089016], [-75.37321453434245, 40.62351282537337], [-75.3735713665283, 40.62351747661482], [-75.37448877887627, 40.62352943050174], [-75.37498409083227, 40.62353984232395], [-75.37498419362099, 40.62353984443078], [-75.37531072853008, 40.623546707090725], [-75.37531072430046, 40.62354699438491], [-75.3752998711401, 40.62426264676336], [-75.3752688193216, 40.62498915599983], [-75.37525666568595, 40.62556314061579], [-75.37525699539223, 40.6255631455709], [-75.37524537543207, 40.62588296403448], [-75.37523625452405, 40.62614133331004], [-75.37522012290042, 40.62685146552526], [-75.37521999728882, 40.62685699975922], [-75.3752199939314, 40.6268571618488], [-75.37519944347345, 40.627587519136426], [-75.37519937665353, 40.62758988077477], [-75.37517529890475, 40.628199756785726], [-75.37516224605064, 40.62882469343808], [-75.37511712044268, 40.62972004283401], [-75.37510805874794, 40.63076784188785], [-75.37510800097635, 40.630767837100365], [-75.3747735811223, 40.63073989817431], [-75.37477293739589, 40.63073984444081], [-75.37477219818193, 40.630739782443996], [-75.3747719447088, 40.63073976103294], [-75.37451332661624, 40.63071815413926], [-75.3744344175501, 40.630709981801196], [-75.37417038453869, 40.630682634441605], [-75.3736381165691, 40.630642836069725], [-75.37363767787117, 40.630642802749996], [-75.373295986521, 40.63061725270766], [-75.37284305767999, 40.630585050635226], [-75.37233249681653, 40.630548749095915], [-75.3712818754494, 40.63047269954847], [-75.37021502573681, 40.630382946209735], [-75.37021462370365, 40.63038291272908]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 820, \"PRECINCTID\": \"040901-1\", \"NAME\": \"BETHLEHEM 9TH WARD 1ST DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-01\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"LIBERTY HIGH SCHOOL CAFETERIA (GYM ENTERANCE)\", \"SiteAddress\": \"1115 LINDEN ST \", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"768\", \"STATISTICS Ballots Cast - Total\": 511.0, \"STATISTICS Ballots Cast - Blank\": \"1\", \"STATISTICS Voter Turnout - Total\": \"66.54%\", \"Presidential Electors DEM Biden and Harris\": \"347\", \"Presidential Electors REP Trump and Pence\": \"153\", \"Presidential Electors LIB Jorgensen and Cohen\": \"7\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"336\", \"Attorney General REP Heather Heidelbaugh\": \"136\", \"Attorney General LIB Daniel Wassmer\": \"9\", \"Attorney General GRE Richard L Weiss\": \"6\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"325\", \"Auditor General REP Timothy Defoor\": \"144\", \"Auditor General LIB Jennifer Moore\": \"8\", \"Auditor General GRE Olivia Faison\": \"6\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"322\", \"State Treasurer REP Stacy L. Garrity\": \"141\", \"State Treasurer LIB Joe Soloski\": \"14\", \"State Treasurer GRE Timothy Runkle\": \"8\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"339\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"154\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"346\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"145\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 67.90606653620353, \"Presidential Electors Pct REP\": 29.9412915851272, \"Presidential Electors Pct LIB\": 1.36986301369863, \"PA Attorney General Pct DEM\": 65.75342465753424, \"PA Attorney General Pct REP\": 26.614481409001954, \"PA Attorney General Pct LIB\": 1.761252446183953, \"PA Attorney General Pct GRE\": 1.1741682974559686, \"PA Auditor General Pct DEM\": 63.600782778864975, \"PA Auditor General Pct REP\": 28.180039138943247, \"PA Auditor General Pct LIB\": 1.5655577299412915, \"PA Auditor General Pct GRE\": 1.1741682974559686, \"PA State Treasurer Pct DEM\": 63.013698630136986, \"PA State Treasurer Pct REP\": 27.59295499021526, \"PA State Treasurer Pct LIB\": 2.73972602739726, \"PA State Treasurer Pct GRE\": 1.5655577299412915, \"PA Representative in Congress 7th Congressional District Pct DEM\": 66.34050880626224, \"PA Representative in Congress 7th Congressional District Pct REP\": 30.136986301369863, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.300503387278886, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37510805874794, 40.63076784188785], [-75.37511712044268, 40.62972004283401], [-75.37516224605064, 40.62882469343808], [-75.37517529890475, 40.628199756785726], [-75.37519937665353, 40.62758988077477], [-75.37519944347345, 40.627587519136426], [-75.3752199939314, 40.6268571618488], [-75.37521999728882, 40.62685699975922], [-75.37522012290042, 40.62685146552526], [-75.37523625452405, 40.62614133331004], [-75.37524537543207, 40.62588296403448], [-75.37525699539223, 40.6255631455709], [-75.37525666568595, 40.62556314061579], [-75.3752688193216, 40.62498915599983], [-75.3752998711401, 40.62426264676336], [-75.37531072430046, 40.62354699438491], [-75.37531072853008, 40.623546707090725], [-75.37614560820792, 40.623554976278875], [-75.37619444149082, 40.623555732556156], [-75.3774683682244, 40.62357545957191], [-75.37838486348676, 40.62359422130824], [-75.37915769500343, 40.62360002586491], [-75.38043846498847, 40.623609634336724], [-75.38043824839218, 40.623610010078444], [-75.38037032982734, 40.62372794350801], [-75.38033932006145, 40.6243525140559], [-75.3803390246875, 40.62435250801547], [-75.37955695852875, 40.62433651203379], [-75.37955041713501, 40.62447393527315], [-75.37952227286043, 40.62506517769753], [-75.37951064084886, 40.625357395729274], [-75.37949872923274, 40.62565660605099], [-75.37949029855918, 40.62586800321583], [-75.37947549944101, 40.626239116642395], [-75.37939716816977, 40.62623759977786], [-75.37930714172235, 40.62623558684535], [-75.37827723773586, 40.62621253820915], [-75.37827721420584, 40.62621300438299], [-75.37824007203686, 40.62693446009248], [-75.37822722347381, 40.627263899035476], [-75.37821190595928, 40.62765665164493], [-75.37818793764104, 40.62819974420074], [-75.37818502300773, 40.62826577391881], [-75.37818501385902, 40.628265999852196], [-75.3781605262439, 40.628883868155185], [-75.3781403988364, 40.629373673833], [-75.37813513164572, 40.62950185924943], [-75.37812964468945, 40.62964036783621], [-75.37811055836113, 40.63012209764597], [-75.37807384594491, 40.631009986195245], [-75.37807382859843, 40.63101041105476], [-75.37752779773699, 40.630959333010814], [-75.3770501277625, 40.630923450945424], [-75.37691850774965, 40.630913563141355], [-75.37510805874794, 40.63076784188785]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 821, \"PRECINCTID\": \"040800-1\", \"NAME\": \"BETHLEHEM 8TH WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-01\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"COLLEGE HILL MORAVIAN CHURCH\", \"SiteAddress\": \"72 W LAUREL ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1639\", \"STATISTICS Ballots Cast - Total\": 978.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"59.67%\", \"Presidential Electors DEM Biden and Harris\": \"674\", \"Presidential Electors REP Trump and Pence\": \"274\", \"Presidential Electors LIB Jorgensen and Cohen\": \"17\", \"Presidential Electors Write-In Totals\": \"9\", \"Attorney General DEM Josh Shapiro\": \"645\", \"Attorney General REP Heather Heidelbaugh\": \"249\", \"Attorney General LIB Daniel Wassmer\": \"22\", \"Attorney General GRE Richard L Weiss\": \"15\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"612\", \"Auditor General REP Timothy Defoor\": \"260\", \"Auditor General LIB Jennifer Moore\": \"33\", \"Auditor General GRE Olivia Faison\": \"13\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"605\", \"State Treasurer REP Stacy L. Garrity\": \"273\", \"State Treasurer LIB Joe Soloski\": \"28\", \"State Treasurer GRE Timothy Runkle\": \"17\", \"State Treasurer Write-In Totals\": \"1\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"663\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"284\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"667\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"269\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 68.9161554192229, \"Presidential Electors Pct REP\": 28.016359918200408, \"Presidential Electors Pct LIB\": 1.738241308793456, \"PA Attorney General Pct DEM\": 65.95092024539878, \"PA Attorney General Pct REP\": 25.4601226993865, \"PA Attorney General Pct LIB\": 2.2494887525562373, \"PA Attorney General Pct GRE\": 1.5337423312883436, \"PA Auditor General Pct DEM\": 62.57668711656442, \"PA Auditor General Pct REP\": 26.58486707566462, \"PA Auditor General Pct LIB\": 3.374233128834356, \"PA Auditor General Pct GRE\": 1.329243353783231, \"PA State Treasurer Pct DEM\": 61.86094069529653, \"PA State Treasurer Pct REP\": 27.914110429447852, \"PA State Treasurer Pct LIB\": 2.8629856850715747, \"PA State Treasurer Pct GRE\": 1.738241308793456, \"PA Representative in Congress 7th Congressional District Pct DEM\": 67.79141104294479, \"PA Representative in Congress 7th Congressional District Pct REP\": 29.038854805725972, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5751317275122318, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37807382859843, 40.63101041105476], [-75.37807384594491, 40.631009986195245], [-75.37811055836113, 40.63012209764597], [-75.37812964468945, 40.62964036783621], [-75.37813513164572, 40.62950185924943], [-75.3781403988364, 40.629373673833], [-75.3781605262439, 40.628883868155185], [-75.37818501385902, 40.628265999852196], [-75.37818502300773, 40.62826577391881], [-75.37818793764104, 40.62819974420074], [-75.37821190595928, 40.62765665164493], [-75.37822722347381, 40.627263899035476], [-75.37824007203686, 40.62693446009248], [-75.37827721420584, 40.62621300438299], [-75.37827723773586, 40.62621253820915], [-75.37930714172235, 40.62623558684535], [-75.37939716816977, 40.62623759977786], [-75.37947549944101, 40.626239116642395], [-75.37949029855918, 40.62586800321583], [-75.37949872923274, 40.62565660605099], [-75.37951064084886, 40.625357395729274], [-75.37952227286043, 40.62506517769753], [-75.37955041713501, 40.62447393527315], [-75.37955695852875, 40.62433651203379], [-75.3803390246875, 40.62435250801547], [-75.38033932006145, 40.6243525140559], [-75.38037032982734, 40.62372794350801], [-75.38043824839218, 40.623610010078444], [-75.38043846498847, 40.623609634336724], [-75.38109783533038, 40.623638560909164], [-75.38179335090094, 40.62364885716137], [-75.3818740409957, 40.623650051315074], [-75.38187404286539, 40.62364999820148], [-75.38273713853516, 40.62360604376936], [-75.38273799962785, 40.62360600010146], [-75.38273399957241, 40.62368100030221], [-75.38298499959436, 40.623688999870424], [-75.38305900013995, 40.623690998865854], [-75.3830625627074, 40.62369109415972], [-75.3830683440398, 40.6237169773771], [-75.38307516823696, 40.623747530428886], [-75.38313069357214, 40.62393624190922], [-75.38315588927857, 40.623988328240195], [-75.38323528173386, 40.62411325669508], [-75.38331242302841, 40.624225354743814], [-75.38337034608256, 40.624294754980696], [-75.38343927677468, 40.62435854591106], [-75.38356455399031, 40.624459699230954], [-75.38363677412167, 40.62450682430167], [-75.38370655281821, 40.6245465203759], [-75.38376168415583, 40.6245699276159], [-75.38385965078939, 40.62461152349301], [-75.38393202703354, 40.624642252875866], [-75.38430342499099, 40.62473890565241], [-75.38456967499641, 40.62482809024761], [-75.38465577128461, 40.624864954943476], [-75.38465932164932, 40.62486647512644], [-75.38467630999344, 40.62487178033355], [-75.3847163564808, 40.62488428576354], [-75.38475159396647, 40.62490705851809], [-75.38477943308257, 40.62493525668216], [-75.38482753504668, 40.62500213951542], [-75.38483866505571, 40.62502391748728], [-75.3848671544415, 40.625079661523834], [-75.38491865205819, 40.62517718940801], [-75.38495500475099, 40.62524603591829], [-75.38498285010591, 40.6252740629873], [-75.3849856451634, 40.62527618304335], [-75.38510921975244, 40.62536991624792], [-75.38522671708662, 40.625487469712674], [-75.38531668778174, 40.62559356340657], [-75.38537122469832, 40.62568245871121], [-75.38556390366745, 40.62591678618004], [-75.38559895213402, 40.625944960061695], [-75.38570659168481, 40.62600138101403], [-75.38574050059202, 40.62601915529547], [-75.38580339521417, 40.62607535598979], [-75.38585060169143, 40.626142134490394], [-75.38587701648993, 40.6262082977986], [-75.3858837247847, 40.626225100886636], [-75.38591742653749, 40.62629160383462], [-75.38595208963437, 40.62633075323181], [-75.38616907714308, 40.62648877753224], [-75.3862467647021, 40.62653429623309], [-75.38635345460946, 40.62657491471222], [-75.38655165825908, 40.62667780882038], [-75.38663545764913, 40.62672885806616], [-75.38683217227656, 40.626874196743145], [-75.38706777550125, 40.627041008580356], [-75.38707812207078, 40.62704896799885], [-75.38710731053337, 40.62707142205097], [-75.38726428599465, 40.62719217729109], [-75.38738781691397, 40.62729208881336], [-75.38750285856084, 40.627377153644915], [-75.38762156302575, 40.62748600409356], [-75.38762593427809, 40.6274900129203], [-75.38766773347469, 40.62754084836631], [-75.38770888634086, 40.62759089856853], [-75.3877593659398, 40.62764152445553], [-75.38781835516778, 40.627677778234144], [-75.38785814511357, 40.627702231923905], [-75.38790660168542, 40.627727303687216], [-75.38801300627696, 40.627782358501996], [-75.38822492828601, 40.627870838625824], [-75.38828028699868, 40.62789395185706], [-75.38831128446418, 40.62790925616523], [-75.38835499078168, 40.627935564218966], [-75.38835540182905, 40.62793581222907], [-75.38839997104685, 40.62797516271754], [-75.38843591635316, 40.62802918297753], [-75.38855243626455, 40.62827757051493], [-75.38865648220474, 40.62844495821191], [-75.38874130208457, 40.62862104928798], [-75.38877936858644, 40.62871733038825], [-75.38880894370926, 40.628824506615366], [-75.38884372628719, 40.628988681041555], [-75.38884745201476, 40.62903655201751], [-75.38884857961624, 40.62913034715054], [-75.38884860089152, 40.629132166452166], [-75.38883398948147, 40.62926607310127], [-75.38883188640641, 40.62927225800449], [-75.38881289057177, 40.62932811172836], [-75.38878220659338, 40.62938085980857], [-75.38873492762623, 40.62944433880165], [-75.38860229527621, 40.62960355690423], [-75.38853424641026, 40.629712474367324], [-75.38843427365381, 40.62987248933755], [-75.3883957419015, 40.6299434399434], [-75.38835187124721, 40.63003813692323], [-75.38833919693319, 40.63006550938908], [-75.38829358302313, 40.63020985321437], [-75.38825080230556, 40.63032482315332], [-75.38824758486699, 40.6303353978245], [-75.3881540388971, 40.63064283130302], [-75.38814064234289, 40.63070181336546], [-75.38813698622556, 40.63071790956823], [-75.388117816467, 40.63077629740172], [-75.38809922472649, 40.63081822270038], [-75.38807400809908, 40.63086919379566], [-75.38795062829678, 40.631047048799694], [-75.38788321067872, 40.63117078285093], [-75.38775886501976, 40.63137607666122], [-75.38767510703109, 40.63150325398569], [-75.38765291325313, 40.63154510488866], [-75.3874656409378, 40.6319514522907], [-75.38740857456753, 40.63208826970969], [-75.38736579117484, 40.6322032383724], [-75.38731097051054, 40.63240437178723], [-75.38730171289129, 40.632464359728935], [-75.38730163778888, 40.63246484827407], [-75.38730028192926, 40.63258040475672], [-75.38730269542218, 40.63269267421491], [-75.38697443454092, 40.632263048202226], [-75.38675941600957, 40.632176630852705], [-75.3856851408389, 40.63169581450717], [-75.38542631555732, 40.63159966236537], [-75.38508764629924, 40.63157052706002], [-75.38470299136742, 40.63154286023315], [-75.38470294889227, 40.631542857564455], [-75.384702575014, 40.631542830114256], [-75.38448636775087, 40.631527278637996], [-75.38411770277236, 40.63150256590463], [-75.38386790704874, 40.631485821253655], [-75.38368441836761, 40.63147348307749], [-75.38325214829531, 40.63144441573489], [-75.3824371262406, 40.631381173594356], [-75.38213577738534, 40.631358096422545], [-75.38156905919539, 40.631314695714806], [-75.3809891978604, 40.6312518735926], [-75.38041239545461, 40.631204556640675], [-75.37983206785603, 40.631155018812], [-75.37982160781836, 40.631154144535344], [-75.37941072030654, 40.63111979935829], [-75.37925714345133, 40.63110558859511], [-75.37868042212817, 40.6310560331562], [-75.37867999993588, 40.6310560010943], [-75.37807382859843, 40.63101041105476]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 824, \"PRECINCTID\": \"041408-1\", \"NAME\": \"BETHLEHEM 14TH WARD 8TH DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"SPRING GARDEN SCHOOL (GYM)\", \"SiteAddress\": \"901 NORTH BLVD\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1045\", \"STATISTICS Ballots Cast - Total\": 881.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"84.31%\", \"Presidential Electors DEM Biden and Harris\": \"535\", \"Presidential Electors REP Trump and Pence\": \"329\", \"Presidential Electors LIB Jorgensen and Cohen\": \"9\", \"Presidential Electors Write-In Totals\": \"1\", \"Attorney General DEM Josh Shapiro\": \"515\", \"Attorney General REP Heather Heidelbaugh\": \"308\", \"Attorney General LIB Daniel Wassmer\": \"15\", \"Attorney General GRE Richard L Weiss\": \"10\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"490\", \"Auditor General REP Timothy Defoor\": \"325\", \"Auditor General LIB Jennifer Moore\": \"23\", \"Auditor General GRE Olivia Faison\": \"10\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"504\", \"State Treasurer REP Stacy L. Garrity\": \"311\", \"State Treasurer LIB Joe Soloski\": \"14\", \"State Treasurer GRE Timothy Runkle\": \"16\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"535\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"324\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"536\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"322\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 60.726447219069236, \"Presidential Electors Pct REP\": 37.3439273552781, \"Presidential Electors Pct LIB\": 1.0215664018161181, \"PA Attorney General Pct DEM\": 58.456299659477864, \"PA Attorney General Pct REP\": 34.96027241770715, \"PA Attorney General Pct LIB\": 1.70261066969353, \"PA Attorney General Pct GRE\": 1.1350737797956867, \"PA Auditor General Pct DEM\": 55.618615209988654, \"PA Auditor General Pct REP\": 36.88989784335982, \"PA Auditor General Pct LIB\": 2.6106696935300793, \"PA Auditor General Pct GRE\": 1.1350737797956867, \"PA State Treasurer Pct DEM\": 57.20771850170261, \"PA State Treasurer Pct REP\": 35.30079455164586, \"PA State Treasurer Pct LIB\": 1.5891032917139614, \"PA State Treasurer Pct GRE\": 1.8161180476730987, \"PA Representative in Congress 7th Congressional District Pct DEM\": 60.726447219069236, \"PA Representative in Congress 7th Congressional District Pct REP\": 36.776390465380246, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5180890101618367, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.34947065012447, 40.64291461068446], [-75.34984496767426, 40.642743802864985], [-75.34984534640132, 40.642743629629926], [-75.35037486852768, 40.64250188493541], [-75.35070274782834, 40.64235473053785], [-75.35128499751073, 40.64209299709649], [-75.35128524992632, 40.64209288340377], [-75.35159939221495, 40.64195179257082], [-75.35173008977618, 40.641893425209624], [-75.35243640861243, 40.64157799130503], [-75.35261216040934, 40.64150296970341], [-75.35297632425959, 40.64134751919321], [-75.35327074498555, 40.64122858410782], [-75.35355252899845, 40.64111450042673], [-75.35355259380903, 40.64111447383942], [-75.35374804702342, 40.64103534178082], [-75.35388606064798, 40.64098104665294], [-75.35424849160995, 40.64083593008831], [-75.3542810026668, 40.64082291227959], [-75.35483419676629, 40.64059879886609], [-75.35497134193731, 40.640541773774494], [-75.35507385372182, 40.64049914970386], [-75.35537478007677, 40.640374422330915], [-75.35590252074292, 40.6401562995473], [-75.35645227280891, 40.63992730309764], [-75.35693249845392, 40.639732130921594], [-75.35693260884119, 40.63973208635492], [-75.3569917617739, 40.639708045153064], [-75.35718635939986, 40.63963354733603], [-75.35737122122917, 40.63957164885337], [-75.35737153363834, 40.639571543593256], [-75.35738791772191, 40.639566057616136], [-75.35740018925038, 40.63956198400585], [-75.3575611838965, 40.63950853828422], [-75.35787363026289, 40.63940133571314], [-75.35810399736481, 40.639322294574534], [-75.35838331114219, 40.63922217068502], [-75.35861519646456, 40.639146161619685], [-75.35863099995143, 40.63914100042094], [-75.35863131651, 40.63914087812635], [-75.35918325390594, 40.63895129977964], [-75.3596196018478, 40.63880096739137], [-75.35973338299605, 40.63876176715116], [-75.35985340738391, 40.63871976048045], [-75.35985345647516, 40.63871974347521], [-75.36022886867877, 40.63858835355087], [-75.36072192552427, 40.63841812197257], [-75.36075984939143, 40.63840503289799], [-75.36085880526824, 40.639022645105854], [-75.36085910327483, 40.63902450976719], [-75.36100326384887, 40.63992423388014], [-75.36102442907254, 40.64006410942392], [-75.36138717052147, 40.64017764639947], [-75.3640150506939, 40.641089949836655], [-75.36462179544472, 40.64130236367318], [-75.36492177111332, 40.64140737967645], [-75.36492209003863, 40.641407490741344], [-75.36470745392869, 40.641767590460496], [-75.36464916110431, 40.641861210195465], [-75.36382719006521, 40.643209854565576], [-75.36369088561744, 40.64343730875993], [-75.36321794144455, 40.644226503435554], [-75.36264548180706, 40.644028594098245], [-75.36252197032323, 40.64398797891165], [-75.36252191305252, 40.643987959714416], [-75.3624895876185, 40.643977330144075], [-75.36247428619099, 40.643973656482046], [-75.36242078046136, 40.64396081047425], [-75.36236632657632, 40.64395068628774], [-75.36234915596904, 40.64394749391303], [-75.36229620981737, 40.64393974123755], [-75.36226936260111, 40.64393580988717], [-75.36218398625677, 40.64392907463872], [-75.36211023195108, 40.64392498050418], [-75.36204259884033, 40.643926161861856], [-75.36197038936628, 40.6439313875381], [-75.36195676279645, 40.64393237343163], [-75.36192826194544, 40.64393597622581], [-75.36186804422894, 40.64394358849423], [-75.36180803778193, 40.643952611358465], [-75.36179827808856, 40.64395407869913], [-75.36169106747401, 40.643981359982426], [-75.36169096484528, 40.64398138579503], [-75.36170655246983, 40.64406418795658], [-75.36177739855131, 40.644440529118164], [-75.36177692124505, 40.644440581444364], [-75.36141568983355, 40.64447993153566], [-75.36124813429045, 40.644498183462915], [-75.36107433007352, 40.64451361453377], [-75.36107416039843, 40.6445136299552], [-75.36070297574776, 40.64454658455684], [-75.36015952122621, 40.6445977641201], [-75.35960598661457, 40.64465353856995], [-75.35902893508835, 40.64471174234792], [-75.3587835007633, 40.64473795880719], [-75.35847075666715, 40.64477136328341], [-75.35788304763729, 40.644825051510274], [-75.35777084673651, 40.64483589866888], [-75.35777055951256, 40.64483592697448], [-75.35776988540525, 40.644835992339374], [-75.35731692997517, 40.644879782465146], [-75.35711321289536, 40.64490192422946], [-75.35674966363226, 40.64494143815681], [-75.3562071059699, 40.644994641214026], [-75.35616299982959, 40.644998999579585], [-75.35559204271699, 40.645054996967886], [-75.35559199994601, 40.64505500239051], [-75.35502180592768, 40.64512404851154], [-75.35492496887989, 40.64513346267485], [-75.3544583851358, 40.64517882132795], [-75.35378198555892, 40.645242669156055], [-75.35378203418983, 40.64524299718157], [-75.35382926439189, 40.64555985341509], [-75.35386656125179, 40.64583033676117], [-75.35387366779332, 40.64588186906934], [-75.35357239129114, 40.645905921164655], [-75.35334945361295, 40.64592371856449], [-75.35277733984258, 40.645969294806655], [-75.35220793625493, 40.64601466575153], [-75.35212050398594, 40.64602161905572], [-75.35170360928876, 40.646054773334406], [-75.35118481542521, 40.64609621084186], [-75.35067506539907, 40.64613671614872], [-75.35058823724223, 40.645513832198226], [-75.35057636505051, 40.64539190869152], [-75.35054024442756, 40.64510855849634], [-75.3505207370874, 40.644955532483735], [-75.35033608889735, 40.644548491750655], [-75.3499950981707, 40.64382526736979], [-75.34996420099789, 40.64376340267107], [-75.34974108337829, 40.64331664960259], [-75.3495296325462, 40.6430022963594], [-75.34947093197796, 40.64291503092839], [-75.34947065012447, 40.64291461068446]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 825, \"PRECINCTID\": \"041404-1\", \"NAME\": \"BETHLEHEM 14TH WARD 4TH DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"SPRING GARDEN SCHOOL (GYM)\", \"SiteAddress\": \"901 NORTH BLVD\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1304\", \"STATISTICS Ballots Cast - Total\": 963.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"73.85%\", \"Presidential Electors DEM Biden and Harris\": \"623\", \"Presidential Electors REP Trump and Pence\": \"318\", \"Presidential Electors LIB Jorgensen and Cohen\": \"14\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"586\", \"Attorney General REP Heather Heidelbaugh\": \"298\", \"Attorney General LIB Daniel Wassmer\": \"26\", \"Attorney General GRE Richard L Weiss\": \"13\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"566\", \"Auditor General REP Timothy Defoor\": \"304\", \"Auditor General LIB Jennifer Moore\": \"33\", \"Auditor General GRE Olivia Faison\": \"14\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"579\", \"State Treasurer REP Stacy L. Garrity\": \"303\", \"State Treasurer LIB Joe Soloski\": \"24\", \"State Treasurer GRE Timothy Runkle\": \"12\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"601\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"331\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"619\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"315\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 64.69366562824507, \"Presidential Electors Pct REP\": 33.021806853582554, \"Presidential Electors Pct LIB\": 1.453790238836968, \"PA Attorney General Pct DEM\": 60.8515057113188, \"PA Attorney General Pct REP\": 30.944963655244027, \"PA Attorney General Pct LIB\": 2.699896157840083, \"PA Attorney General Pct GRE\": 1.3499480789200415, \"PA Auditor General Pct DEM\": 58.77466251298027, \"PA Auditor General Pct REP\": 31.568016614745588, \"PA Auditor General Pct LIB\": 3.4267912772585665, \"PA Auditor General Pct GRE\": 1.453790238836968, \"PA State Treasurer Pct DEM\": 60.12461059190031, \"PA State Treasurer Pct REP\": 31.464174454828658, \"PA State Treasurer Pct LIB\": 2.4922118380062304, \"PA State Treasurer Pct GRE\": 1.2461059190031152, \"PA Representative in Congress 7th Congressional District Pct DEM\": 62.40913811007269, \"PA Representative in Congress 7th Congressional District Pct REP\": 34.3717549325026, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5663106887467068, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3498923413874, 40.653219678531755], [-75.3498640231568, 40.65280094448036], [-75.34986580134222, 40.65275112651206], [-75.34986490921246, 40.65269101924147], [-75.34986474200024, 40.65267979710139], [-75.34986652021406, 40.65262997823138], [-75.34987470704336, 40.65256740313423], [-75.349875196809, 40.652563656598296], [-75.34988917388871, 40.65252374324189], [-75.34988924769478, 40.652523531261004], [-75.34991213385554, 40.65248839415053], [-75.3499492094103, 40.65243450166862], [-75.34997264303951, 40.65240457126546], [-75.35012264368156, 40.652212979988384], [-75.35012486458992, 40.65221014314516], [-75.350128318404, 40.65220570483366], [-75.35071306038884, 40.65145436761037], [-75.35091269089375, 40.65119785622597], [-75.35098072018846, 40.65110137523515], [-75.35099528435966, 40.651080719434916], [-75.35113231560922, 40.650903013160345], [-75.3511933920629, 40.650807913360815], [-75.35122135828216, 40.650756663457685], [-75.35124449702772, 40.65071440895338], [-75.35126220127671, 40.65067290052919], [-75.3512781990436, 40.6506286964871], [-75.3512940424577, 40.650563551859285], [-75.35130466901494, 40.65050024788548], [-75.35130663194205, 40.650488558123996], [-75.35130678208186, 40.650433814654036], [-75.35130588614028, 40.65042620348418], [-75.35130055735144, 40.6503809140028], [-75.35128034264717, 40.65024739494188], [-75.35127575626699, 40.65021710518466], [-75.35123500410526, 40.649995132366634], [-75.35123498512286, 40.64999500134596], [-75.3512079891513, 40.64981315195861], [-75.35120756859216, 40.64981031899126], [-75.3512071537438, 40.649807524879996], [-75.3512068398389, 40.64980541572602], [-75.35111074183474, 40.649158065905766], [-75.35103739513261, 40.64866237365776], [-75.35097659884559, 40.6482495654408], [-75.35097659310298, 40.64824952748486], [-75.35097656081851, 40.64824930519973], [-75.35097282267422, 40.64822392475624], [-75.35085452173765, 40.647422077493715], [-75.35070691663915, 40.64636485913521], [-75.35067510405965, 40.646136991718194], [-75.35067506539907, 40.64613671614872], [-75.35118481542521, 40.64609621084186], [-75.35170360928876, 40.646054773334406], [-75.35212050398594, 40.64602161905572], [-75.35220793625493, 40.64601466575153], [-75.35277733984258, 40.645969294806655], [-75.35334945361295, 40.64592371856449], [-75.35357239129114, 40.645905921164655], [-75.35387366779332, 40.64588186906934], [-75.35386656125179, 40.64583033676117], [-75.35382926439189, 40.64555985341509], [-75.35378203418983, 40.64524299718157], [-75.35378198555892, 40.645242669156055], [-75.3544583851358, 40.64517882132795], [-75.35492496887989, 40.64513346267485], [-75.35502180592768, 40.64512404851154], [-75.35559199994601, 40.64505500239051], [-75.35559204271699, 40.645054996967886], [-75.35616299982959, 40.644998999579585], [-75.3562071059699, 40.644994641214026], [-75.35674966363226, 40.64494143815681], [-75.35711321289536, 40.64490192422946], [-75.35731692997517, 40.644879782465146], [-75.35776988540525, 40.644835992339374], [-75.35777055951256, 40.64483592697448], [-75.35777084673651, 40.64483589866888], [-75.35788304763729, 40.644825051510274], [-75.35847075666715, 40.64477136328341], [-75.3587835007633, 40.64473795880719], [-75.35902893508835, 40.64471174234792], [-75.35960598661457, 40.64465353856995], [-75.36015952122621, 40.6445977641201], [-75.36070297574776, 40.64454658455684], [-75.36107416039843, 40.6445136299552], [-75.36107433007352, 40.64451361453377], [-75.36124813429045, 40.644498183462915], [-75.36141568983355, 40.64447993153566], [-75.36177692124505, 40.644440581444364], [-75.36177739855131, 40.644440529118164], [-75.36170655246983, 40.64406418795658], [-75.36169096484528, 40.64398138579503], [-75.36169106747401, 40.643981359982426], [-75.36179827808856, 40.64395407869913], [-75.36180803778193, 40.643952611358465], [-75.36186804422894, 40.64394358849423], [-75.36192826194544, 40.64393597622581], [-75.36195676279645, 40.64393237343163], [-75.36197038936628, 40.6439313875381], [-75.36204259884033, 40.643926161861856], [-75.36211023195108, 40.64392498050418], [-75.36218398625677, 40.64392907463872], [-75.36226936260111, 40.64393580988717], [-75.36229620981737, 40.64393974123755], [-75.36234915596904, 40.64394749391303], [-75.36236632657632, 40.64395068628774], [-75.36242078046136, 40.64396081047425], [-75.36247428619099, 40.643973656482046], [-75.3624895876185, 40.643977330144075], [-75.36252191305252, 40.643987959714416], [-75.36252197032323, 40.64398797891165], [-75.36264548180706, 40.644028594098245], [-75.36321794144455, 40.644226503435554], [-75.36321770389156, 40.64422689853449], [-75.36290469322047, 40.644749064544214], [-75.36245198039366, 40.645493572143145], [-75.3620716652095, 40.64610253314694], [-75.3618916705687, 40.64640022230009], [-75.36176526990279, 40.64660927160524], [-75.36141367528285, 40.64721105940832], [-75.36129698949429, 40.64741077530608], [-75.36081098194016, 40.64822890060257], [-75.36062859276579, 40.648532312261594], [-75.36021133416209, 40.64922642549476], [-75.35974760090025, 40.64998647920111], [-75.35911127403773, 40.65102938176448], [-75.35904009561155, 40.65114603698298], [-75.35903877172638, 40.651148207822544], [-75.35891259928333, 40.65135499224711], [-75.35889606415458, 40.651383443284466], [-75.35878683204298, 40.65157138196628], [-75.35834979959108, 40.652303240345034], [-75.3582578579079, 40.65245545685776], [-75.35817360545911, 40.65260691035109], [-75.35809801495552, 40.65274279333905], [-75.35793058076248, 40.6530225001729], [-75.35761695317294, 40.65354642083148], [-75.35735980377031, 40.65398448863568], [-75.3570512286206, 40.65449983754191], [-75.35705111246588, 40.65449981082053], [-75.35496724931008, 40.65401994889457], [-75.35394538808457, 40.65378456747311], [-75.35345835242781, 40.65367667970948], [-75.35345810948611, 40.653676626039605], [-75.35345761775686, 40.65367651677723], [-75.35285167313519, 40.65354228490893], [-75.35208163190399, 40.65337344728252], [-75.35158575139624, 40.65326477308072], [-75.3514162318009, 40.65322762140582], [-75.35127491567685, 40.6531968952835], [-75.35124068717289, 40.653192915020696], [-75.35110706092775, 40.653177376310545], [-75.35109033663075, 40.65317640861715], [-75.3510216097696, 40.653172432389574], [-75.35093784558144, 40.653170698923255], [-75.35080604378945, 40.653176466524954], [-75.3498923413874, 40.653219678531755]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 826, \"PRECINCTID\": \"041405-1\", \"NAME\": \"BETHLEHEM 14TH WARD 5TH DIST\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"GOVERNOR WOLF ELEMENTARY SCHOOL\", \"SiteAddress\": \"1920 BUTZTOWN RD\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1672\", \"STATISTICS Ballots Cast - Total\": 1321.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"79.01%\", \"Presidential Electors DEM Biden and Harris\": \"752\", \"Presidential Electors REP Trump and Pence\": \"548\", \"Presidential Electors LIB Jorgensen and Cohen\": \"12\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"755\", \"Attorney General REP Heather Heidelbaugh\": \"493\", \"Attorney General LIB Daniel Wassmer\": \"17\", \"Attorney General GRE Richard L Weiss\": \"17\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"701\", \"Auditor General REP Timothy Defoor\": \"523\", \"Auditor General LIB Jennifer Moore\": \"36\", \"Auditor General GRE Olivia Faison\": \"11\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"726\", \"State Treasurer REP Stacy L. Garrity\": \"505\", \"State Treasurer LIB Joe Soloski\": \"25\", \"State Treasurer GRE Timothy Runkle\": \"12\", \"State Treasurer Write-In Totals\": \"4\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"761\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"534\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"774\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"517\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 56.926570779712335, \"Presidential Electors Pct REP\": 41.48372445117335, \"Presidential Electors Pct LIB\": 0.9084027252081757, \"PA Attorney General Pct DEM\": 57.15367146101439, \"PA Attorney General Pct REP\": 37.32021196063588, \"PA Attorney General Pct LIB\": 1.2869038607115821, \"PA Attorney General Pct GRE\": 1.2869038607115821, \"PA Auditor General Pct DEM\": 53.065859197577595, \"PA Auditor General Pct REP\": 39.59121877365632, \"PA Auditor General Pct LIB\": 2.7252081756245268, \"PA Auditor General Pct GRE\": 0.8327024981074944, \"PA State Treasurer Pct DEM\": 54.958364875094624, \"PA State Treasurer Pct REP\": 38.22861468584406, \"PA State Treasurer Pct LIB\": 1.8925056775170326, \"PA State Treasurer Pct GRE\": 0.9084027252081757, \"PA Representative in Congress 7th Congressional District Pct DEM\": 57.607872823618465, \"PA Representative in Congress 7th Congressional District Pct REP\": 40.42392127176381, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.7768394806172375, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.33758811103591, 40.653318585540624], [-75.33693913678037, 40.652669074329154], [-75.33670647774986, 40.65243621792454], [-75.3367061911546, 40.652435930881985], [-75.3364908085325, 40.652220363997856], [-75.33640655153343, 40.652136034584295], [-75.33639521430983, 40.65212468701396], [-75.33644729256012, 40.652068441667886], [-75.33816191946539, 40.650216543148396], [-75.33819130953569, 40.65018480024318], [-75.33822191533888, 40.650151743008436], [-75.33823455610468, 40.6501380891306], [-75.33872058405444, 40.64961312570045], [-75.33872339780247, 40.64961009509492], [-75.33909229933228, 40.649326015627295], [-75.33941620488348, 40.64909025431698], [-75.34110200372224, 40.647873761274546], [-75.34155069944973, 40.64754996476401], [-75.3421954990493, 40.647084644666684], [-75.34247504333212, 40.64687901705001], [-75.34269005994014, 40.646708634513814], [-75.34287297092516, 40.64656369341538], [-75.34310762126648, 40.64637841272884], [-75.34316010774582, 40.646335592557364], [-75.34366479142545, 40.64592384780467], [-75.34462921796502, 40.6452535526212], [-75.34470988703752, 40.64517352811004], [-75.34477777021945, 40.64509344993814], [-75.34477858180206, 40.64509231905207], [-75.34477887169149, 40.64509215029587], [-75.3451752425293, 40.64486225638503], [-75.34593133564431, 40.6444852768529], [-75.34640474721064, 40.644276108814815], [-75.34640499833215, 40.64427599870907], [-75.34641155343554, 40.644273104967326], [-75.34641356506054, 40.64427221606853], [-75.34723800472256, 40.643908273232114], [-75.34775894312504, 40.64368188445912], [-75.34807196194163, 40.64354585162182], [-75.34829088891537, 40.643446816251355], [-75.34894488285919, 40.64315196706602], [-75.34947065012447, 40.64291461068446], [-75.34947093197796, 40.64291503092839], [-75.3495296325462, 40.6430022963594], [-75.34974108337829, 40.64331664960259], [-75.34996420099789, 40.64376340267107], [-75.3499950981707, 40.64382526736979], [-75.35033608889735, 40.644548491750655], [-75.3505207370874, 40.644955532483735], [-75.35054024442756, 40.64510855849634], [-75.35057636505051, 40.64539190869152], [-75.35058823724223, 40.645513832198226], [-75.35067506539907, 40.64613671614872], [-75.35067510405965, 40.646136991718194], [-75.35070691663915, 40.64636485913521], [-75.35085452173765, 40.647422077493715], [-75.35097282267422, 40.64822392475624], [-75.35097656081851, 40.64824930519973], [-75.35097659310298, 40.64824952748486], [-75.35097659884559, 40.6482495654408], [-75.35103739513261, 40.64866237365776], [-75.35111074183474, 40.649158065905766], [-75.3512068398389, 40.64980541572602], [-75.3512071537438, 40.649807524879996], [-75.35120756859216, 40.64981031899126], [-75.3512079891513, 40.64981315195861], [-75.35123498512286, 40.64999500134596], [-75.35123500410526, 40.649995132366634], [-75.35127575626699, 40.65021710518466], [-75.35128034264717, 40.65024739494188], [-75.35130055735144, 40.6503809140028], [-75.35130588614028, 40.65042620348418], [-75.35130678208186, 40.650433814654036], [-75.35130663194205, 40.650488558123996], [-75.35130466901494, 40.65050024788548], [-75.3512940424577, 40.650563551859285], [-75.3512781990436, 40.6506286964871], [-75.35126220127671, 40.65067290052919], [-75.35124449702772, 40.65071440895338], [-75.35122135828216, 40.650756663457685], [-75.3511933920629, 40.650807913360815], [-75.35113231560922, 40.650903013160345], [-75.35099528435966, 40.651080719434916], [-75.35098072018846, 40.65110137523515], [-75.35091269089375, 40.65119785622597], [-75.35071306038884, 40.65145436761037], [-75.350128318404, 40.65220570483366], [-75.35012486458992, 40.65221014314516], [-75.35012264368156, 40.652212979988384], [-75.34997264303951, 40.65240457126546], [-75.3499492094103, 40.65243450166862], [-75.34991213385554, 40.65248839415053], [-75.34988924769478, 40.652523531261004], [-75.34988917388871, 40.65252374324189], [-75.349875196809, 40.652563656598296], [-75.34987470704336, 40.65256740313423], [-75.34986652021406, 40.65262997823138], [-75.34986474200024, 40.65267979710139], [-75.34986490921246, 40.65269101924147], [-75.34986580134222, 40.65275112651206], [-75.3498640231568, 40.65280094448036], [-75.3498923413874, 40.653219678531755], [-75.34989197994801, 40.653219697174045], [-75.34918205194661, 40.6532562865621], [-75.34899204268754, 40.65326607893283], [-75.34868161229791, 40.65327638194582], [-75.34801889825407, 40.65330250373886], [-75.34745585648106, 40.65332469393315], [-75.34649081427507, 40.65336672961061], [-75.34643988678827, 40.65336987992533], [-75.34620716311653, 40.65338427479099], [-75.3461358482025, 40.65338734365738], [-75.34613580580256, 40.65338700764987], [-75.34611331136757, 40.65338792855447], [-75.345986986686, 40.65339120702751], [-75.34322656044864, 40.65350580536021], [-75.34326646685378, 40.65377779790502], [-75.34328017972565, 40.65387126544525], [-75.3432955417657, 40.65393316604086], [-75.34329554904087, 40.65393319411926], [-75.34329987336984, 40.653950618688135], [-75.3432999539751, 40.653950812249676], [-75.34330000049556, 40.653950999698274], [-75.34330038400583, 40.653951851787674], [-75.34332476406567, 40.65401068740877], [-75.3433480934182, 40.654057767208045], [-75.3433499831904, 40.65406158114015], [-75.34341237452854, 40.654131609250605], [-75.34342101488136, 40.65414111185925], [-75.34344879790156, 40.65417166640211], [-75.3435044022472, 40.65422539442547], [-75.34350510537267, 40.65422607477407], [-75.34350542780912, 40.65422638596587], [-75.34387985656986, 40.65449330240508], [-75.34400289777174, 40.65458132196642], [-75.34421918414155, 40.65474581913246], [-75.34421930848185, 40.654745914503756], [-75.34438635964732, 40.654872965084685], [-75.34445112625424, 40.654931470937974], [-75.34452257222789, 40.65499601072276], [-75.34458120025232, 40.655070508613626], [-75.34459978158198, 40.655093513518494], [-75.3445998053417, 40.65509354374063], [-75.34462349419239, 40.65512287160756], [-75.34464717537286, 40.65516081354821], [-75.34466185717712, 40.655184334816916], [-75.34466423682053, 40.65519009848846], [-75.34468093542087, 40.655230552245015], [-75.34469209675207, 40.65526608219954], [-75.34469469225968, 40.65527434309078], [-75.34469992444298, 40.65530757079014], [-75.34470644419608, 40.65534898359477], [-75.34471729545265, 40.6554236054085], [-75.3447188094835, 40.65548207255855], [-75.34471510805236, 40.65554040807485], [-75.34471467695019, 40.65554720169327], [-75.34471424269708, 40.655552826801845], [-75.34471132042093, 40.65559063746407], [-75.34470210873589, 40.65564656590665], [-75.34470201037539, 40.655647000793834], [-75.3446881910612, 40.65570805965435], [-75.34466403733185, 40.65577852281262], [-75.34464802787426, 40.655822896929195], [-75.34462437096373, 40.655879469772756], [-75.34418599817664, 40.65649249027134], [-75.34383328990079, 40.65697848714728], [-75.34373982604141, 40.65711755606507], [-75.34373978602488, 40.65711761649447], [-75.34366857615859, 40.6572235722727], [-75.34360599304216, 40.657317998307036], [-75.34360568793022, 40.65731845863086], [-75.34353892959751, 40.657420730234584], [-75.34346719954554, 40.657542689180964], [-75.34338535973734, 40.657681835157646], [-75.34333297567346, 40.657785434747126], [-75.34331123508643, 40.65783878592124], [-75.34330835773035, 40.65786203111303], [-75.34330362701158, 40.657900238420815], [-75.34329897892036, 40.657954545308726], [-75.34329901265794, 40.65795485861523], [-75.34330507525863, 40.658010877007904], [-75.34347518471598, 40.658647679732425], [-75.34347492537823, 40.65864772029419], [-75.3431533950215, 40.65869754805996], [-75.34250685058404, 40.65879983395164], [-75.34250663051183, 40.658799868119566], [-75.34234021444205, 40.65882619538074], [-75.34167030933497, 40.658932122961936], [-75.34085708472986, 40.659060707728266], [-75.3402896757729, 40.659152540466316], [-75.34024159515937, 40.659030411093255], [-75.34018759607244, 40.65889521838985], [-75.34001411621477, 40.65846088572924], [-75.3399462145868, 40.65829309009793], [-75.33984870203737, 40.65804607767418], [-75.33976930053898, 40.657847065059975], [-75.3397345494377, 40.657760362282374], [-75.33970808653193, 40.657693910693936], [-75.33964687899972, 40.657540583449254], [-75.3396296019588, 40.657494488193045], [-75.33958322772897, 40.65737999828428], [-75.3395644770476, 40.65732469057141], [-75.33953390430165, 40.65724716990693], [-75.33952227776565, 40.657219469238086], [-75.3395050685363, 40.65717148711451], [-75.33946377016991, 40.657066284484344], [-75.33944135340636, 40.657012702282586], [-75.33941335095662, 40.656938924137066], [-75.33940011981753, 40.656905698300605], [-75.33938027313334, 40.656855859542624], [-75.33936998596442, 40.65682993621939], [-75.3393480315649, 40.65677461409168], [-75.3393364728352, 40.65674502655565], [-75.33931919621132, 40.65669893124452], [-75.33927796607539, 40.65659184169099], [-75.33925561416963, 40.656536459022234], [-75.339225042138, 40.656458938261956], [-75.3391836155404, 40.656357336364515], [-75.3391598526377, 40.65629281279027], [-75.33915567217407, 40.65628146390677], [-75.33913597328812, 40.65622797508186], [-75.33904359310709, 40.65598879084512], [-75.33900642156232, 40.6558942285728], [-75.33897579784984, 40.655818165179205], [-75.33890993657006, 40.6556438896617], [-75.33889684428722, 40.65560680544639], [-75.3388422742218, 40.655469576632846], [-75.33877467681992, 40.65529346223177], [-75.33873091726586, 40.65518217573509], [-75.33866894388501, 40.65502456797513], [-75.33858799405574, 40.65481865731944], [-75.33853857300207, 40.65468865780706], [-75.33849904829023, 40.654584350145974], [-75.33843612817954, 40.65441989111662], [-75.33841416497248, 40.6543624830177], [-75.33829981291716, 40.65405754028764], [-75.33825164811917, 40.65394284033752], [-75.33807260907604, 40.65377440219957], [-75.33794433947762, 40.653653726495], [-75.33758811103591, 40.653318585540624]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 827, \"PRECINCTID\": \"041406-1\", \"NAME\": \"BETHLEHEM 14TH WARD 6TH DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-1-04\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"EAST HILLS MIDDLE SCHOOL\", \"SiteAddress\": \"2005 CHESTER AVE\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"2417\", \"STATISTICS Ballots Cast - Total\": 1731.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"71.62%\", \"Presidential Electors DEM Biden and Harris\": \"1107\", \"Presidential Electors REP Trump and Pence\": \"600\", \"Presidential Electors LIB Jorgensen and Cohen\": \"12\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"1089\", \"Attorney General REP Heather Heidelbaugh\": \"537\", \"Attorney General LIB Daniel Wassmer\": \"28\", \"Attorney General GRE Richard L Weiss\": \"21\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"1039\", \"Auditor General REP Timothy Defoor\": \"576\", \"Auditor General LIB Jennifer Moore\": \"39\", \"Auditor General GRE Olivia Faison\": \"16\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"1064\", \"State Treasurer REP Stacy L. Garrity\": \"559\", \"State Treasurer LIB Joe Soloski\": \"30\", \"State Treasurer GRE Timothy Runkle\": \"13\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"1107\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"581\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"1124\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"554\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"2\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 63.951473136915084, \"Presidential Electors Pct REP\": 34.66204506065858, \"Presidential Electors Pct LIB\": 0.6932409012131715, \"PA Attorney General Pct DEM\": 62.911611785095324, \"PA Attorney General Pct REP\": 31.022530329289427, \"PA Attorney General Pct LIB\": 1.6175621028307337, \"PA Attorney General Pct GRE\": 1.2131715771230502, \"PA Auditor General Pct DEM\": 60.02310803004044, \"PA Auditor General Pct REP\": 33.27556325823224, \"PA Auditor General Pct LIB\": 2.2530329289428077, \"PA Auditor General Pct GRE\": 0.924321201617562, \"PA State Treasurer Pct DEM\": 61.467359907567875, \"PA State Treasurer Pct REP\": 32.29347198151358, \"PA State Treasurer Pct LIB\": 1.733102253032929, \"PA State Treasurer Pct GRE\": 0.7510109763142693, \"PA Representative in Congress 7th Congressional District Pct DEM\": 63.951473136915084, \"PA Representative in Congress 7th Congressional District Pct REP\": 33.56441363373772, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 1.0179478735415883, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3402896757729, 40.659152540466316], [-75.34085708472986, 40.659060707728266], [-75.34167030933497, 40.658932122961936], [-75.34234021444205, 40.65882619538074], [-75.34250663051183, 40.658799868119566], [-75.34250685058404, 40.65879983395164], [-75.3431533950215, 40.65869754805996], [-75.34347492537823, 40.65864772029419], [-75.34347518471598, 40.658647679732425], [-75.34330507525863, 40.658010877007904], [-75.34329901265794, 40.65795485861523], [-75.34329897892036, 40.657954545308726], [-75.34330362701158, 40.657900238420815], [-75.34330835773035, 40.65786203111303], [-75.34331123508643, 40.65783878592124], [-75.34333297567346, 40.657785434747126], [-75.34338535973734, 40.657681835157646], [-75.34346719954554, 40.657542689180964], [-75.34353892959751, 40.657420730234584], [-75.34360568793022, 40.65731845863086], [-75.34360599304216, 40.657317998307036], [-75.34366857615859, 40.6572235722727], [-75.34373978602488, 40.65711761649447], [-75.34373982604141, 40.65711755606507], [-75.34383328990079, 40.65697848714728], [-75.34418599817664, 40.65649249027134], [-75.34462437096373, 40.655879469772756], [-75.34464802787426, 40.655822896929195], [-75.34466403733185, 40.65577852281262], [-75.3446881910612, 40.65570805965435], [-75.34470201037539, 40.655647000793834], [-75.34470210873589, 40.65564656590665], [-75.34471132042093, 40.65559063746407], [-75.34471424269708, 40.655552826801845], [-75.34471467695019, 40.65554720169327], [-75.34471510805236, 40.65554040807485], [-75.3447188094835, 40.65548207255855], [-75.34471729545265, 40.6554236054085], [-75.34470644419608, 40.65534898359477], [-75.34469992444298, 40.65530757079014], [-75.34469469225968, 40.65527434309078], [-75.34469209675207, 40.65526608219954], [-75.34468093542087, 40.655230552245015], [-75.34466423682053, 40.65519009848846], [-75.34466185717712, 40.655184334816916], [-75.34464717537286, 40.65516081354821], [-75.34462349419239, 40.65512287160756], [-75.3445998053417, 40.65509354374063], [-75.34459978158198, 40.655093513518494], [-75.34458120025232, 40.655070508613626], [-75.34452257222789, 40.65499601072276], [-75.34445112625424, 40.654931470937974], [-75.34438635964732, 40.654872965084685], [-75.34421930848185, 40.654745914503756], [-75.34421918414155, 40.65474581913246], [-75.34400289777174, 40.65458132196642], [-75.34387985656986, 40.65449330240508], [-75.34350542780912, 40.65422638596587], [-75.34350510537267, 40.65422607477407], [-75.3435044022472, 40.65422539442547], [-75.34344879790156, 40.65417166640211], [-75.34342101488136, 40.65414111185925], [-75.34341237452854, 40.654131609250605], [-75.3433499831904, 40.65406158114015], [-75.3433480934182, 40.654057767208045], [-75.34332476406567, 40.65401068740877], [-75.34330038400583, 40.653951851787674], [-75.34330000049556, 40.653950999698274], [-75.3432999539751, 40.653950812249676], [-75.34329987336984, 40.653950618688135], [-75.34329554904087, 40.65393319411926], [-75.3432955417657, 40.65393316604086], [-75.34328017972565, 40.65387126544525], [-75.34326646685378, 40.65377779790502], [-75.34322656044864, 40.65350580536021], [-75.345986986686, 40.65339120702751], [-75.34611331136757, 40.65338792855447], [-75.34613580580256, 40.65338700764987], [-75.3461358482025, 40.65338734365738], [-75.34620716311653, 40.65338427479099], [-75.34643988678827, 40.65336987992533], [-75.34649081427507, 40.65336672961061], [-75.34745585648106, 40.65332469393315], [-75.34801889825407, 40.65330250373886], [-75.34868161229791, 40.65327638194582], [-75.34899204268754, 40.65326607893283], [-75.34918205194661, 40.6532562865621], [-75.34989197994801, 40.653219697174045], [-75.3498923413874, 40.653219678531755], [-75.35080604378945, 40.653176466524954], [-75.35093784558144, 40.653170698923255], [-75.3510216097696, 40.653172432389574], [-75.35109033663075, 40.65317640861715], [-75.35110706092775, 40.653177376310545], [-75.35124068717289, 40.653192915020696], [-75.35127491567685, 40.6531968952835], [-75.3514162318009, 40.65322762140582], [-75.35158575139624, 40.65326477308072], [-75.35208163190399, 40.65337344728252], [-75.35285167313519, 40.65354228490893], [-75.35345761775686, 40.65367651677723], [-75.35345810948611, 40.653676626039605], [-75.35345835242781, 40.65367667970948], [-75.35394538808457, 40.65378456747311], [-75.35496724931008, 40.65401994889457], [-75.35705111246588, 40.65449981082053], [-75.3570512286206, 40.65449983754191], [-75.35693317950657, 40.654676312643794], [-75.35586942784023, 40.656430945121755], [-75.35577768074116, 40.65658232865571], [-75.35573040273118, 40.656660865645776], [-75.35459442573344, 40.65856483846559], [-75.35343049614208, 40.66049250781085], [-75.35340603164056, 40.660532538947045], [-75.35315001341728, 40.66095145049036], [-75.35173520888938, 40.663288545445454], [-75.35166904661462, 40.66339647958777], [-75.3512279893016, 40.66411599597747], [-75.35122789760615, 40.664116145428004], [-75.35036882417143, 40.665554460191736], [-75.350207814945, 40.66581639606726], [-75.35020745191642, 40.66581698763782], [-75.34998215745141, 40.666183501761914], [-75.34932180814488, 40.66725699002614], [-75.34900018930982, 40.66777981122541], [-75.34899060417216, 40.667794505168175], [-75.34879924299712, 40.66808787203196], [-75.34836729061846, 40.66875006438105], [-75.34813209197847, 40.6686858220412], [-75.34706203110254, 40.66840605328685], [-75.34558033499343, 40.66799125312834], [-75.34556511970624, 40.66798699356434], [-75.3432369738165, 40.66734223375777], [-75.34294300059607, 40.667263148368065], [-75.34291912343708, 40.66725672489393], [-75.34264317246844, 40.66718248663602], [-75.34264264761735, 40.66717801367805], [-75.34263971822952, 40.66715306873719], [-75.34261815296301, 40.66689931231277], [-75.34248855591669, 40.666111942724186], [-75.34233160961523, 40.66515838960857], [-75.34180623980902, 40.66271127123695], [-75.34173852840732, 40.66231145345992], [-75.34171757403314, 40.662200102540105], [-75.3417175093502, 40.662199761564075], [-75.3416943628507, 40.662076753635496], [-75.34164765034286, 40.66182851917094], [-75.34134366680223, 40.66185901703727], [-75.34113758875176, 40.66132065843894], [-75.34105422556438, 40.66110620556565], [-75.34097497354755, 40.6609028215913], [-75.34089572201007, 40.660699437552985], [-75.34082161137349, 40.6605035393964], [-75.3407438980878, 40.66030756630888], [-75.3407180727586, 40.66024842272745], [-75.34071723653751, 40.66024660268411], [-75.34066796217682, 40.66011231746049], [-75.34058862221632, 40.659911419535604], [-75.34055386595959, 40.65982480166595], [-75.34050998801379, 40.65971602798552], [-75.34043001060458, 40.659507823119064], [-75.34032504229226, 40.65924237827022], [-75.34028970392625, 40.65915261312212], [-75.3402896757729, 40.659152540466316]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 831, \"PRECINCTID\": \"041501-1\", \"NAME\": \"BETHLEHEM 15TH WARD 1ST DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-11\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"NORTHEAST MIDDLE SCHOOL\", \"SiteAddress\": \"1170 FERNWOOD ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1432\", \"STATISTICS Ballots Cast - Total\": 1037.0, \"STATISTICS Ballots Cast - Blank\": \"2\", \"STATISTICS Voter Turnout - Total\": \"72.42%\", \"Presidential Electors DEM Biden and Harris\": \"639\", \"Presidential Electors REP Trump and Pence\": \"378\", \"Presidential Electors LIB Jorgensen and Cohen\": \"10\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"611\", \"Attorney General REP Heather Heidelbaugh\": \"353\", \"Attorney General LIB Daniel Wassmer\": \"14\", \"Attorney General GRE Richard L Weiss\": \"11\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"569\", \"Auditor General REP Timothy Defoor\": \"376\", \"Auditor General LIB Jennifer Moore\": \"21\", \"Auditor General GRE Olivia Faison\": \"15\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"582\", \"State Treasurer REP Stacy L. Garrity\": \"373\", \"State Treasurer LIB Joe Soloski\": \"17\", \"State Treasurer GRE Timothy Runkle\": \"17\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"627\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"377\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"630\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"363\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 61.620057859209254, \"Presidential Electors Pct REP\": 36.451301832208294, \"Presidential Electors Pct LIB\": 0.9643201542912248, \"PA Attorney General Pct DEM\": 58.919961427193826, \"PA Attorney General Pct REP\": 34.040501446480235, \"PA Attorney General Pct LIB\": 1.3500482160077145, \"PA Attorney General Pct GRE\": 1.0607521697203472, \"PA Auditor General Pct DEM\": 54.86981677917069, \"PA Auditor General Pct REP\": 36.25843780135005, \"PA Auditor General Pct LIB\": 2.0250723240115716, \"PA Auditor General Pct GRE\": 1.446480231436837, \"PA State Treasurer Pct DEM\": 56.123432979749275, \"PA State Treasurer Pct REP\": 35.96914175506269, \"PA State Treasurer Pct LIB\": 1.639344262295082, \"PA State Treasurer Pct GRE\": 1.639344262295082, \"PA Representative in Congress 7th Congressional District Pct DEM\": 60.46287367405979, \"PA Representative in Congress 7th Congressional District Pct REP\": 36.35486981677917, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.6098278133232969, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.35772418293917, 40.62952962161854], [-75.35813578635809, 40.629204834040706], [-75.35839294893542, 40.62900992377768], [-75.35839338521741, 40.62900959224755], [-75.358488582527, 40.62893743936582], [-75.35866877108658, 40.628800979373366], [-75.35894120883653, 40.62859465544671], [-75.35894136800508, 40.628594535309794], [-75.35896396650732, 40.628557147347024], [-75.35896406075622, 40.62855699073609], [-75.35896427049255, 40.62855664552061], [-75.35904858744276, 40.62841714913234], [-75.35939410256368, 40.627870244643205], [-75.35971306483977, 40.62736536184013], [-75.36035935578265, 40.6263937718541], [-75.36038278988015, 40.626376654536124], [-75.3606100252042, 40.62621067502909], [-75.36062520688787, 40.62613158594943], [-75.3606253826585, 40.6261306652667], [-75.36067304154643, 40.62588238054221], [-75.3606827451539, 40.62584843080924], [-75.3606997907184, 40.62578879870695], [-75.36070259552068, 40.62570983007971], [-75.36070410015637, 40.625667467296395], [-75.36070047067234, 40.62564598384734], [-75.36070040328065, 40.625645584266934], [-75.36070035347905, 40.62564528865092], [-75.36070032621603, 40.62564512412785], [-75.36061253415563, 40.6251254090341], [-75.36050848248739, 40.62446931682951], [-75.360485189496, 40.62432243916004], [-75.3603323197246, 40.62329969871633], [-75.36031812209453, 40.623227575668906], [-75.36029950157021, 40.623132980721046], [-75.36019386697716, 40.62235850230152], [-75.36014225136097, 40.62198006239173], [-75.35996842425276, 40.62091355496466], [-75.35967723531954, 40.61993883501766], [-75.35927508208883, 40.61917737127139], [-75.35892483717083, 40.61843557674271], [-75.35859844056299, 40.617672206790395], [-75.36077899985233, 40.6174430000733], [-75.3639799998332, 40.61711099994601], [-75.36420900018848, 40.617064000361516], [-75.36447400005568, 40.61701000023942], [-75.36448599972893, 40.61726099960062], [-75.36449299995313, 40.617406999686445], [-75.36449899964347, 40.617512999701255], [-75.36450600009276, 40.61767800034205], [-75.3645519994573, 40.618649000179055], [-75.3647030002845, 40.61864899996177], [-75.3646269995071, 40.61927700040924], [-75.36450199945148, 40.61933999959727], [-75.36448899948907, 40.61996799969496], [-75.36467700021, 40.61996799996325], [-75.3646890093638, 40.62050216972075], [-75.36453796644827, 40.62049960522258], [-75.36445200043389, 40.62205199996067], [-75.36378529646578, 40.6220390115674], [-75.36378968999071, 40.62218264080437], [-75.36379280577293, 40.622284494955686], [-75.36381167708251, 40.6225160828471], [-75.36381168595942, 40.622516199243954], [-75.3638474154418, 40.62295467542452], [-75.3638474450106, 40.622954975126845], [-75.36388307842316, 40.62332087136516], [-75.36389394232452, 40.62347195797629], [-75.36394160154026, 40.624134777175705], [-75.36397112375121, 40.62450106092954], [-75.36400041173086, 40.62486442365616], [-75.36409236353371, 40.62584610958464], [-75.36410889445472, 40.62602259423878], [-75.36412149023451, 40.62617481635382], [-75.36419340262924, 40.62704392030506], [-75.3642280581652, 40.62733698562774], [-75.36422800084456, 40.62733700156439], [-75.36414102921519, 40.62741697326375], [-75.36414142867282, 40.62741697878555], [-75.36464168521383, 40.62741123096848], [-75.36461881363611, 40.62805621737846], [-75.36462188813202, 40.62822333312777], [-75.3646298929438, 40.62865848272853], [-75.36460814318484, 40.62955130947188], [-75.36458555971797, 40.63046762920104], [-75.36509886420527, 40.63047570580382], [-75.3657725242057, 40.630484591156886], [-75.36611376863476, 40.630491611408566], [-75.36658868216993, 40.63051521022759], [-75.36662599985901, 40.630517000232054], [-75.3666264575164, 40.63051689883607], [-75.36669800035855, 40.630501000309614], [-75.36784075830323, 40.6304809849441], [-75.36789700020698, 40.63047999965117], [-75.36789830901569, 40.63047970403909], [-75.3679461884633, 40.63046887136244], [-75.36796040139419, 40.630454586352705], [-75.36803703197373, 40.63037704518936], [-75.36811291587343, 40.63042236792257], [-75.3684915662583, 40.63044173443317], [-75.36859899948728, 40.63045499960523], [-75.36860047512718, 40.630455235329855], [-75.36872027932854, 40.6304714049979], [-75.3691592646622, 40.63049175144429], [-75.36922834078563, 40.6305002920374], [-75.36935318509919, 40.63051160974653], [-75.36935645023783, 40.630342976077536], [-75.3694184548638, 40.63034768218275], [-75.3694759545863, 40.63035238129848], [-75.36996207988962, 40.63039008277959], [-75.36989586169939, 40.6304541960873], [-75.37012180366864, 40.630448005062824], [-75.37001836636738, 40.63052054396774], [-75.3700181529909, 40.63052069273527], [-75.36988199729905, 40.63061617525542], [-75.36936117695755, 40.63107502438608], [-75.368582291196, 40.631849409054915], [-75.36746120274991, 40.63292283455206], [-75.36741363554799, 40.63296940061162], [-75.36662576813349, 40.63374066379785], [-75.3664598138212, 40.63392302768963], [-75.36562995242211, 40.63476087326767], [-75.365489307647, 40.63467411205661], [-75.3654887915361, 40.634673793336226], [-75.36548876378234, 40.63467377564851], [-75.3651749401067, 40.63448018183021], [-75.36503342143943, 40.63439201920073], [-75.3647552930277, 40.634218752022136], [-75.36388220097807, 40.63370900765118], [-75.36365270890754, 40.633573144593655], [-75.3630279042683, 40.63320324612518], [-75.36215270953744, 40.63267731265922], [-75.36188555812139, 40.6325119444273], [-75.3617916757178, 40.63244381472033], [-75.3617204124462, 40.63239209850044], [-75.36098294227037, 40.63187062359329], [-75.36088267823254, 40.631799740877504], [-75.36026393777514, 40.631362309817064], [-75.35985123924199, 40.63106862591595], [-75.35981835028068, 40.631045256130065], [-75.3598179999013, 40.631045000259654], [-75.35940100057961, 40.63074899986564], [-75.35940065809062, 40.630748754967236], [-75.35940091910939, 40.63074856395913], [-75.35847561893738, 40.630087704315855], [-75.3577243361512, 40.629529735590175], [-75.35772418293917, 40.62952962161854]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 833, \"PRECINCTID\": \"041502-1\", \"NAME\": \"BETHLEHEM 15TH WARD 2ND DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-11\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BETHLEHEM SCHOOL DISTRICT EDUCATION CENTER\", \"SiteAddress\": \"1516 SYCAMORE ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1925\", \"STATISTICS Ballots Cast - Total\": 1487.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"77.25%\", \"Presidential Electors DEM Biden and Harris\": \"917\", \"Presidential Electors REP Trump and Pence\": \"547\", \"Presidential Electors LIB Jorgensen and Cohen\": \"17\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"909\", \"Attorney General REP Heather Heidelbaugh\": \"490\", \"Attorney General LIB Daniel Wassmer\": \"24\", \"Attorney General GRE Richard L Weiss\": \"13\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"844\", \"Auditor General REP Timothy Defoor\": \"523\", \"Auditor General LIB Jennifer Moore\": \"44\", \"Auditor General GRE Olivia Faison\": \"20\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"866\", \"State Treasurer REP Stacy L. Garrity\": \"507\", \"State Treasurer LIB Joe Soloski\": \"35\", \"State Treasurer GRE Timothy Runkle\": \"20\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"900\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"547\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"933\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"520\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 61.66778749159382, \"Presidential Electors Pct REP\": 36.785474108944186, \"Presidential Electors Pct LIB\": 1.1432414256893073, \"PA Attorney General Pct DEM\": 61.12979152656355, \"PA Attorney General Pct REP\": 32.95225285810356, \"PA Attorney General Pct LIB\": 1.6139878950907869, \"PA Attorney General Pct GRE\": 0.8742434431741762, \"PA Auditor General Pct DEM\": 56.758574310692666, \"PA Auditor General Pct REP\": 35.1714862138534, \"PA Auditor General Pct LIB\": 2.9589778076664426, \"PA Auditor General Pct GRE\": 1.3449899125756557, \"PA State Treasurer Pct DEM\": 58.238063214525894, \"PA State Treasurer Pct REP\": 34.095494283792874, \"PA State Treasurer Pct LIB\": 2.3537323470073974, \"PA State Treasurer Pct GRE\": 1.3449899125756557, \"PA Representative in Congress 7th Congressional District Pct DEM\": 60.5245460659045, \"PA Representative in Congress 7th Congressional District Pct REP\": 36.785474108944186, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.8744589762890479, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.35772418293917, 40.62952962161854], [-75.3577243361512, 40.629529735590175], [-75.35847561893738, 40.630087704315855], [-75.35940091910939, 40.63074856395913], [-75.35940065809062, 40.630748754967236], [-75.35940100057961, 40.63074899986564], [-75.3598179999013, 40.631045000259654], [-75.35981835028068, 40.631045256130065], [-75.35985123924199, 40.63106862591595], [-75.36026393777514, 40.631362309817064], [-75.36088267823254, 40.631799740877504], [-75.36098294227037, 40.63187062359329], [-75.3617204124462, 40.63239209850044], [-75.3617916757178, 40.63244381472033], [-75.36188555812139, 40.6325119444273], [-75.36215270953744, 40.63267731265922], [-75.3630279042683, 40.63320324612518], [-75.36365270890754, 40.633573144593655], [-75.36388220097807, 40.63370900765118], [-75.3647552930277, 40.634218752022136], [-75.36503342143943, 40.63439201920073], [-75.3651749401067, 40.63448018183021], [-75.36548876378234, 40.63467377564851], [-75.3654887915361, 40.634673793336226], [-75.365489307647, 40.63467411205661], [-75.36562995242211, 40.63476087326767], [-75.3656298888689, 40.6347609314183], [-75.36446401355671, 40.63582579620095], [-75.36373706367023, 40.636504683047676], [-75.36346716136033, 40.63678678409344], [-75.36324013928773, 40.63702406501255], [-75.36293449445792, 40.63733337592883], [-75.36270116773304, 40.637559997388344], [-75.36261633337728, 40.63763976795138], [-75.36261310850509, 40.637642365427844], [-75.36254954222126, 40.63769356747122], [-75.36252451373092, 40.63771162986475], [-75.36248480455059, 40.63774028688933], [-75.36244349549719, 40.63776767223106], [-75.36241651359359, 40.63778556012961], [-75.3623402217473, 40.637827751449066], [-75.36232043714834, 40.63783680851666], [-75.36226327592512, 40.637862978047], [-75.36219088635808, 40.637895145381634], [-75.36219083107179, 40.63789517036816], [-75.36219073854471, 40.637895211704134], [-75.36216897133491, 40.63790488374116], [-75.36214716723583, 40.637912996489625], [-75.36204660150112, 40.63795041552566], [-75.36192216083904, 40.6379954126336], [-75.3619221201169, 40.63799542710949], [-75.36182477751116, 40.63803062503197], [-75.36075984939143, 40.63840503289799], [-75.36072192552427, 40.63841812197257], [-75.36022886867877, 40.63858835355087], [-75.35985345647516, 40.63871974347521], [-75.35985340738391, 40.63871976048045], [-75.35973338299605, 40.63876176715116], [-75.3596196018478, 40.63880096739137], [-75.35918325390594, 40.63895129977964], [-75.35863131651, 40.63914087812635], [-75.35863099995143, 40.63914100042094], [-75.35861519646456, 40.639146161619685], [-75.35838331114219, 40.63922217068502], [-75.35810399736481, 40.639322294574534], [-75.35787363026289, 40.63940133571314], [-75.3575611838965, 40.63950853828422], [-75.35740018925038, 40.63956198400585], [-75.35738791772191, 40.639566057616136], [-75.35737153363834, 40.639571543593256], [-75.35737122122917, 40.63957164885337], [-75.35718635939986, 40.63963354733603], [-75.3569917617739, 40.639708045153064], [-75.35693260884119, 40.63973208635492], [-75.35693249845392, 40.639732130921594], [-75.35645227280891, 40.63992730309764], [-75.35590252074292, 40.6401562995473], [-75.35537478007677, 40.640374422330915], [-75.35507385372182, 40.64049914970386], [-75.35497134193731, 40.640541773774494], [-75.35483419676629, 40.64059879886609], [-75.3542810026668, 40.64082291227959], [-75.35424849160995, 40.64083593008831], [-75.35388606064798, 40.64098104665294], [-75.35374804702342, 40.64103534178082], [-75.35355259380903, 40.64111447383942], [-75.35355252899845, 40.64111450042673], [-75.35327074498555, 40.64122858410782], [-75.35297632425959, 40.64134751919321], [-75.35261216040934, 40.64150296970341], [-75.35243640861243, 40.64157799130503], [-75.35173008977618, 40.641893425209624], [-75.35159939221495, 40.64195179257082], [-75.35128524992632, 40.64209288340377], [-75.35128499751073, 40.64209299709649], [-75.35070274782834, 40.64235473053785], [-75.35037486852768, 40.64250188493541], [-75.34984534640132, 40.642743629629926], [-75.34973426151673, 40.64206849792729], [-75.34949401292828, 40.64062099894713], [-75.34949395254314, 40.64062063644191], [-75.34938436352525, 40.639954286999696], [-75.34929100037866, 40.639362932405504], [-75.349189632359, 40.638720862264265], [-75.34918959191646, 40.638720603773486], [-75.34879674345432, 40.63857391023841], [-75.34867380184033, 40.63852800257899], [-75.34897161398266, 40.63802494653801], [-75.34920986699454, 40.637622491157195], [-75.34990100342976, 40.636512360104156], [-75.34993300000417, 40.636461000218986], [-75.3499330942209, 40.63646084541613], [-75.34993258491154, 40.63646066910609], [-75.3504226329763, 40.63565691375498], [-75.3506501946698, 40.635266869095695], [-75.35072016961831, 40.63514692982325], [-75.35082289459378, 40.63499537176674], [-75.35087524039851, 40.63494188248849], [-75.35094166299825, 40.63487400736898], [-75.35106619254547, 40.63474272264632], [-75.35113380321181, 40.63468496012418], [-75.35119073403342, 40.6346363222879], [-75.35158206190128, 40.63432598306737], [-75.35189676325997, 40.63407945313237], [-75.35200109183755, 40.63399772422349], [-75.35226153693074, 40.633793694215306], [-75.35288622678061, 40.63330660536303], [-75.35297056420343, 40.633240989742546], [-75.35365996756742, 40.632707611005955], [-75.35445260832373, 40.63208351634836], [-75.35445313281691, 40.632083896552956], [-75.35518187797825, 40.63151289602596], [-75.35533963203979, 40.63138945913046], [-75.35579299015555, 40.631030197943694], [-75.35624921500661, 40.63066866007862], [-75.35662589796819, 40.63038003312531], [-75.35697820626731, 40.63011007968596], [-75.35735445538023, 40.629817315448534], [-75.35772418293917, 40.62952962161854]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 834, \"PRECINCTID\": \"041503-1\", \"NAME\": \"BETHLEHEM 15TH WARD 3RD DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-11\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"MARVINE SCHOOL\", \"SiteAddress\": \"1425 LIVINGSTON ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"2541\", \"STATISTICS Ballots Cast - Total\": 1417.0, \"STATISTICS Ballots Cast - Blank\": \"16\", \"STATISTICS Voter Turnout - Total\": \"55.77%\", \"Presidential Electors DEM Biden and Harris\": \"980\", \"Presidential Electors REP Trump and Pence\": \"387\", \"Presidential Electors LIB Jorgensen and Cohen\": \"17\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"899\", \"Attorney General REP Heather Heidelbaugh\": \"292\", \"Attorney General LIB Daniel Wassmer\": \"30\", \"Attorney General GRE Richard L Weiss\": \"15\", \"Attorney General Write-In Totals\": \"2\", \"Auditor General DEM Nina Ahmad\": \"887\", \"Auditor General REP Timothy Defoor\": \"288\", \"Auditor General LIB Jennifer Moore\": \"45\", \"Auditor General GRE Olivia Faison\": \"16\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"869\", \"State Treasurer REP Stacy L. Garrity\": \"319\", \"State Treasurer LIB Joe Soloski\": \"39\", \"State Treasurer GRE Timothy Runkle\": \"17\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"930\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"338\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"937\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"312\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"5\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 69.16019760056457, \"Presidential Electors Pct REP\": 27.31122088920254, \"Presidential Electors Pct LIB\": 1.1997177134791814, \"PA Attorney General Pct DEM\": 63.443895553987296, \"PA Attorney General Pct REP\": 20.606916019760057, \"PA Attorney General Pct LIB\": 2.117148906139732, \"PA Attorney General Pct GRE\": 1.058574453069866, \"PA Auditor General Pct DEM\": 62.5970359915314, \"PA Auditor General Pct REP\": 20.324629498941427, \"PA Auditor General Pct LIB\": 3.1757233592095977, \"PA Auditor General Pct GRE\": 1.1291460832745237, \"PA State Treasurer Pct DEM\": 61.326746647847564, \"PA State Treasurer Pct REP\": 22.512350035285817, \"PA State Treasurer Pct LIB\": 2.7522935779816518, \"PA State Treasurer Pct GRE\": 1.1997177134791814, \"PA Representative in Congress 7th Congressional District Pct DEM\": 65.63161609033169, \"PA Representative in Congress 7th Congressional District Pct REP\": 23.853211009174313, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.8332941287165977, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.34409191888446, 40.64131396380775], [-75.34406182642246, 40.64112452614592], [-75.34406165327108, 40.64112453966848], [-75.34394467490901, 40.64038912642377], [-75.34386235939687, 40.6398687847945], [-75.34383535286403, 40.639716856373404], [-75.34376669899034, 40.63929324794843], [-75.34358245428852, 40.63814609532444], [-75.34352057133967, 40.63776004093481], [-75.34339958722212, 40.63701098480461], [-75.34324180205675, 40.63603128032716], [-75.34321205581013, 40.63585526801576], [-75.34309040044361, 40.635125160825886], [-75.34301782092739, 40.634710823696956], [-75.34295492259425, 40.63435332092164], [-75.34295482913794, 40.634352628], [-75.34294922893422, 40.63431098438293], [-75.34293900596921, 40.63421895541747], [-75.34288082347372, 40.63386025681709], [-75.34271385222075, 40.63283085511864], [-75.34266011896578, 40.63249430870408], [-75.34243478019938, 40.63109739344703], [-75.34241065807421, 40.630947856571545], [-75.34239980387044, 40.63088056805222], [-75.34232886709505, 40.63044575531273], [-75.3422719289768, 40.630123300231034], [-75.34222279719071, 40.629859701066295], [-75.342202212043, 40.62974232452074], [-75.34219631503915, 40.62970869885266], [-75.34218014427512, 40.629616488448285], [-75.34227585628958, 40.62961105108269], [-75.34384804328363, 40.62952173016474], [-75.34482207018024, 40.62946638206356], [-75.34483746027827, 40.62946550781029], [-75.34607183849215, 40.629395352852654], [-75.34607155304327, 40.62939311633377], [-75.3463278594975, 40.629380799905746], [-75.34822908592304, 40.62928942373859], [-75.35001990680308, 40.629164720592506], [-75.35030359614721, 40.629132632210464], [-75.3502898098382, 40.62902451873334], [-75.35025494190243, 40.62873908053613], [-75.35024886992062, 40.628681977329734], [-75.35020804152019, 40.628361577472404], [-75.35019301522254, 40.62822714590493], [-75.35015087311956, 40.62789307394808], [-75.35014601463503, 40.62785247126822], [-75.35010534633405, 40.62752761161643], [-75.35008872778465, 40.627387311982304], [-75.35004812309445, 40.627060651808236], [-75.35004320049732, 40.62702184955975], [-75.35002473166593, 40.62685765699003], [-75.34998738527838, 40.62656598891064], [-75.34998259125624, 40.62652358486795], [-75.349954783402, 40.62629286742552], [-75.34994436238314, 40.6262061556198], [-75.34993850009172, 40.62613646139507], [-75.34993677084181, 40.62611589796601], [-75.34993045157347, 40.62606573992041], [-75.34989149726906, 40.62574340466966], [-75.34988598966667, 40.625695751678045], [-75.34984331745899, 40.62535137213247], [-75.34982287459248, 40.62519202947727], [-75.34976539948919, 40.6247322719833], [-75.3496169831212, 40.623589215378196], [-75.34945997891431, 40.6223840253004], [-75.34870682772876, 40.62243372133931], [-75.34870411777457, 40.62243392193176], [-75.34823278827278, 40.62246311122225], [-75.34820948869883, 40.62215680190613], [-75.34820397618641, 40.62208409315593], [-75.34817881183564, 40.62175431934583], [-75.3481337696684, 40.621173826073], [-75.34811351192297, 40.62090851156013], [-75.34809892885644, 40.62071136148415], [-75.34799294724745, 40.62072744170769], [-75.34770602721281, 40.620739512926065], [-75.34750185892432, 40.62075527405171], [-75.34730598756829, 40.620765714149215], [-75.34714999138262, 40.62076960166544], [-75.34707253342793, 40.620767908847185], [-75.34705300056511, 40.62063700008618], [-75.3470370005251, 40.620533000265176], [-75.3470339998123, 40.62051900037988], [-75.34700399968261, 40.62034200034832], [-75.34722299992596, 40.620298000326684], [-75.34771500007724, 40.62024600016758], [-75.34956400028385, 40.61994900028924], [-75.35833400038504, 40.61770000018813], [-75.35859844056299, 40.617672206790395], [-75.35892483717083, 40.61843557674271], [-75.35927508208883, 40.61917737127139], [-75.35967723531954, 40.61993883501766], [-75.35996842425276, 40.62091355496466], [-75.36014225136097, 40.62198006239173], [-75.36019386697716, 40.62235850230152], [-75.36029950157021, 40.623132980721046], [-75.36031812209453, 40.623227575668906], [-75.3603323197246, 40.62329969871633], [-75.360485189496, 40.62432243916004], [-75.36050848248739, 40.62446931682951], [-75.36061253415563, 40.6251254090341], [-75.36070032621603, 40.62564512412785], [-75.36070035347905, 40.62564528865092], [-75.36070040328065, 40.625645584266934], [-75.36070047067234, 40.62564598384734], [-75.36070410015637, 40.625667467296395], [-75.36070259552068, 40.62570983007971], [-75.3606997907184, 40.62578879870695], [-75.3606827451539, 40.62584843080924], [-75.36067304154643, 40.62588238054221], [-75.3606253826585, 40.6261306652667], [-75.36062520688787, 40.62613158594943], [-75.3606100252042, 40.62621067502909], [-75.36038278988015, 40.626376654536124], [-75.36035935578265, 40.6263937718541], [-75.35971306483977, 40.62736536184013], [-75.35939410256368, 40.627870244643205], [-75.35904858744276, 40.62841714913234], [-75.35896427049255, 40.62855664552061], [-75.35896406075622, 40.62855699073609], [-75.35896396650732, 40.628557147347024], [-75.35894136800508, 40.628594535309794], [-75.35894120883653, 40.62859465544671], [-75.35866877108658, 40.628800979373366], [-75.358488582527, 40.62893743936582], [-75.35839338521741, 40.62900959224755], [-75.35839294893542, 40.62900992377768], [-75.35813578635809, 40.629204834040706], [-75.35772418293917, 40.62952962161854], [-75.35735445538023, 40.629817315448534], [-75.35697820626731, 40.63011007968596], [-75.35662589796819, 40.63038003312531], [-75.35624921500661, 40.63066866007862], [-75.35579299015555, 40.631030197943694], [-75.35533963203979, 40.63138945913046], [-75.35518187797825, 40.63151289602596], [-75.35445313281691, 40.632083896552956], [-75.35445260832373, 40.63208351634836], [-75.35365996756742, 40.632707611005955], [-75.35297056420343, 40.633240989742546], [-75.35288622678061, 40.63330660536303], [-75.35226153693074, 40.633793694215306], [-75.35200109183755, 40.63399772422349], [-75.35189676325997, 40.63407945313237], [-75.35158206190128, 40.63432598306737], [-75.35119073403342, 40.6346363222879], [-75.35113380321181, 40.63468496012418], [-75.35106619254547, 40.63474272264632], [-75.35094166299825, 40.63487400736898], [-75.35087524039851, 40.63494188248849], [-75.35082289459378, 40.63499537176674], [-75.35072016961831, 40.63514692982325], [-75.3506501946698, 40.635266869095695], [-75.3504226329763, 40.63565691375498], [-75.34993258491154, 40.63646066910609], [-75.3499330942209, 40.63646084541613], [-75.34993300000417, 40.636461000218986], [-75.34990100342976, 40.636512360104156], [-75.34920986699454, 40.637622491157195], [-75.34897161398266, 40.63802494653801], [-75.34867380184033, 40.63852800257899], [-75.34879674345432, 40.63857391023841], [-75.34918959191646, 40.638720603773486], [-75.349189632359, 40.638720862264265], [-75.34929100037866, 40.639362932405504], [-75.34938436352525, 40.639954286999696], [-75.34949395254314, 40.64062063644191], [-75.34949401292828, 40.64062099894713], [-75.34973426151673, 40.64206849792729], [-75.34984534640132, 40.642743629629926], [-75.34984496767426, 40.642743802864985], [-75.34947065012447, 40.64291461068446], [-75.34894488285919, 40.64315196706602], [-75.34829088891537, 40.643446816251355], [-75.34807196194163, 40.64354585162182], [-75.34775894312504, 40.64368188445912], [-75.34723800472256, 40.643908273232114], [-75.34641356506054, 40.64427221606853], [-75.34641155343554, 40.644273104967326], [-75.34640499833215, 40.64427599870907], [-75.34640474721064, 40.644276108814815], [-75.34593133564431, 40.6444852768529], [-75.3451752425293, 40.64486225638503], [-75.34477887169149, 40.64509215029587], [-75.34477858180206, 40.64509231905207], [-75.34470988703752, 40.64517352811004], [-75.34440518818998, 40.64328617527029], [-75.3442888973352, 40.64255652661601], [-75.34420096981032, 40.64200046972999], [-75.34417645098881, 40.64184540580087], [-75.34413162459818, 40.641563923388034], [-75.34409191888446, 40.64131396380775]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 835, \"PRECINCTID\": \"040600-1\", \"NAME\": \"BETHLEHEM 6TH WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-01\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"CITY CENTER\", \"SiteAddress\": \"10 E CHURCH ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"838\", \"STATISTICS Ballots Cast - Total\": 640.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"76.37%\", \"Presidential Electors DEM Biden and Harris\": \"463\", \"Presidential Electors REP Trump and Pence\": \"165\", \"Presidential Electors LIB Jorgensen and Cohen\": \"6\", \"Presidential Electors Write-In Totals\": \"6\", \"Attorney General DEM Josh Shapiro\": \"439\", \"Attorney General REP Heather Heidelbaugh\": \"167\", \"Attorney General LIB Daniel Wassmer\": \"10\", \"Attorney General GRE Richard L Weiss\": \"9\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"422\", \"Auditor General REP Timothy Defoor\": \"174\", \"Auditor General LIB Jennifer Moore\": \"13\", \"Auditor General GRE Olivia Faison\": \"9\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"434\", \"State Treasurer REP Stacy L. Garrity\": \"169\", \"State Treasurer LIB Joe Soloski\": \"10\", \"State Treasurer GRE Timothy Runkle\": \"9\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"451\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"170\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"456\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"166\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 72.34375, \"Presidential Electors Pct REP\": 25.78125, \"Presidential Electors Pct LIB\": 0.9375, \"PA Attorney General Pct DEM\": 68.59375, \"PA Attorney General Pct REP\": 26.09375, \"PA Attorney General Pct LIB\": 1.5625, \"PA Attorney General Pct GRE\": 1.40625, \"PA Auditor General Pct DEM\": 65.9375, \"PA Auditor General Pct REP\": 27.187499999999996, \"PA Auditor General Pct LIB\": 2.03125, \"PA Auditor General Pct GRE\": 1.40625, \"PA State Treasurer Pct DEM\": 67.8125, \"PA State Treasurer Pct REP\": 26.406249999999996, \"PA State Treasurer Pct LIB\": 1.5625, \"PA State Treasurer Pct GRE\": 1.40625, \"PA Representative in Congress 7th Congressional District Pct DEM\": 70.46875, \"PA Representative in Congress 7th Congressional District Pct REP\": 26.5625, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.37636432066240116, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3646890093638, 40.62050216972075], [-75.36467700021, 40.61996799996325], [-75.36448899948907, 40.61996799969496], [-75.36450199945148, 40.61933999959727], [-75.3646269995071, 40.61927700040924], [-75.3647030002845, 40.61864899996177], [-75.3645519994573, 40.618649000179055], [-75.36450600009276, 40.61767800034205], [-75.36449899964347, 40.617512999701255], [-75.36449299995313, 40.617406999686445], [-75.36448599972893, 40.61726099960062], [-75.36447400005568, 40.61701000023942], [-75.36458535589382, 40.616987531210945], [-75.36693200008547, 40.61651400010822], [-75.36770500046295, 40.61647899958078], [-75.36950947997504, 40.616399724128044], [-75.37149999988662, 40.616162099977174], [-75.37170999929819, 40.61613700062784], [-75.37172720000682, 40.61609340052325], [-75.37180840039932, 40.61605869954835], [-75.371976500326, 40.61600939959605], [-75.373372542144, 40.615713933325075], [-75.37337832351945, 40.61573142454013], [-75.37337921961586, 40.615734135660055], [-75.37327666858835, 40.615761412487544], [-75.37316769850715, 40.6157860350694], [-75.3730011794844, 40.615833160192054], [-75.372824441245, 40.615889086036326], [-75.37265066083005, 40.615937777859685], [-75.37251699460134, 40.615998448219536], [-75.37240896993615, 40.61607277319309], [-75.37235977703881, 40.61611372501277], [-75.37235871902595, 40.6161149276006], [-75.37232035705142, 40.616158566486874], [-75.37230787380395, 40.616183564757286], [-75.37230678471909, 40.61618574686763], [-75.37230449293959, 40.616250595836924], [-75.37230438772939, 40.61625357289755], [-75.37232166746354, 40.61629992118596], [-75.37234955841582, 40.61632640745185], [-75.37246256565118, 40.61636605366295], [-75.37255487624829, 40.61637953234599], [-75.37275512499932, 40.61639762834019], [-75.3731510013957, 40.61641167087664], [-75.37339419853727, 40.616412540885364], [-75.37358467994446, 40.61642665948747], [-75.37385262750651, 40.61641542202726], [-75.37399644240006, 40.6163989780802], [-75.37430978504801, 40.616377773417334], [-75.37447211016749, 40.616372864053126], [-75.37459631237334, 40.61637609700563], [-75.37522272461752, 40.61636688542239], [-75.37534692684844, 40.61637011757046], [-75.37543223441125, 40.616377872156015], [-75.37562567275279, 40.61638475445855], [-75.37573753259579, 40.6163803532256], [-75.37585775133603, 40.616368829629835], [-75.37594621336892, 40.616363777575486], [-75.37598948610311, 40.616362862483996], [-75.37612321531621, 40.61637692932351], [-75.37630420097116, 40.616404835977974], [-75.37638739552605, 40.61642138511797], [-75.37653918925432, 40.6164596760002], [-75.37670686479296, 40.61650738910505], [-75.37682857133173, 40.61653030415014], [-75.376935361742, 40.61654193090854], [-75.37705726197491, 40.616559357903846], [-75.3771479832083, 40.61656687975861], [-75.37751883629468, 40.61657524631595], [-75.37767957895731, 40.61656412180619], [-75.3777927394215, 40.61654841843614], [-75.37783453535957, 40.61653829063464], [-75.3778831465788, 40.61651371528248], [-75.37794719178112, 40.61646019436864], [-75.37798410343738, 40.616435292962876], [-75.37805264575428, 40.61640752116116], [-75.37819969219827, 40.61637603580324], [-75.37834198177778, 40.61635174732448], [-75.37847919181634, 40.6163437444333], [-75.37853455085235, 40.6163321778224], [-75.37858270833432, 40.616320463785954], [-75.37867420041194, 40.61630614304868], [-75.37875663012689, 40.61629321781395], [-75.37879450165983, 40.61629219023332], [-75.37886394030383, 40.616290093398526], [-75.37895794214555, 40.616281205665864], [-75.37909482565838, 40.616282461830224], [-75.37920169103168, 40.616290449376585], [-75.37922096339993, 40.616291890557946], [-75.37923225447408, 40.61629273419729], [-75.37930506864649, 40.61629817627403], [-75.3793412666397, 40.61629351164867], [-75.3793818356939, 40.61629262555541], [-75.37958719541669, 40.616293566021426], [-75.37968569694483, 40.616284769759694], [-75.3799869892151, 40.61624751352593], [-75.38008266137751, 40.616242348159325], [-75.38028879006063, 40.61624699402226], [-75.38031990874335, 40.616250666457894], [-75.3804224595425, 40.61626277084341], [-75.3804652761661, 40.61627480122054], [-75.38051618873506, 40.61631274071766], [-75.38054389266065, 40.6163446273049], [-75.38055919319969, 40.616370597292295], [-75.38057178742554, 40.61642225459492], [-75.38059241427706, 40.61650162058929], [-75.38061528878714, 40.616593904323864], [-75.38064279423403, 40.61668259184526], [-75.38066226823254, 40.61674357159617], [-75.38066637969116, 40.61675472479286], [-75.38075103902834, 40.61685762489101], [-75.3807854630586, 40.616893337032515], [-75.38078627173489, 40.616894175171716], [-75.38079449394557, 40.616902705276004], [-75.3808198871516, 40.616923475416826], [-75.38085665688311, 40.616953745535426], [-75.38089645030456, 40.61697489659648], [-75.38098664904805, 40.61699724854757], [-75.3811545607038, 40.617025583813536], [-75.38116485930193, 40.61702732136342], [-75.38130752166784, 40.61704362422171], [-75.38145320349554, 40.617050893342196], [-75.38157979095666, 40.617063177241306], [-75.38187990146204, 40.61708518691397], [-75.38196585919974, 40.61710007230173], [-75.38212291796859, 40.61711683955311], [-75.382385481679, 40.617130614968204], [-75.38258375701041, 40.61712814501907], [-75.38282035072956, 40.617137526727745], [-75.38288206657585, 40.61715011438419], [-75.38291736276838, 40.61717108637042], [-75.3829634535693, 40.61721810800042], [-75.38301552553037, 40.6173000032373], [-75.3830345069497, 40.6173431936089], [-75.38306126992794, 40.617404089378624], [-75.38308725689527, 40.6174632188784], [-75.38310315487253, 40.61750863538048], [-75.3831306421479, 40.61758715542034], [-75.38315718252335, 40.61775459544964], [-75.38317369788294, 40.61782289337729], [-75.38318603968433, 40.617881622486046], [-75.3831875880389, 40.61788899268021], [-75.38318974283067, 40.617931717669244], [-75.3831918217424, 40.61797293663882], [-75.38319183356019, 40.61797317200982], [-75.38318662871339, 40.61809551594027], [-75.38318335635769, 40.618117794510574], [-75.38317015586186, 40.61820767947589], [-75.38317004381902, 40.61820844473652], [-75.3831703571843, 40.61829927871175], [-75.38317036567982, 40.618301725674065], [-75.38314134288453, 40.61843762506002], [-75.38314124524813, 40.61843808161321], [-75.38314092453885, 40.61854962646325], [-75.38315031369342, 40.618615633812325], [-75.3831767840818, 40.618714235262345], [-75.38318535945886, 40.618746179046035], [-75.38320008542578, 40.618788525699976], [-75.38322535598276, 40.61886403921015], [-75.38326850277964, 40.6189691784238], [-75.383313065422, 40.619110900615205], [-75.38334142301923, 40.61917549362522], [-75.38339498551743, 40.619266258487855], [-75.38343961082678, 40.61932938108062], [-75.38347845033029, 40.61937771286171], [-75.3836192059489, 40.61949960459156], [-75.3836277724685, 40.619508683837125], [-75.38374427082474, 40.61963215921655], [-75.3838152611704, 40.61971696370668], [-75.38393274524553, 40.6198573090469], [-75.38400147946943, 40.61994933112486], [-75.38400329845881, 40.61995176640808], [-75.38400334142156, 40.61995182223899], [-75.38403781006771, 40.61999503224841], [-75.38406256010715, 40.6200341520027], [-75.3840729081259, 40.62005951133619], [-75.38410651994039, 40.6201418812472], [-75.38412881706917, 40.620199485580194], [-75.38413953543989, 40.620239226890824], [-75.38415422599587, 40.62029370119915], [-75.38415432122238, 40.62029405268451], [-75.38415160713907, 40.62032977837267], [-75.384145933097, 40.62040448951262], [-75.38414468990806, 40.62041805568736], [-75.38413899962458, 40.620480183919895], [-75.38413449545871, 40.6205293601122], [-75.3819881858927, 40.62059544915945], [-75.38141799137462, 40.62061300028571], [-75.38121226287983, 40.62061913941189], [-75.37848678255855, 40.62070308516415], [-75.37759056369926, 40.62069803917709], [-75.37730855116119, 40.62069408441413], [-75.37730789412706, 40.62069407546419], [-75.37730760579454, 40.620694071361626], [-75.37622096858449, 40.62067882719696], [-75.37590662417863, 40.620676848922216], [-75.37551139846336, 40.62067728431042], [-75.37539399073476, 40.62067741330217], [-75.37469221750455, 40.62066281466422], [-75.37455316481064, 40.62065992165808], [-75.37434875816288, 40.6206562489011], [-75.37330080473676, 40.620637414694166], [-75.3726343152597, 40.62062591555158], [-75.37245897475312, 40.62062288987955], [-75.37056814571747, 40.62059274242958], [-75.36975855770777, 40.62058357980631], [-75.36894276043705, 40.62057170920148], [-75.36791274326676, 40.620554313696545], [-75.36785343468647, 40.62055345833806], [-75.36785335080533, 40.620553456613536], [-75.3672106617589, 40.620544183090765], [-75.3669051477091, 40.6205397728366], [-75.36562966154914, 40.62051813603866], [-75.3646890093638, 40.62050216972075]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 836, \"PRECINCTID\": \"040700-1\", \"NAME\": \"BETHLEHEM 7TH WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-01\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BARTHOLOMEW HOUSE\", \"SiteAddress\": \"512 ELM ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1658\", \"STATISTICS Ballots Cast - Total\": 1079.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"65.08%\", \"Presidential Electors DEM Biden and Harris\": \"757\", \"Presidential Electors REP Trump and Pence\": \"300\", \"Presidential Electors LIB Jorgensen and Cohen\": \"18\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"722\", \"Attorney General REP Heather Heidelbaugh\": \"261\", \"Attorney General LIB Daniel Wassmer\": \"28\", \"Attorney General GRE Richard L Weiss\": \"18\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"695\", \"Auditor General REP Timothy Defoor\": \"271\", \"Auditor General LIB Jennifer Moore\": \"37\", \"Auditor General GRE Olivia Faison\": \"17\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"694\", \"State Treasurer REP Stacy L. Garrity\": \"273\", \"State Treasurer LIB Joe Soloski\": \"39\", \"State Treasurer GRE Timothy Runkle\": \"18\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"749\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"288\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"751\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"282\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 70.15755329008341, \"Presidential Electors Pct REP\": 27.803521779425395, \"Presidential Electors Pct LIB\": 1.6682113067655238, \"PA Attorney General Pct DEM\": 66.91380908248378, \"PA Attorney General Pct REP\": 24.18906394810009, \"PA Attorney General Pct LIB\": 2.5949953660797034, \"PA Attorney General Pct GRE\": 1.6682113067655238, \"PA Auditor General Pct DEM\": 64.4114921223355, \"PA Auditor General Pct REP\": 25.11584800741427, \"PA Auditor General Pct LIB\": 3.429101019462465, \"PA Auditor General Pct GRE\": 1.5755329008341055, \"PA State Treasurer Pct DEM\": 64.31881371640408, \"PA State Treasurer Pct REP\": 25.301204819277107, \"PA State Treasurer Pct LIB\": 3.614457831325301, \"PA State Treasurer Pct GRE\": 1.6682113067655238, \"PA Representative in Congress 7th Congressional District Pct DEM\": 69.41612604263206, \"PA Representative in Congress 7th Congressional District Pct REP\": 26.69138090824838, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.6345267218667671, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.3638474154418, 40.62295467542452], [-75.36381168595942, 40.622516199243954], [-75.36381167708251, 40.6225160828471], [-75.36379280577293, 40.622284494955686], [-75.36378968999071, 40.62218264080437], [-75.36378529646578, 40.6220390115674], [-75.36445200043389, 40.62205199996067], [-75.36453796644827, 40.62049960522258], [-75.3646890093638, 40.62050216972075], [-75.36562966154914, 40.62051813603866], [-75.3669051477091, 40.6205397728366], [-75.3672106617589, 40.620544183090765], [-75.36785335080533, 40.620553456613536], [-75.36785343468647, 40.62055345833806], [-75.36791274326676, 40.620554313696545], [-75.36894276043705, 40.62057170920148], [-75.36975855770777, 40.62058357980631], [-75.37056814571747, 40.62059274242958], [-75.37245897475312, 40.62062288987955], [-75.3726343152597, 40.62062591555158], [-75.37330080473676, 40.620637414694166], [-75.37434875816288, 40.6206562489011], [-75.37455316481064, 40.62065992165808], [-75.37469221750455, 40.62066281466422], [-75.37539399073476, 40.62067741330217], [-75.37551139846336, 40.62067728431042], [-75.37590662417863, 40.620676848922216], [-75.37622096858449, 40.62067882719696], [-75.37730760579454, 40.620694071361626], [-75.37730789412706, 40.62069407546419], [-75.37730855116119, 40.62069408441413], [-75.37759056369926, 40.62069803917709], [-75.37848678255855, 40.62070308516415], [-75.38121226287983, 40.62061913941189], [-75.38141799137462, 40.62061300028571], [-75.38413449545871, 40.6205293601122], [-75.3841093717869, 40.62080369802809], [-75.38410673501515, 40.62085080609172], [-75.38409977805256, 40.62097507268907], [-75.38409967947166, 40.6209768336958], [-75.3840983328715, 40.621244304108274], [-75.38409832511601, 40.62124590300954], [-75.38409290435096, 40.62132319131434], [-75.3840719049178, 40.62145919880046], [-75.38403708200045, 40.62157836316763], [-75.38401424086254, 40.621638649322016], [-75.38398605840545, 40.621697110231615], [-75.38390333227997, 40.62182070166455], [-75.38374708387245, 40.6220110962505], [-75.3837015365284, 40.62207658157411], [-75.38366081159677, 40.62215864153323], [-75.38364787748701, 40.62219338733459], [-75.38356423920813, 40.622342874582], [-75.38354654422658, 40.622384903138894], [-75.38352875097841, 40.622414767825504], [-75.38348047990328, 40.62249579164712], [-75.38346601052451, 40.622522954908966], [-75.38332489992645, 40.622718291340476], [-75.38326688482255, 40.622805232121294], [-75.38318834972863, 40.62293766070587], [-75.38310176854388, 40.62311952365492], [-75.38308581634129, 40.623163217432555], [-75.38306792419984, 40.623262047688705], [-75.38305189119522, 40.62338485496233], [-75.38304524547405, 40.623498330799464], [-75.3830451204357, 40.62350047323701], [-75.3830473543491, 40.62359061842834], [-75.38304739942329, 40.62359101753738], [-75.38305176842039, 40.62362925087763], [-75.38305493146503, 40.6236569319179], [-75.3830625627074, 40.62369109415972], [-75.38305900013995, 40.623690998865854], [-75.38298499959436, 40.623688999870424], [-75.38273399957241, 40.62368100030221], [-75.38273799962785, 40.62360600010146], [-75.38273713853516, 40.62360604376936], [-75.38187404286539, 40.62364999820148], [-75.3818740409957, 40.623650051315074], [-75.38179335090094, 40.62364885716137], [-75.38109783533038, 40.623638560909164], [-75.38043846498847, 40.623609634336724], [-75.37915769500343, 40.62360002586491], [-75.37838486348676, 40.62359422130824], [-75.3774683682244, 40.62357545957191], [-75.37619444149082, 40.623555732556156], [-75.37614560820792, 40.623554976278875], [-75.37531072853008, 40.623546707090725], [-75.37498419362099, 40.62353984443078], [-75.37498409083227, 40.62353984232395], [-75.37448877887627, 40.62352943050174], [-75.3735713665283, 40.62351747661482], [-75.37321453434245, 40.62351282537337], [-75.37238987689621, 40.623495735089016], [-75.37102263740802, 40.62346588796569], [-75.37048315629961, 40.62345410712778], [-75.37048299673657, 40.62345410565282], [-75.36975293455602, 40.62344581823517], [-75.36968000082015, 40.623444989377916], [-75.36967983889424, 40.623444987853354], [-75.36965167327011, 40.62344475519847], [-75.36887012989449, 40.623438304583324], [-75.36861610510854, 40.62343386530814], [-75.36825606803976, 40.62342757259037], [-75.36745093888763, 40.62341342593986], [-75.3668199612653, 40.62340233490734], [-75.36626439600929, 40.62339339633052], [-75.36584842273363, 40.62338603908696], [-75.36584612468937, 40.623628832078985], [-75.36584600353444, 40.62362864760778], [-75.36581457148368, 40.623580895493745], [-75.36579660715215, 40.62355360296796], [-75.36579653983691, 40.62355350068393], [-75.36574616492256, 40.62350046428176], [-75.36571219651314, 40.62346750109752], [-75.36564787869747, 40.623426533363464], [-75.36560014171229, 40.62340075244358], [-75.36555574150431, 40.62338250488674], [-75.365521792475, 40.62336954705656], [-75.3655077401584, 40.62336418410734], [-75.3654925627596, 40.623361208767484], [-75.36546568824926, 40.62335593960016], [-75.36544102647898, 40.62335188801186], [-75.36541373630875, 40.62334740485753], [-75.3653940777831, 40.62334700029737], [-75.36536782191372, 40.62334645996278], [-75.36531920667333, 40.623345459466165], [-75.36526420131833, 40.623346815676975], [-75.36520710690202, 40.623357607061024], [-75.36520524407872, 40.623357958804625], [-75.36519985091189, 40.62335944147003], [-75.36512973148288, 40.62337871502691], [-75.36507402270071, 40.62339987880879], [-75.36503362105991, 40.623421357625446], [-75.36500229383398, 40.623440334969594], [-75.36499402916299, 40.62344534133547], [-75.36493730040571, 40.62349213671587], [-75.3649372224295, 40.62349220177622], [-75.36493714569858, 40.62349226506047], [-75.36491050167007, 40.62351424322483], [-75.3648626566769, 40.623567747429426], [-75.36482494806552, 40.62364352019921], [-75.36482482458898, 40.62364376810311], [-75.36479932574615, 40.623405318993804], [-75.3647612242146, 40.62304900188626], [-75.36475641357508, 40.622905172283495], [-75.36475600724742, 40.62290519454925], [-75.36432944761651, 40.62292838895555], [-75.36405069969283, 40.62294358968311], [-75.36405039877054, 40.622943606909715], [-75.3638474154418, 40.62295467542452]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 837, \"PRECINCTID\": \"120000-1\", \"NAME\": \"FREEMANSBURG BOROUGH\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"136th District\", \"MDJ\": \"03-2-11\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"FREEMANSBURG MUNICIPAL BUILDING\", \"SiteAddress\": \"600 MONROE ST\", \"City\": \"FREEMANSBURG\", \"STATISTICS Registered Voters - Total\": \"1938\", \"STATISTICS Ballots Cast - Total\": 1269.0, \"STATISTICS Ballots Cast - Blank\": \"2\", \"STATISTICS Voter Turnout - Total\": \"65.48%\", \"Presidential Electors DEM Biden and Harris\": \"753\", \"Presidential Electors REP Trump and Pence\": \"485\", \"Presidential Electors LIB Jorgensen and Cohen\": \"16\", \"Presidential Electors Write-In Totals\": \"9\", \"Attorney General DEM Josh Shapiro\": \"743\", \"Attorney General REP Heather Heidelbaugh\": \"411\", \"Attorney General LIB Daniel Wassmer\": \"25\", \"Attorney General GRE Richard L Weiss\": \"21\", \"Attorney General Write-In Totals\": \"3\", \"Auditor General DEM Nina Ahmad\": \"712\", \"Auditor General REP Timothy Defoor\": \"424\", \"Auditor General LIB Jennifer Moore\": \"36\", \"Auditor General GRE Olivia Faison\": \"16\", \"Auditor General Write-In Totals\": \"2\", \"State Treasurer DEM Joe Torsella\": \"732\", \"State Treasurer REP Stacy L. Garrity\": \"413\", \"State Treasurer LIB Joe Soloski\": \"27\", \"State Treasurer GRE Timothy Runkle\": \"17\", \"State Treasurer Write-In Totals\": \"3\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"753\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"456\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"2\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": \"865\", \"Representative in the General Assembly 136th Legislative District Write-In Totals\": \"12\", \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 59.33806146572104, \"Presidential Electors Pct REP\": 38.219070133963754, \"Presidential Electors Pct LIB\": 1.260835303388495, \"PA Attorney General Pct DEM\": 58.55003940110323, \"PA Attorney General Pct REP\": 32.38770685579196, \"PA Attorney General Pct LIB\": 1.9700551615445234, \"PA Attorney General Pct GRE\": 1.6548463356973995, \"PA Auditor General Pct DEM\": 56.10717100078803, \"PA Auditor General Pct REP\": 33.41213553979511, \"PA Auditor General Pct LIB\": 2.8368794326241136, \"PA Auditor General Pct GRE\": 1.260835303388495, \"PA State Treasurer Pct DEM\": 57.68321513002365, \"PA State Treasurer Pct REP\": 32.54531126871553, \"PA State Treasurer Pct LIB\": 2.127659574468085, \"PA State Treasurer Pct GRE\": 1.3396375098502757, \"PA Representative in Congress 7th Congressional District Pct DEM\": 59.33806146572104, \"PA Representative in Congress 7th Congressional District Pct REP\": 35.9338061465721, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.7462598795634174, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.33211596919342, 40.63133611997164], [-75.33220933156227, 40.63117030936507], [-75.33233891882253, 40.63097436198044], [-75.33240446815591, 40.630855338017675], [-75.33255155599586, 40.63057351771177], [-75.3326575967203, 40.630330655872605], [-75.33271173527211, 40.63018895972604], [-75.33271270244087, 40.630186428577275], [-75.33281772489556, 40.62991155381213], [-75.33288599547129, 40.6296916730354], [-75.3329613497803, 40.629374975253626], [-75.3330046953027, 40.629121538841034], [-75.33305383386529, 40.62885732514883], [-75.3330595563845, 40.628744494365684], [-75.3330597285665, 40.62874108448001], [-75.33305973071839, 40.62874105749815], [-75.33306310648626, 40.62867448537801], [-75.33309978774948, 40.62830558050883], [-75.333124361499, 40.62787240934584], [-75.33312982558569, 40.62736924661116], [-75.33313046759878, 40.627359670912455], [-75.33313061494934, 40.627357478513126], [-75.33314146912386, 40.627195638116945], [-75.3331504594111, 40.62697048832507], [-75.33315341005438, 40.62666266385563], [-75.33314637628516, 40.62653242839987], [-75.33314342667218, 40.6263637505884], [-75.33312654971859, 40.62608116902619], [-75.3331157645954, 40.62598011717204], [-75.33312136137167, 40.6258995725596], [-75.33312781375263, 40.625870445272284], [-75.33313154445707, 40.62576660701612], [-75.33311128965585, 40.625628202158644], [-75.33308753774142, 40.62554688684058], [-75.33308741033717, 40.62554645085419], [-75.33307679103406, 40.62551009458588], [-75.33306824370449, 40.625421960429], [-75.33306509835077, 40.62525877032244], [-75.33304912850669, 40.62512646105467], [-75.33303440760574, 40.62495942502015], [-75.33303029833132, 40.62487318610242], [-75.33303312647955, 40.62479447109331], [-75.33303004691606, 40.6247046491811], [-75.33303518156163, 40.624636966856215], [-75.33306902727786, 40.62437200424624], [-75.3331028114101, 40.624184012557556], [-75.33312008783815, 40.624129454522624], [-75.33318072572143, 40.62397136947985], [-75.3332484800658, 40.62384089292758], [-75.33327647181137, 40.623738847106715], [-75.33334944850321, 40.62351314430181], [-75.3333675053499, 40.62347328614834], [-75.33337375286575, 40.62345949585948], [-75.33345219533678, 40.62328634521745], [-75.3335889074444, 40.6230419779664], [-75.33377576379586, 40.62273095055556], [-75.33379842339666, 40.62270207650103], [-75.33382617255262, 40.62265691773726], [-75.33387807273964, 40.622566440479495], [-75.33396479446624, 40.62243455724401], [-75.33404141595113, 40.6223079542905], [-75.33408216255862, 40.62225208279247], [-75.33412931259285, 40.62216964144318], [-75.33413599498707, 40.622157956558354], [-75.33413770301446, 40.622155203007765], [-75.33424023202768, 40.62198988190823], [-75.33439226810854, 40.621795345379375], [-75.33449742427511, 40.62164293096263], [-75.33473725665638, 40.62129531311108], [-75.33480992484269, 40.621203466574755], [-75.33497306540532, 40.6210257218878], [-75.33504011565662, 40.62096490647043], [-75.33512639591201, 40.620895396392854], [-75.3352863356087, 40.62078168485896], [-75.33538186245373, 40.62073064550166], [-75.33555938924472, 40.62065402587893], [-75.33556590170497, 40.62065197331767], [-75.33567329258894, 40.62061812853096], [-75.33572455456235, 40.62060495265649], [-75.33580423145612, 40.62058447339263], [-75.33613189067984, 40.62051673043977], [-75.33651266428659, 40.620450093845314], [-75.33664487688208, 40.62043113803072], [-75.33682576789306, 40.62041139322015], [-75.33707843122257, 40.620374865508246], [-75.33724111924096, 40.620360233715424], [-75.33739718389633, 40.62035447270066], [-75.33756024623534, 40.620354521980225], [-75.33797027057547, 40.62037653019163], [-75.33820373035748, 40.62039820867402], [-75.338304221672, 40.62040965342822], [-75.33836870666121, 40.62042026308963], [-75.33865319406601, 40.62047612579651], [-75.33877373642417, 40.62050626470796], [-75.33912679605515, 40.62060954731643], [-75.3392759467627, 40.6206458592668], [-75.33949651104646, 40.62071565457417], [-75.33975342141895, 40.62079695044248], [-75.33975609568357, 40.62079777813514], [-75.33998918203685, 40.62088019858881], [-75.34022929245316, 40.620942599103266], [-75.34046896796436, 40.62099203345541], [-75.34060707119865, 40.62100983574825], [-75.34070306564419, 40.62102110020076], [-75.34091505164966, 40.621038722175925], [-75.34120651599896, 40.62105078894111], [-75.3417297169616, 40.62108243011939], [-75.34205014415961, 40.62109080578991], [-75.3424287137898, 40.62108562941358], [-75.34276240113931, 40.621075914893886], [-75.34311982181875, 40.62105751144849], [-75.3433818818904, 40.621035324501044], [-75.34431959053536, 40.620913381785655], [-75.34458213407129, 40.620877643792326], [-75.34473310933711, 40.62086301509006], [-75.34483907849499, 40.62084728080788], [-75.34492768549275, 40.62083839406258], [-75.34504098644794, 40.620819207324104], [-75.34522116157287, 40.62079420041466], [-75.34575690041515, 40.620752288185095], [-75.34577174258843, 40.62075167004245], [-75.34578900495669, 40.62075095166735], [-75.34603479395373, 40.62074072008416], [-75.34643369123953, 40.620746507234685], [-75.34676740239233, 40.62076123815878], [-75.34707253342793, 40.620767908847185], [-75.34714999138262, 40.62076960166544], [-75.34730598756829, 40.620765714149215], [-75.34750185892432, 40.62075527405171], [-75.34770602721281, 40.620739512926065], [-75.34799294724745, 40.62072744170769], [-75.34809892885644, 40.62071136148415], [-75.34811351192297, 40.62090851156013], [-75.3481337696684, 40.621173826073], [-75.34817881183564, 40.62175431934583], [-75.34820397618641, 40.62208409315593], [-75.34820948869883, 40.62215680190613], [-75.34823278827278, 40.62246311122225], [-75.34870411777457, 40.62243392193176], [-75.34870682772876, 40.62243372133931], [-75.34945997891431, 40.6223840253004], [-75.3496169831212, 40.623589215378196], [-75.34976539948919, 40.6247322719833], [-75.34982287459248, 40.62519202947727], [-75.34984331745899, 40.62535137213247], [-75.34988598966667, 40.625695751678045], [-75.34989149726906, 40.62574340466966], [-75.34993045157347, 40.62606573992041], [-75.34993677084181, 40.62611589796601], [-75.34993850009172, 40.62613646139507], [-75.34994436238314, 40.6262061556198], [-75.349954783402, 40.62629286742552], [-75.34998259125624, 40.62652358486795], [-75.34998738527838, 40.62656598891064], [-75.35002473166593, 40.62685765699003], [-75.35004320049732, 40.62702184955975], [-75.35004812309445, 40.627060651808236], [-75.35008872778465, 40.627387311982304], [-75.35010534633405, 40.62752761161643], [-75.35014601463503, 40.62785247126822], [-75.35015087311956, 40.62789307394808], [-75.35019301522254, 40.62822714590493], [-75.35020804152019, 40.628361577472404], [-75.35024886992062, 40.628681977329734], [-75.35025494190243, 40.62873908053613], [-75.3502898098382, 40.62902451873334], [-75.35030359614721, 40.629132632210464], [-75.35001990680308, 40.629164720592506], [-75.34822908592304, 40.62928942373859], [-75.3463278594975, 40.629380799905746], [-75.34607155304327, 40.62939311633377], [-75.34607183849215, 40.629395352852654], [-75.34483746027827, 40.62946550781029], [-75.34482207018024, 40.62946638206356], [-75.34384804328363, 40.62952173016474], [-75.34227585628958, 40.62961105108269], [-75.34218014427512, 40.629616488448285], [-75.34219631503915, 40.62970869885266], [-75.342202212043, 40.62974232452074], [-75.34222279719071, 40.629859701066295], [-75.3422719289768, 40.630123300231034], [-75.34232886709505, 40.63044575531273], [-75.34239980387044, 40.63088056805222], [-75.34241065807421, 40.630947856571545], [-75.34243478019938, 40.63109739344703], [-75.34266011896578, 40.63249430870408], [-75.34271385222075, 40.63283085511864], [-75.34288082347372, 40.63386025681709], [-75.34293900596921, 40.63421895541747], [-75.34294922893422, 40.63431098438293], [-75.34293752095296, 40.63431216551255], [-75.3428723585269, 40.63431874078532], [-75.34213351283444, 40.63439166931602], [-75.34126000810123, 40.634477883401075], [-75.33925608331171, 40.63467579621141], [-75.33853514981024, 40.63475269973974], [-75.33887170546178, 40.63753859241597], [-75.33902506407975, 40.63880796411987], [-75.33908766207486, 40.639374494757035], [-75.33911397933034, 40.63962080155201], [-75.33917942321911, 40.640062649857605], [-75.3392133823023, 40.640291927506226], [-75.33905431804202, 40.6403046645308], [-75.33880577623552, 40.640324722651975], [-75.33875607218224, 40.64032867952831], [-75.33869551841336, 40.64033349803034], [-75.33826883523477, 40.640370528568965], [-75.33820553563365, 40.640376590561715], [-75.33778792151753, 40.64041200628279], [-75.33763424243419, 40.640425368756404], [-75.33724101018088, 40.64045940173505], [-75.33718311221067, 40.64046557652049], [-75.33674825940513, 40.64050423319905], [-75.33669128774825, 40.64050973784856], [-75.33663793213124, 40.64051489344659], [-75.33639110984527, 40.640537212824036], [-75.33635757332516, 40.640391924635686], [-75.33614955395699, 40.639559099801644], [-75.335982466776, 40.63889153811339], [-75.33584667689055, 40.63833128862826], [-75.33563085817576, 40.637439949179175], [-75.33560028219784, 40.63731265626807], [-75.33525786542927, 40.63733735803581], [-75.33513765770886, 40.6373472955895], [-75.33520437338811, 40.637250793292516], [-75.33538701501176, 40.636986607614794], [-75.33545702298014, 40.63688534230468], [-75.33536921064812, 40.63674638851384], [-75.33533338334458, 40.63668969415814], [-75.33526873491276, 40.636590952093535], [-75.33512551350456, 40.63637219869274], [-75.33489224855396, 40.63601591282406], [-75.3348122763179, 40.63589376133896], [-75.33454417681752, 40.63548023412013], [-75.33440401812044, 40.63526793621895], [-75.33355527215225, 40.63396094830526], [-75.33347838741493, 40.63384367357398], [-75.3332316210265, 40.633463795330904], [-75.33292308423046, 40.63347329654805], [-75.33250724813509, 40.63348610008455], [-75.33198675556645, 40.633501842817765], [-75.33177970744403, 40.63350742792476], [-75.33166926600943, 40.63351040616851], [-75.33180736407093, 40.63345382185396], [-75.33204462045218, 40.63337107417691], [-75.33209086792951, 40.6333629436959], [-75.33242841457863, 40.63324762048025], [-75.33267550610799, 40.63316696497611], [-75.33281903705327, 40.63310963425948], [-75.33291913218828, 40.63308246104647], [-75.33312260886542, 40.63301187768985], [-75.33320032616231, 40.63298054749869], [-75.33335145687916, 40.632912305387585], [-75.33358694992081, 40.63277820404414], [-75.33373684262013, 40.63264403370875], [-75.33378569621033, 40.63258841782538], [-75.33389277470047, 40.632492225347036], [-75.33396594690802, 40.63241180228292], [-75.33403378242774, 40.63232946613835], [-75.33397991481918, 40.63229891014062], [-75.33360300642525, 40.63210462693633], [-75.3327519763344, 40.631665941245195], [-75.33221190172733, 40.63138586871448], [-75.33211596919342, 40.63133611997164]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 839, \"PRECINCTID\": \"040102-1\", \"NAME\": \"BETHLEHEM 1ST WARD SOUTHERN DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-10\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BROUGHAL MIDDLE SCHOOL\", \"SiteAddress\": \"114 W MORTON ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1253\", \"STATISTICS Ballots Cast - Total\": 709.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"56.58%\", \"Presidential Electors DEM Biden and Harris\": \"533\", \"Presidential Electors REP Trump and Pence\": \"162\", \"Presidential Electors LIB Jorgensen and Cohen\": \"8\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"497\", \"Attorney General REP Heather Heidelbaugh\": \"133\", \"Attorney General LIB Daniel Wassmer\": \"17\", \"Attorney General GRE Richard L Weiss\": \"14\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"483\", \"Auditor General REP Timothy Defoor\": \"142\", \"Auditor General LIB Jennifer Moore\": \"20\", \"Auditor General GRE Olivia Faison\": \"11\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"487\", \"State Treasurer REP Stacy L. Garrity\": \"138\", \"State Treasurer LIB Joe Soloski\": \"17\", \"State Treasurer GRE Timothy Runkle\": \"11\", \"State Treasurer Write-In Totals\": \"2\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"510\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"155\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"513\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"149\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 75.17630465444289, \"Presidential Electors Pct REP\": 22.8490832157969, \"Presidential Electors Pct LIB\": 1.1283497884344147, \"PA Attorney General Pct DEM\": 70.09873060648802, \"PA Attorney General Pct REP\": 18.758815232722146, \"PA Attorney General Pct LIB\": 2.3977433004231314, \"PA Attorney General Pct GRE\": 1.9746121297602257, \"PA Auditor General Pct DEM\": 68.12411847672779, \"PA Auditor General Pct REP\": 20.02820874471086, \"PA Auditor General Pct LIB\": 2.8208744710860367, \"PA Auditor General Pct GRE\": 1.5514809590973202, \"PA State Treasurer Pct DEM\": 68.68829337094499, \"PA State Treasurer Pct REP\": 19.464033850493653, \"PA State Treasurer Pct LIB\": 2.3977433004231314, \"PA State Treasurer Pct GRE\": 1.5514809590973202, \"PA Representative in Congress 7th Congressional District Pct DEM\": 71.93229901269393, \"PA Representative in Congress 7th Congressional District Pct REP\": 21.861777150916783, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.4169410989838163, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38473312544978, 40.60032992858943], [-75.38485852305615, 40.600339976322054], [-75.38551584845301, 40.600395013207084], [-75.38683346736462, 40.60049758598276], [-75.3885631492666, 40.6006380622898], [-75.38865656128193, 40.600645855648715], [-75.38873466727644, 40.60065237117613], [-75.38910210749076, 40.60067931716305], [-75.38913980973498, 40.60068208194684], [-75.3891883204315, 40.600685157994704], [-75.3892215851057, 40.60068726655614], [-75.38960062538929, 40.60071652930733], [-75.38971388253226, 40.60072505412029], [-75.38976321013337, 40.60072876637809], [-75.39031283050271, 40.60077342916601], [-75.39041149803215, 40.600781314649815], [-75.39050592487565, 40.60078886142161], [-75.39056662645473, 40.600794725696154], [-75.39061717419412, 40.600799609262886], [-75.39063425666599, 40.60080125988156], [-75.39063533094443, 40.60080136374313], [-75.3904209474708, 40.60220980334275], [-75.3903767001026, 40.60250049639472], [-75.39031304722091, 40.60291866061372], [-75.39026032792229, 40.603264997776954], [-75.39017219431288, 40.60384398385612], [-75.39008238380802, 40.604433971448394], [-75.38997165054116, 40.605161389879505], [-75.38996855113473, 40.605181751493625], [-75.38944354567975, 40.605556591609584], [-75.38944253213715, 40.60555731508351], [-75.38934734612455, 40.60562860077019], [-75.38910120634947, 40.605812935299895], [-75.38877130271948, 40.60605102380631], [-75.3885596697735, 40.60620778464029], [-75.38803058118154, 40.60659968902529], [-75.38731478919601, 40.607129582892355], [-75.38713264889041, 40.60726441800477], [-75.38711067958413, 40.60728080645953], [-75.38711062737005, 40.607280845934156], [-75.38704755370645, 40.60732789706272], [-75.38658127507779, 40.607678525831595], [-75.38607162968839, 40.608084044109226], [-75.38562489458093, 40.608416533253454], [-75.38549978627744, 40.60857126368908], [-75.38537535339222, 40.608725157350776], [-75.38537535789305, 40.608724558356904], [-75.38537802096985, 40.60836730264191], [-75.38537799856819, 40.60836713281909], [-75.3853666389392, 40.60828108934141], [-75.38503060727291, 40.60595060490782], [-75.38493481317623, 40.60529341101283], [-75.3848726692945, 40.604832033136134], [-75.38486774959867, 40.604715746871314], [-75.38486120318645, 40.60383499759236], [-75.38486004551433, 40.603679272724484], [-75.38482836307254, 40.60258189828985], [-75.384822062695, 40.60233561258783], [-75.3848180001698, 40.60216699979006], [-75.38474929880829, 40.60068000039902], [-75.38473312544978, 40.60032992858943]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 840, \"PRECINCTID\": \"040101-1\", \"NAME\": \"BETHLEHEM 1ST WARD NORTHERN DIST.\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-10\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"CATHEDRAL CHURCH OF THE NATIVITY\", \"SiteAddress\": \"321 WYANDOTTE ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1226\", \"STATISTICS Ballots Cast - Total\": 690.0, \"STATISTICS Ballots Cast - Blank\": \"2\", \"STATISTICS Voter Turnout - Total\": \"56.28%\", \"Presidential Electors DEM Biden and Harris\": \"516\", \"Presidential Electors REP Trump and Pence\": \"159\", \"Presidential Electors LIB Jorgensen and Cohen\": \"7\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"475\", \"Attorney General REP Heather Heidelbaugh\": \"146\", \"Attorney General LIB Daniel Wassmer\": \"13\", \"Attorney General GRE Richard L Weiss\": \"16\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"470\", \"Auditor General REP Timothy Defoor\": \"145\", \"Auditor General LIB Jennifer Moore\": \"16\", \"Auditor General GRE Olivia Faison\": \"14\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"467\", \"State Treasurer REP Stacy L. Garrity\": \"150\", \"State Treasurer LIB Joe Soloski\": \"14\", \"State Treasurer GRE Timothy Runkle\": \"17\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"500\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"156\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"490\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"150\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 74.78260869565217, \"Presidential Electors Pct REP\": 23.043478260869566, \"Presidential Electors Pct LIB\": 1.0144927536231882, \"PA Attorney General Pct DEM\": 68.84057971014492, \"PA Attorney General Pct REP\": 21.15942028985507, \"PA Attorney General Pct LIB\": 1.884057971014493, \"PA Attorney General Pct GRE\": 2.318840579710145, \"PA Auditor General Pct DEM\": 68.11594202898551, \"PA Auditor General Pct REP\": 21.014492753623188, \"PA Auditor General Pct LIB\": 2.318840579710145, \"PA Auditor General Pct GRE\": 2.0289855072463765, \"PA State Treasurer Pct DEM\": 67.68115942028986, \"PA State Treasurer Pct REP\": 21.73913043478261, \"PA State Treasurer Pct LIB\": 2.0289855072463765, \"PA State Treasurer Pct GRE\": 2.4637681159420293, \"PA Representative in Congress 7th Congressional District Pct DEM\": 72.46376811594203, \"PA Representative in Congress 7th Congressional District Pct REP\": 22.608695652173914, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.4057677832141513, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.38537535339222, 40.608725157350776], [-75.38549978627744, 40.60857126368908], [-75.38562489458093, 40.608416533253454], [-75.38607162968839, 40.608084044109226], [-75.38658127507779, 40.607678525831595], [-75.38704755370645, 40.60732789706272], [-75.38711062737005, 40.607280845934156], [-75.38711067958413, 40.60728080645953], [-75.38713264889041, 40.60726441800477], [-75.38731478919601, 40.607129582892355], [-75.38803058118154, 40.60659968902529], [-75.3885596697735, 40.60620778464029], [-75.38877130271948, 40.60605102380631], [-75.38910120634947, 40.605812935299895], [-75.38934734612455, 40.60562860077019], [-75.38944253213715, 40.60555731508351], [-75.38944354567975, 40.605556591609584], [-75.38996855113473, 40.605181751493625], [-75.38996825634342, 40.60518368598401], [-75.38985407261788, 40.60593375233375], [-75.38981595057334, 40.60618416625451], [-75.38979216552167, 40.60634040957435], [-75.3897573573043, 40.60656905724918], [-75.38945939603256, 40.608526232366906], [-75.38945151158819, 40.60857802364508], [-75.38944758584532, 40.60860976722999], [-75.38943690168874, 40.60869617902237], [-75.38936999148564, 40.60921696368571], [-75.38934521963142, 40.60940952912856], [-75.38933170970301, 40.6095122243756], [-75.38929908057963, 40.60976138600597], [-75.38928845407652, 40.60984253870932], [-75.38928205050853, 40.60989143228443], [-75.38922220470177, 40.610348432517554], [-75.3892061818215, 40.610471326496054], [-75.38919608180642, 40.61055384123054], [-75.38914254974313, 40.61094995978642], [-75.38904172580794, 40.611718297476834], [-75.38895750116102, 40.61234727665715], [-75.38895343311688, 40.61237757139698], [-75.38889774737349, 40.6127922652155], [-75.38884610233671, 40.61318584815469], [-75.38884503367392, 40.613190631663784], [-75.38879298953856, 40.61358222989486], [-75.38869692803816, 40.614305016526544], [-75.38869580144112, 40.614305083653186], [-75.38862741952265, 40.61430917719086], [-75.38842583338447, 40.61432926686768], [-75.3881674723445, 40.614375656709115], [-75.38805526746805, 40.61439001663488], [-75.38793688781139, 40.61440064614751], [-75.38770502845344, 40.61441059238437], [-75.38755874950597, 40.614420480586794], [-75.38739119465232, 40.61442058181609], [-75.38725713572622, 40.6144159606299], [-75.38720955509214, 40.61441130028635], [-75.38693925153116, 40.61441299537595], [-75.38664464425432, 40.61442581451577], [-75.3865982215977, 40.614427834139335], [-75.38618768326332, 40.61447248905922], [-75.38588349046897, 40.61449005202598], [-75.38568693717664, 40.61449505083191], [-75.38559383402715, 40.61450413436555], [-75.38549963782337, 40.614518687279386], [-75.38541064854972, 40.61453883815003], [-75.38517139031329, 40.614605519783076], [-75.3850191961356, 40.61465552815744], [-75.38501469427491, 40.614657213697996], [-75.3850146319599, 40.61465723765063], [-75.38485241171811, 40.61471756432718], [-75.38479283262357, 40.614739719582076], [-75.38466701113126, 40.61478263003196], [-75.38461677356904, 40.61479718330137], [-75.3845441492757, 40.614818220766594], [-75.38444672762957, 40.61484248423332], [-75.38443223350477, 40.61478369416768], [-75.38425966786757, 40.61404156525887], [-75.38425271686413, 40.61401167265946], [-75.38421580374623, 40.61384071382575], [-75.3842106832204, 40.61381699449432], [-75.38420081500831, 40.61377129133177], [-75.38419851734714, 40.61375920865475], [-75.38418674498945, 40.61369729220489], [-75.38418673600367, 40.61369724517565], [-75.38418623909705, 40.61369463418768], [-75.38418619829203, 40.61369441624234], [-75.38414760000518, 40.61349141107888], [-75.38413267358044, 40.613436996702994], [-75.38404275069601, 40.61310918675671], [-75.38401106558489, 40.612993676547816], [-75.38392599785551, 40.61239007456685], [-75.383925985063, 40.612390001334276], [-75.38386459933838, 40.61206120189625], [-75.38383696487028, 40.611852009769166], [-75.38382120287888, 40.611732696831], [-75.3838551864779, 40.611664628486324], [-75.38424951297137, 40.61087477233177], [-75.38454875667881, 40.610315382728714], [-75.3845488528151, 40.610315203614554], [-75.38454910338115, 40.61031473396648], [-75.3845888865133, 40.61024036505485], [-75.38537535339222, 40.608725157350776]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 841, \"PRECINCTID\": \"040200-1\", \"NAME\": \"BETHLEHEM 2ND WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-10\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BROUGHAL MIDDLE SCHOOL\", \"SiteAddress\": \"114 W MORTON ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1548\", \"STATISTICS Ballots Cast - Total\": 802.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"51.81%\", \"Presidential Electors DEM Biden and Harris\": \"619\", \"Presidential Electors REP Trump and Pence\": \"175\", \"Presidential Electors LIB Jorgensen and Cohen\": \"5\", \"Presidential Electors Write-In Totals\": \"2\", \"Attorney General DEM Josh Shapiro\": \"563\", \"Attorney General REP Heather Heidelbaugh\": \"145\", \"Attorney General LIB Daniel Wassmer\": \"16\", \"Attorney General GRE Richard L Weiss\": \"22\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"546\", \"Auditor General REP Timothy Defoor\": \"149\", \"Auditor General LIB Jennifer Moore\": \"23\", \"Auditor General GRE Olivia Faison\": \"26\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"538\", \"State Treasurer REP Stacy L. Garrity\": \"156\", \"State Treasurer LIB Joe Soloski\": \"19\", \"State Treasurer GRE Timothy Runkle\": \"29\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"599\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"158\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"589\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"157\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"0\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 77.18204488778055, \"Presidential Electors Pct REP\": 21.820448877805486, \"Presidential Electors Pct LIB\": 0.6234413965087282, \"PA Attorney General Pct DEM\": 70.19950124688279, \"PA Attorney General Pct REP\": 18.07980049875312, \"PA Attorney General Pct LIB\": 1.99501246882793, \"PA Attorney General Pct GRE\": 2.7431421446384037, \"PA Auditor General Pct DEM\": 68.07980049875312, \"PA Auditor General Pct REP\": 18.5785536159601, \"PA Auditor General Pct LIB\": 2.8678304239401498, \"PA Auditor General Pct GRE\": 3.2418952618453867, \"PA State Treasurer Pct DEM\": 67.08229426433915, \"PA State Treasurer Pct REP\": 19.45137157107232, \"PA State Treasurer Pct LIB\": 2.369077306733167, \"PA State Treasurer Pct GRE\": 3.6159600997506236, \"PA Representative in Congress 7th Congressional District Pct DEM\": 74.68827930174564, \"PA Representative in Congress 7th Congressional District Pct REP\": 19.70074812967581, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.4716315393300715, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37862210938358, 40.615228147209635], [-75.37862197236117, 40.61522515888424], [-75.37860173642284, 40.614783839815274], [-75.3785958307849, 40.61465969007979], [-75.37858404593464, 40.61441191725198], [-75.37857894799023, 40.614304733222085], [-75.3785665526795, 40.61404413103215], [-75.37854069473447, 40.613448772992676], [-75.37852837495213, 40.61300290864293], [-75.37852604737328, 40.61291868800365], [-75.37850117273476, 40.61249994440565], [-75.37849981080417, 40.61217347383037], [-75.37849888465928, 40.61195149104963], [-75.37847671005557, 40.611456089795944], [-75.37845895333723, 40.611193347973], [-75.37845658093805, 40.611158263197986], [-75.37843789316265, 40.610951388524896], [-75.37843260740672, 40.6108928788255], [-75.37840863232879, 40.610448583661416], [-75.37839726018963, 40.61015251818893], [-75.37839406668168, 40.61006936262223], [-75.37838326789365, 40.60978819053666], [-75.37838300760848, 40.60978819691972], [-75.37838300035078, 40.60978800037877], [-75.37837007307479, 40.60961246182943], [-75.37834499948008, 40.60927199957385], [-75.3783410048253, 40.60920567409201], [-75.37834000027654, 40.60918899980987], [-75.37834830918784, 40.609188226685944], [-75.37829833822418, 40.60821414397112], [-75.37829694862896, 40.60820265989574], [-75.37829262997924, 40.60816695958095], [-75.37828693860348, 40.608085860897724], [-75.37827970421017, 40.607950210989586], [-75.37827299530458, 40.60780454951181], [-75.37826533033495, 40.607664852119534], [-75.37825712018315, 40.60751469962321], [-75.37825689958773, 40.60739040207647], [-75.37826276868769, 40.60731742098194], [-75.37827928304391, 40.607268190696395], [-75.37829746997818, 40.607216176688986], [-75.37824294922157, 40.607194144668455], [-75.37814298564432, 40.60523104261401], [-75.37814064321347, 40.60520075199331], [-75.37813999629468, 40.60519237854863], [-75.377898009198, 40.60521024659117], [-75.37790529285081, 40.6045512894471], [-75.3779081137324, 40.604296065589544], [-75.37791222085097, 40.60392448107442], [-75.37791299971715, 40.603854000160666], [-75.37792100030339, 40.60310199979401], [-75.37792863419756, 40.60235674212187], [-75.37792900052413, 40.60232099983811], [-75.37792999960298, 40.60229999996719], [-75.37794300010947, 40.601140000234174], [-75.37794208106413, 40.60067999793776], [-75.37794145517583, 40.60036672956405], [-75.38057060357575, 40.6001873002424], [-75.38081983753263, 40.60016854369377], [-75.3818788619816, 40.600094950906275], [-75.38250461397496, 40.60015133331266], [-75.38473312544978, 40.60032992858943], [-75.38474929880829, 40.60068000039902], [-75.3848180001698, 40.60216699979006], [-75.384822062695, 40.60233561258783], [-75.38482836307254, 40.60258189828985], [-75.38486004551433, 40.603679272724484], [-75.38486120318645, 40.60383499759236], [-75.38486774959867, 40.604715746871314], [-75.3848726692945, 40.604832033136134], [-75.38493481317623, 40.60529341101283], [-75.38503060727291, 40.60595060490782], [-75.3853666389392, 40.60828108934141], [-75.38537799856819, 40.60836713281909], [-75.38537802096985, 40.60836730264191], [-75.38537535789305, 40.608724558356904], [-75.38537535339222, 40.608725157350776], [-75.3845888865133, 40.61024036505485], [-75.38454910338115, 40.61031473396648], [-75.3845488528151, 40.610315203614554], [-75.38454875667881, 40.610315382728714], [-75.38424951297137, 40.61087477233177], [-75.3838551864779, 40.611664628486324], [-75.38382120287888, 40.611732696831], [-75.38383696487028, 40.611852009769166], [-75.38386459933838, 40.61206120189625], [-75.383925985063, 40.612390001334276], [-75.38392599785551, 40.61239007456685], [-75.38401106558489, 40.612993676547816], [-75.38404275069601, 40.61310918675671], [-75.38413267358044, 40.613436996702994], [-75.38414760000518, 40.61349141107888], [-75.38418619829203, 40.61369441624234], [-75.38418623909705, 40.61369463418768], [-75.38418673600367, 40.61369724517565], [-75.38418674498945, 40.61369729220489], [-75.38419851734714, 40.61375920865475], [-75.38420081500831, 40.61377129133177], [-75.3842106832204, 40.61381699449432], [-75.38421580374623, 40.61384071382575], [-75.38425271686413, 40.61401167265946], [-75.38425966786757, 40.61404156525887], [-75.38443223350477, 40.61478369416768], [-75.38444672762957, 40.61484248423332], [-75.38438238686328, 40.61485850886722], [-75.38431713113725, 40.61486979056951], [-75.3839345275889, 40.614939634431934], [-75.38367009205778, 40.614979284144894], [-75.38317504178328, 40.61504468383778], [-75.38286445203572, 40.61509033915035], [-75.38263108111626, 40.61511757735178], [-75.3823104286961, 40.61514530346177], [-75.38213501791216, 40.6151604704729], [-75.3819465808566, 40.61517918890755], [-75.3816757919668, 40.61520608742209], [-75.38131242748084, 40.61521547771755], [-75.38098250572357, 40.61521872382221], [-75.38081955110871, 40.61522032673877], [-75.38049059310698, 40.61522356232343], [-75.38040114877528, 40.615221651928266], [-75.38015268654881, 40.615200600098106], [-75.38003483463193, 40.61519613001705], [-75.37969452595729, 40.61520193019291], [-75.3796184030038, 40.61520322769872], [-75.37953913000267, 40.615203236407716], [-75.37949155235981, 40.61519848737407], [-75.3794195412052, 40.61519692840155], [-75.37932400158448, 40.615198405895185], [-75.37916499936588, 40.61521136999422], [-75.37874727933709, 40.61522942263089], [-75.37867604142919, 40.61523148254791], [-75.37862210938358, 40.615228147209635]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 842, \"PRECINCTID\": \"040300-1\", \"NAME\": \"BETHLEHEM 3RD WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-10\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"BANANA FACTORY BANKO GALLERY\", \"SiteAddress\": \"25 W 3RD ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"3382\", \"STATISTICS Ballots Cast - Total\": 976.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"28.86%\", \"Presidential Electors DEM Biden and Harris\": \"819\", \"Presidential Electors REP Trump and Pence\": \"140\", \"Presidential Electors LIB Jorgensen and Cohen\": \"11\", \"Presidential Electors Write-In Totals\": \"3\", \"Attorney General DEM Josh Shapiro\": \"720\", \"Attorney General REP Heather Heidelbaugh\": \"141\", \"Attorney General LIB Daniel Wassmer\": \"21\", \"Attorney General GRE Richard L Weiss\": \"17\", \"Attorney General Write-In Totals\": \"1\", \"Auditor General DEM Nina Ahmad\": \"709\", \"Auditor General REP Timothy Defoor\": \"145\", \"Auditor General LIB Jennifer Moore\": \"23\", \"Auditor General GRE Olivia Faison\": \"17\", \"Auditor General Write-In Totals\": \"1\", \"State Treasurer DEM Joe Torsella\": \"706\", \"State Treasurer REP Stacy L. Garrity\": \"151\", \"State Treasurer LIB Joe Soloski\": \"23\", \"State Treasurer GRE Timothy Runkle\": \"17\", \"State Treasurer Write-In Totals\": \"1\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"745\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"154\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"3\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"737\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"165\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"1\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 83.9139344262295, \"Presidential Electors Pct REP\": 14.344262295081966, \"Presidential Electors Pct LIB\": 1.1270491803278688, \"PA Attorney General Pct DEM\": 73.77049180327869, \"PA Attorney General Pct REP\": 14.446721311475411, \"PA Attorney General Pct LIB\": 2.151639344262295, \"PA Attorney General Pct GRE\": 1.7418032786885245, \"PA Auditor General Pct DEM\": 72.64344262295081, \"PA Auditor General Pct REP\": 14.856557377049182, \"PA Auditor General Pct LIB\": 2.3565573770491803, \"PA Auditor General Pct GRE\": 1.7418032786885245, \"PA State Treasurer Pct DEM\": 72.3360655737705, \"PA State Treasurer Pct REP\": 15.471311475409836, \"PA State Treasurer Pct LIB\": 2.3565573770491803, \"PA State Treasurer Pct GRE\": 1.7418032786885245, \"PA Representative in Congress 7th Congressional District Pct DEM\": 76.33196721311475, \"PA Representative in Congress 7th Congressional District Pct REP\": 15.778688524590164, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5739555890101619, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.37579493859835, 40.60051297200431], [-75.3757950629924, 40.60051296374333], [-75.37650710045871, 40.600464593133594], [-75.37794145517583, 40.60036672956405], [-75.37794208106413, 40.60067999793776], [-75.37794300010947, 40.601140000234174], [-75.37792999960298, 40.60229999996719], [-75.37792900052413, 40.60232099983811], [-75.37792863419756, 40.60235674212187], [-75.37792100030339, 40.60310199979401], [-75.37791299971715, 40.603854000160666], [-75.37791222085097, 40.60392448107442], [-75.3779081137324, 40.604296065589544], [-75.37790529285081, 40.6045512894471], [-75.377898009198, 40.60521024659117], [-75.37813999629468, 40.60519237854863], [-75.37814064321347, 40.60520075199331], [-75.37814298564432, 40.60523104261401], [-75.37824294922157, 40.607194144668455], [-75.37829746997818, 40.607216176688986], [-75.37827928304391, 40.607268190696395], [-75.37826276868769, 40.60731742098194], [-75.37825689958773, 40.60739040207647], [-75.37825712018315, 40.60751469962321], [-75.37826533033495, 40.607664852119534], [-75.37827299530458, 40.60780454951181], [-75.37827970421017, 40.607950210989586], [-75.37828693860348, 40.608085860897724], [-75.37829262997924, 40.60816695958095], [-75.37829694862896, 40.60820265989574], [-75.37829833822418, 40.60821414397112], [-75.37834830918784, 40.609188226685944], [-75.37834000027654, 40.60918899980987], [-75.3783410048253, 40.60920567409201], [-75.37834499948008, 40.60927199957385], [-75.37837007307479, 40.60961246182943], [-75.37838300035078, 40.60978800037877], [-75.37838300760848, 40.60978819691972], [-75.37838326789365, 40.60978819053666], [-75.37839406668168, 40.61006936262223], [-75.37839726018963, 40.61015251818893], [-75.37840863232879, 40.610448583661416], [-75.37843260740672, 40.6108928788255], [-75.37843789316265, 40.610951388524896], [-75.37845658093805, 40.611158263197986], [-75.37845895333723, 40.611193347973], [-75.37847671005557, 40.611456089795944], [-75.37849888465928, 40.61195149104963], [-75.37849981080417, 40.61217347383037], [-75.37850117273476, 40.61249994440565], [-75.37852604737328, 40.61291868800365], [-75.37852837495213, 40.61300290864293], [-75.37854069473447, 40.613448772992676], [-75.3785665526795, 40.61404413103215], [-75.37857894799023, 40.614304733222085], [-75.37858404593464, 40.61441191725198], [-75.3785958307849, 40.61465969007979], [-75.37860173642284, 40.614783839815274], [-75.37862197236117, 40.61522515888424], [-75.37862210938358, 40.615228147209635], [-75.37858255898334, 40.61522570800069], [-75.37848862321007, 40.615232794991314], [-75.37842355655735, 40.615238671082366], [-75.37830364741843, 40.615241450665856], [-75.37771001827788, 40.615240967279895], [-75.37744442066177, 40.61523681605818], [-75.37685889922527, 40.61523632227166], [-75.37660339721168, 40.615226884132284], [-75.37649789084605, 40.61522995689103], [-75.37632583911271, 40.61522977887175], [-75.37612279714052, 40.61523986360205], [-75.3759852895315, 40.615256352885694], [-75.37598076745978, 40.61525686111439], [-75.37588516296522, 40.61526013621119], [-75.37535047893785, 40.6153251193354], [-75.37513463251177, 40.615366174393095], [-75.37493222192563, 40.615409391831896], [-75.37455508232628, 40.61547717198865], [-75.37433366731581, 40.615522831124785], [-75.37414831561834, 40.6155675978753], [-75.37401851481307, 40.61559539851408], [-75.37362859923381, 40.6156678054835], [-75.37337921961586, 40.615734135660055], [-75.37337832351945, 40.61573142454013], [-75.37328200051059, 40.6154400004099], [-75.37327200025547, 40.615177999617806], [-75.37327400006136, 40.615098999882214], [-75.3732750003577, 40.61505799960158], [-75.37327599986259, 40.615020000145236], [-75.37327699959252, 40.61497499993224], [-75.37328299985181, 40.61470199964438], [-75.37328600055241, 40.6144939995772], [-75.37328700019444, 40.614415000032956], [-75.37328700030774, 40.61435947681375], [-75.37324658550457, 40.61436224946405], [-75.37315057722415, 40.61312834104543], [-75.37314286800985, 40.61264091670303], [-75.37309940994456, 40.61210560662979], [-75.3732735527687, 40.61210098124443], [-75.37325091744881, 40.61159424195915], [-75.37324063144017, 40.61137538828973], [-75.37321773085593, 40.61120767663017], [-75.37320599043493, 40.611030067985034], [-75.37320598812668, 40.61102999947052], [-75.37319130964518, 40.610578666372824], [-75.37315943188153, 40.60997657508419], [-75.37314772213082, 40.609683293503444], [-75.37313553558864, 40.60937807981848], [-75.37310359952627, 40.60877770241949], [-75.37309901824979, 40.60865417647795], [-75.37309715654534, 40.60860397975002], [-75.37309714103418, 40.60860354880912], [-75.37438662199771, 40.6084357256581], [-75.37434287322988, 40.60740425774655], [-75.37434222165956, 40.60731875498563], [-75.37434125233789, 40.60719142846609], [-75.37433919843686, 40.60692175981704], [-75.37450800057788, 40.606717999989975], [-75.37529900013755, 40.60606100031072], [-75.37531620653276, 40.60604510107869], [-75.37539226475202, 40.60597604708358], [-75.37541561554447, 40.60595484776318], [-75.37543684033285, 40.60593557779541], [-75.375549856203, 40.605815920954576], [-75.37556204678684, 40.6058030134144], [-75.3755800004675, 40.60550900040637], [-75.3755852139459, 40.605429051096955], [-75.37560099942543, 40.60518699986784], [-75.37560362653431, 40.60515535790619], [-75.37564799962664, 40.60462099982004], [-75.37563860143823, 40.604229229695235], [-75.37563200003116, 40.60395400031943], [-75.37567217448871, 40.60329630782858], [-75.37569399961816, 40.60293900038709], [-75.37572699996352, 40.60211499971792], [-75.37572854936657, 40.602076444778355], [-75.37575299945237, 40.601468000018166], [-75.37579493859835, 40.60051297200431]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 843, \"PRECINCTID\": \"040400-1\", \"NAME\": \"BETHLEHEM 4TH WARD\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"135th District\", \"MDJ\": \"03-2-10\", \"CountyCouncil\": \"District 1\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"ST JOHN'S WINDISH LUTHERAN CHURCH\", \"SiteAddress\": \"617 E 4TH ST\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1789\", \"STATISTICS Ballots Cast - Total\": 885.0, \"STATISTICS Ballots Cast - Blank\": \"1\", \"STATISTICS Voter Turnout - Total\": \"49.47%\", \"Presidential Electors DEM Biden and Harris\": \"666\", \"Presidential Electors REP Trump and Pence\": \"199\", \"Presidential Electors LIB Jorgensen and Cohen\": \"14\", \"Presidential Electors Write-In Totals\": \"1\", \"Attorney General DEM Josh Shapiro\": \"613\", \"Attorney General REP Heather Heidelbaugh\": \"180\", \"Attorney General LIB Daniel Wassmer\": \"17\", \"Attorney General GRE Richard L Weiss\": \"13\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"608\", \"Auditor General REP Timothy Defoor\": \"178\", \"Auditor General LIB Jennifer Moore\": \"22\", \"Auditor General GRE Olivia Faison\": \"13\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"597\", \"State Treasurer REP Stacy L. Garrity\": \"191\", \"State Treasurer LIB Joe Soloski\": \"16\", \"State Treasurer GRE Timothy Runkle\": \"15\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"640\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"189\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"0\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": \"623\", \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": \"198\", \"Representative in the General Assembly 135th Legislative District Write-In Totals\": \"3\", \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": NaN, \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": NaN, \"Representative in the General Assembly 131st Legislative District Write-In Totals\": NaN, \"Presidential Electors Pct DEM\": 75.2542372881356, \"Presidential Electors Pct REP\": 22.48587570621469, \"Presidential Electors Pct LIB\": 1.5819209039548021, \"PA Attorney General Pct DEM\": 69.26553672316385, \"PA Attorney General Pct REP\": 20.33898305084746, \"PA Attorney General Pct LIB\": 1.92090395480226, \"PA Attorney General Pct GRE\": 1.4689265536723164, \"PA Auditor General Pct DEM\": 68.7005649717514, \"PA Auditor General Pct REP\": 20.112994350282488, \"PA Auditor General Pct LIB\": 2.4858757062146895, \"PA Auditor General Pct GRE\": 1.4689265536723164, \"PA State Treasurer Pct DEM\": 67.45762711864407, \"PA State Treasurer Pct REP\": 21.581920903954803, \"PA State Treasurer Pct LIB\": 1.807909604519774, \"PA State Treasurer Pct GRE\": 1.694915254237288, \"PA Representative in Congress 7th Congressional District Pct DEM\": 72.31638418079096, \"PA Representative in Congress 7th Congressional District Pct REP\": 21.35593220338983, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5204412871659766, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.36802734051484, 40.61430430242121], [-75.36791673242725, 40.613234444021515], [-75.36791664059378, 40.61323373223619], [-75.36779295490967, 40.612275714226556], [-75.36785702194703, 40.61227338208196], [-75.36784599961491, 40.61188700011191], [-75.36783400606508, 40.611463011407], [-75.3678131498562, 40.611192692689], [-75.36780607716295, 40.61109987320062], [-75.36778621854135, 40.61071941471641], [-75.36778602210293, 40.61071942058682], [-75.36751004987346, 40.610728265086095], [-75.3675100060715, 40.61072826688795], [-75.36750973859851, 40.61072827580151], [-75.36736898675409, 40.610732785516106], [-75.36736868732352, 40.610732795573846], [-75.36733074120205, 40.61012551295139], [-75.36733097531096, 40.61012551146008], [-75.36732061991299, 40.60992642529984], [-75.36730047760736, 40.60953023037113], [-75.36727815173697, 40.60904151546995], [-75.3672699420498, 40.6088876636149], [-75.36726993073736, 40.60888744897143], [-75.36726992572041, 40.60888735697787], [-75.3672699157502, 40.60888717119035], [-75.36725162098834, 40.60854430424962], [-75.36723996483762, 40.60826145840942], [-75.36723127393154, 40.60805056694008], [-75.36721884156326, 40.60784809565952], [-75.36720156817485, 40.6075667621288], [-75.3671965061979, 40.607404477797985], [-75.3671584566474, 40.60676766682812], [-75.3671461729292, 40.606562078761435], [-75.36709143098429, 40.60508116659889], [-75.3670910061535, 40.60508118038209], [-75.36709099953656, 40.60508100006865], [-75.36705865253452, 40.60455435381132], [-75.36702699949213, 40.60403899995095], [-75.36703496617517, 40.60390338307717], [-75.36703499983487, 40.60390299999184], [-75.36705794097666, 40.603629700515576], [-75.3670580000628, 40.60362899994016], [-75.36706599991287, 40.60343599994368], [-75.36697073989585, 40.602141369159156], [-75.3669610003715, 40.60200899963125], [-75.36742599965129, 40.60165600019195], [-75.36779055270229, 40.601052669486315], [-75.36904402718922, 40.600960494445076], [-75.37237229299184, 40.60074124724302], [-75.37339132096977, 40.600674100656654], [-75.37357170429671, 40.60066221349251], [-75.37444691944981, 40.60060453394708], [-75.37579493859835, 40.60051297200431], [-75.37575299945237, 40.601468000018166], [-75.37572854936657, 40.602076444778355], [-75.37572699996352, 40.60211499971792], [-75.37569399961816, 40.60293900038709], [-75.37567217448871, 40.60329630782858], [-75.37563200003116, 40.60395400031943], [-75.37563860143823, 40.604229229695235], [-75.37564799962664, 40.60462099982004], [-75.37560362653431, 40.60515535790619], [-75.37560099942543, 40.60518699986784], [-75.3755852139459, 40.605429051096955], [-75.3755800004675, 40.60550900040637], [-75.37556204678684, 40.6058030134144], [-75.375549856203, 40.605815920954576], [-75.37543684033285, 40.60593557779541], [-75.37541561554447, 40.60595484776318], [-75.37539226475202, 40.60597604708358], [-75.37531620653276, 40.60604510107869], [-75.37529900013755, 40.60606100031072], [-75.37450800057788, 40.606717999989975], [-75.37433919843686, 40.60692175981704], [-75.37434125233789, 40.60719142846609], [-75.37434222165956, 40.60731875498563], [-75.37434287322988, 40.60740425774655], [-75.37438662199771, 40.6084357256581], [-75.37309714103418, 40.60860354880912], [-75.37309715654534, 40.60860397975002], [-75.37309901824979, 40.60865417647795], [-75.37310359952627, 40.60877770241949], [-75.37313553558864, 40.60937807981848], [-75.37314772213082, 40.609683293503444], [-75.37315943188153, 40.60997657508419], [-75.37319130964518, 40.610578666372824], [-75.37320598812668, 40.61102999947052], [-75.37320599043493, 40.611030067985034], [-75.37321773085593, 40.61120767663017], [-75.37324063144017, 40.61137538828973], [-75.37325091744881, 40.61159424195915], [-75.3732735527687, 40.61210098124443], [-75.37309940994456, 40.61210560662979], [-75.37314286800985, 40.61264091670303], [-75.37315057722415, 40.61312834104543], [-75.37324658550457, 40.61436224946405], [-75.37328700030774, 40.61435947681375], [-75.37328700019444, 40.614415000032956], [-75.37328600055241, 40.6144939995772], [-75.37328299985181, 40.61470199964438], [-75.37327699959252, 40.61497499993224], [-75.37327599986259, 40.615020000145236], [-75.3732750003577, 40.61505799960158], [-75.37327400006136, 40.615098999882214], [-75.37327200025547, 40.615177999617806], [-75.37328200051059, 40.6154400004099], [-75.373372542144, 40.615713933325075], [-75.371976500326, 40.61600939959605], [-75.37180840039932, 40.61605869954835], [-75.37172720000682, 40.61609340052325], [-75.37170999929819, 40.61613700062784], [-75.37149999988662, 40.616162099977174], [-75.36950947997504, 40.616399724128044], [-75.36770500046295, 40.61647899958078], [-75.36768099984197, 40.6162020004151], [-75.36768800048115, 40.61596800005221], [-75.36768700052416, 40.615930000013634], [-75.36768599944487, 40.61589299993319], [-75.36768400000199, 40.615846000229155], [-75.36768299993332, 40.61580600022406], [-75.3676539997584, 40.61498100014109], [-75.36765200028199, 40.61493199956089], [-75.36764499988514, 40.61471200016451], [-75.3676380002976, 40.614526000154974], [-75.36763439175131, 40.614420881013366], [-75.36802734051484, 40.61430430242121]]]}}, {\"type\": \"Feature\", \"properties\": {\"OBJECTID\": 1201, \"PRECINCTID\": \"190004-1\", \"NAME\": \"LOWER SAUCON TWP DISTRICT 4\", \"COUNTY\": \"095\", \"REG_VOTERS\": null, \"PAStateSenate\": \"18th District\", \"PAStateHouse\": \"131st District\", \"MDJ\": \"03-2-04\", \"CountyCouncil\": \"District 3\", \"USHOUSE\": \"7th District\", \"PollingPlace\": \"LOWER SAUCON TOWN HALL\", \"SiteAddress\": \"3700 OLD PHILADELPHIA PIKE\", \"City\": \"BETHLEHEM\", \"STATISTICS Registered Voters - Total\": \"1229\", \"STATISTICS Ballots Cast - Total\": 973.0, \"STATISTICS Ballots Cast - Blank\": \"0\", \"STATISTICS Voter Turnout - Total\": \"79.17%\", \"Presidential Electors DEM Biden and Harris\": \"501\", \"Presidential Electors REP Trump and Pence\": \"458\", \"Presidential Electors LIB Jorgensen and Cohen\": \"9\", \"Presidential Electors Write-In Totals\": \"4\", \"Attorney General DEM Josh Shapiro\": \"483\", \"Attorney General REP Heather Heidelbaugh\": \"434\", \"Attorney General LIB Daniel Wassmer\": \"13\", \"Attorney General GRE Richard L Weiss\": \"12\", \"Attorney General Write-In Totals\": \"0\", \"Auditor General DEM Nina Ahmad\": \"442\", \"Auditor General REP Timothy Defoor\": \"453\", \"Auditor General LIB Jennifer Moore\": \"26\", \"Auditor General GRE Olivia Faison\": \"10\", \"Auditor General Write-In Totals\": \"0\", \"State Treasurer DEM Joe Torsella\": \"448\", \"State Treasurer REP Stacy L. Garrity\": \"459\", \"State Treasurer LIB Joe Soloski\": \"21\", \"State Treasurer GRE Timothy Runkle\": \"12\", \"State Treasurer Write-In Totals\": \"0\", \"Representative in Congress 7th Congressional District DEM Susan Wild\": \"480\", \"Representative in Congress 7th Congressional District REP Lisa Scheller\": \"468\", \"Representative in Congress 7th Congressional District Write-In Totals\": \"1\", \"Representative in the General Assembly 183rd Legislative District DEM Jason Ruff\": NaN, \"Representative in the General Assembly 183rd Legislative District REP Zach Mako\": NaN, \"Representative in the General Assembly 183rd Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 137th Legislative District DEM Katelind Brennan\": NaN, \"Representative in the General Assembly 137th Legislative District REP Joe Emrick\": NaN, \"Representative in the General Assembly 137th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 138th Legislative District DEM Tara Zrinski\": NaN, \"Representative in the General Assembly 138th Legislative District REP Ann Flood\": NaN, \"Representative in the General Assembly 138th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 135th Legislative District DEM Steve Samuelson\": NaN, \"Representative in the General Assembly 135th Legislative District REP Scott J Hough\": NaN, \"Representative in the General Assembly 135th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 136th Legislative District DEM Robert Freeman\": NaN, \"Representative in the General Assembly 136th Legislative District Write-In Totals\": NaN, \"Representative in the General Assembly 131st Legislative District DEM Kevin Branco\": \"475\", \"Representative in the General Assembly 131st Legislative District REP Milou Mackenzie\": \"465\", \"Representative in the General Assembly 131st Legislative District Write-In Totals\": \"3\", \"Presidential Electors Pct DEM\": 51.49023638232272, \"Presidential Electors Pct REP\": 47.07091469681398, \"Presidential Electors Pct LIB\": 0.9249743062692704, \"PA Attorney General Pct DEM\": 49.64028776978417, \"PA Attorney General Pct REP\": 44.60431654676259, \"PA Attorney General Pct LIB\": 1.3360739979445015, \"PA Attorney General Pct GRE\": 1.2332990750256936, \"PA Auditor General Pct DEM\": 45.426515930113055, \"PA Auditor General Pct REP\": 46.557040082219935, \"PA Auditor General Pct LIB\": 2.672147995889003, \"PA Auditor General Pct GRE\": 1.027749229188078, \"PA State Treasurer Pct DEM\": 46.043165467625904, \"PA State Treasurer Pct REP\": 47.173689619732784, \"PA State Treasurer Pct LIB\": 2.158273381294964, \"PA State Treasurer Pct GRE\": 1.2332990750256936, \"PA Representative in Congress 7th Congressional District Pct DEM\": 49.33196300102775, \"PA Representative in Congress 7th Congressional District Pct REP\": 48.098663926002054, \"County Total Votes\": 170048.0, \"Pct Ballots Cast\": 0.5721913812570568, \"Max Ballots Cast\": 3295.0, \"Min Ballots Cast\": 119.0}, \"geometry\": {\"type\": \"Polygon\", \"coordinates\": [[[-75.36351007010421, 40.580139371066316], [-75.36351121638347, 40.58014000008983], [-75.3647075637746, 40.58080728110274], [-75.36585627122047, 40.58144756862253], [-75.36673289326478, 40.58194057247929], [-75.36715483884943, 40.58222985439771], [-75.36718188336674, 40.58224942149206], [-75.36764471154424, 40.58258428909447], [-75.36776796156741, 40.58268902436284], [-75.36787464940863, 40.58276423624369], [-75.3678747312675, 40.58276429378282], [-75.3685761687091, 40.583258779073105], [-75.3687788509691, 40.583399379575404], [-75.36929769750397, 40.58375929895078], [-75.36949215081616, 40.583893000209194], [-75.37002905979034, 40.58426216117234], [-75.37041746929471, 40.58453297931061], [-75.3706719726705, 40.58469720299474], [-75.37078105068599, 40.58476758823075], [-75.3709166145946, 40.58485532447385], [-75.37098842164121, 40.584906541344246], [-75.37101410391348, 40.58492485969861], [-75.37111946277031, 40.5849780927378], [-75.37130603243715, 40.585072357256884], [-75.37172231279833, 40.585268229808655], [-75.37205495636499, 40.58541177692415], [-75.37216221883013, 40.58545806437311], [-75.37282430872717, 40.58573080307614], [-75.3731217048605, 40.585859867823736], [-75.37325620275092, 40.58591823737832], [-75.37332608146558, 40.58594824587389], [-75.37435873647297, 40.586391704631055], [-75.37448821807746, 40.5864497995353], [-75.37449081100239, 40.58645096261654], [-75.37454192578484, 40.58647698280759], [-75.37458899744864, 40.58650094439718], [-75.37470808797617, 40.586570919431516], [-75.37480843740067, 40.58663613345349], [-75.37488143197174, 40.586685511812995], [-75.37497525623903, 40.58675702780206], [-75.37503636157999, 40.5868023010263], [-75.3751235550528, 40.586866902624884], [-75.37532063791807, 40.58702334177741], [-75.3758508921489, 40.58743494536512], [-75.37607458547748, 40.58760291228522], [-75.37607905809087, 40.58760616608129], [-75.37700904680835, 40.58828276413704], [-75.37701218645329, 40.58828504825428], [-75.37861449842849, 40.58779774332477], [-75.37904978669509, 40.587676168460305], [-75.37905006845205, 40.587676086842585], [-75.37905010189641, 40.5876760767166], [-75.37948173686235, 40.5875478643082], [-75.3794822409829, 40.58754770976473], [-75.37948227685224, 40.58754769788652], [-75.37991017084484, 40.58741288491981], [-75.3799107302967, 40.58741270267848], [-75.38033491171112, 40.587271285272934], [-75.38033544996885, 40.58727110079418], [-75.3803355145902, 40.58727107779247], [-75.3807557847698, 40.587123123997024], [-75.38075623121307, 40.587122962862836], [-75.38075628150555, 40.58712294407223], [-75.38117261281452, 40.58696846417658], [-75.38117292423674, 40.586968345323335], [-75.38117299131426, 40.586968319668784], [-75.38117303203308, 40.5869683042857], [-75.3811730727836, 40.58696828800241], [-75.38158522461202, 40.58680736721835], [-75.38186687236396, 40.58668551991788], [-75.38186704289309, 40.586685442325184], [-75.3821437956158, 40.58655753310948], [-75.38214407929613, 40.586557396569674], [-75.38241576364109, 40.58642351472139], [-75.38241615108834, 40.586423317240296], [-75.38241617878576, 40.58642330249149], [-75.38268255031625, 40.58628357638081], [-75.38268290332788, 40.58628338360021], [-75.3829439353332, 40.58613783253773], [-75.3829442609627, 40.58613764550288], [-75.38294431405873, 40.58613761415628], [-75.38319970164783, 40.58598640581795], [-75.38319994201298, 40.58598625757975], [-75.38344963570195, 40.58582942072138], [-75.3834497493578, 40.585829347369554], [-75.38344978081876, 40.5858293263912], [-75.38369352959492, 40.58566700907127], [-75.38391324159076, 40.585513447751374], [-75.3839134574403, 40.58551329090288], [-75.38412703616635, 40.585355107561476], [-75.38412728752414, 40.58535491540256], [-75.3841273239927, 40.58535488641836], [-75.38433473499305, 40.58519212002396], [-75.38453615623722, 40.58502461568892], [-75.38453636945874, 40.58502443265995], [-75.38473113993703, 40.58485274176933], [-75.3847313926831, 40.584852509998555], [-75.38491952278396, 40.58467664000434], [-75.3851079479533, 40.584494798367245], [-75.3851081230382, 40.58449462446821], [-75.3852902984013, 40.58430939281226], [-75.38529057690985, 40.58430910030611], [-75.38546645898047, 40.58412053993287], [-75.38546675773993, 40.58412020910181], [-75.38563631793204, 40.58392836089608], [-75.3856365040098, 40.58392814307735], [-75.38579976461916, 40.583732978693014], [-75.3859566920781, 40.58353451278562], [-75.38595682088648, 40.58353434424687], [-75.38610700480936, 40.58333309277925], [-75.38610721843078, 40.58333279714496], [-75.38616101454757, 40.58325771908438], [-75.38626109800462, 40.58311342934327], [-75.38638741125892, 40.58292190723145], [-75.38638755759621, 40.58292167688888], [-75.38651732695486, 40.582712402062555], [-75.38664347531352, 40.5824901624261], [-75.38664361430024, 40.582489905807584], [-75.38676195127117, 40.582265482338606], [-75.3867620846692, 40.58226521659704], [-75.38687267391924, 40.58203851422231], [-75.3869755552367, 40.58180941125388], [-75.38697566986737, 40.58180914152558], [-75.38707053647198, 40.58157833441313], [-75.38707065849091, 40.58157802249384], [-75.38715755306792, 40.58134544185716], [-75.38719920821018, 40.581234707195605], [-75.38741842154718, 40.58151274187791], [-75.38743840134237, 40.58157229084477], [-75.38746703402006, 40.581629751514264], [-75.38750395650366, 40.58168439306128], [-75.38754870150187, 40.581735524874986], [-75.3876007010179, 40.58178249753186], [-75.38765929653388, 40.58182471561645], [-75.38772374469276, 40.581861644143785], [-75.38779323003403, 40.58189281602734], [-75.38786686965422, 40.58191783397595], [-75.3879201631196, 40.58193070283145], [-75.38809228651193, 40.581977719178795], [-75.38820839786574, 40.5820301144117], [-75.38831647493745, 40.58208054390079], [-75.38842082807085, 40.582134500882624], [-75.38849483877617, 40.5821807166096], [-75.38855625320868, 40.58222667632376], [-75.38860578463053, 40.5822777134161], [-75.38861138604526, 40.58228271493997], [-75.38870618361084, 40.58236737175098], [-75.38878389556142, 40.58243376510208], [-75.38881545693543, 40.582460729795066], [-75.38894529835407, 40.58255811062551], [-75.38896396773725, 40.58257064420586], [-75.38896403818515, 40.58257069068641], [-75.38896412130578, 40.58257074643425], [-75.3889641778687, 40.582570784523746], [-75.38896428062021, 40.582570853284174], [-75.38896432447892, 40.58257088300673], [-75.38908252876297, 40.58265023573293], [-75.38917175192138, 40.58269916470398], [-75.3892390258965, 40.582732113991995], [-75.38925236353415, 40.582737011035974], [-75.389311030243, 40.58275855167963], [-75.38938005457705, 40.58277804941776], [-75.38942693274224, 40.58279129127845], [-75.3895029688894, 40.5828082940826], [-75.38950305914574, 40.58280831484091], [-75.38955022095189, 40.582818860678955], [-75.3897067386014, 40.5828488234179], [-75.38995059290309, 40.58290450689385], [-75.39028739272506, 40.58294487693418], [-75.39060871619317, 40.58298339015772], [-75.39101979666327, 40.58302919117915], [-75.3912760037967, 40.583057736579285], [-75.39173438658614, 40.58310403995548], [-75.39242085689827, 40.58317338038349], [-75.39257059420825, 40.583191359952664], [-75.39309057904538, 40.583235396699216], [-75.39332020193591, 40.58325484259035], [-75.39341661397968, 40.58335987649408], [-75.3934719823009, 40.58342019667099], [-75.394
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment