Skip to content

Instantly share code, notes, and snippets.

@emiliom
Created December 14, 2022 20:48
Show Gist options
  • Save emiliom/89acdefb2208673e25f5799c1945c7ef to your computer and use it in GitHub Desktop.
Save emiliom/89acdefb2208673e25f5799c1945c7ef to your computer and use it in GitHub Desktop.
Notebook was run using a jupyter notebook (rather than jupyterlab) conda env.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "f0aa0cbe",
"metadata": {},
"source": [
"# EchoPro Python Workflow <a class=\"tocSkip\">"
]
},
{
"cell_type": "markdown",
"id": "ccaef1d6",
"metadata": {},
"source": [
"# Import libraries and configure the Jupyter notebook"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "66ad49aa",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'0.1.0-alpha'"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import matplotlib.pyplot as plt\n",
"\n",
"# Python EchoPro\n",
"import EchoPro\n",
"\n",
"# Allows us to grab the SemiVariogram class so we can use its models\n",
"from EchoPro.computation import SemiVariogram as SV\n",
"\n",
"# obtain all visualization routines\n",
"from EchoPro.visualization import plot_layered_points, plot_kriging_results\n",
"\n",
"# Allows us to easily use matplotlib widgets in our Notebook\n",
"%matplotlib widget\n",
"\n",
"EchoPro.__version__"
]
},
{
"cell_type": "markdown",
"id": "62ccae43",
"metadata": {},
"source": [
"# Set up EchoPro for a specific survey year"
]
},
{
"cell_type": "markdown",
"id": "866dbb16",
"metadata": {},
"source": [
"## Initialize EchoPro object using configuration files\n",
"\n",
"* `initialization_config.yml` -- parameters independent of survey year\n",
"* `survey_year_2019_config.yml` -- parameters specific to survey year\n",
"* `source` -- Define the region of data to use e.g. US, CAN, US & CAN\n",
"* `exclude_age1` -- States whether age 1 hake should be included in analysis."
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "059a8a59",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"A full check of the initialization file contents needs to be done!\n",
"A check of the survey year file contents needs to be done!\n",
"CPU times: user 5.95 ms, sys: 0 ns, total: 5.95 ms\n",
"Wall time: 5.92 ms\n"
]
}
],
"source": [
"%%time\n",
"survey_2019 = EchoPro.Survey(init_file_path='../config_files/initialization_config.yml',\n",
" survey_year_file_path='../config_files/survey_year_2019_config.yml',\n",
" source=3, \n",
" exclude_age1=True)"
]
},
{
"cell_type": "markdown",
"id": "81e28c67",
"metadata": {},
"source": [
"## Load and process input data \n",
"* This data is stored in `survey_2019`"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "8c0d730c",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 1.22 s, sys: 19 ms, total: 1.23 s\n",
"Wall time: 1.23 s\n"
]
}
],
"source": [
"%%time \n",
"survey_2019.load_survey_data() #file_type='biological')"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "4eebe739",
"metadata": {},
"outputs": [
{
"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>sex</th>\n",
" <th>length</th>\n",
" <th>weight</th>\n",
" <th>age</th>\n",
" </tr>\n",
" <tr>\n",
" <th>haul_num</th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1</td>\n",
" <td>24.0</td>\n",
" <td>0.08</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1</td>\n",
" <td>23.0</td>\n",
" <td>0.06</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1</td>\n",
" <td>22.0</td>\n",
" <td>0.06</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>1</td>\n",
" <td>21.0</td>\n",
" <td>0.06</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>2</td>\n",
" <td>22.0</td>\n",
" <td>0.06</td>\n",
" <td>1.0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" sex length weight age\n",
"haul_num \n",
"1 1 24.0 0.08 1.0\n",
"1 1 23.0 0.06 1.0\n",
"1 1 22.0 0.06 1.0\n",
"1 1 21.0 0.06 1.0\n",
"1 2 22.0 0.06 1.0"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"survey_2019.specimen_df.head()"
]
},
{
"cell_type": "markdown",
"id": "75ecf293",
"metadata": {},
"source": [
"## Compute the areal biomass density\n",
"* The areal biomass density is stored in `survey_2019`"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "1a648765",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 308 ms, sys: 57 µs, total: 308 ms\n",
"Wall time: 307 ms\n"
]
}
],
"source": [
"%%time\n",
"survey_2019.compute_biomass_density()"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "33d094a7",
"metadata": {},
"outputs": [
{
"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>latitude</th>\n",
" <th>longitude</th>\n",
" <th>stratum_num</th>\n",
" <th>transect_spacing</th>\n",
" <th>areal_biomass_density_adult</th>\n",
" <th>geometry</th>\n",
" </tr>\n",
" <tr>\n",
" <th>transect_num</th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" <th></th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>34.397267</td>\n",
" <td>-121.143005</td>\n",
" <td>1</td>\n",
" <td>10.0</td>\n",
" <td>0.0</td>\n",
" <td>POINT (-121.14301 34.39727)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>34.397391</td>\n",
" <td>-121.133196</td>\n",
" <td>1</td>\n",
" <td>10.0</td>\n",
" <td>0.0</td>\n",
" <td>POINT (-121.13320 34.39739)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>34.397435</td>\n",
" <td>-121.123057</td>\n",
" <td>1</td>\n",
" <td>10.0</td>\n",
" <td>0.0</td>\n",
" <td>POINT (-121.12306 34.39744)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>34.397394</td>\n",
" <td>-121.112871</td>\n",
" <td>1</td>\n",
" <td>10.0</td>\n",
" <td>0.0</td>\n",
" <td>POINT (-121.11287 34.39739)</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>34.397437</td>\n",
" <td>-121.102888</td>\n",
" <td>1</td>\n",
" <td>10.0</td>\n",
" <td>0.0</td>\n",
" <td>POINT (-121.10289 34.39744)</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" latitude longitude stratum_num transect_spacing \\\n",
"transect_num \n",
"1 34.397267 -121.143005 1 10.0 \n",
"1 34.397391 -121.133196 1 10.0 \n",
"1 34.397435 -121.123057 1 10.0 \n",
"1 34.397394 -121.112871 1 10.0 \n",
"1 34.397437 -121.102888 1 10.0 \n",
"\n",
" areal_biomass_density_adult geometry \n",
"transect_num \n",
"1 0.0 POINT (-121.14301 34.39727) \n",
"1 0.0 POINT (-121.13320 34.39739) \n",
"1 0.0 POINT (-121.12306 34.39744) \n",
"1 0.0 POINT (-121.11287 34.39739) \n",
"1 0.0 POINT (-121.10289 34.39744) "
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"survey_2019.bio_calc.final_biomass_table.head()"
]
},
{
"cell_type": "markdown",
"id": "013e62b5",
"metadata": {},
"source": [
"# Jolly-Hampton CV Analysis\n",
"\n",
"* Compute the mean of the Jolly-Hampton CV value on data that has not been Kriged\n",
"* Note: the algorithm used to compute this value is random in nature"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "a7bb465e",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 1.17 s, sys: 7.97 ms, total: 1.18 s\n",
"Wall time: 1.18 s\n"
]
}
],
"source": [
"%%time\n",
"CV_JH_mean = survey_2019.run_cv_analysis(kriged_data=False)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "78c776bd",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Mean Jolly-Hampton CV: 0.1338\n"
]
}
],
"source": [
"print(f\"Mean Jolly-Hampton CV: {CV_JH_mean:.4f}\")"
]
},
{
"cell_type": "markdown",
"id": "c5bd6ad7",
"metadata": {},
"source": [
"# Obtain Kriging Mesh Data"
]
},
{
"cell_type": "markdown",
"id": "f26756c4",
"metadata": {},
"source": [
"## Access Kriging mesh object\n",
"* Reads mesh data files specified by `survey_2019` "
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "c976b0b9",
"metadata": {},
"outputs": [],
"source": [
"krig_mesh = survey_2019.get_kriging_mesh()"
]
},
{
"cell_type": "markdown",
"id": "b8b3fe9b",
"metadata": {},
"source": [
"### Plot the transects and smoothed isobath contour, and optionally the mesh points\n",
"\n",
"* `plot_layered_points` generates an interactive map using the Folium package\n",
"* Transect points are represented by a changing color gradient\n",
"* Smoothed contour points (200m isobath) are in blue \n",
"* Here we choose not to plot the mesh points to prevent this notebook from getting too big. To plot the mesh points, omit the `plot_mesh_points` argument or use `plot_mesh_points=True`. Mesh points will be in gray"
]
},
{
"cell_type": "code",
"execution_count": 10,
"id": "9c80331b-9bd5-4ccb-b564-b744a41b4d61",
"metadata": {},
"outputs": [],
"source": [
"fmap = plot_layered_points(krig_mesh, plot_mesh_points=False)"
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "69bd5f94",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div style=\"width:100%;\"><div style=\"position:relative;width:100%;height:0;padding-bottom:60%;\"><span style=\"color:#565656\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
"&lt;html&gt;\n",
"&lt;head&gt;\n",
" \n",
" &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
" \n",
" &lt;script&gt;\n",
" L_NO_TOUCH = false;\n",
" L_DISABLE_3D = false;\n",
" &lt;/script&gt;\n",
" \n",
" &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\n",
" &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
" \n",
" &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
" &lt;style&gt;\n",
" #map_0a6ef39877a1ad97c98a82208c2c2bb5 {\n",
" position: relative;\n",
" width: 100.0%;\n",
" height: 100.0%;\n",
" left: 0.0%;\n",
" top: 0.0%;\n",
" }\n",
" &lt;/style&gt;\n",
" \n",
"&lt;/head&gt;\n",
"&lt;body&gt;\n",
" \n",
" \n",
" &lt;div class=&quot;folium-map&quot; id=&quot;map_0a6ef39877a1ad97c98a82208c2c2bb5&quot; &gt;&lt;/div&gt;\n",
" \n",
"&lt;/body&gt;\n",
"&lt;script&gt;\n",
" \n",
" \n",
" var map_0a6ef39877a1ad97c98a82208c2c2bb5 = L.map(\n",
" &quot;map_0a6ef39877a1ad97c98a82208c2c2bb5&quot;,\n",
" {\n",
" center: [44.61, -125.66],\n",
" crs: L.CRS.EPSG3857,\n",
" zoom: 4,\n",
" zoomControl: true,\n",
" preferCanvas: false,\n",
" }\n",
" );\n",
"\n",
" \n",
"\n",
" \n",
" \n",
" var tile_layer_1a329448783e33cd278ac331da822fff = L.tileLayer(\n",
" &quot;https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png&quot;,\n",
" {&quot;attribution&quot;: &quot;\\u0026copy; \\u003ca href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca href=\\&quot;http://cartodb.com/attributions\\&quot;\\u003eCartoDB\\u003c/a\\u003e, CartoDB \\u003ca href =\\&quot;http://cartodb.com/attributions\\&quot;\\u003eattributions\\u003c/a\\u003e&quot;, &quot;detectRetina&quot;: false, &quot;maxNativeZoom&quot;: 18, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\n",
" ).addTo(map_0a6ef39877a1ad97c98a82208c2c2bb5);\n",
" \n",
" \n",
" var feature_group_d2fea4eb8764cf10da6231255a8f70a7 = L.featureGroup(\n",
" {}\n",
" ).addTo(map_0a6ef39877a1ad97c98a82208c2c2bb5);\n",
" \n",
" \n",
" var circle_marker_bb27ca618f75679686efbab361fa9057 = L.circleMarker(\n",
" [34.39726728, -121.14300537],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_69e17cc94879155ff86a8ef082cf4013 = L.circleMarker(\n",
" [34.39739071, -121.13319621],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5bc53198d39ea2398bfea200c8bf7d0b = L.circleMarker(\n",
" [34.39743515, -121.12305726],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_91633b8ce31565dd74c0cbc354d572be = L.circleMarker(\n",
" [34.39739432, -121.11287085],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f8bb8d5572923f811af4ca75bbe98b1d = L.circleMarker(\n",
" [34.39743704, -121.10288762],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e1f672471d6819062a4e803dc41ca83d = L.circleMarker(\n",
" [34.39750359, -121.09279048],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dcc42f755219c655f6d5f31958ca4052 = L.circleMarker(\n",
" [34.39742588, -121.08270834],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_213c390e00d08edc7db292402609938b = L.circleMarker(\n",
" [34.39734067, -121.07262125],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cfcc5f03838f1cceb7548128b722a8db = L.circleMarker(\n",
" [34.39729331, -121.06249011],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_776361a2e105a6076174cafe5045be60 = L.circleMarker(\n",
" [34.39727912, -121.0523275],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1d86def67e232fd792357a7a1f231d00 = L.circleMarker(\n",
" [34.39731248, -121.04229718],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8e12ad01503538fba4278f293172ba8d = L.circleMarker(\n",
" [34.39731101, -121.0322669],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3fd5062adce745210b48ddb227da753a = L.circleMarker(\n",
" [34.39734992, -121.02221164],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a7dc4e7bcc246b15b5a1daa1f21d888d = L.circleMarker(\n",
" [34.39742317, -121.01210068],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b0645c185caffd6837126be4c6c7265a = L.circleMarker(\n",
" [34.39745563, -121.00207665],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9d0b5a23d57e52438232161a9c2c47e1 = L.circleMarker(\n",
" [34.39747972, -120.99200274],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4ec82b8cae3f3de1c8c929594f8d89f9 = L.circleMarker(\n",
" [34.39747641, -120.98193318],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a075fb12dfc6cd203639eabaf5f73fd7 = L.circleMarker(\n",
" [34.39747472, -120.97178344],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_17bae2362cc1df84c213010600a171bc = L.circleMarker(\n",
" [34.39745138, -120.96171688],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d6b26b69ea53dd80602043fe68f4bb68 = L.circleMarker(\n",
" [34.39743395, -120.95165519],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f2ee58c7faf01ab55c68742dbba13d05 = L.circleMarker(\n",
" [34.39748659, -120.94142994],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_469c3f90306adae8a6bd9cbbd79d067a = L.circleMarker(\n",
" [34.39753617, -120.93147455],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8d4421345d9503d7b99f4f1dc0eca4b1 = L.circleMarker(\n",
" [34.39761058, -120.92137628],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_06778d98254e993ad64443a8e94c4a39 = L.circleMarker(\n",
" [34.39756115, -120.91123421],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d505183b11c46c3718fabfedcb34fecd = L.circleMarker(\n",
" [34.397454, -120.90108385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6943c27124b0816f880ea6662b3e1437 = L.circleMarker(\n",
" [34.39726064, -120.89092658],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cbda679d59ce96b65c2bfa52b4a81949 = L.circleMarker(\n",
" [34.39694958, -120.88087117],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_311ad64bd968b20a4d191c7517ee3d55 = L.circleMarker(\n",
" [34.39700753, -120.87081495],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_13938ff9049b6f9a2dba5bba03d511d4 = L.circleMarker(\n",
" [34.39719853, -120.86064822],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d16faf0ce5807c19a9e437eb4288b3b0 = L.circleMarker(\n",
" [34.39721624, -120.8505815],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8ac3fc957bcb3cca65931b85c0730b8c = L.circleMarker(\n",
" [34.39723575, -120.84051779],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b683068e815ba123c60dc0a47e8c49fc = L.circleMarker(\n",
" [34.39699113, -120.83040749],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bb9dab77b06e91f1e19438ecd7a0b80f = L.circleMarker(\n",
" [34.39697477, -120.82038125],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b72294b957e4f57a3e16277745596699 = L.circleMarker(\n",
" [34.39694625, -120.81022414],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_35b1b80435297e03f12ae8d286245f48 = L.circleMarker(\n",
" [34.39691558, -120.80020179],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2fa325c9a1cfc3ccc5246c32920c2077 = L.circleMarker(\n",
" [34.39697389, -120.79011139],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c7a6c45630f1a4375351b66f17c43092 = L.circleMarker(\n",
" [34.39696575, -120.77999796],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5e8bf8f0c905b573995e361b1eecd123 = L.circleMarker(\n",
" [34.39693228, -120.76989006],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_62410cd5f938b2c2d22c5ecc30e658d4 = L.circleMarker(\n",
" [34.39696108, -120.75980859],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_10ee816abe6d411407ffb316bc914587 = L.circleMarker(\n",
" [34.39694392, -120.74979162],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ec6b720895a5b5834274cf6d82076aee = L.circleMarker(\n",
" [34.39692657, -120.73966341],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4b45f7f242e84f8cfb5b2b2d730be05b = L.circleMarker(\n",
" [34.39685247, -120.72971958],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_572b02b8859666661482e72ed216eba4 = L.circleMarker(\n",
" [34.39686733, -120.71959733],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4ad8849b01261629cb5db0a2f5bd14b7 = L.circleMarker(\n",
" [34.39686342, -120.70951816],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7195cd55d88eb93af39a38f8bce91563 = L.circleMarker(\n",
" [34.39691081, -120.6993871],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a8bdefe1e3e1bdb44b8a1bbdf8bc0631 = L.circleMarker(\n",
" [34.39689415, -120.689354],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_daaf46b74985f5edb29f2be98852ce73 = L.circleMarker(\n",
" [34.39684724, -120.67934732],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0218d6f9af578ea7adcbb60e17f5d30e = L.circleMarker(\n",
" [34.39685925, -120.66921446],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_13e806d6a954257e72aa2f86f7fd8bfb = L.circleMarker(\n",
" [34.39688688, -120.65917061],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1fc2786bd32fae8821659523f0a55baf = L.circleMarker(\n",
" [34.3969265, -120.64911825],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_59956b6b72becbd4c7629157e0cd9d4f = L.circleMarker(\n",
" [34.3968813, -120.63901069],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_498ec5c8f9c4c90ba0e2e727c9c458c2 = L.circleMarker(\n",
" [34.39685389, -120.6289887],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_383ebc165e747baefe952042025fa4c3 = L.circleMarker(\n",
" [34.39690872, -120.61891923],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c8cb8577636fe5617a989f280cb21cba = L.circleMarker(\n",
" [34.39708449, -120.60877602],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_afa95b62919e838a9f4f2f2b57169ee8 = L.circleMarker(\n",
" [34.39718236, -120.59866786],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5913d0a3a3ac1d61eb9d649ec920334d = L.circleMarker(\n",
" [34.39736955, -120.5886068],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c8b48faec7d0e66b2d378fb4d2206309 = L.circleMarker(\n",
" [34.3973588, -120.57854067],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_91a29f875c490c40aa486f8b3a7be888 = L.circleMarker(\n",
" [34.39736533, -120.57389136],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7aff5b5d9d11cc8f57c508e39ef9c1b2 = L.circleMarker(\n",
" [34.39736108, -120.57299143],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f31d6376f2c1abb5bbf85d6023337637 = L.circleMarker(\n",
" [34.39730725, -120.56290288],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_082940e55bd593cc9c6198eefb0614b6 = L.circleMarker(\n",
" [34.39726716, -120.55283602],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cb4177100596a4f39b54a00fa02653d0 = L.circleMarker(\n",
" [34.39727115, -120.54279708],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_67bc61d4ea244513f11bf608335c8e96 = L.circleMarker(\n",
" [34.39727122, -120.5327309],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_337596116008e4b9593ba87d059e1c5b = L.circleMarker(\n",
" [34.39727217, -120.52266199],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e4454d970d57c2bac7bca81f4ff297ca = L.circleMarker(\n",
" [34.39728148, -120.51261501],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ed0dde148cb431f64cee95568d5744f6 = L.circleMarker(\n",
" [34.39729522, -120.50253505],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5321f8e645821cbc18885a227ecb2efb = L.circleMarker(\n",
" [34.3971439, -120.49238385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c729845ff7d0b1540fffa3696df8e53a = L.circleMarker(\n",
" [34.39687464, -120.48228736],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a97dc57642cb30eccdc9505d49834402 = L.circleMarker(\n",
" [34.39655547, -120.4721901],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a99a50b82f9fb6ac21956dc9270e6f3a = L.circleMarker(\n",
" [34.39623073, -120.46216026],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_34a646248f4ba09d8c5635ae8cc89097 = L.circleMarker(\n",
" [34.39625045, -120.45203014],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bc1a64c77d03d52b0b3f976e57f73515 = L.circleMarker(\n",
" [34.39663877, -120.44192175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#450457&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#450457&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7d34200f40b165212c765e7abf15a1a2 = L.circleMarker(\n",
" [34.56377167, -120.68228082],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_429cb0e1ed6959121ca0224d9cd43055 = L.circleMarker(\n",
" [34.56394805, -120.68885787],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e8f64a04e369f8fe70a9d437f1f79fa3 = L.circleMarker(\n",
" [34.56430591, -120.6988991],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_210c3eb514b31d57eb5e71ca22d88345 = L.circleMarker(\n",
" [34.56470682, -120.70891976],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a3a5378b88f70144388ce3fa744949d7 = L.circleMarker(\n",
" [34.56448537, -120.71890033],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_86faa332bd5414fabcea6dee23351b5d = L.circleMarker(\n",
" [34.56434934, -120.72900044],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_70d4c551e1ba31cc43eab7311f9226fd = L.circleMarker(\n",
" [34.56428381, -120.73913707],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e80afa74f3aacfcb2f2381b93dd86069 = L.circleMarker(\n",
" [34.56414059, -120.74925246],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9ca2e06f0f56b39ed136964a728f81d8 = L.circleMarker(\n",
" [34.56408259, -120.75933171],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d8dd3dfbb4d64609d3f6649f404bb063 = L.circleMarker(\n",
" [34.56414029, -120.76939255],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ce0937b571bab63842e17b0713d569da = L.circleMarker(\n",
" [34.5641711, -120.77640948],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_746eeb19d8e868197e890be7ad817e40 = L.circleMarker(\n",
" [34.56406695, -120.77795823],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f72b3a6f9a8ed8b6fd7ff944e9aec90c = L.circleMarker(\n",
" [34.56293416, -120.78770276],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7ff464919ec6cb051751abe6fa33ec3e = L.circleMarker(\n",
" [34.56220082, -120.79776294],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_80cd7735392acd19ec8fa7d5ad07de5a = L.circleMarker(\n",
" [34.5625913, -120.80793325],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bb804cae30d97d4469e66c62ef105607 = L.circleMarker(\n",
" [34.56306448, -120.81809064],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_db6e9000be598dddb74a8bccac93a28a = L.circleMarker(\n",
" [34.56360539, -120.82815187],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_54433417ee75afbfcc18c374f3a00192 = L.circleMarker(\n",
" [34.56371884, -120.83121401],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_631e808846df8b86128f0ab7b6ecd1a0 = L.circleMarker(\n",
" [34.56395435, -120.83876078],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_79c7178cf584ff5b16edacab8b033209 = L.circleMarker(\n",
" [34.56396378, -120.84899934],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_55c9f9f0a39d8bf7d4ef81de006e8136 = L.circleMarker(\n",
" [34.56394319, -120.85902472],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c941e514366e17cb30200b3fc33904a7 = L.circleMarker(\n",
" [34.56392443, -120.86920591],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_46302482a96938adb48d61c5b4045598 = L.circleMarker(\n",
" [34.5639303, -120.87927712],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_40959df784b53b15b4102d00efc0b8d3 = L.circleMarker(\n",
" [34.56400168, -120.88931608],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_59655d5e1d644be27e0617ff329d589c = L.circleMarker(\n",
" [34.56406959, -120.8994596],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0084fe5b3ef75404e7f27b55cefc8012 = L.circleMarker(\n",
" [34.56366667, -120.90426895],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f5a4bc8ba5d079b92c54a9b5fc109a00 = L.circleMarker(\n",
" [34.56383333, -120.91084135],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cc03e0535be7a57021ee801f18c79867 = L.circleMarker(\n",
" [34.56383333, -120.92096947],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ccaf3a419666d5d906dca34a03f96440 = L.circleMarker(\n",
" [34.56389125, -120.93106502],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9d59d7c9e84ac8a8d04f9de39f10326a = L.circleMarker(\n",
" [34.564, -120.94118272],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b347989625b67177eb75db499d4fb552 = L.circleMarker(\n",
" [34.564, -120.95132275],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_50fddccc9634563316f105cf8dd43eca = L.circleMarker(\n",
" [34.56383333, -120.9615],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fe6d7da3dcca6ef764ab882480bc4976 = L.circleMarker(\n",
" [34.56383333, -120.97153842],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d2a0adb81a1a673264dbdc5e65b96a15 = L.circleMarker(\n",
" [34.56382415, -120.98167585],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fd26d7445d3061c43b403ac1118b286a = L.circleMarker(\n",
" [34.56366667, -120.99171134],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d6cf67d68cfb29a58e70b006f812d75c = L.circleMarker(\n",
" [34.5635, -121.00167638],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_23a9af623861bb1bc7926021f1d875bb = L.circleMarker(\n",
" [34.56333333, -121.01173538],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3e7d88fd3f6d450fead08dc335007a60 = L.circleMarker(\n",
" [34.56333333, -121.02183614],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8285de3b4af2ca1f79201267fa1594ed = L.circleMarker(\n",
" [34.56333333, -121.03186903],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_097406e18c00039c0953db1aee8d649a = L.circleMarker(\n",
" [34.56316667, -121.04201534],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8b9830bdc8b57539721df6d7974090e4 = L.circleMarker(\n",
" [34.56333333, -121.05209655],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_64eccb56e9df94cb887f469e964f563f = L.circleMarker(\n",
" [34.5635, -121.06219031],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7ced503ff607d0ded35d19e5082eefd3 = L.circleMarker(\n",
" [34.56366667, -121.07231967],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f2bebc12a498ca20ac0536d377a33c4e = L.circleMarker(\n",
" [34.56383333, -121.08228872],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b67e7fe1572ee401baeb6779ce3fa2b0 = L.circleMarker(\n",
" [34.56406658, -121.09243299],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_90ff60554f2a67a4bfee7fe8093048eb = L.circleMarker(\n",
" [34.56416667, -121.1024685],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_85e8ed24819efb5573898f69f3c91f4b = L.circleMarker(\n",
" [34.56433333, -121.11260115],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1c4a6c9f3860313b04687b0aa04a46f1 = L.circleMarker(\n",
" [34.5645, -121.12284662],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_77d00a5b33e4c7bcecf63a1395454ed8 = L.circleMarker(\n",
" [34.5645, -121.13280598],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c61caa7f8d9d96a4bd07e41aa19f75d8 = L.circleMarker(\n",
" [34.56466667, -121.14297861],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5a4a810b58ec8b2563ecb9e668a8e353 = L.circleMarker(\n",
" [34.56466667, -121.15312302],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_00bdc935084b00850adfe749e56f2217 = L.circleMarker(\n",
" [34.5645, -121.16308442],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7e3473f99bb7f486270b2b9134c939d2 = L.circleMarker(\n",
" [34.56433333, -121.17326741],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_259259a3c307ede72fa335105c289b8a = L.circleMarker(\n",
" [34.56433333, -121.18326395],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_586997abbdf4a064430137a431f9bf75 = L.circleMarker(\n",
" [34.56416667, -121.19340827],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4b54390c6c6a34eb35ae8226634ae10a = L.circleMarker(\n",
" [34.564, -121.20352417],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b90dc7e6e74f52f97e4dd839a6941f36 = L.circleMarker(\n",
" [34.56383333, -121.21366667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bcf48f49c3cf252acc10dff8c496c8f2 = L.circleMarker(\n",
" [34.56366667, -121.22384879],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6e35ebb89d7e5056064c0de97f3ca179 = L.circleMarker(\n",
" [34.5635, -121.23377056],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3e76da4317c1000ca32dd6e7b70f9d30 = L.circleMarker(\n",
" [34.56333333, -121.24393225],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e325c130278d4ce2a4eed16df155605a = L.circleMarker(\n",
" [34.56316667, -121.25382775],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6272e57fd2f72a2239cb80893c429b3c = L.circleMarker(\n",
" [34.563, -121.26419786],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0d24d697620bf1c307f4f6d562f8ffee = L.circleMarker(\n",
" [34.56283333, -121.2742446],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_15700d7596d25a579be8af8e59844258 = L.circleMarker(\n",
" [34.56283333, -121.28445663],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c2ded350d4c36cac3795cc55fe1f445a = L.circleMarker(\n",
" [34.563, -121.29462658],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1e9788b5fa1230632df17716699768b0 = L.circleMarker(\n",
" [34.56316667, -121.30475924],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b1a2246a5c1a5c8384bea8ef623cd2f8 = L.circleMarker(\n",
" [34.56316667, -121.31484315],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_33fa1a60bb8e44d63956431eae5106db = L.circleMarker(\n",
" [34.56333333, -121.32476863],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f81c2b27705023cb3d6531ee00b59e95 = L.circleMarker(\n",
" [34.5635, -121.33489606],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b9514f20e22bd1fa917a22d5c650b70f = L.circleMarker(\n",
" [34.56366667, -121.34508133],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8b0fcb005c32f0dd39f23eecdc216ea1 = L.circleMarker(\n",
" [34.56383333, -121.35512761],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5cc5dedbcb234f9d59e3c3c7496a3c29 = L.circleMarker(\n",
" [34.56416667, -121.36525378],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1c9f834ce8faa619560fdff1a4d71728 = L.circleMarker(\n",
" [34.56419615, -121.37525513],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d06da9ece94b75f1a2cc8710a797df22 = L.circleMarker(\n",
" [34.5645, -121.38537783],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cc8c0784699d8fbd2d505bd6a74fe7a5 = L.circleMarker(\n",
" [34.56466667, -121.39549174],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#46075a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#46075a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_06b976dac99128eb86d6424227d129db = L.circleMarker(\n",
" [34.73068563, -121.72397248],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e0833c4fe2f190502b9474cd793ef3d8 = L.circleMarker(\n",
" [34.73020943, -121.71924219],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dae678b7eddd07209fab9d52bae4581b = L.circleMarker(\n",
" [34.73040432, -121.70913392],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_39312b0d1f70bbcc7611463c883691d6 = L.circleMarker(\n",
" [34.73042396, -121.69887319],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3ccfc1f4c492915727d9e9e4107646f6 = L.circleMarker(\n",
" [34.73049071, -121.68883036],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8342afab763ef7fb28f227f551bc8eab = L.circleMarker(\n",
" [34.730608, -121.67872426],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_18f03fb044d5e173d1a664b9c3d9a047 = L.circleMarker(\n",
" [34.73073862, -121.66864992],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_94d5b92e44a07ad523c11c3f6f63ceb6 = L.circleMarker(\n",
" [34.72903676, -121.66738236],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_06f26209493fdd59f2c1299a3daf263f = L.circleMarker(\n",
" [34.7296842, -121.661089],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_432800c46be907b356802f380e0b43eb = L.circleMarker(\n",
" [34.73005711, -121.65107991],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b4944e5a2b6df075b91f18832a2f1ec9 = L.circleMarker(\n",
" [34.73014808, -121.64100121],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_de95f70dec85d7f03b8109607d9a12e9 = L.circleMarker(\n",
" [34.73041402, -121.6309385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8b60c9bb057d6c88dc80df1ff9cfc9f1 = L.circleMarker(\n",
" [34.73059739, -121.62087933],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6f9d62fd3e871cf9293dc408ac9f03e0 = L.circleMarker(\n",
" [34.73063396, -121.61080375],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b4e87e42dba1ac3425a6c390322eebd4 = L.circleMarker(\n",
" [34.73073391, -121.60066128],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6f60a19d12e2662f8751ede2b786fa9d = L.circleMarker(\n",
" [34.73084788, -121.59067175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_eebf3d5e74f6e742284cbe8c1c01a162 = L.circleMarker(\n",
" [34.73098392, -121.58056762],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8b57e0b2ee30769272f9dafc49cb33e7 = L.circleMarker(\n",
" [34.7312262, -121.57049093],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6a146ed7f33d23945fe98f48e7433276 = L.circleMarker(\n",
" [34.73134087, -121.56040211],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_15d7688dbc70f2d68b6bf96accb1a49e = L.circleMarker(\n",
" [34.73116677, -121.55027122],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_05e44c64ef1906e3bd61f288387bcd51 = L.circleMarker(\n",
" [34.73094792, -121.540131],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3cc7f0406d14f2c064274bebee1a2388 = L.circleMarker(\n",
" [34.7308265, -121.53002616],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cb9b2c1fdb9d41cbe8709d4ad8c59f46 = L.circleMarker(\n",
" [34.73082082, -121.51990299],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_be29ad7d3b0da10ce70ce3370d4cde95 = L.circleMarker(\n",
" [34.73087776, -121.50983058],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c330ddbcbc572238a189c18d1d3bd9f2 = L.circleMarker(\n",
" [34.73093494, -121.49982513],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b8e64179a0f4b8fad05b0cea7e4b9493 = L.circleMarker(\n",
" [34.73119061, -121.48973687],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_df7429d020fbafd5c565ace804e49877 = L.circleMarker(\n",
" [34.73143746, -121.47969168],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_635771f5e27d19ece2624ca6bfc72be7 = L.circleMarker(\n",
" [34.73146485, -121.46952746],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cf27784a5cc7bf360b8f5b4762e79763 = L.circleMarker(\n",
" [34.73147275, -121.45950732],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9f7fd3f88512787753ea8f8bb4da7af0 = L.circleMarker(\n",
" [34.73140883, -121.44945887],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0ea8637feb5e640bb6a08bf7105f35fe = L.circleMarker(\n",
" [34.73134246, -121.43926967],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f44a313656e49b98f569458e3085e92d = L.circleMarker(\n",
" [34.73130559, -121.42917289],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b0d824a75629389441cc037a190d7672 = L.circleMarker(\n",
" [34.73132542, -121.41908281],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bfca62f982d8d5c5ee4c0f79b2b4cfe1 = L.circleMarker(\n",
" [34.73141396, -121.40897807],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_85b794d3d0a1d756d4953df96904edb7 = L.circleMarker(\n",
" [34.73145549, -121.39897052],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_19fbf651ab1e8f5a1727a974dbe5a11b = L.circleMarker(\n",
" [34.73138921, -121.38888449],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_de11915a3ca7096870aa10d0b66cea41 = L.circleMarker(\n",
" [34.73123958, -121.37877347],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a5f9124c77eca24b63d7643322c85e3b = L.circleMarker(\n",
" [34.73103236, -121.36863984],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4a29f8b5a2228a2ba5f9312c48714ad1 = L.circleMarker(\n",
" [34.73081171, -121.3585907],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b12e887d0492fac62d8d88c2bd22a688 = L.circleMarker(\n",
" [34.73062081, -121.34850282],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d97f21d2031d9de3e72269652aadbd13 = L.circleMarker(\n",
" [34.73042641, -121.33839387],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f5f398913e7a37b148d88b82243f9d3f = L.circleMarker(\n",
" [34.73019421, -121.32833065],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a86b5efe5ec9ffc1f8544d5bb91c108d = L.circleMarker(\n",
" [34.73013914, -121.31816691],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1148eab31fa0ec26ec9d5f664f505301 = L.circleMarker(\n",
" [34.73018482, -121.30815292],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e46765e0d64663ea1053507657ad1790 = L.circleMarker(\n",
" [34.73014412, -121.29768429],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d852c3a8971f37e35ab85f4a7d051226 = L.circleMarker(\n",
" [34.7300856, -121.28776064],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_28c0cf0aa6e52b84d953d93b663b2c3d = L.circleMarker(\n",
" [34.72996046, -121.27777886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c82411e57b9347dfed55ecf9975a5fd0 = L.circleMarker(\n",
" [34.72991121, -121.26764885],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_42f5bb2f4f6d44d9651ad8921d574b1a = L.circleMarker(\n",
" [34.72990865, -121.25750877],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_db51cd3a420d8e052c3aa12b1cac6afc = L.circleMarker(\n",
" [34.72993446, -121.2473414],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b2c2221bc241cf5dcd6740aabbf908be = L.circleMarker(\n",
" [34.72993997, -121.23725024],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fc22985023f39c054c4a510157b0d9ec = L.circleMarker(\n",
" [34.72992847, -121.22706453],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_231b289a0ce65493c302358776773141 = L.circleMarker(\n",
" [34.72989429, -121.21701663],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5a2b46129392896a44ccae8caf474c52 = L.circleMarker(\n",
" [34.73002363, -121.20694607],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dfacfa9ab39cf0473977999ccc8a2deb = L.circleMarker(\n",
" [34.73027121, -121.19679142],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_57133165afdf3cb225381fab1f7021aa = L.circleMarker(\n",
" [34.73052274, -121.18666511],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0b040105e588f4534490bb27defdde9c = L.circleMarker(\n",
" [34.73041718, -121.17653883],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_818a3bfd4e23224197469cf15ceea95e = L.circleMarker(\n",
" [34.73050572, -121.16640566],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6a5dd6984c876a8821f350121b988784 = L.circleMarker(\n",
" [34.73043844, -121.15633086],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_05ab857dfbdfa04ce655c96503ddcdb3 = L.circleMarker(\n",
" [34.73046053, -121.14615327],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c2551b8159fe275ae542f0f07f02fec9 = L.circleMarker(\n",
" [34.73051143, -121.13604417],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c2e84627dd814d2b22a264aa567ff282 = L.circleMarker(\n",
" [34.7304935, -121.12594976],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5397b85b8feab7a770985ca9a8eb4c39 = L.circleMarker(\n",
" [34.73044006, -121.11579357],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_517595cf0668262d31336682d644f0a5 = L.circleMarker(\n",
" [34.73047602, -121.1057323],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d58bc57bc641f4dab4fc5777d42de8ba = L.circleMarker(\n",
" [34.73051094, -121.09560639],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_429c1ef652a5f3eadaa4a3ccc06b78a8 = L.circleMarker(\n",
" [34.7304604, -121.08546936],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8687f45d2857a1c3fdedc96dea9649c6 = L.circleMarker(\n",
" [34.73044383, -121.0753587],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1c96eaf74531fb42a56a3312141f5c88 = L.circleMarker(\n",
" [34.73047992, -121.0652016],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d9fa4e9f208e48ebb3e49835ba05075e = L.circleMarker(\n",
" [34.73046607, -121.05510625],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ca56c5c0e483555d01a50224e51e539e = L.circleMarker(\n",
" [34.73041878, -121.04704561],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3d5b7dc682fee4eb95c5239a23514db0 = L.circleMarker(\n",
" [34.7305063, -121.04351443],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3aecbe16128d2b068fea517e694ab944 = L.circleMarker(\n",
" [34.73053898, -121.03338061],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4b852976e0fe99a5b1c3d7c00cb395ca = L.circleMarker(\n",
" [34.73060891, -121.02327739],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_65bc0528bbec43013f83850b76687d01 = L.circleMarker(\n",
" [34.73062817, -121.01314023],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7094b5b721a3c75bb85a82c50dc15d1e = L.circleMarker(\n",
" [34.73057927, -121.00304256],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3afaee887822101d5e54c659a311ccb5 = L.circleMarker(\n",
" [34.73063053, -120.99291721],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_32023f44e7009d314424c13e8d521125 = L.circleMarker(\n",
" [34.73061376, -120.98280818],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_eb11515f5ba9d698357d54110eab27aa = L.circleMarker(\n",
" [34.73059239, -120.97268662],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_831d8f1ab1e273c93f1d0cce02220a10 = L.circleMarker(\n",
" [34.73062964, -120.96254898],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1183a826bd56873ac4340ec91e183bb0 = L.circleMarker(\n",
" [34.73056854, -120.9524153],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9f0789d0d4fdfeda3b50c841603b18ef = L.circleMarker(\n",
" [34.73063236, -120.94227908],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e0e529f747998a97177b739f55e8dafc = L.circleMarker(\n",
" [34.73057385, -120.93212183],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bf792b0f6ae7549d74e7d07e2cc1ccfa = L.circleMarker(\n",
" [34.73065166, -120.92203706],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5e5b229daf073bd4c744df956c2c0518 = L.circleMarker(\n",
" [34.73057006, -120.91189214],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ed26760d391d43605c93c5ab34f9b139 = L.circleMarker(\n",
" [34.73065827, -120.90179992],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_62cdc50a219b24f89df3a79ae964155b = L.circleMarker(\n",
" [34.73061912, -120.89177496],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_49cd7eb38fb1f3370fd70ecd46886e93 = L.circleMarker(\n",
" [34.73057397, -120.88168577],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9494e57191ae6ff7583fe2fbca5c67cb = L.circleMarker(\n",
" [34.73062237, -120.87153798],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c397537b1fa6c4f15f91ba052b2b038c = L.circleMarker(\n",
" [34.73054934, -120.86140332],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b21a2e2ecefba9a13cff67a21aa83a53 = L.circleMarker(\n",
" [34.73063256, -120.85128338],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_44bb6dcdfafcdcaa67983075436f9217 = L.circleMarker(\n",
" [34.73057134, -120.84122916],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6d2b526d42c835fce34260ac801b1170 = L.circleMarker(\n",
" [34.73058711, -120.83110815],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a88b523c8c2b42e7582c92ac6379b876 = L.circleMarker(\n",
" [34.73063018, -120.82096202],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_197f529bb5bb581ca5365f2156b910bf = L.circleMarker(\n",
" [34.73062443, -120.81084728],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b538bfa1856c82c85e0d00662e4184b4 = L.circleMarker(\n",
" [34.73058044, -120.80076792],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4f27a18f73c42b4b8e8c13daf88a09a2 = L.circleMarker(\n",
" [34.7305886, -120.79069755],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_947006485f842531adf33bb70b499b0a = L.circleMarker(\n",
" [34.73064862, -120.78058565],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0073f11a73d8414b83ff4a3d9c50fc0e = L.circleMarker(\n",
" [34.73058697, -120.77044163],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f5f6c00e31b88fe8b136a5d81e9478a1 = L.circleMarker(\n",
" [34.73061039, -120.76032501],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_74cbce30f1cda9778e0bac30a8905387 = L.circleMarker(\n",
" [34.73063338, -120.75018699],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4beef857419aa96910a40c7a10771e25 = L.circleMarker(\n",
" [34.7305839, -120.74003515],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5302087c5203d164da5f2b0ce65a710a = L.circleMarker(\n",
" [34.73060577, -120.72994447],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_40163418b68646b7f90fbdb3c1013ed4 = L.circleMarker(\n",
" [34.73061148, -120.71985481],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ddc332c79bc2971edec26bddb4acdaab = L.circleMarker(\n",
" [34.73059621, -120.70963395],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0b6bb529fc298e9ac4450bfaf42a463c = L.circleMarker(\n",
" [34.73058975, -120.69954265],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#460a5d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#460a5d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dab8d5c189d1f48a4f32effa285bc5df = L.circleMarker(\n",
" [34.89740023, -121.70793795],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e1bb3ffdf30b846f5daced39167d89b7 = L.circleMarker(\n",
" [34.89745303, -121.70260914],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ccf509c3f53bd58412fd4797dbac63de = L.circleMarker(\n",
" [34.89742327, -121.69249726],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_688e98f0e6b3a6bd52bc6913d384f982 = L.circleMarker(\n",
" [34.89745511, -121.68231674],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_990a0c640a43b3cf692909b2c4a8d4f5 = L.circleMarker(\n",
" [34.89745215, -121.67221568],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c05aee784f45b5f3bd076d6a3d84a569 = L.circleMarker(\n",
" [34.89742299, -121.66211072],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_760545f2602a5e4a494e7f8d907459fc = L.circleMarker(\n",
" [34.89746059, -121.65195079],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9d8dbf272f458a422e16f2b2dcb308d6 = L.circleMarker(\n",
" [34.89745435, -121.64184458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_93553d061554184bfbc2e77bda562836 = L.circleMarker(\n",
" [34.89743074, -121.63170811],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_63a1437cb1253fed214a7aca2e0abd41 = L.circleMarker(\n",
" [34.89746489, -121.62160788],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2163c53faed4b0cb6a51cfb312bf4c9b = L.circleMarker(\n",
" [34.89745435, -121.6114842],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0ab87a860bb3f62e5510e2afe078fbb8 = L.circleMarker(\n",
" [34.89741561, -121.60130129],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_04962f6e92e3103a7a311cb85c4602a3 = L.circleMarker(\n",
" [34.8974961, -121.59125881],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_83778ed0614d87e6b2477a915c3be9e0 = L.circleMarker(\n",
" [34.89736088, -121.58109094],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7f955ddfc9cd438513219b84342912c5 = L.circleMarker(\n",
" [34.89701288, -121.57094114],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f32f132cbedcc119d94f25740f4b4841 = L.circleMarker(\n",
" [34.89699806, -121.56085088],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4e1fa86d2bcc25241c70da67d87afb1d = L.circleMarker(\n",
" [34.8970187, -121.55067684],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7e318ddabf187666019ef19218038998 = L.circleMarker(\n",
" [34.89712235, -121.54056721],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_eb49886cec1e3266f3cd627e9ad748f4 = L.circleMarker(\n",
" [34.89728058, -121.53034992],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6717c93b6f41ef4ea8d07c35e9929823 = L.circleMarker(\n",
" [34.89749652, -121.52022061],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4ce693b03bee66bb72b017e23fa13e1b = L.circleMarker(\n",
" [34.89774938, -121.51010124],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6747de1d8f4ddaf6a78f89541ebdf1d5 = L.circleMarker(\n",
" [34.89790698, -121.49996679],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0cc3ab8c7c66cb5a8301d11ef84fadea = L.circleMarker(\n",
" [34.89781094, -121.48979047],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_546400346f4c9577d34bb30ec00262e4 = L.circleMarker(\n",
" [34.897611, -121.4799089],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f67f250b7d714dea9b465e5e57141b54 = L.circleMarker(\n",
" [34.89799818, -121.47002488],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_648606fd2570f954ad86d0bd6b839472 = L.circleMarker(\n",
" [34.89696084, -121.46033842],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8c16232141646cfdde46ad31e79f7a36 = L.circleMarker(\n",
" [34.89741628, -121.45014234],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6058df4ac3c65fb5b3648be52207d651 = L.circleMarker(\n",
" [34.89743119, -121.4400177],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_06f0e8e3e4204fd941098bfcb4313c1f = L.circleMarker(\n",
" [34.89746185, -121.42981378],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3b335e14aa9d77f50e12eb181b8f59a6 = L.circleMarker(\n",
" [34.89755744, -121.41965374],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_056d43aad962b60d758dc0991a06974d = L.circleMarker(\n",
" [34.89741614, -121.40950831],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fca2bd41469801410e8670525d546d84 = L.circleMarker(\n",
" [34.89733253, -121.39929353],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1e7aac711d0f48b9518aeb68d68111df = L.circleMarker(\n",
" [34.89747197, -121.38924047],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a8e43feb260caf43e4aaafd42f9c778f = L.circleMarker(\n",
" [34.8972586, -121.37901936],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a74665f9c7aea21fcfc7264dd7580384 = L.circleMarker(\n",
" [34.89727481, -121.36896476],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1a663a2905ed4598d9fddb47e689c8be = L.circleMarker(\n",
" [34.89724486, -121.35874601],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c9bc08a5a98ecb201f6fc7cd70626a09 = L.circleMarker(\n",
" [34.89723824, -121.34854542],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_73c0c97577e5f80c32e20b7ec1c8fd36 = L.circleMarker(\n",
" [34.89735718, -121.33851314],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6b080fb7a601638c9efb11ec09d14b1f = L.circleMarker(\n",
" [34.89751183, -121.32829004],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5916b0ff9fbf4890c5f7081121139b7c = L.circleMarker(\n",
" [34.89770992, -121.31817294],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c58ea788a44b1ed2203a231315d936be = L.circleMarker(\n",
" [34.89786955, -121.30793855],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5a53406e8d58b4a060e0c1e60a677c36 = L.circleMarker(\n",
" [34.89782776, -121.30064684],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c286579c74d30c0bee8aff8457212d5b = L.circleMarker(\n",
" [34.89768365, -121.29660203],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9072476eeded423c10b0b2f56d7235cd = L.circleMarker(\n",
" [34.89725071, -121.28639179],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_68d537cb5b5b04823015e4f64d9619f0 = L.circleMarker(\n",
" [34.89710676, -121.27630958],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_22ff20c2b92d7eb9f22e1215dd2ecdf1 = L.circleMarker(\n",
" [34.89692669, -121.26614759],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_04c38898c41d4c2c14055afbf442aac8 = L.circleMarker(\n",
" [34.89680135, -121.25606555],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_02c016286118723159d62774fde3878d = L.circleMarker(\n",
" [34.89695366, -121.24586377],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ff1e5a1a1c8e9f9ec87afe16cb99303a = L.circleMarker(\n",
" [34.89724164, -121.23577625],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b28fed151be0f4dfd64e1640def72fef = L.circleMarker(\n",
" [34.89749058, -121.2255478],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ae8363ff8731e7af72ea42b0d5fe98d6 = L.circleMarker(\n",
" [34.89736625, -121.22076442],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a0db97468b671dab71866872a43a8bb7 = L.circleMarker(\n",
" [34.89735742, -121.21825114],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f848ef4ffe7621d9e12c5dee3050a643 = L.circleMarker(\n",
" [34.89739533, -121.20807733],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_27b1cea539a5c233232dbfcf1f3e2292 = L.circleMarker(\n",
" [34.89731027, -121.19783404],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c96155ffc3388db3c5124ee4da06a619 = L.circleMarker(\n",
" [34.89718813, -121.1877126],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0d49715ceb2925daa083d31426bfb582 = L.circleMarker(\n",
" [34.89700449, -121.17756028],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_73db60f7fbe293040697de4e96742e28 = L.circleMarker(\n",
" [34.8970027, -121.16742507],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2f2d44b8c7f3684fd251e2d78de649bc = L.circleMarker(\n",
" [34.89729058, -121.15719507],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a98b6338353d1f2f4a2d4ec59a435441 = L.circleMarker(\n",
" [34.89754336, -121.14713972],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4c9af6ad3b76fbc20fb19148bb70d5e8 = L.circleMarker(\n",
" [34.89759614, -121.13694662],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fdf6c67bd9f915fffc607a88f42b3d1d = L.circleMarker(\n",
" [34.89762717, -121.12679175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8e26eb05b65e51c33c4d2a4970a56f26 = L.circleMarker(\n",
" [34.89757195, -121.11667094],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3a965e78a3e80f585ec7985ea085f0c8 = L.circleMarker(\n",
" [34.89762467, -121.10649226],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3c8d9efa89768bb89b450d49aba11114 = L.circleMarker(\n",
" [34.89756877, -121.09629836],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_078d8637c516e31d9294cf3c94c44001 = L.circleMarker(\n",
" [34.89760746, -121.08612504],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b011622af4fc747fa5a7202ab1c26f7f = L.circleMarker(\n",
" [34.89760477, -121.0760368],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_33676791ac8034b545df37b60fae0325 = L.circleMarker(\n",
" [34.89758144, -121.06581661],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8470fcde9144076ada91701bf33c0990 = L.circleMarker(\n",
" [34.89740915, -121.0557041],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d06ecdc19b3b61b3cfe976d47546eab9 = L.circleMarker(\n",
" [34.89723763, -121.04553554],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_25a01c4ef184df93c7b7fff26a3b92d8 = L.circleMarker(\n",
" [34.89744176, -121.03535889],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_daab069aed3b6d53c43e3260da7e6d41 = L.circleMarker(\n",
" [34.89751732, -121.02525935],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_679636450b283f50efb1befbf5b4c8af = L.circleMarker(\n",
" [34.89768754, -121.01512749],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d53993463c922a39a7d698213c5c5a2a = L.circleMarker(\n",
" [34.89783775, -121.00501679],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a9778890a5ca2b82032745f3e9aa5de0 = L.circleMarker(\n",
" [34.89766667, -120.99514468],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e750459c608efeb780ad0dca574f9b71 = L.circleMarker(\n",
" [34.89783333, -120.98490328],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_803839bd6ead449b0f1e011a0e567459 = L.circleMarker(\n",
" [34.89783333, -120.97480483],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_76708527d9dcafee7863a1ab9c4f56f3 = L.circleMarker(\n",
" [34.89783333, -120.96469757],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7388b4924cbed6c82474267cdec9b1d1 = L.circleMarker(\n",
" [34.89780637, -120.95455393],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_91169647e5e2cf7d6028787303080d9c = L.circleMarker(\n",
" [34.89759407, -120.94447853],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_41767739461bd274d22a611049b0c6a5 = L.circleMarker(\n",
" [34.89783333, -120.93433792],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_db0aea7a16537a6409fd43b92d857ed7 = L.circleMarker(\n",
" [34.89816667, -120.92408625],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d62a2b6d27df6364ee4430aa6f22781e = L.circleMarker(\n",
" [34.8985, -120.91408785],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_62bced13ceb4f87f2c2008675ff0f9e2 = L.circleMarker(\n",
" [34.8985, -120.9038439],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7d0b4607eb94a600c5c09d1726f194db = L.circleMarker(\n",
" [34.89866667, -120.89371563],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dc7777536dc1f7b18fa8a743eaa8eac0 = L.circleMarker(\n",
" [34.8985, -120.88356242],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_448518dcbe7b6e746f181adc2195fb06 = L.circleMarker(\n",
" [34.898, -120.87335488],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c0c4402e43f58244dbcc4e83660cb793 = L.circleMarker(\n",
" [34.8975, -120.86331758],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7f979c07dc5454fa6ddac9c36b6897c9 = L.circleMarker(\n",
" [34.8975, -120.85311833],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e0fa35f149a1deec1061a4adb59d50be = L.circleMarker(\n",
" [34.8975, -120.84295422],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_57a4efc6cf1ec8cfee2ec124c1cb6cab = L.circleMarker(\n",
" [34.89766667, -120.83282135],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a56fbead86eb9cfd10c5c46f7a7aacc1 = L.circleMarker(\n",
" [34.89766667, -120.82256149],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4c3e7a85192537f706854fe16f27a299 = L.circleMarker(\n",
" [34.89766667, -120.81237114],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_70991f45b0ad01f316f6f542eec5f99f = L.circleMarker(\n",
" [34.89766667, -120.80225231],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e2bf94136e41d2c810d225a7db0e2ba0 = L.circleMarker(\n",
" [34.89762414, -120.79220574],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d81d0a7c2f66d11436a5c713fda3cb3b = L.circleMarker(\n",
" [34.8975, -120.78203974],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c1c0262c801adab450255b9f28d8aad7 = L.circleMarker(\n",
" [34.89733333, -120.77178831],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_47c30e368cf16f57831cce4a991679d6 = L.circleMarker(\n",
" [34.89733333, -120.76156523],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_75bd378ccef6ba08602b83186a249c26 = L.circleMarker(\n",
" [34.89733333, -120.7515],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9347c90649db85f6e5f157d22c49a590 = L.circleMarker(\n",
" [34.89733333, -120.74133333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0140ca8703e3a24c0fb9c6eb5090f783 = L.circleMarker(\n",
" [34.89733333, -120.73101641],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1199e821749827e182ae16ffab04ee31 = L.circleMarker(\n",
" [34.93042058, -120.92643029],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#470e61&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#470e61&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_494ddaab07dde1e5c4806d605b9399c2 = L.circleMarker(\n",
" [35.065, -120.72632139],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1c6e8bd198890f75fe59360ff9291376 = L.circleMarker(\n",
" [35.06483333, -120.7345],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_71e8d403f02cea7124539d2f532e1379 = L.circleMarker(\n",
" [35.06466667, -120.74483333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3a384a8d5accd31ae6ead2533a90456e = L.circleMarker(\n",
" [35.06433333, -120.75487887],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_535d03c329a39fbea57101854c14c57c = L.circleMarker(\n",
" [35.06383333, -120.76516667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ce03472cfa56f4ee4812cf0c47bc3e3a = L.circleMarker(\n",
" [35.06366667, -120.77518],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7cbdd67dc7c8e9e75818d868d286e911 = L.circleMarker(\n",
" [35.06383333, -120.78552866],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4ca3a50b4e7a567e5963adb51ef7c2ab = L.circleMarker(\n",
" [35.06383333, -120.79561759],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6795b8b51ebde7ab45240b283e5b334f = L.circleMarker(\n",
" [35.06383333, -120.80579183],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cf6739f8a5a298acf27f96dd236dcaa0 = L.circleMarker(\n",
" [35.06383333, -120.81592974],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b12cd490be3aa736e09fd28cdb13e67f = L.circleMarker(\n",
" [35.06383333, -120.82632785],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6b3eaeb33088c6c6738f8d17558d375b = L.circleMarker(\n",
" [35.064, -120.83638908],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e34003be6b5ba6bb2daff90f47880758 = L.circleMarker(\n",
" [35.064, -120.84670425],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_396bf3fd9e8c76d9a72a4bd081e9988b = L.circleMarker(\n",
" [35.064, -120.85675666],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d609b4a507adee302341431e955e9b97 = L.circleMarker(\n",
" [35.064, -120.86700282],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bbd89160b53546781587ef4ad271c850 = L.circleMarker(\n",
" [35.064, -120.87709258],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b384b21602b44a1608bfbb2c5fc36689 = L.circleMarker(\n",
" [35.064, -120.88737836],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_08f417f4efaf89a20d84a6d1dea1b689 = L.circleMarker(\n",
" [35.064, -120.89740611],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a6c032f06af5f7e701beb8d765780d8c = L.circleMarker(\n",
" [35.064, -120.90762988],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6454cb1356152182768c169b580e44e9 = L.circleMarker(\n",
" [35.064, -120.91787253],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5a36a926af835420b91e949c2dadebfa = L.circleMarker(\n",
" [35.064, -120.92799395],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b4b412977658d8bd521918b2fffa343d = L.circleMarker(\n",
" [35.064, -120.93819965],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8aac7d1510c89ec3d8ee8801dd01efb2 = L.circleMarker(\n",
" [35.064, -120.94837002],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7e8978fa856153ea2f8f859c8bd7bd8a = L.circleMarker(\n",
" [35.064, -120.95860526],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_94d93a232bae7f2076ef0b442e34fa98 = L.circleMarker(\n",
" [35.064, -120.96883333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c0a3dc0f9f592372992ffda97464c89e = L.circleMarker(\n",
" [35.064, -120.97897158],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0cd773cd40ab0f4d9f4034e4dfcdaab1 = L.circleMarker(\n",
" [35.064, -120.98915715],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ad7c1da4e630309d47ff98955c9f12a3 = L.circleMarker(\n",
" [35.064, -120.99935183],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d5809e191e49a04e1f9485d7666cde8f = L.circleMarker(\n",
" [35.064, -121.00945923],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_01ed2e39e6c0de50937036fb4db48cbb = L.circleMarker(\n",
" [35.064, -121.01956527],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2b57d537790f0075570483255eccbf1e = L.circleMarker(\n",
" [35.064, -121.0298266],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a75dbd3fe95eada9ad6e3a73efa16da0 = L.circleMarker(\n",
" [35.064, -121.0399058],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ba304ea721325750dca4ee92867911fe = L.circleMarker(\n",
" [35.064, -121.05013981],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fac350d657a078e8d56e9fbc0a5ebe4e = L.circleMarker(\n",
" [35.064, -121.06028243],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a497e7058d9dae58668ff988c5fbb0c9 = L.circleMarker(\n",
" [35.064, -121.07037953],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_86a0624694e4218b766b7604945ea323 = L.circleMarker(\n",
" [35.064, -121.08060847],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8fbadb81f2889fe969f636ffa4ee6b9e = L.circleMarker(\n",
" [35.064, -121.09083217],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6a9f091c290b94246d16ac46af95c45c = L.circleMarker(\n",
" [35.064, -121.10089578],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_be85b217906bd56e38b377ad8e1d75f1 = L.circleMarker(\n",
" [35.064, -121.11113886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cb370cd11a71c49c4996710c54f0f63a = L.circleMarker(\n",
" [35.064, -121.12134993],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8a761b15895476ba74fde290a49b68da = L.circleMarker(\n",
" [35.064, -121.13147589],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f01917805764d1fdf5bfacd1b8583229 = L.circleMarker(\n",
" [35.064, -121.14158461],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ad9926da49095940039773820ff7ad0c = L.circleMarker(\n",
" [35.064, -121.15184499],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b9f598d6660d9ecd1bdb532cde98f705 = L.circleMarker(\n",
" [35.064, -121.16201556],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4a2a2607cdf601926d3119f88ffb17c3 = L.circleMarker(\n",
" [35.064, -121.1721929],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f664d51be700d4b570a0390b267ba415 = L.circleMarker(\n",
" [35.064, -121.18235678],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_682c6e95620a3c4f4c258ac9159d75f0 = L.circleMarker(\n",
" [35.064, -121.19253277],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ddb9490b4dc7890e3c01177b61dfcf66 = L.circleMarker(\n",
" [35.064, -121.20273371],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1c5cc7de21639c9c851dd4a59f734cb3 = L.circleMarker(\n",
" [35.064, -121.21302355],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8e22a9604832de6fbf0ba3ae4f9cd833 = L.circleMarker(\n",
" [35.064, -121.22329293],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bf294f10c842762740e42325abcb10e4 = L.circleMarker(\n",
" [35.064, -121.23329342],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6f02b27aab08b0761fe442939ed02e52 = L.circleMarker(\n",
" [35.064, -121.24364158],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_740569b7a7f8d8a6cdc629960aec4d2c = L.circleMarker(\n",
" [35.064, -121.25372001],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_329025676df30f25ed44ecf975b3ecf6 = L.circleMarker(\n",
" [35.064, -121.26392392],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_50f3c320a14ab0f5d444d79dcaf67fd9 = L.circleMarker(\n",
" [35.064, -121.27402533],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1ac59044ebd8f70332576ed8247cf9b9 = L.circleMarker(\n",
" [35.064, -121.28431755],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_39e232a164c6941375852a78c25967b4 = L.circleMarker(\n",
" [35.064, -121.29448048],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8d3d7d1ac007037239c449f66fa04980 = L.circleMarker(\n",
" [35.064, -121.30463942],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_baa702d7174aede539e2bc2ad29bf55a = L.circleMarker(\n",
" [35.064, -121.31485317],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7e5686677ebdbff4289a8b44ee6a7403 = L.circleMarker(\n",
" [35.064, -121.32495275],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0aececd2d086648bb5d939c06e027190 = L.circleMarker(\n",
" [35.064, -121.33517629],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9c0bbfa88418db6b87f1f258d51329a8 = L.circleMarker(\n",
" [35.064, -121.34528596],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7da2eaaa2f3eadee3c9c590f4acfb580 = L.circleMarker(\n",
" [35.064, -121.35547448],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d268fe791789d7c4173288298f8a2efd = L.circleMarker(\n",
" [35.0640688, -121.35727471],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_aa6fe5eae317c98bfd7dd7bf61efd29d = L.circleMarker(\n",
" [35.06420146, -121.36121979],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_434ce4ea618bf561314b4b7004337937 = L.circleMarker(\n",
" [35.06424636, -121.37136035],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_64521b9ae7eb5c9235d2228920a7fe77 = L.circleMarker(\n",
" [35.0643151, -121.38152961],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_13fa5f5e225bf1e94a1acef3cae597fb = L.circleMarker(\n",
" [35.06422883, -121.39172481],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3e163f38be696a248e0dc74f0667f284 = L.circleMarker(\n",
" [35.06425468, -121.40175563],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_36bffc82fb52c0615ec1f15f3d38e69b = L.circleMarker(\n",
" [35.06429798, -121.41198103],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_854649e87f6eada16d12b547e614b937 = L.circleMarker(\n",
" [35.06423956, -121.42223376],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5ee8b3736f232dd2e39ac4f314139b91 = L.circleMarker(\n",
" [35.06418062, -121.43239968],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9a4267b44d15b57565b237f97b7fd252 = L.circleMarker(\n",
" [35.06407227, -121.44259998],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ea061bd700c341eac97c7617e599ff28 = L.circleMarker(\n",
" [35.06390238, -121.45272638],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7b3ac2ae3e13043f57ebca9e76559f46 = L.circleMarker(\n",
" [35.06373462, -121.46287907],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2b5238bef2489236f980b3d6202f3443 = L.circleMarker(\n",
" [35.06344434, -121.47312732],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6122d0fd92e92b1e885e05000d05d001 = L.circleMarker(\n",
" [35.06309804, -121.48324179],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_75d5effeba20f0cedf5744ba9000f0d5 = L.circleMarker(\n",
" [35.06300136, -121.49337298],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f462fe0fcbb36c419c9e7aaa87c2cc5f = L.circleMarker(\n",
" [35.06309525, -121.50347161],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9756a4dd82d0d660ffb099ba0d14bd69 = L.circleMarker(\n",
" [35.06366667, -121.50254886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1f29e5368bd2368f7dbeee77a9891666 = L.circleMarker(\n",
" [35.06383333, -121.51113317],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1d4708499804bca1f03118bde27aacde = L.circleMarker(\n",
" [35.06383333, -121.52116667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0c10e7486b24b7b3c69ee5d9edb50dc8 = L.circleMarker(\n",
" [35.06383333, -121.53129852],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9cfdc42bab1e31ba9c67ec496e5c90a2 = L.circleMarker(\n",
" [35.06383333, -121.5415021],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9e24d09ad9bbcd3c42f02d7c0a306e19 = L.circleMarker(\n",
" [35.06383333, -121.55165106],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c9b92a93be5fc58df9cdaf2c3455c992 = L.circleMarker(\n",
" [35.06383333, -121.56185042],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_480f12454365e66b968094eb38665fae = L.circleMarker(\n",
" [35.06383333, -121.57187386],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9cf447f6560d2d96a449c5f7e2919be5 = L.circleMarker(\n",
" [35.06383333, -121.582],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_16080db237d47d086c14df6e8e67003e = L.circleMarker(\n",
" [35.06383333, -121.59211855],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_15b57fc2ab767f3f51e54631e73d1af4 = L.circleMarker(\n",
" [35.06398047, -121.60248047],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_074c36a9fce7de8884c37adf2efc1088 = L.circleMarker(\n",
" [35.06383333, -121.61248993],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6ff0afb98597705fc444b018f91fffab = L.circleMarker(\n",
" [35.06383333, -121.62278855],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2b10f98770c3ad48a304dbca201446a7 = L.circleMarker(\n",
" [35.064, -121.63293538],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4f9039f8fd1f8e9f26d38107f7fcd1a0 = L.circleMarker(\n",
" [35.06383333, -121.64300466],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_024504c3fb73da159aac454250dbad9a = L.circleMarker(\n",
" [35.064, -121.65326488],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9b591e9fc9cce65c5d0248dd747c65f8 = L.circleMarker(\n",
" [35.06383333, -121.66339458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_33656fb7addefbb3d7e435c976972f4b = L.circleMarker(\n",
" [35.06383333, -121.6735],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_746e7e5c30cb631fa39f4454d47c00f0 = L.circleMarker(\n",
" [35.09832526, -121.70255018],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#471164&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#471164&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2164b2e763f8ce473c2a21bbdf387cd8 = L.circleMarker(\n",
" [35.2308746, -121.78584409],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fc72643e36a91f6a5b06443bf2562d61 = L.circleMarker(\n",
" [35.23073744, -121.7785953],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b1d2644e8a991eb53122e24facc1ab59 = L.circleMarker(\n",
" [35.23073335, -121.76849411],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_51348465620a5f3d04f127eca9ad811d = L.circleMarker(\n",
" [35.23071429, -121.75820859],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3bca4d558f7a63f6e8bb0cbdacc5a3e4 = L.circleMarker(\n",
" [35.23071433, -121.74808816],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_85b3b5f02f440da8474bd5fefd1b5680 = L.circleMarker(\n",
" [35.23075781, -121.73796292],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fda0b40046a396787133f7615d8a89f1 = L.circleMarker(\n",
" [35.23069929, -121.72781509],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_43a494d377be7214e4d13e11cf7906f6 = L.circleMarker(\n",
" [35.23074778, -121.71763823],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f7b5d963a9e3aa40bbb4e06dff344a6a = L.circleMarker(\n",
" [35.23075226, -121.70735347],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8bd947495bee06a7b104e03009f34dac = L.circleMarker(\n",
" [35.23070597, -121.69725937],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a7a1aa7aff1fa20f0a9de7d0bc11b60d = L.circleMarker(\n",
" [35.2307515, -121.68704073],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d9ba1c74a3fdd710fc9c412ef7d6126a = L.circleMarker(\n",
" [35.2307217, -121.67683419],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_655ed8ddb5b9ef29e9fc397c14ecd4f1 = L.circleMarker(\n",
" [35.23069979, -121.66668323],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f602635ff3facd6e9de271ab623ea3bd = L.circleMarker(\n",
" [35.23077039, -121.65662174],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6512d1a13894f5aeffecee57d209555b = L.circleMarker(\n",
" [35.23072891, -121.64641934],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d7018bcd7e3c76e0b60d900ff40cdaa2 = L.circleMarker(\n",
" [35.23103658, -121.63625053],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_71222ae11af6cfc5a77ddb19bcd3f086 = L.circleMarker(\n",
" [35.23135182, -121.62609804],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_33f5239abbad6bed24f6d7fc1166aa24 = L.circleMarker(\n",
" [35.23146554, -121.61582906],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b242a254f381610d0d5fcd52365c6794 = L.circleMarker(\n",
" [35.23160849, -121.60562157],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_59371c98cc2cf37a6a4c025b5042dfac = L.circleMarker(\n",
" [35.2316303, -121.59551244],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bb403b62f3f14ec3f79d56c94ed8a78c = L.circleMarker(\n",
" [35.23166893, -121.58539859],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0ea20743cf0bbedeb6dc1ab556cbdf86 = L.circleMarker(\n",
" [35.23162372, -121.57521119],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d6572582623a235db7e286eddf94891b = L.circleMarker(\n",
" [35.23159982, -121.56503279],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1d2e201c27bc91bca84c3875d4266875 = L.circleMarker(\n",
" [35.23156842, -121.55482534],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8694b4da634d6c3ac06d7a4584132485 = L.circleMarker(\n",
" [35.23142215, -121.54460298],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e7267567ea22a22bdfd2727e6921cd0b = L.circleMarker(\n",
" [35.23127321, -121.53438083],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_80be7e22d655971a60910daadb65f88a = L.circleMarker(\n",
" [35.23125291, -121.52427185],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_28b054474df9759b9c079e37ab9c5bb2 = L.circleMarker(\n",
" [35.2312895, -121.51397268],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1b6becb2b8c9e4b823fccf2b358e43d4 = L.circleMarker(\n",
" [35.23130898, -121.50393871],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_23d5a6c0d16eb3bb0d5b46db68879a3a = L.circleMarker(\n",
" [35.23128004, -121.49362734],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8218f0d9bfe80a9d42664b8ace9f05b3 = L.circleMarker(\n",
" [35.2312545, -121.48364539],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7e8fcf144be33b0dade5d59230c131ea = L.circleMarker(\n",
" [35.23127967, -121.47338706],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f7993edd740764a47b0abe247995b719 = L.circleMarker(\n",
" [35.23132233, -121.46311779],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_652b6b54559ef8ce3ee65818ba3e10c9 = L.circleMarker(\n",
" [35.23125025, -121.45291388],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_abeeeb612c9f69f8f88a989009711da6 = L.circleMarker(\n",
" [35.23128395, -121.44289856],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2be7f40299122385adb400488747a765 = L.circleMarker(\n",
" [35.23128495, -121.43271533],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_78edc8d81355648077c49fea217ae698 = L.circleMarker(\n",
" [35.23117563, -121.4225187],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ed567a58831937a88c41f3ab2330e4ba = L.circleMarker(\n",
" [35.23104201, -121.41232582],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ade384f6f091802a71c3d6e2016b7217 = L.circleMarker(\n",
" [35.23088953, -121.40200845],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2b93233cee5acdcc8d1fa991c5f65849 = L.circleMarker(\n",
" [35.23074991, -121.3918475],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_eada40c8a423c24016c447724e6803af = L.circleMarker(\n",
" [35.23058871, -121.38159437],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c3f7d95bab010762c34838da15ae30ae = L.circleMarker(\n",
" [35.23047233, -121.37136141],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_de3b77d79e34f6e8efd0f85ebeb331e1 = L.circleMarker(\n",
" [35.23028947, -121.36119328],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_aed8800b8cf8de678769e0f6a1541dea = L.circleMarker(\n",
" [35.23018652, -121.35102685],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0bf7dab16cbc20408b2e9a8d15532828 = L.circleMarker(\n",
" [35.22997924, -121.34074966],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c2050d92d728c0ea2df4821c62b763be = L.circleMarker(\n",
" [35.23005777, -121.33058052],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_56449a57df633c78018ec427ad6b515d = L.circleMarker(\n",
" [35.23013934, -121.32041572],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0c18ec1c2e04a4b5b954fbc41ec068a3 = L.circleMarker(\n",
" [35.23034038, -121.31016166],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5496b5f7b59ad51a0ad1329b36548ed7 = L.circleMarker(\n",
" [35.23046513, -121.29990806],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9fedafe7de94d1ee3aab791f25a34819 = L.circleMarker(\n",
" [35.2305626, -121.28985444],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0e3d03feb63034923af234008976e6d6 = L.circleMarker(\n",
" [35.23075465, -121.2795693],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_684a2613c18136ae8b958d10399e8e41 = L.circleMarker(\n",
" [35.23089182, -121.26941779],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_91d9d78686d29ae0611e50bc3cc60dac = L.circleMarker(\n",
" [35.23104531, -121.25928962],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_85e765c4ebcc1010e6fce5e950ad7fc8 = L.circleMarker(\n",
" [35.23117142, -121.24901823],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_87d7a42d9f810c7d0ef552c93641237f = L.circleMarker(\n",
" [35.23132514, -121.2388228],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_27fef45af008f9083299513416453e18 = L.circleMarker(\n",
" [35.23150093, -121.22863947],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_faa6004df6633b68daacdc225f5ad8e0 = L.circleMarker(\n",
" [35.23162404, -121.21841458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5bd833820d19ea8d94afe51b3f4aca73 = L.circleMarker(\n",
" [35.23172722, -121.20830799],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b3e6bb8a6ff910861f26f4e0ec1798b2 = L.circleMarker(\n",
" [35.23160827, -121.19810786],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_308068f20115c430ef1c9567a519cfde = L.circleMarker(\n",
" [35.2314659, -121.18793307],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_21bb02bf1083bca2638024129cbc3483 = L.circleMarker(\n",
" [35.23127105, -121.17771357],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_647cb6bc5471ad4dc339e377ba1395a5 = L.circleMarker(\n",
" [35.23112124, -121.16752802],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6eac7ddf4f9d86f57f6974ea75fa8cc7 = L.circleMarker(\n",
" [35.23100703, -121.15731016],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a037955f94dcad9d03d84f236efde709 = L.circleMarker(\n",
" [35.23091092, -121.14713943],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a4a90c99f30305d391d2778730aca67f = L.circleMarker(\n",
" [35.23069989, -121.13701555],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d90bb00172fdedc580f08edcbbb35777 = L.circleMarker(\n",
" [35.23056065, -121.12678712],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0e43bdfef5f6f9f0fb32abdd4c9cdc26 = L.circleMarker(\n",
" [35.2304039, -121.11666494],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6219128e007e0034e488007e4b7fa5d2 = L.circleMarker(\n",
" [35.23028562, -121.106481],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1942ece5b730b177b465810ad0cace1a = L.circleMarker(\n",
" [35.23026024, -121.09624762],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_239e3b462a4e0f18a41cf4450d83d09c = L.circleMarker(\n",
" [35.23023325, -121.08611926],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_726f67f5e2b912dbbc2a40e8442ffcc8 = L.circleMarker(\n",
" [35.23026933, -121.07587949],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5e84e73ce30ad8bab7fa87ea394a6cb1 = L.circleMarker(\n",
" [35.23026614, -121.06573748],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6d482ea5b122c8eda068d0c326e2763c = L.circleMarker(\n",
" [35.23029294, -121.0556455],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b477f4d14ad01878a84442acf4755667 = L.circleMarker(\n",
" [35.23022031, -121.04539431],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_32e771032223d69ce9bae02d73e4f13c = L.circleMarker(\n",
" [35.23025995, -121.03525986],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3f68b0f4bdb67ba6f4f510d84c413f57 = L.circleMarker(\n",
" [35.23033021, -121.02514495],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_533d94d8873da8967b83b9b604c70d40 = L.circleMarker(\n",
" [35.23027319, -121.01494205],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c602c9605a3e6818a3c3cb2c90d79eca = L.circleMarker(\n",
" [35.23029185, -121.00477745],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e4384c4c216b0ecda0f9e8ae265f23d7 = L.circleMarker(\n",
" [35.23026602, -120.99448405],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1212d13219ff42515ea65a3a7edcd842 = L.circleMarker(\n",
" [35.23027897, -120.98434995],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a9cdbc66047690046ab4889880f5082d = L.circleMarker(\n",
" [35.23031966, -120.97415247],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_934d1ffa5bf61093b3392c795cdee19b = L.circleMarker(\n",
" [35.23063751, -120.96407064],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2c1e83af9255056bd8206997f227d687 = L.circleMarker(\n",
" [35.23045624, -120.95382553],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_53b3c18b2e307a9802883fdcfd73bcd4 = L.circleMarker(\n",
" [35.23039941, -120.943573],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_53e705fd7ac211e2b487b0748f4b3712 = L.circleMarker(\n",
" [35.2306359, -120.93343327],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4a1da98cfe64cf4ec8a10bbe2208b3f4 = L.circleMarker(\n",
" [35.23084451, -120.92332072],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ae31f149789158b4dfe0705b313b564e = L.circleMarker(\n",
" [35.23078372, -120.91314757],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481467&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481467&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_77bfc342efabbe26e88148311e7a57b0 = L.circleMarker(\n",
" [35.397, -120.92608307],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_30df950c6900255f030f50f7af23ad80 = L.circleMarker(\n",
" [35.39716667, -120.93283333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_255986ff66b419611044d88ce9673a5b = L.circleMarker(\n",
" [35.39716667, -120.94313381],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d1562dee769c154333e06e9901d4f2be = L.circleMarker(\n",
" [35.39716667, -120.95330097],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_89b8f020bc0b61d2c6bfeddb771c626f = L.circleMarker(\n",
" [35.39716667, -120.96360619],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_50d88b93c67818d19f6e71f94fd1c3be = L.circleMarker(\n",
" [35.39716667, -120.97377175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d6b87e2cc8d698d441b720cf1a1707dd = L.circleMarker(\n",
" [35.39716667, -120.98380932],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ac868a2fecaf3a3869a1faf1a05bceb2 = L.circleMarker(\n",
" [35.39716667, -120.9940713],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3ba1b6e88361948f57c1466e2c7ba659 = L.circleMarker(\n",
" [35.39716667, -121.00433333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8d8af8bf5cc821480cc1725991c430cf = L.circleMarker(\n",
" [35.39716667, -121.0146629],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_deb16cf93041e7987e5aedbaa45a987c = L.circleMarker(\n",
" [35.39716667, -121.02483599],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0a6247d950673e7e15d76122b8e3746b = L.circleMarker(\n",
" [35.39716667, -121.03513818],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_66b1615ae52ee0a60961c14901c55211 = L.circleMarker(\n",
" [35.39716667, -121.04529769],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ad327698f81b45cfeb85a4eb6e87e45a = L.circleMarker(\n",
" [35.39716667, -121.05551049],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_535c3675150a2af15f620c03217f9001 = L.circleMarker(\n",
" [35.39733333, -121.06572186],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_99daaa1b703625d2716ff955cbce99a3 = L.circleMarker(\n",
" [35.39716667, -121.075875],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b8fb2ebc135cb0cd36d9db813b327a78 = L.circleMarker(\n",
" [35.39716667, -121.08616667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_88dfa1c77f5390b9b84e5a86247383c7 = L.circleMarker(\n",
" [35.39716667, -121.09633761],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_13742ca757a46782c33be88f6f1c8181 = L.circleMarker(\n",
" [35.39716667, -121.10666667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e5d7c180d0367d763bf466887dd14a73 = L.circleMarker(\n",
" [35.39716667, -121.1168012],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3a5e457b150dcdbb902e572366517374 = L.circleMarker(\n",
" [35.39716667, -121.12707201],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_787afb40449129990ba08c1a31dafe60 = L.circleMarker(\n",
" [35.39716667, -121.13723186],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0dfd717d05ba30a5b6f6d1704e2eb931 = L.circleMarker(\n",
" [35.39716667, -121.14750762],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a985cae9dd1104a1a4b8c7cfcbf4b934 = L.circleMarker(\n",
" [35.39716667, -121.15772665],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ac431411c913372a909687d5be0e307e = L.circleMarker(\n",
" [35.39716667, -121.16805726],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3db9b04d2a6c0aa9feb7cc166e33495c = L.circleMarker(\n",
" [35.39716667, -121.17826108],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8f25b4a539fa4c87ef7ff2efaf79e1c2 = L.circleMarker(\n",
" [35.39716667, -121.18841458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3a4ae16930b7968fe88d1287341bc3cd = L.circleMarker(\n",
" [35.39716667, -121.19856997],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_57b9c1903941db0f7a1bc7e62162fc55 = L.circleMarker(\n",
" [35.39716667, -121.20878265],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_acb500fd9a439d6f05227dd713f61cf4 = L.circleMarker(\n",
" [35.39748253, -121.21657805],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_56f51715dfcd88e006e6254e6f87ef0f = L.circleMarker(\n",
" [35.39747107, -121.22174694],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2bfd422c2d879e1e62878b94ebac5eda = L.circleMarker(\n",
" [35.39752009, -121.23188352],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0cd3bcef999fd03a3ebd7b3d4942d59e = L.circleMarker(\n",
" [35.39750063, -121.24209536],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_04d845c9a68d3c0d6ecc8dd601feac08 = L.circleMarker(\n",
" [35.39748249, -121.25226635],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4b11ac3037f913499ca27d26da703192 = L.circleMarker(\n",
" [35.39746732, -121.26245758],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0cf0734b2715eef9d2b955e0501c4f32 = L.circleMarker(\n",
" [35.39751207, -121.2727525],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_47b7fea231bfc2015d7721e0d32c8f12 = L.circleMarker(\n",
" [35.39749564, -121.28296925],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1bb300e96630d8c3f3e0832e34494da4 = L.circleMarker(\n",
" [35.39747603, -121.29311905],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4b1f879d54b91fe4faabc47f82f7795e = L.circleMarker(\n",
" [35.39746933, -121.3035137],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_def9500a1b6897de8f38f00c46870644 = L.circleMarker(\n",
" [35.39749995, -121.31370263],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_36e321187668efef5148cbbd6e542f9e = L.circleMarker(\n",
" [35.3975035, -121.32406377],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_507441b02751839697ea4f900048e819 = L.circleMarker(\n",
" [35.3974629, -121.33427104],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_12a9abd3926e3cde73de8e3f62c5cea4 = L.circleMarker(\n",
" [35.39750804, -121.34456642],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8102763cc192154d41915808a3d330ab = L.circleMarker(\n",
" [35.3975135, -121.3546093],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0935c520566fcf36d719a3cbb57a1695 = L.circleMarker(\n",
" [35.39743661, -121.36481343],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1ac312f0b1874f8d6d35c8f0df547af1 = L.circleMarker(\n",
" [35.39748882, -121.37500801],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_584eba3fd95a623c77b5e8f6889e45dd = L.circleMarker(\n",
" [35.39749634, -121.38517356],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_16763b32bf65bce4c0c4c53ba7da3c1f = L.circleMarker(\n",
" [35.39747207, -121.39543207],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_97fa48a20ea2496036f0a5dd3bf65ed6 = L.circleMarker(\n",
" [35.39750478, -121.4056506],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4948bb71d124bc0f6fa08d0b1821cd82 = L.circleMarker(\n",
" [35.39746394, -121.41586325],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c696c6b285867d514abbfead08f3553d = L.circleMarker(\n",
" [35.39748628, -121.42614642],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a18f7408224edf89c2b4d75e77fb764d = L.circleMarker(\n",
" [35.3975, -121.43605622],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b153adfcd2d4bb516e547e7a42b17185 = L.circleMarker(\n",
" [35.3975, -121.44635937],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f6fb8e71d4f7fee0384fe76e816f6dfb = L.circleMarker(\n",
" [35.3975, -121.45647243],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cabfbf71b653af916594bab427cae021 = L.circleMarker(\n",
" [35.3975, -121.46671088],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ce66608bdf0296d67e5b24507bd1371f = L.circleMarker(\n",
" [35.3975, -121.47682567],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_398faf9c3e4cd82aad5abe939f4a05ce = L.circleMarker(\n",
" [35.3975, -121.48698196],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_79275c00aa72d567e50cfb7fcd87982f = L.circleMarker(\n",
" [35.3975, -121.497112],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8d636527e94ddf1ed996702e681f7cef = L.circleMarker(\n",
" [35.3975, -121.50753806],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_26bd7aa88951e71a4000c40aefb45a98 = L.circleMarker(\n",
" [35.3975, -121.5176934],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6891530d63358aa2e2e5339f9843597f = L.circleMarker(\n",
" [35.3975, -121.52796103],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_628eec87302ee9b1ccc34294df60f7ca = L.circleMarker(\n",
" [35.3975, -121.53824039],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f51078f5e91b0c0a601e632fe2c8b498 = L.circleMarker(\n",
" [35.3975, -121.548501],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6ac894429bff58aa512352f3c3aba71e = L.circleMarker(\n",
" [35.3975, -121.55866469],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_96a4c450ac6e9d9a1af009bfd441d491 = L.circleMarker(\n",
" [35.3975, -121.56900275],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_58e4474dd48754ef3a54ae73d8ad2f26 = L.circleMarker(\n",
" [35.3975, -121.57909429],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_746fb6d12d41449de67eac5f7b4d35fd = L.circleMarker(\n",
" [35.3975, -121.58919896],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_29dbd487a6cbfb5d432fa1a1e61df107 = L.circleMarker(\n",
" [35.3975, -121.5995],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b0f36676843eb9652377e4df77239b21 = L.circleMarker(\n",
" [35.3975, -121.60972187],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7fd38c6e9a8c75c2c43d2767c3a2c7a4 = L.circleMarker(\n",
" [35.3975, -121.62001195],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d79474fe7de0f2b6b31b499941b8a848 = L.circleMarker(\n",
" [35.3975, -121.63016667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ddda89ee5d328ed97e6f05fa1aacd952 = L.circleMarker(\n",
" [35.3975, -121.64024303],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f3a7b97a29ab979ec12b47df2e7f069c = L.circleMarker(\n",
" [35.3975, -121.65047692],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2cb64162fcb5107f050a549016491b5c = L.circleMarker(\n",
" [35.3975, -121.66063693],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f930483cc6233a0ea7d9845a73330dea = L.circleMarker(\n",
" [35.3975, -121.67068658],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0389c9029f4debdd87958abd8260a600 = L.circleMarker(\n",
" [35.3975, -121.68094793],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3b1d621f93ccd044068fa5d436908c63 = L.circleMarker(\n",
" [35.3975, -121.69116667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4fda7e2adfa8a5bd2a896cf39f9bb223 = L.circleMarker(\n",
" [35.3975, -121.7011738],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_43fbcfe4c4302e7eb00e3790e0183788 = L.circleMarker(\n",
" [35.3975, -121.71142799],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ee52cb961f5691208669461d00107c09 = L.circleMarker(\n",
" [35.3975, -121.72157166],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c007166859e52984cf1e21d38f76d312 = L.circleMarker(\n",
" [35.3975, -121.73172791],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7e721d75e8224caca34aa24b2874de0e = L.circleMarker(\n",
" [35.3975, -121.74205382],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ecdb3bacd441d63a06d67671d1dfedd1 = L.circleMarker(\n",
" [35.3975, -121.75222955],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7b67942e39e0320558c9573c7f5837e6 = L.circleMarker(\n",
" [35.3975, -121.76246409],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7aa604d6b6e5ecd67adc9d1c589b3790 = L.circleMarker(\n",
" [35.3975, -121.77269009],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d7e26f6878f8ef574953d2cb3f99357c = L.circleMarker(\n",
" [35.3975, -121.78284266],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_05693efe096cf1a7efc38195b1f8af33 = L.circleMarker(\n",
" [35.3975, -121.79318113],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b3ff6273e219211a6b044401a0579b51 = L.circleMarker(\n",
" [35.39733333, -121.80334458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bb936455d1f788743b9377fce862282b = L.circleMarker(\n",
" [35.3975, -121.81346361],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bdf9276fa9e78f0fc67b028e5eace9d0 = L.circleMarker(\n",
" [35.3975, -121.82383333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_48dccf0039f0b666f77d114f4d394739 = L.circleMarker(\n",
" [35.3975, -121.83391679],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_118eb84a413d42858c79fbe49ad8eece = L.circleMarker(\n",
" [35.3975, -121.84394465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3c106bf396e21b56d37f5813e896fb25 = L.circleMarker(\n",
" [35.3975, -121.85422144],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#48186a&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#48186a&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_aa0e048437b75a9e444dedc81344a4d9 = L.circleMarker(\n",
" [35.56392936, -122.05559725],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d9d7a0bb1080fa66028ad01a703f1f2c = L.circleMarker(\n",
" [35.56390092, -122.0542114],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a72afeea22e8f6562cb4776acfb411a7 = L.circleMarker(\n",
" [35.56415804, -122.04396913],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6db2f76b48c5f11f0598344227398e44 = L.circleMarker(\n",
" [35.56399098, -122.03379562],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_68065f535e7f366f0fb62b6440a2a494 = L.circleMarker(\n",
" [35.56401958, -122.02351044],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ea575fb44b60230729500c95901121fa = L.circleMarker(\n",
" [35.56405379, -122.01322646],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_92c83e4696e20922f741c0ab902027cd = L.circleMarker(\n",
" [35.56402223, -122.00313079],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8429d2a0b93c38e29fede29a721a274a = L.circleMarker(\n",
" [35.564, -121.99316667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_62a0c1f56696d2b87853619a9e67494a = L.circleMarker(\n",
" [35.564, -121.98287512],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cd95a8fa680e266344fd5eed71be889b = L.circleMarker(\n",
" [35.564, -121.97266667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b39e6878589c60e523a7ae3bdbdd54cc = L.circleMarker(\n",
" [35.564, -121.96256385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_523426f720c07f8760f3efece7b78529 = L.circleMarker(\n",
" [35.564, -121.952188],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3c22b7f76f8d75bfcb8028a3c2624a0e = L.circleMarker(\n",
" [35.564, -121.94222012],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7aac25e22b780c110b8facaba9287c68 = L.circleMarker(\n",
" [35.564, -121.932],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_982c72f764d07a0f223e523b06705a4e = L.circleMarker(\n",
" [35.564, -121.92178558],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2c176698fa90b15fbf59b42e72b2ce7c = L.circleMarker(\n",
" [35.564, -121.91164407],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1a53d6b017baf09948065020e45685a8 = L.circleMarker(\n",
" [35.564, -121.90133333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3d4be5094664afb743ab9920af8112de = L.circleMarker(\n",
" [35.564, -121.8912708],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_de6e77ffab3013ec9e7ae78e30dac6a2 = L.circleMarker(\n",
" [35.564, -121.88106001],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dbcf21ea4d950afbc7683febd5083615 = L.circleMarker(\n",
" [35.564, -121.87084152],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9c07c3cb8ef707ff6d222e06f70e4b35 = L.circleMarker(\n",
" [35.564, -121.86062913],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dc9411d4585c098aea47058e2d70c53f = L.circleMarker(\n",
" [35.564, -121.85046175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5e99f846c58f19d03069e64dc24d3b6f = L.circleMarker(\n",
" [35.564, -121.84037819],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_750e49f168f974703d5d2c8eee5fb116 = L.circleMarker(\n",
" [35.564, -121.83],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_665500e305b46a5188aa66df49d2cb12 = L.circleMarker(\n",
" [35.564, -121.81993894],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_991cda7abe802397bbfc1b157d2eff0b = L.circleMarker(\n",
" [35.564, -121.80967875],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dbeaff8f496c547976d9a1dc254e3bdb = L.circleMarker(\n",
" [35.564, -121.79941208],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2cc738b72bb2af9cd0ecf9cf0001aa36 = L.circleMarker(\n",
" [35.564, -121.78929293],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_734d1644efa870e4fe1ee63d31a2c3ca = L.circleMarker(\n",
" [35.564, -121.77913576],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_81e0fb46da71b2b0d0ba11d38b65d1f1 = L.circleMarker(\n",
" [35.564, -121.76880639],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_694f782cc490b0277229120e2452d9db = L.circleMarker(\n",
" [35.564, -121.75865902],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_198d2e1c82b8e0e9c5db36c6899ecbb5 = L.circleMarker(\n",
" [35.564, -121.74864755],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cb78547e692550098b55c8c3d73eb6ae = L.circleMarker(\n",
" [35.564, -121.73839281],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_db3a820ed9f1db92bf293c2a70e16c2b = L.circleMarker(\n",
" [35.564, -121.72816256],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ccd502513f7d57ff6e133864ac5c5bee = L.circleMarker(\n",
" [35.564, -121.71794807],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6bbfc10dde132ea300db4504563c8272 = L.circleMarker(\n",
" [35.564, -121.7076256],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4228961d58d235ba7dbf73ee1e666f6e = L.circleMarker(\n",
" [35.564, -121.69764232],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_66432e53a10905504c3b94df5f31cc17 = L.circleMarker(\n",
" [35.564, -121.6873465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c3d94a4cf1538f84448cb93dab6390c4 = L.circleMarker(\n",
" [35.564, -121.67707253],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3e33f2507939ee37da26740bd4e20f1e = L.circleMarker(\n",
" [35.564, -121.66684165],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ab102d993ddc3223d90b193c0ceaeb15 = L.circleMarker(\n",
" [35.564, -121.65680052],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_11078d4f0b223e5c96882708ae212f55 = L.circleMarker(\n",
" [35.564, -121.6465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4b302bf0456cfadd9678c9508d5d5237 = L.circleMarker(\n",
" [35.564, -121.63628701],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9ebb22ab538f7a699954202890455153 = L.circleMarker(\n",
" [35.564, -121.62612407],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_13143e0e835293d2504842c5c38c1387 = L.circleMarker(\n",
" [35.564, -121.6159297],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_61b4ad74adcf5362c14589057b29f925 = L.circleMarker(\n",
" [35.564, -121.60578693],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7d2e3b11b9509cc9a561af95f01e73bd = L.circleMarker(\n",
" [35.564, -121.59539104],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2bf58cd52cb4bdaaa233125c31eec5f4 = L.circleMarker(\n",
" [35.564, -121.58516667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2905c12169e3aacdb03ed0187602807c = L.circleMarker(\n",
" [35.564, -121.574897],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_901b10616a2c03f15fde1ca9d6e32cf0 = L.circleMarker(\n",
" [35.564, -121.5648511],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e2c5723d227e1ec2bff3880193dced9f = L.circleMarker(\n",
" [35.564, -121.55453241],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7a42002a48283f14a6a5138c281f4ef5 = L.circleMarker(\n",
" [35.564, -121.54433333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_36dfc5d4db50651ed527d97b462980e0 = L.circleMarker(\n",
" [35.564, -121.53397238],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_75c3eaadeb723e82a89cd76e9611eef5 = L.circleMarker(\n",
" [35.564, -121.52379872],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_21e55fa0435d7a7b1c8b3fc3367e98f8 = L.circleMarker(\n",
" [35.564, -121.51362023],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_acb33edf3bf699d373fc1ad2fbf2dda3 = L.circleMarker(\n",
" [35.564, -121.50356734],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a276f398d80a50228d968332d56f75a6 = L.circleMarker(\n",
" [35.564, -121.49328435],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_51cca69825998528a6a8e2137c4088bf = L.circleMarker(\n",
" [35.564, -121.48305434],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2ec73527a058936d0ec29e8528c97bc2 = L.circleMarker(\n",
" [35.564, -121.4729715],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0481fb06a48e6845d011a369adbaea09 = L.circleMarker(\n",
" [35.564, -121.46270108],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_87747d1277b14a17e4b25272eb472ba8 = L.circleMarker(\n",
" [35.564, -121.45236157],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3401f85f4e5da7e8b6fc78ba16793923 = L.circleMarker(\n",
" [35.564, -121.44215425],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_596d35b9a71620be2b57f598debc2635 = L.circleMarker(\n",
" [35.564, -121.4319197],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b863f20fd500fbaa041cc3ad7be8d68f = L.circleMarker(\n",
" [35.564, -121.42176836],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4fdcb85426f0bfbb53d04b0c65cf3543 = L.circleMarker(\n",
" [35.564, -121.41162062],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_76573bae9a8ec57c61f41bacf4d379f2 = L.circleMarker(\n",
" [35.564, -121.40126887],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_831c48decd8ea0610de66306829ac759 = L.circleMarker(\n",
" [35.564, -121.39099795],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_14b5b6b63135da697c36caeabb84a19f = L.circleMarker(\n",
" [35.564, -121.38077084],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ce3d887b66b1a13b35153366be95ec18 = L.circleMarker(\n",
" [35.564, -121.37056152],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2998bdfc04883ffcf3365888ccf7889b = L.circleMarker(\n",
" [35.564, -121.36039901],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0c12bf85d792f33882440dd8a21ae87f = L.circleMarker(\n",
" [35.564, -121.35003218],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f0f279f5987e75bbc9dd3a8573a9652e = L.circleMarker(\n",
" [35.564, -121.33990199],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_24c19737ee2e8521bbb88288ffc1529f = L.circleMarker(\n",
" [35.56416667, -121.33777158],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1f1be5db7abec5831b81f374f24f1792 = L.circleMarker(\n",
" [35.56416667, -121.33002658],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_aec9fe4bb2f7dee5c07cfd0bd6f7f023 = L.circleMarker(\n",
" [35.56416667, -121.31968658],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_de600bc2995c23b57af1d5b5109d8bbb = L.circleMarker(\n",
" [35.56416667, -121.30951415],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_86a3744df1f59fa33f978fe172b15210 = L.circleMarker(\n",
" [35.56429663, -121.29924007],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ae7c965353bf4558a8f57695c2de52db = L.circleMarker(\n",
" [35.56416667, -121.289006],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f6a6d2f402d2687e921f0fe55404930f = L.circleMarker(\n",
" [35.56433333, -121.27880253],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1f48fc29574e1c40d7b5245fe2321698 = L.circleMarker(\n",
" [35.56433333, -121.26857008],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5a0b942d2d1b41b80e57b19e67fd78cb = L.circleMarker(\n",
" [35.56416667, -121.258264],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c1fdc7b1579aa85f011c81b080d63de3 = L.circleMarker(\n",
" [35.56428199, -121.2481793],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b3ea9442d6bc8e6053bcd3b68893b043 = L.circleMarker(\n",
" [35.56427806, -121.23783247],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3b6089f4170fbfc1d94e95859fd65623 = L.circleMarker(\n",
" [35.56416667, -121.22758673],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_78fdf042d3bcbb82ba98028aeab3c2d0 = L.circleMarker(\n",
" [35.56420158, -121.21740316],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6eb6ffa964ff6b0f443fa5d77e54a824 = L.circleMarker(\n",
" [35.56416667, -121.20712296],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c5ebe42680a6f0ea5f1695209a98db4e = L.circleMarker(\n",
" [35.56416667, -121.19686425],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_31c8884d074184f247d8c1fd736dd02d = L.circleMarker(\n",
" [35.56416667, -121.18661864],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_be35dbc87df50664010e0de9954da54e = L.circleMarker(\n",
" [35.56416667, -121.17635383],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_28b9b7d3c1059b3c833844a0e7c31004 = L.circleMarker(\n",
" [35.56416667, -121.1660767],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_90be4b670b4be7f1ff8d5530bc43def2 = L.circleMarker(\n",
" [35.56416667, -121.15582879],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cf894e24ad937237c29f9e51f9467e8e = L.circleMarker(\n",
" [35.58393588, -121.36994544],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481b6d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481b6d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_360128d3386efbe3609c9a08d6f4bff5 = L.circleMarker(\n",
" [35.7305, -121.35466667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e68a137978fc31cbb6fd242ded22f787 = L.circleMarker(\n",
" [35.73065146, -121.35481812],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_460a5c7144e1b71f11d4832fc2b1057e = L.circleMarker(\n",
" [35.73066667, -121.36516667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_747e255ec7137db3819334351f213e8b = L.circleMarker(\n",
" [35.73066667, -121.3754569],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b5a01f74faf68a6c5c2de8edc3f08a1f = L.circleMarker(\n",
" [35.73066667, -121.38566667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8750a6392acd54354bdc672e5e82ae0c = L.circleMarker(\n",
" [35.73066667, -121.39600801],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1b811a7e67a875d98dae581d1fb4cf70 = L.circleMarker(\n",
" [35.73066667, -121.4063928],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_64d661711def52c886edb74210185f7b = L.circleMarker(\n",
" [35.73083333, -121.41650883],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7f56824d32159334d5d110ee06e9ec3c = L.circleMarker(\n",
" [35.73066667, -121.42683333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6043595cbb4d61a4f33a00a89d183ae4 = L.circleMarker(\n",
" [35.73066667, -121.43703978],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a35572f70947ef8077691caf983df67c = L.circleMarker(\n",
" [35.73075436, -121.44740359],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_26d90c7a9bb7442333d0e3fdd1dc3726 = L.circleMarker(\n",
" [35.73082012, -121.45767988],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1d637bb8c0545c471695a8131eed63cc = L.circleMarker(\n",
" [35.73066667, -121.46770899],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7f236ef0347828e73b115692f54f7eed = L.circleMarker(\n",
" [35.73066667, -121.47815778],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f3369598b87804d904376f5a2a175ac4 = L.circleMarker(\n",
" [35.73066667, -121.48843336],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_56c430654eba9e36d6e3540bd0d73f4a = L.circleMarker(\n",
" [35.73066667, -121.49868196],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2d55cfa3b9f7c03c3cef22abc485c63d = L.circleMarker(\n",
" [35.73066667, -121.50901988],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0dea0252ac9fdf5bfd6d448225726778 = L.circleMarker(\n",
" [35.73066667, -121.51914566],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7fd2bb0d00fdc5567301bee0ff44ace8 = L.circleMarker(\n",
" [35.73066667, -121.52944886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5c1b77cf3c565aa6dbcaddbae13fc694 = L.circleMarker(\n",
" [35.73083333, -121.5397438],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ef72104ba17fde40d15eb42a881a819a = L.circleMarker(\n",
" [35.73066667, -121.54996987],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dc1b5bdd9a978ba4ef84f5a72c955c6f = L.circleMarker(\n",
" [35.73066667, -121.56039267],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ccf1c2ebe066bfffe5e8f3ca036e8e2e = L.circleMarker(\n",
" [35.73066667, -121.57055001],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3b6ff7829af56ffc8da3c3118ed2ffec = L.circleMarker(\n",
" [35.73066667, -121.58081756],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d7448ff6940e54be1dbaa9b8cb76f9f8 = L.circleMarker(\n",
" [35.73067165, -121.59098505],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6338893aee3351ee93183ff700ca8941 = L.circleMarker(\n",
" [35.73066667, -121.60134289],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f19395b3695cf591547c5abdb248edde = L.circleMarker(\n",
" [35.73066667, -121.61159337],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e6fb43e13a2d855c1bc8a3e2078bc416 = L.circleMarker(\n",
" [35.73066667, -121.6219238],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cae1d7873c2018360d7fe1d66529a38b = L.circleMarker(\n",
" [35.73066667, -121.63206135],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b88d92e0c35b504e2b610c03ed46475e = L.circleMarker(\n",
" [35.73066667, -121.64236848],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a26971e61f883efad9e99ff801582896 = L.circleMarker(\n",
" [35.73066667, -121.65262959],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c5e90f8e846dfc586c6e1b10f47d7bdd = L.circleMarker(\n",
" [35.73066667, -121.66302941],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_04dc4ed2fad4cd3c81d6637bab2a2ed5 = L.circleMarker(\n",
" [35.73066667, -121.67334845],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_98bd335db1c4986b5a2242f2f7550fc8 = L.circleMarker(\n",
" [35.73066667, -121.68348381],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_60c7816cc291f454ed446a25edc2d9d2 = L.circleMarker(\n",
" [35.73066667, -121.69378252],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2d3125b662a2acfba7230034090587ad = L.circleMarker(\n",
" [35.73083333, -121.70430551],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_eaaecc4d50469cfd4a9b501e179b90bc = L.circleMarker(\n",
" [35.73083333, -121.71446472],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6ce90558412283e398cd50f356cf99d7 = L.circleMarker(\n",
" [35.73083333, -121.72477467],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_efc0116e8af6f324bd68def92475392b = L.circleMarker(\n",
" [35.73066667, -121.73508867],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7df8d538ec709303ede878bab5500be7 = L.circleMarker(\n",
" [35.73083333, -121.74547066],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c21015a44288a15b6427d9d6f9973a90 = L.circleMarker(\n",
" [35.7306876, -121.75572948],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e07eebf963517c819af45ec028dd3b64 = L.circleMarker(\n",
" [35.730688, -121.76604267],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0d9c4d8ef413841736a66ea042ebca8e = L.circleMarker(\n",
" [35.7307793, -121.77616211],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4b7b9f16df0b6bec3aefc49fcb9ca5fd = L.circleMarker(\n",
" [35.73083333, -121.7865],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e6b079efe458f28d848be83eeeb299ef = L.circleMarker(\n",
" [35.73083333, -121.79656917],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2397e417792f3a774e0af68c92bdb0bc = L.circleMarker(\n",
" [35.73083333, -121.80676886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_79d66cb94b32a40c7fca5797e1cfadb8 = L.circleMarker(\n",
" [35.73066667, -121.81680426],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7fd60c88505d53145adf7d592215b1ba = L.circleMarker(\n",
" [35.73083333, -121.82706059],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_eb5a2da021db629ade3ec5d9af83674b = L.circleMarker(\n",
" [35.73066667, -121.83734629],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5d8f2e6f801aaed2659c3440447628de = L.circleMarker(\n",
" [35.73066667, -121.8474463],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2f67b70a1fa7b3a2a357d106300515f9 = L.circleMarker(\n",
" [35.73083333, -121.85765068],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_321185e3bed0158f6b7412b7da99c42d = L.circleMarker(\n",
" [35.73083333, -121.86772457],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_186509626cd6595cbd595983ea050ac3 = L.circleMarker(\n",
" [35.73066667, -121.878],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_07003a5a28e6f803c606654cb2eb992b = L.circleMarker(\n",
" [35.73066667, -121.88814133],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a614c7eba933eafc61c87f02f4f06f7c = L.circleMarker(\n",
" [35.73083333, -121.8985],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3bd36509478b60c27d046759c44aca26 = L.circleMarker(\n",
" [35.73122382, -121.90737567],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b983855806303cae5b48057856cfdebe = L.circleMarker(\n",
" [35.73106289, -121.91167997],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fd93db4eeffc88ff187d3abf5de53c42 = L.circleMarker(\n",
" [35.73097343, -121.9218568],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_370cc28620e6872b624b66019bc21d65 = L.circleMarker(\n",
" [35.73083326, -121.93209486],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d1c6192bf089037fd1a1a5b04d59fbdc = L.circleMarker(\n",
" [35.73067524, -121.94233088],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5de39a5c3266a00b10fc042986aa08a7 = L.circleMarker(\n",
" [35.73053639, -121.95253226],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4d2fee184d1c46d1cfd6e127fa9720c2 = L.circleMarker(\n",
" [35.73036445, -121.96279334],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_33bebbeb88e0d9ac17a1e5f1d8519104 = L.circleMarker(\n",
" [35.73037658, -121.9730963],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6754eb663c4e33bd4f9e6d6cd826ae21 = L.circleMarker(\n",
" [35.73037614, -121.98320184],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fc8ce02c09cd407b8e1fa7e586439929 = L.circleMarker(\n",
" [35.73035123, -121.99342352],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_051fa3d8580fdc9bad8fdab2824225d5 = L.circleMarker(\n",
" [35.73038304, -122.003624],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_09febe7686dc524b74df69f6629d4ffb = L.circleMarker(\n",
" [35.73039882, -122.01391904],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b1d3f6f5c996a8c31fc83e9a9ac4786c = L.circleMarker(\n",
" [35.73037139, -122.02396187],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_89a3a1b0ea6ab266b1fd1ee0eba5fa20 = L.circleMarker(\n",
" [35.73035221, -122.0343047],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fc7cce132d4f51132528153349af45a9 = L.circleMarker(\n",
" [35.73037822, -122.04447691],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_936a2e9ddafb129424ab6e0d98c01ee8 = L.circleMarker(\n",
" [35.73037904, -122.05479258],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_72010739bd98bb52b053d9423488938f = L.circleMarker(\n",
" [35.73039933, -122.06517426],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9538e70a7279143b6b1f0215e9686114 = L.circleMarker(\n",
" [35.73039387, -122.07533994],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a76500749bf01336320a69f22a62e9bf = L.circleMarker(\n",
" [35.73038319, -122.08541826],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d7d802cce3460e8c4769038dfca5c35e = L.circleMarker(\n",
" [35.7303935, -122.09560994],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2ee923a789e1e0c5ac1ed4e3222e1eb2 = L.circleMarker(\n",
" [35.73040662, -122.10590562],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8bacd5da435ca54deb04343078c75c75 = L.circleMarker(\n",
" [35.73038547, -122.11596655],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_570c09df777e46e65a592646db586cb6 = L.circleMarker(\n",
" [35.73037259, -122.12628203],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_61d9d2716636e3f196345262be2eac3d = L.circleMarker(\n",
" [35.73037959, -122.13637871],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fca5d6783a323390afd78ef5c30f1566 = L.circleMarker(\n",
" [35.73036447, -122.1467705],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8c80e5e95b666f2d88e80235dc2b5198 = L.circleMarker(\n",
" [35.73036073, -122.15696074],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_07fa15178a26eb1c75f66bb0f470afcb = L.circleMarker(\n",
" [35.73037921, -122.16723952],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_515d8ca34cd154903595cf7ef4b57972 = L.circleMarker(\n",
" [35.73039131, -122.17744502],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#481d6f&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#481d6f&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_033aff5cab0b7df01fce6b2e4f4b09a1 = L.circleMarker(\n",
" [35.89716667, -122.21621097],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_88c09a5462d1decd04c91019a992a6af = L.circleMarker(\n",
" [35.89733333, -122.21055483],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8230349c45e086fa72bae4500f6e93d0 = L.circleMarker(\n",
" [35.89733333, -122.20030998],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e51ebfc5a648eab9d00c16ef56971fe0 = L.circleMarker(\n",
" [35.89733333, -122.18989085],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9363872dac01c28ac5ade08b89ad3222 = L.circleMarker(\n",
" [35.89716667, -122.17967239],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1615e3490a77b567d099669ccb752204 = L.circleMarker(\n",
" [35.89733333, -122.16934598],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3610987f657881f26ac82c68d0f987d3 = L.circleMarker(\n",
" [35.89733333, -122.15928189],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dade338b87dd13ce5e048e51a1070172 = L.circleMarker(\n",
" [35.89733333, -122.14917049],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_025db2456ef92989610cbc628365bff0 = L.circleMarker(\n",
" [35.89759768, -122.13897132],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d5e27589d8c544c489c58c90b37e9588 = L.circleMarker(\n",
" [35.89766667, -122.12855469],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_183cfe415aa8648d46e1cee3b84067aa = L.circleMarker(\n",
" [35.89783333, -122.11860483],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8b0e6acd9494f995c78908fae5f065d2 = L.circleMarker(\n",
" [35.89766667, -122.10822017],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_033a1893dd93daaa8824cf7a2d9799c0 = L.circleMarker(\n",
" [35.89733333, -122.09800865],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2ea9ebbaa0129b5a8cb1d45fccc0be51 = L.circleMarker(\n",
" [35.89733333, -122.08774558],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6b090b7d5acb3c0dcfb51c6eee059fd3 = L.circleMarker(\n",
" [35.89716667, -122.07742859],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6660973c44959d026f9c450ddaaca1aa = L.circleMarker(\n",
" [35.89716667, -122.06728215],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5de865345c473f9c2e1a836b7cc5b0d5 = L.circleMarker(\n",
" [35.89716667, -122.05722065],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6a060c8ab7c701bdff7e37b5711bc979 = L.circleMarker(\n",
" [35.89733333, -122.04697962],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_983d41f25fc35374bdd0c30115ea6551 = L.circleMarker(\n",
" [35.89733333, -122.03666857],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3c999cb051c0a5c02332d8a0f71bd9f1 = L.circleMarker(\n",
" [35.89733333, -122.02649784],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0f91fbb398e426cb814294c089a06a5e = L.circleMarker(\n",
" [35.89733333, -122.01616667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_42e00fafa0a33d3e5a421ff1aee34224 = L.circleMarker(\n",
" [35.89716667, -122.006],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fa738a214fcabec0c417f62a6445d101 = L.circleMarker(\n",
" [35.89716667, -121.99569656],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_49416f4894ab9a0beea7df480419254b = L.circleMarker(\n",
" [35.897, -121.98545836],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f6a4cc2d59eabcf77e9c01b7e2e2879f = L.circleMarker(\n",
" [35.897, -121.97528139],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8e1a607291ef82c170704613a09ef228 = L.circleMarker(\n",
" [35.89683333, -121.96501135],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_591dc99bffe844c78d0e73ef119df50b = L.circleMarker(\n",
" [35.89666667, -121.95483132],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a62d74f34336e6ac055e5358e7767b87 = L.circleMarker(\n",
" [35.89683333, -121.94449635],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bda995e8a42904757851d5e61a32e91e = L.circleMarker(\n",
" [35.897, -121.93413119],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_55a4a43639a17b5317d4ef8593647494 = L.circleMarker(\n",
" [35.89716667, -121.92401987],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8f90e270371edc27d2ecca47dd9bb6a1 = L.circleMarker(\n",
" [35.89733333, -121.91366667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_56b9678c47586491ce067617da1e015f = L.circleMarker(\n",
" [35.8975, -121.90346005],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a7d00f4430112810e0969f54e67dcb77 = L.circleMarker(\n",
" [35.89766667, -121.89330899],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c1794c3644d0c3a403202e917ea00805 = L.circleMarker(\n",
" [35.89783333, -121.8832021],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_56ca00c465dc8b412b37b2b86dc52494 = L.circleMarker(\n",
" [35.89783333, -121.87277112],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5dbd17ceb030f8a41824fbb3f9e206c6 = L.circleMarker(\n",
" [35.898, -121.86259576],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a91f313870dda6e3c40bf580c5976185 = L.circleMarker(\n",
" [35.89816667, -121.85245669],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_990279cb622a54f223093d05975f4765 = L.circleMarker(\n",
" [35.89833333, -121.84213163],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_29dcd6b453755570c4d32dea76db9826 = L.circleMarker(\n",
" [35.8985, -121.83199699],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8d95ee3747c3d94af9a22a1336c6f1bc = L.circleMarker(\n",
" [35.8985, -121.82171933],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_46ddfc1605833103ebffa99d585ec7b4 = L.circleMarker(\n",
" [35.8985, -121.81145931],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8a8f6afc96a446bcb8800e158642f9af = L.circleMarker(\n",
" [35.8985, -121.80111918],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_70efba202d56bc356a238e30d0390344 = L.circleMarker(\n",
" [35.8985, -121.79082392],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_768bff6494f9dc9f7d311d122e0f65e0 = L.circleMarker(\n",
" [35.8985, -121.78058474],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4d1fa0f17e4fc27a630a4b160cee0676 = L.circleMarker(\n",
" [35.8985, -121.77027529],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5e301987de504c3e26367471e6d6af99 = L.circleMarker(\n",
" [35.8985, -121.75999889],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_aeb9b1e506de6c92adc4dbc328c219cb = L.circleMarker(\n",
" [35.8985, -121.74963972],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c8306bd8dc23bf315f14207816cf2056 = L.circleMarker(\n",
" [35.8985, -121.73942574],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_25b3956c0e0e0dd2aa874e0c6bb39de9 = L.circleMarker(\n",
" [35.8985, -121.72920339],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_dbd185b406d6879e0fbf3c5b34c72856 = L.circleMarker(\n",
" [35.8985, -121.71885593],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2e545c95ce6c8976fde7b1f1d3971d98 = L.circleMarker(\n",
" [35.8985, -121.70866667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a1aa2c071b55df38ad828aadca79e34e = L.circleMarker(\n",
" [35.8985, -121.69843002],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0c101f23e8e139bf1ae23fc15ce2f265 = L.circleMarker(\n",
" [35.8985, -121.68814049],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_400318ac68dce01aa5b345280b99fdfe = L.circleMarker(\n",
" [35.8985, -121.67788143],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bcf2c2d751ce70bd9bb8aeaccd3df8ba = L.circleMarker(\n",
" [35.8985, -121.66766667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7ddb883b718b9fb0fc68163caebfc0db = L.circleMarker(\n",
" [35.8985, -121.65749466],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5efe03051d2ed1f5126c3010e27c1830 = L.circleMarker(\n",
" [35.8985, -121.64708523],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_16a7ead7f109c28b3b7f39b60feff310 = L.circleMarker(\n",
" [35.8985, -121.63687389],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ae545409d404695161faeee08ae4920e = L.circleMarker(\n",
" [35.8985, -121.62660432],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4678d4e6f4fb77ad0756e6d254ab6c7a = L.circleMarker(\n",
" [35.8985, -121.61636275],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_af40197153ae0d051d55b0479c621501 = L.circleMarker(\n",
" [35.8985, -121.60606356],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6222a1666449ce20be3ad7ff2469ff3d = L.circleMarker(\n",
" [35.89833333, -121.59577562],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_746b1bc80a586da5b85d7a262414c025 = L.circleMarker(\n",
" [35.89833333, -121.58538545],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ea5c3e9b578e1d0bfa8ea0dd62f14d01 = L.circleMarker(\n",
" [35.89816667, -121.57523761],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_385f7be5ec60a1220337c6ebf44b1759 = L.circleMarker(\n",
" [35.898, -121.56501994],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_03db66f2ee1bc269bbae45c6e8b47de8 = L.circleMarker(\n",
" [35.89783333, -121.55457377],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c53914d4fd460fa84fa1cb693b4faa20 = L.circleMarker(\n",
" [35.89766667, -121.54435364],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c4a8b7e336b314bbb3cc918abc613ae7 = L.circleMarker(\n",
" [35.8975, -121.53407389],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2ed59dbe624c0c0aefdaf2e8acc14b0a = L.circleMarker(\n",
" [35.89733333, -121.52369328],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d41ee593e1a32ed1026a42fe7af1d830 = L.circleMarker(\n",
" [35.89733333, -121.51338236],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2aebbcab12e4e0d3e26a75840142712c = L.circleMarker(\n",
" [35.89733333, -121.50321218],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482071&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482071&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_410b6d293eef1172413691760d55cfa7 = L.circleMarker(\n",
" [36.06420005, -122.33889629],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a6a66c6bb9626b4481dfc17ccab83b85 = L.circleMarker(\n",
" [36.06411917, -122.33621587],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bd30de81c3d20628029f3150029bdc02 = L.circleMarker(\n",
" [36.06405449, -122.32587639],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fb5d15fe256e3d3e88e40a1829f1e894 = L.circleMarker(\n",
" [36.06398821, -122.31566809],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ca558c7e686b3bbc8d6810e483c860ea = L.circleMarker(\n",
" [36.06402619, -122.30540734],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d4b466d63a93548087580e6295f703f6 = L.circleMarker(\n",
" [36.06413182, -122.29504047],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1961896aec15e0f4facb25eac8e7a59e = L.circleMarker(\n",
" [36.06429634, -122.2850227],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4eed3a4f83342f07338d6ea6c04c8d26 = L.circleMarker(\n",
" [36.0643942, -122.2748174],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cc2c656dd8253476ba63fbaeadc1a88b = L.circleMarker(\n",
" [36.06433333, -122.26459084],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bb77cfaf7e86c0f9b14873b0f67e7519 = L.circleMarker(\n",
" [36.06433333, -122.25427593],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c5ed2cbcb398de6893e9875fe2bcc113 = L.circleMarker(\n",
" [36.06433333, -122.2440155],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_14afafbe9859b350d7cc0f07b851e0fa = L.circleMarker(\n",
" [36.06433333, -122.23369573],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cf9111af0c2b6f26887287aac8b7f30f = L.circleMarker(\n",
" [36.06433333, -122.22352051],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_474aedb4b51bc69c5cdcb35f04f90771 = L.circleMarker(\n",
" [36.06433333, -122.21324532],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_402fb5ea6effa8b08aafb6bf38c19d3c = L.circleMarker(\n",
" [36.06416667, -122.20300963],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9ec76832b1ba4506ca0a11bbc485dc96 = L.circleMarker(\n",
" [36.06416667, -122.19286044],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c81560566acab280f2dec10457a08713 = L.circleMarker(\n",
" [36.064, -122.18252808],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f723d936c93c6f3e40dd0740dccdbfcb = L.circleMarker(\n",
" [36.064, -122.17220545],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a76fc0675bbf048ef6bd8ecca8760a0f = L.circleMarker(\n",
" [36.064, -122.16202859],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a9499fd2cb8c6b9d57a2b6bd9450e99d = L.circleMarker(\n",
" [36.064, -122.15164115],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4ea096116913813e9f10e9cf5db120bd = L.circleMarker(\n",
" [36.064, -122.14155483],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d4d33569c5c4a9cc969ecb7b4de18c13 = L.circleMarker(\n",
" [36.064, -122.13143682],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2e43187935a761df2457757727ddd278 = L.circleMarker(\n",
" [36.064, -122.12093333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b512b1c0acaf5829ec46b1ced7b38d5e = L.circleMarker(\n",
" [36.064, -122.11088804],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fb71113a0f3b25b5c68b9cbf68150919 = L.circleMarker(\n",
" [36.064, -122.10022359],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b4a215e56db141220a626b2287e9c950 = L.circleMarker(\n",
" [36.064, -122.0903063],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e18e6a2ec3ba4535a3386f759ec75e50 = L.circleMarker(\n",
" [36.064, -122.07986247],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2d95ffa898d8e55e9033d0722efb3b9e = L.circleMarker(\n",
" [36.064, -122.06978777],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_29e182abe06b4a381e46aa665435191e = L.circleMarker(\n",
" [36.064, -122.05954911],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4d8398e49a8c14d34a433f13d95ce833 = L.circleMarker(\n",
" [36.064, -122.04916416],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ed0441be26298dc72fb89f6374c2f2e6 = L.circleMarker(\n",
" [36.064, -122.03884996],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_db48a065a1702ac49a8c64fb58799ec7 = L.circleMarker(\n",
" [36.064, -122.02859306],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cff40120934858c140b97a7f4d08c1f3 = L.circleMarker(\n",
" [36.064, -122.01841808],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_47e4dfefa0fb4df2f5c8c8fd50ceabd5 = L.circleMarker(\n",
" [36.064, -122.00805622],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6c7bf7ea856417e81a75a1263f1c3a7c = L.circleMarker(\n",
" [36.064, -121.99779944],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6c83d6a0569f31c22f61d88c5c6c5533 = L.circleMarker(\n",
" [36.064, -121.98768161],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f3b0755a0e207baa8c20f395cb45e979 = L.circleMarker(\n",
" [36.064, -121.97740854],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4c29980cf9e658f9381637c32daea6c0 = L.circleMarker(\n",
" [36.064, -121.96701129],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b6c473ffa8589086962cca8aabb18a65 = L.circleMarker(\n",
" [36.064, -121.95673777],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e22500679d9616996b63c461c37345ce = L.circleMarker(\n",
" [36.064, -121.94644191],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_46e5a44cc66863ac97a5b6acc6f4e977 = L.circleMarker(\n",
" [36.064, -121.93617977],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7d0e7b14424bce2a9d5c0d6d8cbe930b = L.circleMarker(\n",
" [36.064, -121.92588473],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2e8cf68e38da681f842c47838c05f54c = L.circleMarker(\n",
" [36.064, -121.91576655],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_435c58e8fc0783ebcc5de79af3190033 = L.circleMarker(\n",
" [36.064, -121.90535172],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_28b71c538834e3c1c147bd7918ec3cb2 = L.circleMarker(\n",
" [36.064, -121.89510974],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1ab3120dfb5def05943cf3bd461291a2 = L.circleMarker(\n",
" [36.064, -121.88488989],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_28da83f6a73f83932214f6cce3ab4509 = L.circleMarker(\n",
" [36.064, -121.87463585],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_bbb7acb2fa1f0140d074443247608ab9 = L.circleMarker(\n",
" [36.064, -121.86428511],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1339cb89fdea44c0721d48f115c27120 = L.circleMarker(\n",
" [36.064, -121.85390024],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1a8f130cf87667ab52aad2906b5abf3b = L.circleMarker(\n",
" [36.064, -121.84380738],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b34c5cffafba294ba7f3dca8d98c32cd = L.circleMarker(\n",
" [36.064, -121.8335],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8a1de4010abd29905cb9a9a009b48bed = L.circleMarker(\n",
" [36.064, -121.823153],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1b9087810473fcab500d4b413b79b636 = L.circleMarker(\n",
" [36.064, -121.81286919],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_24bc6d5d4a65a5e80ef787f7cc4816d7 = L.circleMarker(\n",
" [36.064, -121.80251765],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ce677da3847a22c064ced418b04204c4 = L.circleMarker(\n",
" [36.064, -121.79232106],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1c9fd6c88795877790fc5cf91bba3e10 = L.circleMarker(\n",
" [36.064, -121.7819028],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_431915bf56198acb0b3e29473bd3fcad = L.circleMarker(\n",
" [36.064, -121.77165276],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_68e365d81ddd31a0daf98cfe4bf3dd0a = L.circleMarker(\n",
" [36.064, -121.76141091],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2faf6b127f1767fa8c9820ab49c1185f = L.circleMarker(\n",
" [36.064, -121.75099093],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_77c87cc7720832bfa37c5d32f06787ec = L.circleMarker(\n",
" [36.064, -121.74072177],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_76efb3b631677d7c8612569c82f9cc2c = L.circleMarker(\n",
" [36.064, -121.73032128],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a64651a4375c80d843aaf2e97ed4af92 = L.circleMarker(\n",
" [36.064, -121.72014499],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_37f9543e545872d31034aec607636c30 = L.circleMarker(\n",
" [36.064, -121.70991132],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_082a90ad91678001e3f3cedd6596e664 = L.circleMarker(\n",
" [36.064, -121.69948341],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_75cf6e70a5f76fc12576aa3a6a8c4ec1 = L.circleMarker(\n",
" [36.064, -121.6892761],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1bf1c8882d2b4e7ffc9115b7eb1e8c4a = L.circleMarker(\n",
" [36.064, -121.6788847],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4425fc1ae2c0b5420f6f4d427dd2f251 = L.circleMarker(\n",
" [36.064, -121.66861735],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ec8b203555b3bbcbcfc1d3af595aa22e = L.circleMarker(\n",
" [36.064, -121.65825488],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_baac98262e7f875770a10f624a2f254e = L.circleMarker(\n",
" [36.064, -121.64806167],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_75f4e475b40450466b8cbaaaa5af74cf = L.circleMarker(\n",
" [36.064, -121.63766667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0d7192451fa0a9b29aefef1cfb4dbd59 = L.circleMarker(\n",
" [36.064, -121.62745719],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_075a327161a77c6f031da1e4d274e263 = L.circleMarker(\n",
" [36.064, -121.61703805],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482475&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482475&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f37ca0effdde79ccb1ed3565812c7976 = L.circleMarker(\n",
" [36.23073946, -121.83497487],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_47d52c98c8bdbf8de35e32bc55b855dc = L.circleMarker(\n",
" [36.23074939, -121.83552247],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6ecc2338db98c65a30790fa1947609ed = L.circleMarker(\n",
" [36.23070573, -121.84589704],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9dfc46cc34d331cfc5f9e5c6d23f894b = L.circleMarker(\n",
" [36.23071992, -121.85631238],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2a038ec817f4a23231e4a31b8703781e = L.circleMarker(\n",
" [36.23070533, -121.86666405],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_32db66e63820a75deafb663b0bc4dc29 = L.circleMarker(\n",
" [36.23072919, -121.87693968],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b686f104bdfba2d2d76064474af851ac = L.circleMarker(\n",
" [36.23072996, -121.88730852],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2081a0c8312cef5697fe5e72fd6cefa0 = L.circleMarker(\n",
" [36.23074417, -121.89763437],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_61636397c05f799f1dff820f014be3bf = L.circleMarker(\n",
" [36.23073549, -121.90790955],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3fe5e4ff40c1a2b6fb08af0c4a24700d = L.circleMarker(\n",
" [36.23072136, -121.91830995],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7ebd330a60eabefaef49c7907125adf3 = L.circleMarker(\n",
" [36.23074216, -121.92869561],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_95881580f369ae7866a199930a2237ad = L.circleMarker(\n",
" [36.23071881, -121.93902934],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b2a8a211fe16794c369aa88f07ece385 = L.circleMarker(\n",
" [36.23072947, -121.94934574],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f9a2531a0508cc971d0492e99f89a217 = L.circleMarker(\n",
" [36.23074379, -121.95968353],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2dc8efcba32b125138f7b4e54fd4a327 = L.circleMarker(\n",
" [36.23076505, -121.9699911],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_362dcd990140add137c701d0680b73c4 = L.circleMarker(\n",
" [36.23071545, -121.98024067],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a3b87b6f6824baf74c6fc81fd13479ce = L.circleMarker(\n",
" [36.23074228, -121.99043608],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_782c249b10512f62839955024da752a5 = L.circleMarker(\n",
" [36.23072823, -122.00081174],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1ff7af7af092c896a723e1b144013a0f = L.circleMarker(\n",
" [36.23071952, -122.01109423],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c496ff7ab6c27d4fa45c0b6450542eaa = L.circleMarker(\n",
" [36.23075282, -122.02129934],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5fbd1d624f3c9cbdb1310af783c0ad09 = L.circleMarker(\n",
" [36.23074759, -122.03164871],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e034ed236f237c7937d523c7d6c8c799 = L.circleMarker(\n",
" [36.2307245, -122.04202106],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9b8bf0f1435207cc1ba2356de746efcc = L.circleMarker(\n",
" [36.23071391, -122.05222656],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d61da93e4502b571ab0b29e5997c1056 = L.circleMarker(\n",
" [36.23072771, -122.06253575],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_45eda81b0bc4b0604557d378d41d9542 = L.circleMarker(\n",
" [36.23071658, -122.07283098],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f8e2ca20057d24cf2bcf28fe16a5cdba = L.circleMarker(\n",
" [36.23073187, -122.08303585],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d7e00bb21aba7a7d5608c3e4118b0478 = L.circleMarker(\n",
" [36.23138021, -122.0931926],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5b5a1c9b282afb7d59741bd28916815b = L.circleMarker(\n",
" [36.23258087, -122.10338343],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2c4bb31b82358b83fe815ea5c67ad490 = L.circleMarker(\n",
" [36.23324697, -122.11353917],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cb969410fa00313b0412c16b3a1ed14b = L.circleMarker(\n",
" [36.23272287, -122.12390632],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3f8e46c7ba219e0db0365aba85a89a35 = L.circleMarker(\n",
" [36.23240207, -122.13424606],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_af8d0ac5604daecd994c03e5008c382a = L.circleMarker(\n",
" [36.23214275, -122.14447578],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_51e6513f08ab146d23d96cb9f21d5814 = L.circleMarker(\n",
" [36.23188522, -122.15479343],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b9666f1b4860682c13cc5688da0c7039 = L.circleMarker(\n",
" [36.23174282, -122.16512458],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6c070527797c4aab56003355919f41b6 = L.circleMarker(\n",
" [36.23166817, -122.17529208],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9d9459c2ef20db994251a11227a8e685 = L.circleMarker(\n",
" [36.23163369, -122.18551608],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fccb35c8aac9b032ebfd18e74e496e74 = L.circleMarker(\n",
" [36.23162159, -122.19577266],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_98cd12cfdf097e233e0f78ba5221426f = L.circleMarker(\n",
" [36.23159247, -122.20589969],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_68cc461c139cbf150518660fef04da76 = L.circleMarker(\n",
" [36.2315798, -122.2163408],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_390621fbab802c5d17dd49b44ab9718b = L.circleMarker(\n",
" [36.23156264, -122.22650357],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2bb823bf14001df774c0056fdbc1bcda = L.circleMarker(\n",
" [36.23150379, -122.2369573],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_80d17260fbe7f17ce8ffec163be3c8e9 = L.circleMarker(\n",
" [36.23137183, -122.24729192],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c99414da746555ad2be711592146c8a5 = L.circleMarker(\n",
" [36.23124982, -122.2573709],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ab5ac42ecb11af06591c43db41c33eeb = L.circleMarker(\n",
" [36.23106851, -122.26786242],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_17f34fd9d0b2855c8b06333ef7ad4526 = L.circleMarker(\n",
" [36.23104208, -122.27812474],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_245021a1f6d67324b2e5108573bdd7b9 = L.circleMarker(\n",
" [36.23103137, -122.28835659],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a902f205f93476be055c6241ee95c6d3 = L.circleMarker(\n",
" [36.23114366, -122.29883618],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a25c98422737fc09140db96383a2ac08 = L.circleMarker(\n",
" [36.23125177, -122.30907003],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_721b3180e32c841c7c2f89e3035cb4de = L.circleMarker(\n",
" [36.23135281, -122.31926187],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9c850f710893b02fc6e99cf56d2adbc5 = L.circleMarker(\n",
" [36.23142334, -122.3295068],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3f0cec9bf540e3743fe40d6546799032 = L.circleMarker(\n",
" [36.23142375, -122.33980851],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8a5e4b052bc17ac5cea2afc3ac8a7316 = L.circleMarker(\n",
" [36.23142716, -122.35012915],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5b65123654aa212a0f5f8df438c737f6 = L.circleMarker(\n",
" [36.23142696, -122.36035535],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a35fb464702a87540d646962f398a14d = L.circleMarker(\n",
" [36.23135602, -122.37057017],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_da1d047e48ffecfbe769c72925a6de5a = L.circleMarker(\n",
" [36.23126536, -122.38096933],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5154ef160b078098a73217725df7c59e = L.circleMarker(\n",
" [36.23120503, -122.39112848],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6c0d9f2c686d6761326d001523539f6b = L.circleMarker(\n",
" [36.23117923, -122.40143377],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f08601516636ff2d489cf833820f2c18 = L.circleMarker(\n",
" [36.23111858, -122.41180399],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_474650305a1143a3ae6606446a6d846e = L.circleMarker(\n",
" [36.2310517, -122.4220227],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b7144a65604ea6cbfa64a2f8e752b9c9 = L.circleMarker(\n",
" [36.23104297, -122.43244085],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5ee9bc5f74b4c548c0b7f19501bb7e5b = L.circleMarker(\n",
" [36.23111048, -122.44273847],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7cf06bf2995a3eb3519c57b16f82495c = L.circleMarker(\n",
" [36.23112819, -122.45300074],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fd2de9e5657b6b99e5605fcad67ac3d2 = L.circleMarker(\n",
" [36.23117784, -122.46355236],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c15160490405d440e1134d84ee45e34a = L.circleMarker(\n",
" [36.23121793, -122.47372434],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_650a7febf1113e37860876784463ca69 = L.circleMarker(\n",
" [36.23130177, -122.48388626],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_394143ed8a21fcb4c2ae0c79ca5adc6c = L.circleMarker(\n",
" [36.23140532, -122.4943541],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4f94239fb0e0657c299f295e25baada5 = L.circleMarker(\n",
" [36.23149813, -122.50477299],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_01d829e8f2499358857607c65042f1ed = L.circleMarker(\n",
" [36.23161176, -122.51499075],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d1a3f9fb4e0ab6c04e4849b1296d9b90 = L.circleMarker(\n",
" [36.23162667, -122.52531376],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e8118d4ea48e09189155d6393e4b8f92 = L.circleMarker(\n",
" [36.2315069, -122.53573319],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4fb219b7f7d06194c5494361c173744b = L.circleMarker(\n",
" [36.23126809, -122.54586605],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_218f8308d90b5ae8f84065e9d32630ab = L.circleMarker(\n",
" [36.2309036, -122.55609715],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482677&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482677&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5f4b63d635cbbafc4bbd331aec97367f = L.circleMarker(\n",
" [36.39724719, -122.6483113],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b37e61efa87333f47bd36f26f4a7b6a4 = L.circleMarker(\n",
" [36.39726229, -122.64240404],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6263ec8536afa344d32b4ff428c4f04c = L.circleMarker(\n",
" [36.39733747, -122.63220973],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1609a531350b4cdff0c4b6938f6a49a0 = L.circleMarker(\n",
" [36.3975444, -122.62184712],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6473d07fd0176854b987b1d527b4062d = L.circleMarker(\n",
" [36.39773192, -122.61144905],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_90174e4fdd5c7fbaf02d58c99ec451f8 = L.circleMarker(\n",
" [36.39796009, -122.60115985],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1049420c5f3bec3c8c2243bba5915574 = L.circleMarker(\n",
" [36.39806633, -122.59077169],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_92f83087a8be3338ddfcca67f3d2b4be = L.circleMarker(\n",
" [36.39811824, -122.58036818],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7f41f7a2b7e9a6c02ae361feb546f425 = L.circleMarker(\n",
" [36.39812107, -122.57019044],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_735cfc3ea10e82156e2799236357aa1a = L.circleMarker(\n",
" [36.39802616, -122.55973726],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d95656c0a8cf446ce2239791a22df42d = L.circleMarker(\n",
" [36.39778566, -122.54943225],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ae9b55d68b85ef19e12da50ab04702ca = L.circleMarker(\n",
" [36.39760811, -122.5391791],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2b01009dd889d7bf3405faa6e02bcc23 = L.circleMarker(\n",
" [36.39754999, -122.52883783],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_55beee15f7a69c6efa023a065aa0dcd8 = L.circleMarker(\n",
" [36.39757502, -122.51850116],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2fe7cba9f0ed45b6bf08b3001598f000 = L.circleMarker(\n",
" [36.39755739, -122.50804007],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_406524f7f1ee54e3c135236b5d574caa = L.circleMarker(\n",
" [36.39755255, -122.49768758],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b8032d92569676bc32a189ff3f678bd0 = L.circleMarker(\n",
" [36.39755816, -122.48728261],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f1b55b6bd2dde3190516d39b2dacd017 = L.circleMarker(\n",
" [36.39755198, -122.47691917],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d2d9ea7b7d709eb47e3333e57e764914 = L.circleMarker(\n",
" [36.39754822, -122.46667536],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_393a2ad1ca9fb552922f23cca886093c = L.circleMarker(\n",
" [36.39755614, -122.45639731],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_73a0bd671a32ef961bcb3eadf2bac5b3 = L.circleMarker(\n",
" [36.39752485, -122.44612465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d29c26197d713716f16d92d38bd0dd69 = L.circleMarker(\n",
" [36.39753654, -122.43589292],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_be19d0889ea013b95bed12fb7fbe923f = L.circleMarker(\n",
" [36.39752456, -122.42540634],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d2e50234100ce7b55a7f79e9a87c8ef4 = L.circleMarker(\n",
" [36.39753459, -122.41529622],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_424df12587ec4670935763d8f45d70b3 = L.circleMarker(\n",
" [36.39750085, -122.40480318],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_18c98850136adba255dc022eb2140592 = L.circleMarker(\n",
" [36.3975436, -122.39456703],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4dc0adb883ebb41530769ef9efa85797 = L.circleMarker(\n",
" [36.39754076, -122.38435664],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_95e148a7a58f5be5abcadb287fec0fbd = L.circleMarker(\n",
" [36.39752446, -122.37401009],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_19a166e6eb7de52158e690d095474508 = L.circleMarker(\n",
" [36.39752199, -122.36390101],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_93dc7642a9d2df90f3a3cadc41d1923e = L.circleMarker(\n",
" [36.39754312, -122.35349954],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a4a0ebbb31a527db791aa6b7c4816732 = L.circleMarker(\n",
" [36.39751919, -122.34336417],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_db58f91c469fe88d3c7948e608a8e6b4 = L.circleMarker(\n",
" [36.39753676, -122.33295992],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_22b6afe3122e7172dcb0957a8382d4d2 = L.circleMarker(\n",
" [36.3974925, -122.32272565],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f73181ac3ebe834ddeb410a25326c12d = L.circleMarker(\n",
" [36.39752468, -122.31231507],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_62ca57d1e3e177b73797a3d4f403f848 = L.circleMarker(\n",
" [36.39752154, -122.30219332],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8b42201b6e33267e7c9ab349a18e934f = L.circleMarker(\n",
" [36.39755115, -122.29191385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d31245b5c101f57d7f7df12e2ae7caf4 = L.circleMarker(\n",
" [36.39753315, -122.28160094],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_175277b12b6e110f92bbddb689fcaa53 = L.circleMarker(\n",
" [36.3975073, -122.2711465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1a254dbb5b5571ae49b127dc0ffe0c1a = L.circleMarker(\n",
" [36.39752875, -122.26097844],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e665762b72e4b126c14e96745babd80e = L.circleMarker(\n",
" [36.39752745, -122.2504782],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b8036567d8a15f2eebeb61403f4a61b5 = L.circleMarker(\n",
" [36.3975245, -122.24029328],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_24e254bea715bc593d2ad48e78faaac6 = L.circleMarker(\n",
" [36.39755261, -122.22990499],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7f067b2a546f0f667ff412c4820d4b2c = L.circleMarker(\n",
" [36.39754119, -122.21964928],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_481dad9dae077aca07dfdea0ff358e88 = L.circleMarker(\n",
" [36.39753921, -122.20923167],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f52eeeff133e12ae622f9821199fc2ba = L.circleMarker(\n",
" [36.39756704, -122.19907503],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d101ec10f704b75d5ee976244cda642e = L.circleMarker(\n",
" [36.39752444, -122.18867848],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_90c25fb639a09e032bf7d9cc9fceca59 = L.circleMarker(\n",
" [36.39755149, -122.17839147],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e94e12b219570c7183cdcdf4fe141707 = L.circleMarker(\n",
" [36.39752754, -122.16798294],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f08bbd0da2d56c91ce3c06b76931c5e2 = L.circleMarker(\n",
" [36.39753433, -122.15768436],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cbfc5137be544b1a625f9688ef447d89 = L.circleMarker(\n",
" [36.3975586, -122.14745624],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_365055d635249687baa4e88b2bd5a205 = L.circleMarker(\n",
" [36.39755929, -122.13715213],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0104612d3edf346844e5e188b1320c80 = L.circleMarker(\n",
" [36.39758023, -122.12675388],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_33c9e246a24b23334bdd69a50dc06a23 = L.circleMarker(\n",
" [36.39753177, -122.11642714],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4ec66b510d10637ca1de023ad1ed7964 = L.circleMarker(\n",
" [36.3975386, -122.10616728],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0b6d5cdced81d8387f07f317c9f80d1a = L.circleMarker(\n",
" [36.39754083, -122.09578546],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9be3d0fe36cafda675a1edb59667df25 = L.circleMarker(\n",
" [36.3975421, -122.08534829],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_5e9bdb69b7c5fec303667f288cf42f0c = L.circleMarker(\n",
" [36.39754916, -122.07512623],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_272000a38d6d213c25ef2a5f4a26728c = L.circleMarker(\n",
" [36.39754684, -122.0648316],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4ee87cd1342efbfb024f9fda27c286f2 = L.circleMarker(\n",
" [36.39754757, -122.05445809],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_58653aa5e6d06693aa980d9a989a0ed3 = L.circleMarker(\n",
" [36.39754793, -122.0442089],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9486cae8d549fec4203f05c2977403ba = L.circleMarker(\n",
" [36.3974972, -122.03382917],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_798cb286658f9592c2f3a7ae860a7a34 = L.circleMarker(\n",
" [36.39756682, -122.02348082],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7a182d20906f83355c0561be5c8a6a11 = L.circleMarker(\n",
" [36.39746883, -122.01318197],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9c94fbb3970acdca254271c330375158 = L.circleMarker(\n",
" [36.39741008, -122.00278347],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_560687034c44c946fb189beb41000ccf = L.circleMarker(\n",
" [36.39739463, -121.99242465],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_083a724281a9e4ff2ea79872891f098b = L.circleMarker(\n",
" [36.39741457, -121.98210348],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_389a814761b6d4fce19e88f53a1a5e9c = L.circleMarker(\n",
" [36.39737309, -121.97175014],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a27f282150e4d5e68d1513a585d9bdfa = L.circleMarker(\n",
" [36.3974226, -121.9614401],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6dc4a5a86352ec4cb1b1dd2b29758f70 = L.circleMarker(\n",
" [36.39735589, -121.95104667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_350abfca845fb9d01fe4319fdd582de5 = L.circleMarker(\n",
" [36.39721472, -121.94072876],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4c15b68a4a900a958bbfe427ec02ea1a = L.circleMarker(\n",
" [36.39723148, -121.93032886],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#482979&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#482979&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_985591716294af2e7b8244db6d1de48b = L.circleMarker(\n",
" [36.56399627, -121.98238092],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_49f99d6c1a4e2d0c8066c8597ae5fccd = L.circleMarker(\n",
" [36.56397361, -121.98644873],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_7371ceab2391d914091ce6d89de75823 = L.circleMarker(\n",
" [36.56396353, -121.99672938],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_59654213a871514723d34ad941cefb52 = L.circleMarker(\n",
" [36.56397264, -122.00717494],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b062bc9c3614a5bb1541904e6730679e = L.circleMarker(\n",
" [36.56398086, -122.01756856],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1640c64eb49f27a8c5eaa147b6ac8eca = L.circleMarker(\n",
" [36.56399001, -122.02803457],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0f33fc1e05334b392e4ebd1ff8bea443 = L.circleMarker(\n",
" [36.563975, -122.03837109],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c654c563d2b14ea0d01e946028cc0d81 = L.circleMarker(\n",
" [36.56398703, -122.04888029],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_53c90a3ab42519a0508e0035e0a47ab4 = L.circleMarker(\n",
" [36.56399663, -122.05925058],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d094cefef104dc8f461524fe04a7dc39 = L.circleMarker(\n",
" [36.56397001, -122.06967111],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ac6465321f5517a8a76260153dbc8ee2 = L.circleMarker(\n",
" [36.56400201, -122.07992131],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_07a78e71c89e8eac2b5016ad5edcde08 = L.circleMarker(\n",
" [36.563975, -122.09037044],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c1e829bccfe582f6cfca272c77832d14 = L.circleMarker(\n",
" [36.56398912, -122.10062918],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_33a029ec2eee202566142c28712615e8 = L.circleMarker(\n",
" [36.56401217, -122.11103037],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_263378765290557ec5bbc387eb2f8df8 = L.circleMarker(\n",
" [36.56398392, -122.1213999],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3d1dbfe589f6f565c937dbd69025afc6 = L.circleMarker(\n",
" [36.56397307, -122.13175114],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fb31d50aaa8e854d8e76c4cad7e87252 = L.circleMarker(\n",
" [36.56395103, -122.14215349],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d8285b648ad2cf8b94b4b88fcb2f969d = L.circleMarker(\n",
" [36.56454701, -122.14940768],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d7a90ca64042934d51b07f72fe42c730 = L.circleMarker(\n",
" [36.56445532, -122.15681809],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f01f8eb5c716e3f30525b2988f2de84a = L.circleMarker(\n",
" [36.56426438, -122.16725587],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6df42b827d8d862ed9bea7ef365e524f = L.circleMarker(\n",
" [36.56416233, -122.17770713],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b83b5748fbea2d57e13180126c317863 = L.circleMarker(\n",
" [36.56401964, -122.18792167],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d50c96c34e90f9ab7df86cdc8716945b = L.circleMarker(\n",
" [36.56383415, -122.19835145],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0319451b915fb1e4e1368c2e81dec8e4 = L.circleMarker(\n",
" [36.56374901, -122.20878692],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1b963446da9818c1c42c5de10c35d24f = L.circleMarker(\n",
" [36.56376653, -122.21896948],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c0d0a400055a1271779f057332ded634 = L.circleMarker(\n",
" [36.56376551, -122.22940393],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_93f369dd7ca5f02e0133b841c887e77c = L.circleMarker(\n",
" [36.563837, -122.2398411],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8d4474527cb475a58385ca7dec6b65c5 = L.circleMarker(\n",
" [36.56392486, -122.25020036],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8dfca20cc8f8e3750c8c95d6354af8a3 = L.circleMarker(\n",
" [36.56403747, -122.26053622],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c2a7634068d1645cb2d0fb3efc8f9db5 = L.circleMarker(\n",
" [36.56417936, -122.27099681],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_803436aca6cd963b0a9324e72c787e0e = L.circleMarker(\n",
" [36.56439204, -122.28119956],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6c718681b0257a4076a1d10040864a85 = L.circleMarker(\n",
" [36.56458462, -122.29158343],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_37ce6b3becc4b92a1855ac1cf60c1a6c = L.circleMarker(\n",
" [36.56462163, -122.30192083],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2e9a4c2a196f791b2cb5b94a74ceb844 = L.circleMarker(\n",
" [36.56439663, -122.31236092],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6fba7d63a531012fd97ad59700b19f68 = L.circleMarker(\n",
" [36.56414316, -122.32270889],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_fe773feca677727ce9325c4a3c8735ad = L.circleMarker(\n",
" [36.56387955, -122.33303524],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_8a85b82c3a132f98dbee5347bfdbd74e = L.circleMarker(\n",
" [36.56361005, -122.34340175],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ccabb01801751d95dcd0c645127b7caa = L.circleMarker(\n",
" [36.56349442, -122.35364483],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ce9695a77258b921000dc81cfc22ea68 = L.circleMarker(\n",
" [36.5633466, -122.36392126],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ecb36c526050234b333d2d1bf60187f2 = L.circleMarker(\n",
" [36.56348624, -122.37439374],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_89fe1eb71d7769e59aa0b92f9a37224e = L.circleMarker(\n",
" [36.56367557, -122.38480891],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_94d36a2fe717c64f685ca717cd345266 = L.circleMarker(\n",
" [36.56366234, -122.39516981],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_cd8f24ae9dcc609fbb2852ed21ac2dc7 = L.circleMarker(\n",
" [36.56386492, -122.40554692],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b0e83af2308af7bdc50ec3fa7793e700 = L.circleMarker(\n",
" [36.56393089, -122.41592321],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c79bf3ee04767fd27df09e2be4dee855 = L.circleMarker(\n",
" [36.56393015, -122.42606592],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ad098673d5311f0cc89871740cf80fc6 = L.circleMarker(\n",
" [36.56391677, -122.43665326],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_02a305546c19fc29e8eae54958d593ef = L.circleMarker(\n",
" [36.56393815, -122.44692312],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ed3566e22d7555e117b5c899ab398586 = L.circleMarker(\n",
" [36.56391835, -122.45721881],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_d5d9f08a59ace53014559eb877ac5cfc = L.circleMarker(\n",
" [36.56392139, -122.4674876],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2e871b71287367505124a4c7665b6695 = L.circleMarker(\n",
" [36.56391639, -122.47778246],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_684aef8b5f19c26f5b28ca7d9a362375 = L.circleMarker(\n",
" [36.56394027, -122.48798629],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_06dba6ce31b924365efc2fec372afd3b = L.circleMarker(\n",
" [36.56395555, -122.49829734],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a2437a1f0191d577c0eaca55e2b56b07 = L.circleMarker(\n",
" [36.563966, -122.5087941],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0e830cfa80c21f7f205043ad8f9d5e28 = L.circleMarker(\n",
" [36.56391367, -122.51891006],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c895a133e1e184ab7638853f2a6788e5 = L.circleMarker(\n",
" [36.56393323, -122.52923184],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c6f1c3434842b477b4587067c09aa376 = L.circleMarker(\n",
" [36.56393769, -122.53971087],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_e9d3528ef9d9e3d0194e1a871953369e = L.circleMarker(\n",
" [36.56391257, -122.55004248],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_2332417c9044809ac510925e352b05f2 = L.circleMarker(\n",
" [36.56392173, -122.56055066],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_707c9cfdaf2da043ac9ef6b8bcca7ddb = L.circleMarker(\n",
" [36.56391175, -122.57074111],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_10ade4d99cb773b970dc8147c56f88f9 = L.circleMarker(\n",
" [36.56393762, -122.58104592],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_855043c4bc76ff930e9e79c947cffef2 = L.circleMarker(\n",
" [36.56396221, -122.59141407],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_b5aac137c22d9244d657790b63379466 = L.circleMarker(\n",
" [36.56392074, -122.60168749],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_376ab42b75296359e84c19d8ce99d2cb = L.circleMarker(\n",
" [36.56393818, -122.61220097],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_358f695c9bc5189ab3f23c1e3b9d08cd = L.circleMarker(\n",
" [36.56393221, -122.62265271],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_4c4b2f2fc28ce87875c7562d3bf970fd = L.circleMarker(\n",
" [36.56392491, -122.63315503],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f2ce47f9562b0c340405dda88c61d686 = L.circleMarker(\n",
" [36.56392661, -122.64330018],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_05f1c7e49f492fa12107cc3fc2afe72e = L.circleMarker(\n",
" [36.56392368, -122.65390181],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9864fe1d86d9ee06eb893899b4b2b598 = L.circleMarker(\n",
" [36.56391409, -122.66419265],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_c96713bb7fb6c90c611f67c2a39ba7d9 = L.circleMarker(\n",
" [36.56393678, -122.67471616],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0edcdfa39607909860f765c12408d7d8 = L.circleMarker(\n",
" [36.56391581, -122.68493683],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0e01d6af156bb40ec48213de20b594f0 = L.circleMarker(\n",
" [36.56393414, -122.69508213],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472d7b&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472d7b&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1ea11a9c66db0ed48063680f396e26ae = L.circleMarker(\n",
" [36.7305, -122.57896567],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_420688544af8534b0bc2ff3677a728b3 = L.circleMarker(\n",
" [36.73066667, -122.57311677],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6f885be901492f98a83c09fc2c8a9418 = L.circleMarker(\n",
" [36.73073338, -122.56269991],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f38238ef64d728357bf2760243159d97 = L.circleMarker(\n",
" [36.73090767, -122.55248201],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_41e9dc81df16578a2fe67ddb189d6e60 = L.circleMarker(\n",
" [36.731, -122.54229582],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1ed73b816ed1cca9bb9c61db2beb1450 = L.circleMarker(\n",
" [36.731, -122.53195683],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1450c8ee69fae3ceb4c041eae24b82d0 = L.circleMarker(\n",
" [36.73083333, -122.5213076],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6971036723a5c32c65f6c9417bd5fbae = L.circleMarker(\n",
" [36.73066667, -122.51098848],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_57a10d0aa80b0642ca599c9d82428414 = L.circleMarker(\n",
" [36.73066667, -122.5007335],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_369307a42a8a265d8d381a9c534f8f5c = L.circleMarker(\n",
" [36.73066667, -122.49031456],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_43f4c69c25a02e2b8ff9674917a04f71 = L.circleMarker(\n",
" [36.73066667, -122.48012675],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_48d7ac3895d489f2cb5ac885a1d3db4b = L.circleMarker(\n",
" [36.73066667, -122.46971827],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_93ad0235220cd6be510fa36a5030ab0f = L.circleMarker(\n",
" [36.73066667, -122.45931943],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ca6f25b637bf256b0af11670056958db = L.circleMarker(\n",
" [36.73066667, -122.44889545],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_f5f205827f1552a0e3faf6debc1458c9 = L.circleMarker(\n",
" [36.73066667, -122.43851848],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_06f806b105fa7f7e87e875d770d56c0f = L.circleMarker(\n",
" [36.73066667, -122.42834922],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a058fc8ec8566e5e3ef0549d4f1d5787 = L.circleMarker(\n",
" [36.73066667, -122.41766667],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_ba7df9df3707001fdee2ed3aa4e8e8e8 = L.circleMarker(\n",
" [36.73066667, -122.40737875],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_a188527d0b65869b01c6204838203b78 = L.circleMarker(\n",
" [36.73066667, -122.39711174],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_baf82ba789e5fe31f58c75821904fc4a = L.circleMarker(\n",
" [36.73066667, -122.38666452],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6b9685f1b48feb899679d54b8692bf64 = L.circleMarker(\n",
" [36.73066667, -122.37633333],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_12347e2141e73faa6f2ab33eba86ffac = L.circleMarker(\n",
" [36.73066667, -122.366],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_60054b487cd50fe283f17e41cc973501 = L.circleMarker(\n",
" [36.73066667, -122.35553815],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_502abf93a966d788d0f8ca71a7169e10 = L.circleMarker(\n",
" [36.73066667, -122.34528136],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_1b9ba22329d3f924dde6cc301a2caa80 = L.circleMarker(\n",
" [36.73066667, -122.33490385],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_9e43385cd44b7f506499dd1ec8b04a81 = L.circleMarker(\n",
" [36.73066667, -122.32462895],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_0a4c2f8a87f4b1dcdb7b33da96337f12 = L.circleMarker(\n",
" [36.73066667, -122.31413178],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_6e06d21e26627ed46954c5b816cc9765 = L.circleMarker(\n",
" [36.73066667, -122.3037501],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_3aa74a3f912cfbc9f9bd10d7ea5a1409 = L.circleMarker(\n",
" [36.73066667, -122.29340741],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_73d1aaf7ab571913790cff1c326f6228 = L.circleMarker(\n",
" [36.73066667, -122.28311957],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
" ).addTo(feature_group_d2fea4eb8764cf10da6231255a8f70a7);\n",
" \n",
" \n",
" var circle_marker_63f648fd7a137e2d0357f22a7c70267a = L.circleMarker(\n",
" [36.73066667, -122.27271398],\n",
" {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#472f7d&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: false, &quot;fillColor&quot;: &quot;#472f7d&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 1, &quot;stroke&quot;: true, &quot;weight&quot;: 3}\n",
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment