Turn a map click into a place summary in JavaScript
Build a map picker that returns country, region, elevation, and the time zone at a selected point.
On this page
Working example
HTML + JavaScriptStart with a map click
Click the map to show the selected point's country, region, district, elevation, and time zone. The complete HTML includes the world outline and a movable marker.
Create a Public key on the keys page, allow localhost and your site's hostname, and replace YOUR_PUBLIC_API_KEY in the downloaded HTML. Keep secret keys on your server. Serve the file's folder:
python3 -m http.server 8000Open the local example.
1. Turn the click into coordinates
The overview uses an equirectangular projection: its full width is 360 degrees of longitude and its height is 180 degrees of latitude.
function mapCoordinates(x, y, width, height) {
if (![x, y, width, height].every(Number.isFinite) || width <= 0 || height <= 0) throw new Error('The map size could not be read.');
return { lat: Number((90 - Math.max(0, Math.min(1, y / height)) * 180).toFixed(4)),
lon: Number((Math.max(0, Math.min(1, x / width)) * 360 - 180).toFixed(4)) };
}The click handler passes the pointer position within the map to this function, moves the marker, and runs the lookup. Clicking the center selects latitude 0, longitude 0.
For keyboard input, focus the map and use arrow keys to move one degree, or Shift plus an arrow to move five. Press Enter to look up that point. Moving the marker clears the previous result immediately.
These equations belong to this projection. When using a zoomable map, take coordinates from that map's own click handler.
2. Request the selected point
Call /point?lat={lat}&lon={lon}&deep=true. Core fields describe the containing area and elevation. deep.timezone gives the time zone at the coordinates; no second lookup is needed. Point deep is available on all plans.
async function lookUpPoint(point, signal) {
return readPoint(await getJson('/point', { lat: String(point.lat), lon: String(point.lon), deep: 'true' }, signal), point);
}The complete source's getJson helper encodes parameters, sends the public key, and checks HTTP errors. readPoint verifies the echoed coordinates and the fields used by the display. See the Point reference for coverage.
3. Show available details
Country, state or region, and district describe different geographic levels at the selected coordinates. Elevation can be zero or negative. Missing values remain visibly unknown.
function showResult(data) {
const timezone = data.deep.timezone;
$('#answer').textContent = data.country_name || 'Place details unavailable';
$('#summary').textContent = `${data.latitude}, ${data.longitude}`;
const rows = [
['State or region', data.state_name || data.state || 'Unknown'],
['District', data.district_name || data.district || 'Unknown'],
['Elevation', data.elevation === null ? 'Unknown' : `${data.elevation.toLocaleString('en')} m`],
['Time zone at point', timezone?.timezone || 'Unavailable']
];
$('#facts').replaceChildren(...rows.map(([label, value]) => {
const row = document.createElement('div'), term = document.createElement('dt'), detail = document.createElement('dd');
term.textContent = label; detail.textContent = value; row.append(term, detail); return row;
}));
setStatus('');
}An unavailable time zone does not discard a useful region or elevation result. Returned labels use textContent. A new selection cancels pending work, and a revision check rejects a late result. A twelve-second timeout leaves the map ready to retry.
Try a land point, an ocean point, and two quick clicks in different places. Only the latest point should receive an answer. This small map is an overview; use precise coordinates from your application for boundary-sensitive work. The result supplies geographic context, not a street address.
Complete example
One HTML file with the markup, styles, and JavaScript. Replace YOUR_PUBLIC_API_KEY with your public key, then run it on a domain you have added to that key.
View and copy the complete source
<!doctype html>
<html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><title>Turn a map click into a place summary</title><style>
:root { color-scheme: light dark; --bg: #fff; --ink: #152029; --muted: #5e6b75; --line: #d9e2e7; --field: #f6f9fa; --accent: #007c91; --button: #c5f6ff; --error: #b42335; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { --bg: #0b1015; --ink: #eff7fa; --muted: #94a6b2; --line: #2c3942; --field: #121b23; --accent: #67e8f9; --button: #67e8f9; --error: #fda4af; } }
:root[data-theme="dark"] { color-scheme: dark; --bg: #0b1015; --ink: #eff7fa; --muted: #94a6b2; --line: #2c3942; --field: #121b23; --accent: #67e8f9; --button: #67e8f9; --error: #fda4af; }
:root[data-theme="light"] { color-scheme: light; }
* { box-sizing: border-box; }
[hidden] { display: none !important; }
body { margin: 0; padding: 24px; background: var(--bg); color: var(--ink); font: 15px/1.5 system-ui, sans-serif; }
main { max-width: 560px; margin: 0 auto; }
p { margin: 0; }
.hint, .note { color: var(--muted); }
form { margin-top: 0; }
.fields { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
label { display: block; font-size: 13px; font-weight: 550; }
input, select, button { font: inherit; }
input, select { width: 100%; min-width: 0; margin-top: 7px; min-height: 46px; padding: 11px 10px; border: 1px solid var(--line); border-radius: 7px; background: var(--field); color: var(--ink); }
.hint { margin: 8px 0 16px; font-size: 12px; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
legend { padding: 0; margin-bottom: 8px; font-size: 13px; font-weight: 550; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
button { min-height: 46px; margin-top: 16px; padding: 11px 18px; border: 0; border-radius: 7px; background: var(--button); color: #07313c; cursor: pointer; font-size: 14px; font-weight: 650; }
button:disabled { opacity: .55; cursor: wait; }
#status { min-height: 20px; margin-top: 14px; color: var(--muted); font-size: 13px; }
#status:empty { display: none; }
#status[data-error="true"] { color: var(--error); }
h2 { margin: 0; font-size: 16px; font-weight: 600; }
.note { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; }
@media (max-width: 380px) { body { padding: 18px; } .fields { grid-template-columns: minmax(0, 1fr); } button { width: 100%; } }
main { max-width: 620px; } .fields { margin-bottom: 14px; } .wide { grid-column: 1 / -1; }
textarea { width:100%; min-width:0; margin-top:7px; padding:11px 10px; border:1px solid var(--line); border-radius:7px; background:var(--field); color:var(--ink); font:inherit; resize:vertical; }
.result { border-top:1px solid var(--line); margin-top:10px; padding-top:18px; }
.answer { font-size:clamp(27px,6vw,38px); font-weight:600; color:var(--accent); letter-spacing:-.04em; }
.detail { font-size:13px; color:var(--muted); overflow-wrap:anywhere; margin-top:8px; }
dl { margin:12px 0 0; } dl div { display:grid; grid-template-columns: minmax(0,1fr) minmax(0,1.6fr); gap:12px; padding:11px 0; border-bottom:1px solid var(--line); }
dt { color:var(--muted); font-size:13px; } dd { margin:0; font-size:14px; overflow-wrap:anywhere; }
fieldset { border-top:1px solid var(--line); padding-top:12px; margin:16px 0; } legend { padding-right:10px; }
.map { border:0 !important; box-shadow:inset 0 0 0 1px var(--line); display:block; width:100%; height:auto; aspect-ratio:2/1; border:1px solid var(--line); border-radius:8px; background:var(--field); margin-top:0; cursor:crosshair; touch-action:manipulation; }
.land { fill:var(--muted); opacity:.45; } .grid { stroke:var(--line); stroke-width:.45; fill:none; } #pin { fill:var(--accent); stroke:var(--bg); stroke-width:1; }
.map-label { fill:var(--ink); font:7px system-ui,sans-serif; opacity:.85; pointer-events:none; }
</style></head>
<body><main><svg id="map" class="map" viewBox="0 0 360 180" preserveAspectRatio="none" role="button" tabindex="0" aria-label="World map: select a point" aria-describedby="map-help">
<title>World outline with a latitude and longitude selection</title>
<path class="grid" d="M0 45H360 M0 90H360 M0 135H360 M90 0V180 M180 0V180 M270 0V180"/><path class="land" d="M120.4,170.0L120.1,170.5L119.8,171.0L117.7,170.9L115.5,170.9L114.3,170.6L114.3,170.5L113.7,170.3L116.0,170.3L118.1,170.4L118.9,170.0L119.4,169.6L120.4,170.0ZM20.8,169.5L18.9,169.6L17.6,169.3L17.0,168.9L16.9,168.9L16.3,168.6L16.3,168.6L16.9,168.2L18.8,168.4L19.8,168.7L20.5,169.0L20.8,169.5ZM134.8,168.0L136.1,168.5L136.5,169.1L136.6,169.5L136.7,170.0L135.1,170.3L133.5,170.6L131.6,170.8L129.5,171.0L127.1,171.0L125.8,170.6L126.0,170.2L128.1,169.9L129.0,169.6L129.6,169.2L130.1,168.8L130.7,168.5L131.3,168.0L131.3,168.0L131.8,168.0L133.3,167.8L134.8,168.0ZM58.8,163.5L60.1,163.7L61.3,163.5L60.7,163.8L59.8,164.1L58.4,164.0L57.4,163.7L57.4,163.7L57.6,163.3L58.8,163.5ZM54.4,163.5L56.0,163.9L55.4,163.8L54.1,163.7L52.7,163.5L52.7,163.5L53.4,163.2L54.4,163.5ZM81.0,161.9L82.1,162.1L83.2,162.0L83.8,162.5L83.0,162.4L81.8,162.5L80.6,162.4L79.2,162.5L78.2,162.3L77.7,161.9L77.7,161.9L78.3,161.7L79.6,161.9L81.0,161.9ZM111.5,161.0L111.7,161.4L111.5,161.8L111.2,162.2L110.0,162.3L108.9,162.5L107.6,162.5L108.1,162.1L106.9,162.2L105.8,162.4L105.0,162.1L105.0,161.7L106.1,161.3L106.1,161.3L106.8,161.2L107.9,161.2L108.2,160.7L108.3,160.3L108.3,159.5L108.8,159.0L109.7,158.9L110.3,159.3L110.5,159.6L110.9,160.1L111.3,160.5L111.5,161.0ZM121.4,154.2L121.0,154.4L120.2,154.2L119.4,154.3L118.7,154.5L118.0,154.8L117.5,155.1L117.4,155.5L117.4,155.9L117.9,156.2L117.2,156.4L116.3,156.5L115.7,156.8L115.1,157.2L114.5,157.6L114.3,158.0L114.7,158.4L115.2,158.7L116.0,158.9L116.8,159.2L117.2,159.6L117.4,160.0L117.7,160.4L118.2,160.7L118.5,161.1L118.6,162.0L118.9,162.4L119.0,162.8L119.3,163.2L119.2,163.7L118.6,164.1L118.0,164.4L116.7,164.6L116.3,164.9L115.6,165.3L114.1,165.6L112.8,165.8L111.6,166.0L110.2,166.2L109.4,166.6L107.8,166.7L106.0,166.6L104.4,166.7L102.8,166.7L103.1,167.1L104.6,167.3L105.7,167.6L106.3,167.9L105.2,168.2L103.5,168.1L102.1,168.4L102.0,168.8L102.0,169.2L103.2,169.5L103.4,169.9L104.6,170.3L106.8,170.4L108.6,170.7L110.0,171.0L111.8,171.3L114.3,171.5L116.7,171.7L118.4,172.0L120.3,172.4L121.3,172.8L121.8,173.2L123.0,172.9L124.6,172.6L126.4,172.3L128.5,172.0L130.2,171.7L132.7,171.7L135.2,171.8L137.2,172.1L137.8,171.7L139.2,171.4L141.8,171.3L143.7,171.1L145.6,170.9L147.7,170.8L149.9,170.6L151.5,170.3L150.7,170.0L150.3,169.6L150.3,169.3L148.4,169.3L146.3,169.5L144.4,169.5L144.1,169.1L144.2,168.3L144.7,168.1L146.1,167.9L147.8,167.7L149.0,167.4L150.2,167.1L151.1,166.7L152.5,166.5L153.8,166.4L154.5,166.3L156.1,166.2L157.5,166.1L158.8,165.9L160.0,165.7L161.1,165.4L162.5,165.1L163.4,164.8L164.3,164.5L164.6,164.1L163.5,163.9L163.9,163.5L164.6,163.1L165.6,163.0L166.7,162.7L167.7,162.4L168.5,162.0L169.0,161.5L169.7,161.3L170.9,161.3L171.4,161.7L172.6,161.7L172.6,161.3L173.1,160.9L174.2,161.0L174.5,161.4L175.7,161.5L177.0,161.3L178.2,161.2L179.3,161.2L179.8,161.6L180.9,161.3L181.9,161.1L183.0,161.0L184.1,160.9L185.2,160.6L186.3,160.5L187.1,160.2L187.7,159.9L188.5,160.1L189.5,160.0L190.2,160.5L190.8,160.8L192.0,160.6L192.4,160.2L193.4,160.0L194.7,160.0L195.1,160.4L195.9,160.0L197.0,159.9L198.2,159.9L199.3,159.9L200.4,160.0L201.5,160.1L201.9,160.4L202.6,160.7L203.7,160.5L204.8,160.5L206.0,160.5L207.1,160.5L208.1,160.3L209.2,160.2L210.0,159.9L211.0,159.8L212.0,159.7L212.8,159.4L213.3,158.8L213.9,158.5L214.9,158.7L215.3,159.0L216.2,159.2L217.2,159.2L217.9,159.5L218.6,159.8L219.7,159.5L220.0,159.1L220.9,158.9L222.0,158.6L222.9,158.5L224.1,158.3L224.9,158.1L225.7,157.8L226.5,157.6L227.4,157.7L228.3,157.4L229.0,157.1L229.9,157.1L230.8,156.9L230.9,156.5L231.8,156.2L232.6,156.1L233.6,155.9L234.5,155.8L235.4,155.9L236.4,156.0L237.2,156.2L237.3,156.7L238.1,157.0L238.7,157.3L239.9,157.4L240.6,157.7L241.4,158.0L242.4,158.0L243.2,157.8L244.1,157.4L245.0,157.6L246.0,157.7L246.9,157.9L247.9,157.9L248.9,157.9L249.7,159.0L249.7,159.2L249.6,159.7L248.6,159.9L247.8,160.3L247.9,160.7L249.1,160.7L248.9,161.1L248.4,161.4L247.9,161.9L248.7,162.2L249.9,162.3L251.0,162.1L251.6,161.7L251.9,161.3L252.5,161.0L253.1,160.7L253.3,160.4L253.9,159.9L254.5,159.8L255.6,159.7L256.6,159.6L257.6,159.5L258.1,159.1L258.4,158.7L259.1,158.3L260.1,158.1L260.9,157.9L261.5,157.5L262.1,157.4L262.8,157.2L263.8,157.3L264.7,157.2L265.7,157.1L266.8,157.2L267.5,156.9L268.0,156.2L268.4,156.5L268.8,157.0L269.7,157.2L270.6,157.2L271.6,157.1L272.6,157.2L273.5,157.2L274.2,157.1L275.0,157.2L275.8,157.4L276.7,157.2L277.8,157.2L278.7,157.1L279.7,157.2L280.4,156.9L280.9,156.6L281.6,156.3L282.8,155.6L283.5,155.7L284.2,156.0L284.9,156.3L286.2,156.9L287.2,157.0L288.1,157.0L289.2,156.8L290.2,156.7L291.1,156.4L291.7,156.1L292.9,156.1L293.6,155.9L294.4,156.1L294.9,156.4L295.6,156.7L296.7,156.7L297.4,156.9L298.6,157.2L299.8,157.3L300.9,157.2L301.7,156.9L302.3,156.6L303.2,156.5L304.1,156.6L305.2,156.7L306.1,156.6L307.0,156.6L307.9,156.7L308.8,156.8L309.7,156.6L310.8,156.4L311.8,156.4L312.9,156.4L313.9,156.3L314.8,156.2L315.0,155.7L315.1,155.3L315.7,155.6L315.9,156.0L316.2,156.4L316.6,156.8L317.5,157.0L318.6,156.9L319.9,156.9L320.8,156.8L322.1,156.8L323.1,156.8L324.4,156.8L325.5,156.9L326.2,157.2L326.0,157.6L326.6,157.9L327.7,158.1L328.8,158.4L330.1,158.6L331.5,158.7L332.5,158.9L333.6,158.9L334.3,158.6L335.2,158.8L335.9,159.1L336.8,159.4L338.0,159.5L339.2,159.6L339.7,160.0L340.8,160.2L341.6,160.6L342.7,160.7L343.8,160.7L344.9,160.8L346.1,160.8L347.3,160.8L348.4,161.0L349.5,161.2L350.5,161.4L351.2,161.7L351.1,162.1L350.6,162.4L350.1,162.9L349.8,163.2L349.3,163.7L348.0,163.8L347.4,164.2L346.1,164.4L345.6,164.8L345.0,165.1L344.2,165.5L343.8,165.9L343.6,166.2L343.5,166.7L343.5,167.1L344.1,167.5L344.3,167.8L344.7,168.2L346.6,168.3L347.0,168.8L345.2,168.9L343.7,169.1L341.8,169.2L340.9,169.7L340.7,170.2L340.3,170.6L339.8,170.9L341.1,171.3L341.6,171.7L342.5,172.1L343.7,172.4L345.1,172.7L346.6,173.0L348.9,173.3L349.4,173.8L352.3,174.0L352.5,174.1L353.2,174.4L356.0,174.2L358.3,174.5L360.0,174.7L360.0,180.0L0.0,180.0L0.0,174.7L0.1,174.7L0.9,174.1L2.7,174.5L2.9,174.4L3.1,174.3L3.5,174.2L3.8,174.1L3.9,174.1L4.1,174.1L4.2,174.1L5.6,174.5L6.9,174.1L7.1,174.1L10.0,173.9L11.0,174.1L11.5,174.2L13.0,174.6L15.8,174.8L18.1,175.1L21.9,175.4L24.8,175.1L29.1,175.3L31.5,175.6L34.1,175.3L36.9,175.0L37.1,174.6L33.2,174.5L29.9,174.3L29.1,173.9L26.4,173.7L26.6,173.2L27.0,172.8L27.3,172.5L27.1,172.0L25.5,171.8L24.7,171.4L23.2,171.1L25.6,171.2L27.9,171.0L29.4,171.3L31.1,171.0L32.8,170.7L33.6,170.3L33.2,169.9L31.9,169.7L30.5,169.4L28.4,169.3L26.6,169.2L24.7,169.1L24.0,168.7L22.7,168.4L21.9,168.0L21.6,166.9L22.1,167.0L23.0,167.3L24.7,167.2L26.3,167.1L27.1,167.5L28.7,167.4L30.0,167.2L31.3,166.9L32.4,166.6L33.9,166.5L33.9,166.1L33.5,165.7L33.8,165.4L35.1,165.2L35.7,165.5L37.2,165.3L38.4,165.1L39.8,165.1L41.1,165.0L42.5,164.7L43.6,164.5L44.8,164.3L45.6,164.4L46.3,164.4L47.7,164.3L49.1,164.5L50.4,164.5L51.8,164.3L53.1,164.4L54.6,164.5L56.0,164.5L57.4,164.5L58.9,164.5L60.3,164.5L61.3,164.2L62.5,164.0L63.8,164.2L65.0,164.1L66.1,163.7L66.7,164.0L67.1,164.4L67.7,164.7L68.7,164.4L69.9,164.8L71.3,164.9L72.4,165.2L73.9,165.1L75.1,164.9L76.6,165.0L78.0,165.1L79.4,165.3L79.9,164.9L79.2,164.5L78.7,164.2L77.5,164.1L76.9,163.7L76.7,163.4L76.3,162.6L77.1,162.8L78.4,162.8L79.7,162.8L80.9,162.9L81.9,163.2L82.3,163.6L83.7,163.6L85.0,163.5L86.3,163.3L87.6,163.2L88.6,163.4L89.9,163.3L90.8,162.6L91.6,163.0L92.7,163.2L94.0,163.1L94.8,163.5L96.1,163.5L97.3,163.6L98.5,163.9L99.3,163.5L99.7,163.1L100.7,163.5L102.1,163.4L103.1,163.6L103.8,164.0L105.1,163.9L106.1,163.7L107.2,163.4L108.4,163.3L109.8,163.1L111.1,163.0L112.0,162.8L112.6,162.5L112.9,162.0L112.7,161.6L112.4,161.2L112.1,160.9L111.8,160.5L111.5,160.1L111.5,159.7L111.6,159.3L112.0,159.0L112.4,158.5L112.6,158.1L112.4,157.7L112.3,157.3L112.7,156.9L113.3,156.6L113.9,156.2L114.6,155.9L115.4,155.6L115.8,155.2L116.4,154.9L117.0,154.6L118.0,154.6L118.6,154.3L119.3,154.1L120.1,154.0L120.8,153.7L121.4,153.4L122.2,153.3L122.8,153.5L122.4,153.9L121.4,154.2ZM112.2,143.8L113.5,144.4L115.0,144.7L114.5,145.2L113.5,145.2L113.0,144.9L112.7,145.3L111.9,145.6L110.8,145.5L110.0,145.2L109.0,145.1L107.7,144.5L106.7,144.0L105.3,142.8L106.2,143.0L107.6,143.7L108.9,144.1L109.4,143.6L109.7,142.9L110.7,142.5L111.4,142.6L111.4,142.6L111.8,143.1L112.2,143.8ZM121.5,141.1L122.2,141.6L122.0,141.9L120.6,142.2L120.2,141.8L119.3,142.3L118.8,141.8L120.0,141.2L120.8,141.5L121.5,141.1ZM250.3,139.7L248.7,139.8L248.7,139.2L248.9,138.8L248.9,138.6L249.6,138.9L250.5,139.1L250.6,139.3L250.3,139.7ZM325.4,130.8L326.4,131.1L326.9,131.0L327.7,130.8L328.3,130.9L328.4,132.1L328.0,132.4L327.9,133.2L327.6,132.9L326.9,133.6L326.7,133.6L326.0,133.5L325.4,132.7L325.3,132.0L324.7,131.2L324.7,130.7L325.4,130.8ZM353.0,130.9L353.2,131.3L354.0,130.9L354.2,131.3L354.2,131.8L353.9,132.2L353.2,133.0L352.7,133.4L353.1,133.9L352.3,133.9L351.5,134.2L351.2,134.9L350.6,135.9L349.8,136.4L349.3,136.6L348.4,136.6L347.8,136.3L346.7,136.2L346.5,135.9L347.0,135.1L348.3,134.1L348.9,133.9L349.7,133.6L350.5,133.0L351.1,132.5L351.6,131.8L351.9,131.5L352.1,131.0L352.8,130.5L353.0,130.9ZM354.6,126.2L355.3,127.2L355.4,126.5L355.8,126.8L356.0,127.6L356.8,127.9L357.4,128.0L358.0,127.6L358.5,127.7L358.3,128.6L358.0,129.2L357.2,129.1L356.9,129.4L357.0,129.9L356.9,130.1L356.5,130.6L356.0,131.3L355.2,131.7L355.1,131.4L354.7,131.3L355.2,130.5L354.9,129.9L353.8,129.5L353.9,129.1L354.6,128.8L354.7,128.0L354.7,127.4L354.3,126.7L354.3,126.5L353.8,126.1L353.1,125.2L352.6,124.5L353.0,124.5L353.6,125.0L354.3,125.3L354.6,126.2ZM347.1,112.2L346.7,112.4L346.2,112.1L345.5,111.7L344.8,111.1L344.2,110.4L344.0,110.1L344.5,110.1L345.0,110.5L345.5,110.8L345.8,111.1L346.6,111.7L347.1,112.2ZM358.4,107.3L358.7,107.6L358.6,108.2L357.9,108.3L357.4,108.2L357.3,107.7L357.7,107.4L358.1,107.5L358.4,107.3ZM359.4,106.8L358.7,107.0L358.6,106.6L359.1,106.4L359.4,106.4L360.0,106.1L360.0,106.6L359.4,106.8ZM0.1,106.5L0.0,106.6L0.0,106.1L0.2,106.0L0.1,106.5ZM347.8,106.5L347.5,106.6L347.2,106.2L347.2,105.9L347.8,106.5ZM347.1,104.9L347.3,105.7L347.0,105.6L346.8,105.7L346.6,105.4L346.6,104.6L347.1,104.9ZM230.1,103.6L230.2,104.8L230.5,105.2L230.4,105.7L230.2,106.0L229.9,105.4L229.7,105.7L229.9,106.5L229.8,106.9L229.5,107.1L229.4,108.0L229.0,109.1L228.5,110.5L227.9,112.4L227.5,113.8L227.1,114.9L226.3,115.2L225.4,115.6L224.8,115.3L224.0,115.0L223.8,114.5L223.7,113.6L223.3,112.8L223.3,112.1L223.4,111.3L223.9,111.2L223.9,110.8L224.4,110.1L224.5,109.4L224.2,109.0L224.0,108.3L224.0,107.4L224.3,106.9L224.4,106.2L224.9,106.2L225.5,106.0L225.9,105.8L226.3,105.8L226.9,105.2L227.7,104.6L228.0,104.1L227.9,103.7L228.3,103.8L228.8,103.1L228.9,102.5L229.2,102.0L229.5,102.5L229.8,102.9L230.1,103.6ZM323.6,103.8L323.9,104.5L324.6,104.2L324.9,104.6L325.4,105.0L325.3,105.4L325.5,106.3L325.6,106.8L325.9,106.9L326.2,107.8L326.1,108.3L326.4,109.0L327.5,109.5L328.2,110.0L328.8,110.4L328.7,110.6L329.3,111.3L329.7,112.3L330.1,112.1L330.5,112.6L330.7,112.4L330.9,113.5L331.6,114.1L332.1,114.5L332.9,115.3L333.1,116.1L333.2,116.6L333.1,117.3L333.6,118.1L333.5,119.0L333.3,119.5L333.1,120.4L333.1,120.9L332.9,121.6L332.5,122.6L331.7,123.0L331.3,123.8L331.0,124.3L330.7,125.2L330.3,125.7L330.1,126.4L329.9,127.1L330.0,127.4L329.4,127.8L328.3,127.8L327.4,128.2L326.9,128.6L326.3,129.0L325.5,128.6L324.9,128.4L325.0,127.9L324.5,128.1L323.6,128.8L322.7,128.5L322.2,128.4L321.6,128.3L320.6,128.0L320.0,127.4L319.8,126.6L319.6,126.1L319.1,125.7L318.1,125.6L318.4,125.1L318.2,124.4L317.7,125.1L316.8,125.3L317.4,124.7L317.5,124.1L317.9,123.6L317.8,122.9L317.0,123.8L316.4,124.1L316.0,124.9L315.2,124.5L315.2,123.9L314.6,123.2L314.1,122.8L314.3,122.6L313.0,122.0L312.3,122.0L311.3,121.5L309.5,121.6L308.2,121.9L307.1,122.3L306.1,122.2L305.1,122.7L304.2,123.0L304.0,123.5L303.7,123.9L302.8,123.9L302.2,124.0L301.3,123.8L300.6,123.9L299.9,124.0L299.3,124.5L299.0,124.5L298.5,124.7L298.0,125.1L297.3,125.0L296.6,125.0L295.6,124.4L295.0,124.2L295.0,123.6L295.5,123.5L295.7,123.3L295.7,122.9L295.8,122.2L295.7,121.6L295.2,120.6L295.0,120.0L295.0,119.5L294.6,118.8L294.6,118.5L294.2,118.1L294.0,117.3L293.5,116.5L293.3,116.1L293.8,116.5L293.4,115.6L293.9,115.9L294.2,116.3L294.2,115.8L293.7,115.0L293.6,114.7L293.4,114.4L293.5,113.8L293.7,113.6L293.8,113.1L293.7,112.5L294.1,111.8L294.2,112.5L294.6,111.8L295.5,111.5L295.9,111.1L296.7,110.7L297.2,110.6L297.4,110.7L298.2,110.4L298.8,110.3L299.0,110.0L299.3,110.0L299.8,110.0L300.9,109.7L301.4,109.2L301.7,108.7L302.2,108.2L302.3,107.8L302.3,107.3L303.0,106.4L303.4,107.3L303.9,107.1L303.5,106.6L303.8,106.1L304.3,106.3L304.4,105.6L304.9,105.1L305.2,104.7L305.7,104.5L305.7,104.2L306.1,104.3L306.1,104.1L306.6,104.0L307.1,103.8L307.8,104.3L308.4,104.9L309.0,104.9L309.6,105.0L309.4,104.4L309.9,103.6L310.3,103.4L310.2,103.1L310.6,102.5L311.2,102.2L311.7,102.3L312.6,102.1L312.6,101.6L311.8,101.3L312.4,101.1L313.0,101.4L313.6,101.8L314.4,102.0L314.7,101.9L315.3,102.2L315.9,102.0L316.3,102.0L316.5,101.9L317.0,102.4L316.7,102.9L316.3,103.3L316.0,103.3L316.1,103.7L315.8,104.2L315.4,104.7L315.5,105.0L316.3,105.6L317.1,105.9L317.6,106.2L318.3,106.8L318.6,106.8L319.1,107.1L319.3,107.4L320.2,107.7L320.9,107.4L321.1,106.8L321.3,106.4L321.4,105.8L321.7,105.0L321.6,104.6L321.6,104.3L321.5,103.7L321.7,102.9L321.8,102.7L321.7,102.4L321.9,101.9L322.1,101.3L322.1,101.0L322.5,100.7L322.8,101.2L322.9,101.8L323.1,101.9L323.2,102.3L323.5,102.8L323.6,103.4L323.6,103.8ZM342.1,100.5L342.4,100.8L341.7,100.8L341.3,100.2L341.9,100.4L342.1,100.5ZM300.7,100.2L300.3,100.3L299.0,99.6L299.9,99.4L300.4,99.7L300.8,100.0L300.7,100.2ZM340.9,99.9L340.5,99.9L339.8,99.8L339.6,99.6L339.7,99.2L340.4,99.4L340.7,99.6L340.9,99.9ZM341.7,99.6L341.5,99.8L340.8,98.9L340.6,98.3L340.9,98.3L341.3,99.1L341.7,99.6ZM304.4,100.1L303.6,100.4L303.5,100.2L303.6,99.9L304.0,99.3L305.0,98.9L305.1,98.7L305.9,98.4L306.6,98.4L307.0,98.3L307.3,98.4L307.0,98.7L305.9,99.1L305.1,99.4L304.4,100.1ZM297.9,98.1L298.3,98.4L298.9,98.3L299.1,98.7L298.0,98.9L297.3,99.0L296.7,99.0L297.1,98.5L297.6,98.4L297.9,98.1ZM302.9,98.1L302.8,98.6L301.3,98.9L299.9,98.8L299.9,98.4L300.7,98.2L301.3,98.5L302.0,98.5L302.9,98.1ZM339.9,98.3L339.9,98.5L339.1,98.1L338.6,97.8L338.2,97.4L338.4,97.3L338.8,97.6L339.6,98.0L339.9,98.3ZM337.5,97.3L337.3,97.4L336.9,97.2L336.5,96.8L336.5,96.6L337.1,97.0L337.5,97.3ZM288.6,96.8L290.5,96.9L290.8,96.5L292.6,96.9L293.0,97.6L294.5,97.8L295.7,98.4L294.6,98.8L293.5,98.3L292.6,98.4L291.5,98.3L290.6,98.1L289.4,97.7L288.7,97.6L288.3,97.8L286.5,97.4L286.3,96.9L285.4,96.9L286.1,95.9L287.3,96.0L288.1,96.3L288.5,96.4L288.6,96.8ZM314.7,96.2L314.2,96.9L314.1,96.1L314.3,95.8L314.5,95.4L314.7,95.7L314.7,96.2ZM335.9,96.8L335.6,96.9L335.2,96.5L334.7,95.9L334.5,95.1L334.7,95.0L334.8,95.3L335.1,95.6L335.5,96.2L336.0,96.5L335.9,96.8ZM332.0,95.5L331.5,95.6L331.3,95.8L330.8,96.1L330.2,96.3L329.7,96.3L328.9,96.0L328.3,95.7L328.4,95.4L329.3,95.6L329.8,95.5L330.0,95.0L330.1,95.0L330.2,95.5L330.8,95.5L331.1,95.1L331.6,94.8L331.5,94.2L332.1,94.1L332.3,94.3L332.3,94.9L332.0,95.5ZM307.2,93.5L306.9,93.8L306.2,93.6L306.0,93.2L307.0,93.1L307.2,93.5ZM310.5,93.1L310.8,93.9L310.0,93.4L309.2,93.4L308.6,93.4L307.9,93.4L308.1,92.8L309.4,92.8L310.5,93.1ZM333.1,94.5L332.8,94.8L332.6,94.2L332.4,93.8L332.0,93.5L331.4,93.0L330.7,92.7L330.9,92.5L331.5,92.8L331.8,93.0L332.2,93.2L332.6,93.7L333.0,94.0L333.1,94.5ZM314.1,91.2L314.4,92.8L315.5,93.4L316.3,92.3L317.4,91.7L318.3,91.7L319.2,92.1L319.9,92.4L321.0,92.6L322.7,93.3L324.6,93.9L325.3,94.4L325.8,94.9L326.0,95.5L327.6,96.1L327.9,96.6L327.0,96.7L327.2,97.4L328.1,98.0L328.7,99.1L329.3,99.1L329.3,99.5L330.0,99.7L329.7,99.9L330.8,100.3L330.7,100.6L330.0,100.7L329.8,100.4L328.9,100.3L327.9,100.1L327.1,99.5L326.6,98.9L326.0,98.1L324.7,97.6L323.9,97.9L323.3,98.2L323.4,99.0L322.6,99.3L322.1,99.2L321.0,99.1L320.1,98.3L319.1,98.1L318.9,98.4L317.6,98.4L318.0,97.6L318.7,97.3L318.4,96.2L317.9,95.4L316.0,94.5L315.2,94.5L313.7,93.5L313.4,94.0L313.0,94.1L312.8,93.7L312.8,93.3L312.0,92.8L313.1,92.5L313.8,92.5L313.7,92.2L312.2,92.2L311.8,91.6L310.9,91.4L310.5,90.9L311.9,90.7L312.4,90.4L314.0,90.8L314.1,91.2ZM305.2,88.6L304.4,89.6L303.7,89.8L302.7,89.6L301.1,89.6L300.2,89.8L300.0,90.5L300.9,91.4L301.5,91.0L303.3,90.6L303.3,91.1L302.8,90.9L302.4,91.5L301.5,91.9L302.5,93.2L302.3,93.5L303.2,94.7L303.2,95.3L302.6,95.6L302.2,95.3L302.7,94.5L301.7,94.9L301.5,94.6L301.6,94.2L300.9,93.6L301.0,92.6L300.3,92.9L300.4,94.1L300.4,95.5L299.8,95.7L299.4,95.4L299.7,94.5L299.5,93.5L299.1,93.5L298.8,92.8L299.2,92.1L299.3,91.4L299.8,89.8L300.0,89.4L300.9,88.7L301.7,89.0L302.9,89.1L304.1,89.1L305.1,88.4L305.2,88.6ZM308.7,88.9L308.6,89.7L308.1,89.6L308.0,90.3L308.4,90.8L308.1,90.9L307.7,90.3L307.4,89.0L307.6,88.2L307.9,87.8L308.0,88.4L308.6,88.5L308.7,88.9ZM285.8,95.9L284.7,95.9L283.9,95.0L282.6,94.2L282.2,93.6L281.4,92.8L280.9,92.1L280.1,90.7L279.3,89.8L279.0,89.0L278.6,88.2L277.7,87.5L277.2,86.7L276.4,86.1L275.4,85.0L275.3,84.5L275.9,84.6L277.5,84.8L278.4,85.7L279.1,86.4L279.7,86.8L280.6,87.9L281.7,87.9L282.5,88.6L283.1,89.4L283.8,89.9L283.4,90.7L284.0,91.1L284.4,91.1L284.5,91.8L284.9,92.3L285.6,92.4L286.1,93.1L285.9,94.3L285.8,95.9ZM297.9,88.2L299.0,89.1L297.8,89.2L297.5,89.9L297.5,90.8L296.6,91.5L296.5,92.5L296.1,94.0L296.0,93.7L294.9,94.1L294.5,93.5L293.8,93.4L293.3,93.1L292.1,93.5L291.7,93.0L291.0,93.0L290.2,92.9L290.1,91.6L289.6,91.3L289.1,90.5L289.0,89.6L289.1,88.7L289.7,88.0L290.4,88.3L291.2,88.1L291.4,87.3L291.8,87.1L293.0,86.9L293.7,86.1L294.2,85.5L294.6,85.1L295.5,84.6L296.2,83.9L296.7,83.1L297.1,83.1L297.6,83.6L297.7,84.0L298.3,84.3L299.2,84.6L299.1,85.0L298.4,85.0L298.6,85.5L297.9,85.9L297.3,86.8L298.0,87.7L297.9,88.2ZM306.4,81.6L306.5,82.2L306.5,82.8L306.2,83.7L305.8,82.7L305.4,83.2L305.7,84.0L305.4,84.4L304.2,83.8L303.9,83.1L304.2,82.6L303.6,82.2L303.3,82.6L302.8,82.5L302.1,83.1L301.9,82.8L302.3,82.0L302.9,81.7L303.5,81.3L303.8,81.8L304.6,81.5L304.8,81.0L305.5,81.0L305.4,80.2L306.2,80.7L306.3,81.2L306.4,81.6ZM261.2,83.8L260.3,84.0L259.9,83.2L259.7,81.8L260.1,80.2L260.8,80.7L261.3,81.4L261.8,82.5L261.6,83.5L261.2,83.8ZM119.1,79.9L118.2,80.0L118.0,79.9L118.3,79.6L118.3,79.2L118.9,79.1L119.1,79.1L119.1,79.9ZM304.0,79.7L303.6,80.0L303.3,80.7L303.0,81.0L302.4,80.3L302.6,80.0L302.8,79.7L302.9,79.1L303.5,79.1L303.3,79.7L304.1,78.8L304.0,79.7ZM298.5,80.7L297.2,81.6L297.7,80.9L298.4,80.3L299.0,79.6L299.5,78.6L299.7,79.4L299.0,80.0L298.5,80.7ZM301.9,78.1L302.5,78.4L303.1,78.4L303.1,78.8L302.6,79.3L302.0,79.6L302.0,79.1L302.0,78.6L301.9,78.1ZM305.5,77.8L305.8,79.0L305.0,78.7L305.0,79.0L305.3,79.6L304.8,79.9L304.8,79.2L304.5,79.1L304.3,78.5L304.9,78.6L304.9,78.2L304.3,77.4L305.2,77.5L305.5,77.8ZM301.5,76.9L301.3,77.8L300.8,77.3L300.3,76.5L301.2,76.6L301.5,76.9ZM301.3,71.5L301.9,71.8L302.2,71.5L302.3,71.8L302.2,72.2L302.5,72.9L302.3,73.7L301.7,74.1L301.5,74.9L301.7,75.7L302.3,75.8L302.7,75.7L304.0,76.2L303.9,76.8L304.2,77.0L304.1,77.5L303.3,77.0L302.9,76.4L302.7,76.8L302.0,76.2L301.1,76.4L300.6,76.1L300.7,75.7L301.0,75.5L300.7,75.2L300.6,75.6L300.1,75.0L299.9,74.6L299.9,73.6L300.3,74.0L300.4,72.4L300.7,71.5L301.3,71.5ZM114.4,71.8L114.2,72.0L113.4,72.0L112.8,72.1L112.8,71.6L112.9,71.5L113.7,71.5L114.2,71.6L114.4,71.8ZM103.1,72.1L102.8,72.3L102.2,72.1L101.7,71.8L101.8,71.5L102.2,71.5L102.4,71.5L103.1,71.6L103.6,71.8L103.8,72.1L103.1,72.1ZM107.4,70.1L108.3,70.3L108.4,70.1L109.2,70.1L109.8,70.4L110.0,70.4L110.2,70.7L110.8,70.7L110.7,71.0L111.2,71.0L111.7,71.4L111.3,71.8L110.8,71.6L110.4,71.6L110.0,71.6L109.9,71.8L109.5,71.8L109.3,71.6L109.0,71.7L108.6,72.4L108.3,72.2L108.3,72.0L107.6,71.8L107.2,71.9L106.5,71.8L106.1,72.0L105.5,71.7L105.6,71.3L106.6,71.5L107.3,71.6L107.7,71.3L107.2,70.9L107.2,70.5L106.6,70.4L106.8,70.1L107.4,70.1ZM290.3,71.3L289.5,71.8L288.7,71.5L288.6,70.6L289.1,70.2L290.2,69.9L290.8,69.9L291.0,70.3L290.6,70.7L290.3,71.3ZM24.5,70.9L24.3,71.1L24.1,70.9L24.1,70.7L23.9,70.3L24.0,70.2L24.1,70.0L24.1,69.8L24.1,69.7L24.2,69.8L24.6,69.9L24.8,70.0L24.9,70.1L25.2,70.5L25.2,70.5L24.8,70.8L24.5,70.9ZM23.9,69.4L23.6,69.4L23.4,69.2L23.3,69.1L23.3,69.1L23.4,69.0L23.7,69.1L24.0,69.2L23.9,69.4ZM23.2,68.8L23.2,68.9L22.7,68.9L22.7,68.8L23.2,68.8ZM22.3,68.7L22.3,68.7L22.2,68.7L21.9,68.7L21.7,68.5L21.7,68.4L22.0,68.3L22.1,68.3L22.3,68.7ZM20.7,68.0L20.5,68.1L20.2,67.9L20.3,67.9L20.4,67.8L20.6,67.8L20.7,68.0ZM100.3,67.2L100.7,67.6L101.7,67.5L102.0,67.7L102.9,68.3L103.5,68.8L103.8,68.8L104.4,69.0L104.3,69.3L105.1,69.3L105.8,69.7L105.7,69.9L105.0,70.1L104.4,70.1L103.7,70.0L102.2,70.1L102.9,69.6L102.5,69.3L101.9,69.3L101.5,69.0L101.3,68.4L100.7,68.4L99.8,68.2L99.5,68.0L98.2,67.8L97.8,67.6L98.2,67.4L97.2,67.3L96.5,67.8L96.1,67.8L95.9,68.1L95.5,68.2L95.0,68.1L95.6,67.8L95.8,67.4L96.2,67.2L96.7,67.0L97.5,66.9L97.7,66.8L98.6,66.9L99.4,66.9L100.3,67.2ZM102.5,66.2L102.2,66.3L102.0,65.7L101.6,65.4L101.8,64.8L102.1,64.8L102.5,65.7L102.5,66.2ZM301.2,67.2L300.7,68.0L300.2,67.2L300.1,66.4L300.7,65.5L301.5,64.7L302.0,65.0L301.8,65.6L301.2,67.2ZM102.2,63.4L101.1,63.6L101.0,63.2L101.5,63.1L102.2,63.2L102.2,63.4ZM103.0,63.4L102.8,64.1L102.6,64.0L102.7,63.5L102.2,63.1L102.2,63.0L103.0,63.4ZM314.6,55.9L314.8,56.2L314.2,56.8L313.8,56.5L313.3,56.7L313.0,57.3L312.4,57.0L312.4,56.5L312.9,55.9L313.5,56.1L313.9,55.6L314.6,55.9ZM214.6,54.3L213.9,54.8L214.0,54.9L214.0,55.0L213.0,55.4L212.5,55.3L212.3,54.9L212.7,54.9L212.8,54.9L212.9,54.6L213.7,54.6L214.6,54.3ZM203.7,54.3L204.2,54.6L205.0,54.6L205.8,54.6L205.7,54.8L206.3,54.7L206.2,55.0L204.7,55.1L204.7,54.9L203.5,54.7L203.7,54.3ZM195.5,51.8L195.2,52.6L195.3,52.9L195.1,53.4L194.3,53.0L193.8,52.9L192.4,52.4L192.6,51.9L193.7,52.0L194.8,51.9L195.5,51.8ZM189.2,48.8L189.8,49.5L189.7,50.8L189.2,50.8L188.8,51.1L188.4,50.8L188.4,49.6L188.2,49.0L188.7,49.1L189.2,48.8ZM321.0,52.9L320.6,53.7L320.8,54.2L320.3,54.9L319.0,55.3L317.2,55.4L315.8,56.5L315.1,56.2L315.1,55.4L313.3,55.6L312.2,56.1L311.0,56.1L312.0,56.9L311.3,58.5L310.7,59.0L310.2,58.6L310.4,57.7L309.8,57.4L309.4,56.7L310.4,56.4L310.9,55.8L311.9,55.3L312.6,54.6L314.6,54.3L315.7,54.5L316.7,52.7L317.4,53.2L318.9,52.2L319.4,51.8L320.1,50.6L319.9,49.4L320.3,48.8L321.4,48.6L321.9,50.0L321.9,50.8L321.0,51.8L321.0,52.9ZM189.6,47.8L189.2,48.6L188.8,48.4L188.5,47.7L188.7,47.4L189.4,47.0L189.6,47.8ZM323.9,45.8L324.6,46.0L325.3,45.6L325.5,46.7L324.1,47.0L323.2,48.0L321.6,47.3L321.1,48.4L320.0,48.4L319.8,47.4L320.3,46.7L321.4,46.6L321.7,45.2L322.0,44.4L323.1,45.5L323.9,45.8ZM116.3,43.4L117.1,43.6L118.0,43.6L117.5,44.0L117.1,44.0L115.9,43.6L115.6,43.3L116.0,43.0L116.3,43.4ZM118.2,40.9L117.7,40.9L116.4,40.6L115.5,40.1L115.8,40.0L117.1,40.3L118.2,40.7L118.2,40.9ZM56.5,41.5L56.0,41.6L54.3,41.2L54.0,40.8L53.1,40.5L53.0,40.2L51.9,40.0L51.6,39.5L51.6,39.2L52.7,39.4L53.3,39.6L54.2,39.7L54.6,40.0L55.1,40.5L56.1,40.9L56.5,41.5ZM123.9,39.3L123.2,40.2L123.9,39.8L124.5,40.1L124.2,40.4L125.1,40.7L125.5,40.4L126.5,40.8L126.2,41.5L126.9,41.3L127.0,41.8L127.4,42.5L126.9,43.3L126.5,43.4L125.8,43.2L126.0,42.4L125.8,42.2L124.6,43.1L124.0,43.1L124.7,42.6L123.7,42.4L122.7,42.4L120.7,42.4L120.6,42.1L121.2,41.7L120.8,41.5L121.6,40.9L122.6,39.3L123.3,38.7L124.1,38.4L124.6,38.4L124.4,38.7L123.9,39.3ZM47.3,36.0L47.3,36.0L47.3,36.0L47.3,36.0L48.3,35.9L48.0,37.0L48.8,37.8L48.4,37.8L47.8,37.4L47.5,36.9L46.9,36.6L46.8,36.1L46.8,35.8L47.3,36.0ZM323.6,39.3L324.7,41.0L323.2,40.7L322.6,42.1L323.5,43.2L323.5,43.9L322.7,43.3L322.1,44.0L321.9,43.2L322.0,42.2L321.9,41.1L322.1,40.4L322.2,39.0L321.6,38.1L321.7,36.7L322.6,36.2L322.2,35.8L322.7,35.6L322.9,36.3L323.3,37.3L323.2,38.2L323.6,39.3ZM173.2,37.7L171.4,38.3L170.0,38.2L170.8,37.1L170.3,36.1L171.7,35.3L172.4,34.9L173.3,34.8L174.3,35.4L173.8,36.1L174.0,36.8L173.2,37.7ZM192.7,34.4L192.1,35.2L191.0,34.6L190.9,34.2L192.4,33.9L192.7,34.4ZM27.0,32.9L26.0,33.3L25.5,33.0L25.3,32.5L26.2,32.2L26.8,32.0L27.4,32.1L27.9,32.4L27.0,32.9ZM177.0,31.4L175.9,32.4L176.9,32.3L178.0,32.3L177.8,33.1L176.9,34.0L177.9,34.1L178.9,35.4L179.6,35.5L180.2,36.7L180.5,37.1L181.7,37.3L181.6,37.9L181.1,38.2L181.4,38.7L180.6,39.2L179.2,39.2L177.5,39.5L177.0,39.3L176.4,39.8L175.5,39.7L174.8,40.0L174.2,39.8L175.7,38.8L176.6,38.6L175.0,38.4L174.7,38.0L175.8,37.7L175.2,37.2L175.4,36.5L176.9,36.6L177.1,36.0L176.4,35.4L175.2,35.2L174.9,34.9L175.3,34.5L175.0,34.2L174.4,34.7L174.4,33.7L173.9,33.2L174.2,32.2L175.0,31.4L175.8,31.4L177.0,31.4ZM14.4,30.1L13.8,30.2L13.2,30.1L12.5,29.8L13.5,29.6L14.3,29.7L14.4,30.1ZM100.7,27.8L100.3,28.4L99.9,28.3L99.6,28.0L99.7,27.9L100.1,27.6L100.5,27.6L100.7,27.8ZM98.1,27.3L96.9,27.8L96.2,27.8L96.0,27.5L96.7,27.1L98.1,27.1L98.1,27.3ZM8.3,26.2L8.9,26.4L9.5,26.3L10.3,26.6L11.3,26.7L11.2,26.8L10.5,27.0L9.7,26.8L9.3,26.6L8.4,26.7L8.2,26.6L8.3,26.2ZM94.8,24.3L95.0,24.8L95.5,24.6L96.1,24.9L97.2,25.2L98.4,25.5L98.4,26.0L99.2,25.9L99.9,26.3L99.0,26.6L97.5,26.3L96.9,25.9L95.9,26.4L94.5,26.9L94.1,26.4L92.8,26.5L93.6,26.0L93.8,25.2L94.1,24.3L94.8,24.3ZM165.5,23.5L165.3,24.2L166.4,24.9L165.1,25.6L162.2,26.3L161.3,26.5L160.0,26.4L157.2,26.0L158.2,25.6L156.0,25.1L157.8,24.9L157.8,24.6L155.7,24.4L156.3,23.7L157.9,23.6L159.4,24.3L160.9,23.7L162.2,24.0L163.8,23.5L165.5,23.5ZM104.1,22.9L103.0,22.9L102.8,22.4L103.2,21.9L104.1,21.7L104.9,22.0L104.9,22.4L104.8,22.6L104.1,22.9ZM5.0,23.4L5.7,23.7L5.4,22.9L8.1,23.1L10.1,24.0L9.1,24.5L7.5,24.6L7.4,25.5L7.0,25.7L6.1,25.7L5.3,25.4L4.0,25.1L3.8,24.6L2.8,24.5L1.6,24.6L1.1,24.3L1.3,23.9L0.1,24.1L0.6,24.6L0.0,25.0L0.0,21.0L2.4,21.8L5.1,22.8L5.0,23.4ZM84.4,20.9L83.7,21.2L82.4,20.9L81.6,21.0L80.2,20.6L81.1,20.3L81.8,19.9L82.8,20.1L83.4,20.3L83.7,20.5L84.4,20.9ZM360.0,19.2L358.9,19.2L358.7,18.9L360.0,18.5L360.0,19.2ZM1.3,19.1L0.0,19.2L0.0,18.5L0.1,18.4L1.0,18.4L2.4,18.7L2.3,18.9L1.3,19.1ZM89.5,20.5L89.4,21.5L90.8,20.7L92.0,21.4L91.7,22.1L92.6,22.8L93.7,22.1L94.4,21.2L94.5,20.1L95.9,20.2L97.4,20.3L98.7,20.8L98.8,21.3L98.0,21.9L98.7,22.4L98.6,22.9L96.7,23.6L95.3,23.7L94.2,23.4L93.9,23.9L93.0,24.8L92.7,25.2L91.5,25.9L90.1,26.0L89.3,26.4L89.2,27.0L88.1,27.2L86.8,28.0L85.8,29.1L85.4,29.9L85.3,31.1L86.8,31.2L87.2,32.2L87.7,32.9L89.1,32.7L91.0,33.1L92.0,33.5L92.7,34.0L93.9,34.3L95.0,34.7L96.6,34.8L97.7,34.9L97.6,35.7L97.9,36.7L98.6,37.8L100.1,38.8L100.9,38.5L101.4,37.4L100.9,35.9L100.2,35.3L101.8,34.9L102.9,34.2L103.5,33.5L103.4,32.8L102.7,31.9L101.5,31.2L102.7,30.1L102.2,29.2L101.9,27.7L102.6,27.4L104.3,27.7L105.3,27.8L106.2,27.6L107.1,27.9L108.3,28.5L108.6,28.9L110.4,28.9L110.4,29.8L110.7,31.0L111.6,31.2L112.4,31.8L113.8,31.2L114.8,30.1L115.4,29.7L116.2,30.6L117.5,31.8L118.6,33.0L118.2,33.7L119.5,34.2L120.4,34.8L122.0,35.1L122.7,35.4L123.1,36.2L123.8,36.4L124.2,36.7L124.3,37.9L123.6,38.2L122.9,38.6L121.2,38.9L120.0,39.8L118.3,39.9L116.1,39.7L114.6,39.7L113.6,39.8L112.8,40.5L111.5,40.9L110.0,42.3L108.9,43.2L109.7,43.0L111.3,41.7L113.4,40.9L114.9,40.8L115.8,41.3L114.9,41.9L115.2,43.0L115.5,43.8L116.8,44.3L118.5,44.1L119.5,43.0L119.6,43.7L120.2,44.1L119.0,44.7L116.7,45.3L115.8,45.7L114.6,46.5L113.9,46.4L113.8,45.5L115.6,44.7L114.0,44.7L112.9,44.9L113.0,45.2L112.0,45.7L110.9,46.0L109.9,46.3L109.3,47.0L109.2,47.1L109.2,47.7L109.5,48.2L109.9,48.2L109.8,47.9L110.1,48.1L110.0,48.4L109.4,48.5L108.9,48.5L108.1,48.7L107.7,48.7L107.1,48.8L106.3,49.1L107.8,48.9L108.1,49.1L106.7,49.4L106.0,49.4L106.0,49.2L105.7,49.5L106.0,49.6L105.8,50.3L105.1,51.1L105.0,50.8L104.8,50.8L104.5,50.5L104.7,51.0L104.9,51.2L104.9,51.6L104.6,52.0L104.1,52.8L104.0,52.7L104.3,52.1L103.8,51.7L103.7,50.8L103.5,51.3L103.7,51.9L103.0,51.8L103.7,52.1L103.7,53.0L104.0,53.1L104.1,53.4L104.3,54.4L103.6,55.2L102.6,55.5L101.9,56.1L101.4,56.1L100.9,56.5L100.8,56.8L99.7,57.5L99.1,58.0L98.7,58.6L98.5,59.3L98.7,60.0L99.0,60.8L99.5,61.5L99.5,62.0L99.9,63.1L99.9,63.8L99.9,64.2L99.6,64.8L99.3,64.9L98.8,64.8L98.7,64.4L98.3,64.1L97.8,63.3L97.3,62.5L97.1,62.1L97.3,61.4L97.1,60.9L96.3,60.1L95.9,59.9L94.9,60.4L94.7,60.3L94.2,59.8L93.6,59.6L92.5,59.7L91.6,59.6L90.8,59.7L90.4,59.8L90.6,60.1L90.6,60.5L90.8,60.7L90.6,60.8L90.2,60.7L89.8,60.9L89.1,60.9L88.4,60.3L87.5,60.4L86.8,60.2L86.2,60.3L85.3,60.5L84.4,61.3L83.4,61.7L82.9,62.2L82.6,62.6L82.6,63.3L82.7,63.8L82.9,64.1L82.9,64.1L82.9,64.1L82.5,65.0L82.3,65.7L82.2,67.1L82.1,67.6L82.3,68.1L82.6,68.6L82.8,69.4L83.5,70.1L83.7,70.7L84.1,71.2L85.2,71.4L85.6,71.9L86.5,71.6L87.2,71.5L88.0,71.3L88.6,71.1L89.2,70.7L89.5,70.1L89.5,69.3L89.7,69.0L90.4,68.7L91.5,68.5L92.3,68.5L92.9,68.5L93.2,68.7L93.2,69.2L92.6,69.7L92.4,70.4L92.6,70.5L92.4,71.0L92.2,71.7L91.9,71.5L91.7,71.5L91.7,71.6L91.9,71.7L91.9,71.9L91.7,72.4L91.8,72.5L91.7,72.9L91.8,73.0L91.6,73.5L91.4,73.7L91.3,73.8L91.1,74.1L91.4,74.3L91.5,74.1L91.8,74.3L91.9,74.3L92.1,74.1L92.4,74.1L92.5,74.2L92.6,74.2L93.1,74.2L93.6,74.2L93.9,74.1L94.0,74.0L94.3,74.0L94.6,74.1L94.8,74.1L95.0,74.0L95.5,74.1L95.6,74.2L95.9,74.4L96.2,74.6L96.6,74.7L96.9,75.0L96.8,75.1L96.7,75.3L96.8,75.7L96.6,76.0L96.5,76.4L96.4,76.9L96.5,77.1L96.5,77.6L96.4,77.7L96.3,78.1L96.3,78.4L96.1,78.6L96.2,78.9L96.3,79.1L96.6,79.6L97.0,80.0L97.5,80.4L97.8,80.8L97.8,81.0L98.2,81.0L98.3,81.0L98.6,81.2L99.1,81.1L99.5,80.9L100.1,80.7L100.4,80.4L101.0,80.4L100.9,80.5L101.5,80.6L101.9,80.8L102.3,81.1L102.6,81.3L103.2,81.4L103.9,80.7L104.3,80.6L104.3,80.2L104.5,79.4L105.1,78.9L105.7,78.9L105.8,78.7L106.6,78.8L107.4,78.3L107.8,78.0L108.2,77.6L108.6,77.6L108.9,77.9L108.7,78.2L108.6,78.5L108.1,78.6L108.4,79.0L108.4,79.6L107.9,80.1L108.3,80.9L108.7,80.9L109.0,80.1L108.6,79.8L108.6,79.0L109.8,78.6L109.7,78.2L110.1,77.8L110.4,78.5L111.1,78.6L111.8,79.1L111.8,79.4L112.7,79.5L113.8,79.4L114.3,79.8L115.1,79.9L115.7,79.6L115.7,79.4L116.9,79.3L118.1,79.3L117.3,79.6L117.6,80.1L118.4,80.1L119.2,80.6L119.3,81.4L119.8,81.4L120.2,81.6L120.9,82.0L121.5,82.7L121.5,83.2L121.9,83.2L122.5,83.7L122.9,84.0L124.1,84.2L124.2,84.0L125.0,84.0L126.0,84.2L126.4,84.4L127.1,84.6L128.2,85.4L128.3,85.8L128.7,85.8L128.9,86.3L129.5,88.1L130.0,88.3L130.1,89.0L129.3,89.8L129.6,90.1L131.4,90.2L131.4,91.2L132.2,90.6L133.4,90.9L135.1,91.6L135.6,92.1L135.4,92.7L136.6,92.4L138.5,92.9L140.0,92.9L141.5,93.7L142.8,94.8L143.5,95.1L144.4,95.1L144.8,95.5L145.1,96.7L145.3,97.3L144.9,99.0L144.4,99.6L143.0,101.0L142.3,102.2L141.6,103.0L141.3,103.1L141.0,103.8L141.1,105.7L140.8,107.2L140.7,107.9L140.4,108.3L140.2,109.6L139.2,110.9L139.1,111.9L138.2,112.4L138.0,113.0L136.9,113.0L135.4,113.4L134.6,113.8L133.5,114.1L132.4,114.9L131.5,115.9L131.4,116.6L131.5,117.2L131.3,118.2L131.1,118.7L130.4,119.2L129.3,121.0L128.4,121.8L127.7,122.2L127.3,123.2L126.6,123.8L126.2,124.4L125.1,125.0L124.3,124.8L123.8,124.9L122.9,124.4L122.2,124.5L121.6,123.9L121.5,124.4L122.8,125.3L122.6,126.0L123.3,126.4L123.2,126.9L122.3,128.2L120.8,128.7L118.8,128.9L117.7,128.8L117.9,129.4L117.7,130.2L117.9,130.7L117.3,131.0L116.2,131.2L115.3,130.8L114.9,131.1L115.0,132.1L115.7,132.4L116.2,132.0L116.5,132.6L115.6,132.9L114.8,133.5L114.7,134.5L114.4,135.0L113.5,135.0L112.7,135.6L112.4,136.3L113.4,137.0L114.4,137.2L114.0,138.1L112.8,138.7L112.2,139.9L111.3,140.3L110.9,140.7L111.2,141.8L111.8,142.3L111.4,142.3L110.5,142.3L110.1,142.5L109.2,142.9L109.0,143.8L108.6,143.9L107.4,143.5L106.3,142.8L105.1,142.3L104.7,141.6L105.0,141.0L104.5,140.4L104.4,138.7L104.8,137.7L105.9,136.9L104.4,136.6L105.3,135.8L105.6,134.1L106.8,134.5L107.3,132.4L106.6,132.1L106.3,133.4L105.7,133.2L106.0,131.8L106.3,129.9L106.8,129.3L106.5,128.3L106.4,127.2L106.8,127.1L107.4,125.5L108.1,123.9L108.6,122.4L108.3,120.9L108.6,120.1L108.5,118.9L109.1,117.6L109.3,115.7L109.6,113.6L109.9,111.4L109.8,109.8L109.6,108.3L108.6,107.8L108.5,107.4L106.6,106.4L104.8,105.3L104.0,104.6L103.6,103.8L103.7,103.5L102.9,102.2L101.9,100.4L101.0,98.4L100.6,97.9L100.2,97.2L99.5,96.5L98.8,96.1L99.1,95.7L98.6,94.7L98.9,94.0L99.7,93.4L100.2,92.7L100.0,92.2L99.6,92.7L99.0,92.2L99.2,92.0L99.1,91.1L99.4,90.9L99.6,90.3L100.0,89.6L99.9,89.2L100.5,89.0L101.1,88.6L101.0,88.3L101.4,88.2L101.3,87.7L101.6,87.4L102.1,87.3L102.5,86.7L102.9,86.2L102.5,85.9L102.7,85.3L102.5,84.4L102.7,84.2L102.5,83.3L102.1,82.8L101.8,82.5L101.6,81.9L101.8,81.7L101.6,81.6L101.4,81.3L100.9,81.0L100.4,81.1L100.2,81.4L99.8,81.7L99.6,81.7L99.5,81.9L100.0,82.5L99.7,82.6L99.6,82.7L99.1,82.8L98.9,82.2L98.8,82.4L98.5,82.3L98.3,81.9L97.9,81.8L97.6,81.7L97.2,81.7L97.1,81.9L97.0,81.8L96.5,81.6L96.3,81.3L96.4,81.2L96.4,80.9L96.1,80.7L95.7,80.5L95.4,80.4L95.3,80.1L95.0,79.9L95.1,80.2L94.9,80.4L94.7,80.2L94.3,80.1L94.2,79.9L94.2,79.6L94.3,79.2L94.1,79.1L94.3,78.9L93.9,78.6L93.5,78.2L93.3,77.9L92.8,77.5L92.3,77.1L92.4,76.9L92.6,77.1L92.7,77.0L92.5,76.7L92.2,76.6L92.1,76.9L91.5,76.8L91.2,76.7L90.7,76.5L90.2,76.5L89.9,76.3L89.4,76.1L88.8,76.1L88.3,75.9L87.8,75.5L86.6,74.4L86.1,74.1L85.3,73.8L84.7,73.9L83.9,74.2L83.4,74.3L82.7,74.1L82.0,73.9L81.1,73.4L80.3,73.3L79.2,72.8L78.3,72.4L78.1,72.1L77.5,72.0L76.5,71.7L76.1,71.3L75.0,70.7L74.5,70.1L74.3,69.6L74.6,69.5L74.5,69.2L74.7,68.9L74.7,68.6L74.4,68.1L74.3,67.7L74.0,67.2L73.1,66.2L72.1,65.5L71.6,64.8L70.7,64.4L70.6,64.2L70.7,63.6L70.2,63.3L69.6,62.8L69.4,62.1L68.8,62.1L68.2,61.5L67.8,61.0L67.7,60.7L67.2,60.0L66.8,59.2L66.9,58.8L66.1,58.4L65.8,58.5L65.2,58.2L65.1,58.6L65.2,59.1L65.3,59.8L65.7,60.2L66.4,60.9L66.6,61.2L66.7,61.2L66.9,61.6L67.0,61.6L67.2,62.2L67.5,62.5L67.8,62.8L68.4,63.3L68.7,64.3L69.0,64.7L69.3,65.2L69.3,65.7L69.8,65.7L70.2,66.2L70.6,66.6L70.6,66.8L70.1,67.2L70.0,67.2L69.7,66.6L69.1,66.0L68.3,65.5L67.8,65.3L67.9,64.5L67.7,64.0L67.2,63.7L66.5,63.2L66.4,63.4L66.2,63.1L65.5,62.9L64.9,62.3L65.0,62.2L65.4,62.3L65.8,61.9L65.8,61.4L65.1,60.7L64.5,60.4L64.1,59.8L63.7,59.2L63.3,58.4L62.9,57.5L62.7,57.0L62.1,56.4L61.6,56.3L61.5,56.0L60.9,55.9L60.6,55.7L59.6,55.6L59.4,55.4L59.3,54.8L58.3,53.8L57.5,52.4L57.5,52.2L57.0,51.9L56.3,51.0L56.1,50.2L55.6,49.7L55.8,48.9L55.8,48.0L55.5,47.2L55.9,46.3L56.1,44.5L55.9,43.1L55.6,42.3L55.3,41.8L55.4,41.6L56.9,42.0L57.4,42.9L57.7,42.6L57.5,41.8L57.2,41.0L57.0,41.0L55.1,40.0L54.4,39.6L52.6,39.2L52.0,38.3L52.1,37.7L50.9,37.2L50.7,36.4L49.5,35.7L49.5,35.2L48.9,34.8L48.0,34.5L47.8,33.6L46.5,32.8L45.9,31.9L45.0,31.8L43.4,31.8L42.2,31.5L40.1,30.5L39.2,30.3L37.4,29.9L36.0,30.0L34.1,29.5L32.9,29.1L31.8,29.3L32.0,30.0L31.4,30.1L30.3,30.3L29.4,30.6L28.3,30.8L28.1,30.3L28.6,29.3L29.7,29.0L29.4,28.7L28.1,29.3L27.4,29.9L26.0,30.6L26.7,31.1L25.8,31.9L24.7,32.3L23.7,32.6L23.4,33.0L21.9,33.5L21.6,34.0L20.4,34.4L19.7,34.4L18.8,34.6L17.8,35.0L16.9,35.3L15.2,35.6L15.1,35.4L16.2,35.0L17.1,34.7L18.2,34.1L19.4,34.0L19.9,33.6L21.3,33.0L21.5,32.8L22.3,32.4L22.4,31.7L23.0,31.1L21.8,31.4L21.5,31.2L20.9,31.6L20.3,31.1L20.0,31.4L19.6,30.9L18.6,31.3L18.0,31.3L17.9,30.7L18.1,30.4L17.5,30.0L16.2,30.2L15.3,29.7L14.7,29.5L14.6,28.9L13.9,28.5L14.3,27.9L15.1,27.4L15.4,26.9L16.2,26.8L16.9,26.9L17.7,26.5L18.5,26.5L19.2,26.2L19.0,25.8L18.5,25.6L19.2,25.2L18.6,25.2L17.5,25.4L17.2,25.7L16.5,25.4L15.0,25.6L13.6,25.3L13.2,24.9L11.9,24.3L13.3,23.9L15.5,23.4L16.3,23.4L16.2,23.9L18.3,23.9L17.5,23.3L16.3,22.9L15.6,22.4L14.6,22.0L13.2,21.6L13.8,21.1L15.6,21.1L16.8,20.6L17.1,20.1L18.1,19.7L19.1,19.6L21.0,19.1L21.9,19.2L23.4,18.6L24.9,18.9L25.7,19.3L26.1,19.1L27.8,19.2L27.7,19.4L29.3,19.6L30.3,19.5L32.4,19.8L34.3,19.9L35.1,20.0L36.4,19.8L37.9,20.1L39.0,20.3L40.9,20.5L42.5,21.0L43.5,21.1L44.4,20.7L45.6,20.4L47.1,20.5L48.6,20.1L50.2,19.8L50.9,20.2L51.6,20.0L51.9,19.5L52.6,19.6L54.2,20.5L55.6,19.8L55.7,20.6L56.9,20.4L57.3,20.1L58.5,20.2L60.1,20.6L62.4,21.0L63.8,21.2L64.8,21.1L66.1,21.6L64.7,22.1L66.5,22.3L69.2,22.2L70.1,22.0L71.1,22.6L72.2,22.1L71.2,21.7L71.8,21.3L73.0,21.3L73.8,21.2L74.7,21.4L75.7,22.0L76.8,21.9L78.5,22.4L80.1,22.2L81.6,22.2L81.4,21.6L82.3,21.4L83.9,21.8L83.9,22.7L84.5,21.9L85.3,21.9L85.8,20.9L84.7,20.3L83.5,19.9L83.6,18.8L84.8,18.1L86.1,18.2L87.1,18.7L88.5,19.8L87.6,20.3L89.5,20.5ZM65.8,16.9L65.3,17.3L67.6,17.0L68.9,17.5L70.1,17.0L71.0,17.4L71.8,18.3L72.3,17.9L71.6,16.9L72.5,16.8L73.5,16.9L74.6,17.3L75.2,18.3L75.5,19.0L77.2,19.5L79.0,20.0L78.9,20.4L77.3,20.5L77.9,20.9L77.6,21.2L75.8,21.1L74.0,20.8L72.9,20.9L71.0,21.2L68.0,21.4L66.7,21.5L66.1,21.0L64.8,20.7L63.9,20.8L62.7,20.0L63.3,19.9L64.9,19.8L66.3,19.8L67.6,19.6L65.7,19.4L63.5,19.5L62.1,19.5L61.6,19.1L63.9,18.7L62.3,18.7L60.6,18.4L61.4,17.7L62.1,17.3L64.8,16.7L65.8,16.9ZM75.5,16.6L74.6,17.2L73.1,16.5L73.4,16.4L74.7,16.4L75.5,16.6ZM103.7,16.9L103.7,17.2L102.7,17.1L101.6,17.1L100.5,17.3L100.2,17.2L99.1,16.7L99.2,16.3L99.6,16.2L101.9,16.3L103.7,16.9ZM93.4,16.8L94.2,17.5L95.1,16.7L97.7,16.2L99.4,17.3L99.3,17.9L101.2,17.6L102.2,17.3L104.4,17.8L105.8,18.2L105.9,18.7L107.8,18.4L108.8,19.1L111.2,19.5L112.1,19.9L113.0,20.8L111.2,21.3L113.6,21.9L115.1,22.2L116.6,23.1L118.1,23.1L117.8,23.8L116.1,25.0L114.9,24.6L113.3,23.6L112.0,23.7L111.9,24.3L112.9,24.9L114.3,25.4L114.7,25.6L115.3,26.6L115.0,27.3L113.7,27.1L111.2,26.3L112.6,27.1L113.7,27.7L113.8,28.1L111.1,27.7L109.0,27.1L107.8,26.6L108.1,26.3L106.6,25.8L105.2,25.3L105.2,25.6L102.3,25.8L101.4,25.4L102.1,24.7L104.0,24.7L106.0,24.5L105.7,24.2L106.1,23.7L107.3,22.7L107.1,22.3L106.7,21.9L105.2,21.4L103.1,21.1L103.8,20.9L102.7,20.2L101.8,20.2L101.0,19.8L100.5,20.1L98.7,20.3L95.1,20.0L92.9,19.7L91.3,19.6L90.5,19.2L91.5,18.8L90.1,18.8L89.8,17.8L90.6,16.9L91.6,16.5L94.2,16.2L93.4,16.8ZM79.6,16.2L80.8,16.4L82.6,16.2L82.9,16.5L81.9,17.0L83.5,17.4L83.3,18.3L81.6,18.7L80.7,18.6L80.0,18.3L77.5,17.5L77.5,17.2L79.6,17.3L78.5,16.6L79.6,16.2ZM323.6,16.8L322.1,16.8L320.0,16.7L319.9,16.6L320.8,16.2L322.1,16.1L323.5,16.5L323.6,16.8ZM86.8,17.2L85.7,18.0L84.6,17.9L84.0,17.1L84.0,16.6L84.5,16.1L85.5,15.9L87.6,15.9L89.5,16.1L88.0,17.0L86.8,17.2ZM59.5,18.6L56.9,19.1L56.4,18.7L54.1,18.1L54.4,17.8L55.2,17.0L56.1,16.3L55.1,15.7L58.5,15.6L59.9,15.8L62.4,15.8L63.4,16.1L64.5,16.5L63.2,16.8L60.8,17.5L59.5,18.2L59.5,18.6ZM330.7,14.9L329.6,15.3L328.0,15.2L326.1,14.8L326.4,14.5L328.2,14.7L330.7,14.9ZM86.4,15.0L85.8,15.4L84.4,15.3L83.2,15.1L83.7,14.6L85.1,14.4L86.0,14.7L86.4,15.0ZM325.1,14.4L324.3,15.2L320.6,15.2L319.0,15.4L317.0,14.7L317.5,14.1L318.8,13.9L321.5,13.9L325.1,14.4ZM81.5,13.3L82.3,13.7L82.3,14.3L81.8,15.0L80.2,15.1L79.1,14.9L79.1,14.4L77.5,14.4L77.4,13.7L78.5,13.7L80.0,13.4L81.4,13.4L81.5,13.3ZM71.8,13.8L72.2,14.2L73.1,14.0L74.1,14.0L74.3,14.5L73.7,15.0L70.3,15.2L67.8,15.6L66.3,15.6L66.1,15.3L68.2,14.8L63.7,15.0L62.3,14.8L63.7,13.8L64.6,13.5L67.4,13.9L69.2,14.5L70.9,14.5L69.5,13.6L70.4,13.2L71.5,13.3L71.8,13.8ZM237.5,19.3L236.9,19.4L233.7,19.2L233.4,18.8L231.6,18.5L231.5,18.0L232.5,17.8L232.4,17.2L234.4,16.4L233.5,16.3L235.9,15.4L235.6,14.9L237.9,14.4L241.2,13.7L244.5,13.6L246.2,13.2L248.2,13.1L248.9,13.5L248.2,13.8L244.6,14.3L241.6,14.7L238.5,15.7L237.0,16.7L235.4,17.6L235.6,18.5L237.5,19.3ZM85.3,12.9L86.4,13.2L88.4,13.2L89.3,13.6L89.0,13.9L90.2,14.2L90.8,14.4L92.2,14.4L93.6,14.5L95.2,14.3L97.2,14.2L98.9,14.3L99.9,14.7L100.2,15.1L99.5,15.3L98.1,15.6L96.8,15.4L93.9,15.6L91.8,15.6L90.2,15.5L87.6,15.2L87.2,14.6L87.1,14.1L86.1,13.7L84.0,13.6L82.9,13.2L83.3,12.8L85.3,12.9ZM63.8,12.4L63.7,13.1L62.9,13.5L62.0,13.5L60.1,13.9L58.5,14.1L57.1,13.9L57.1,13.9L58.8,13.1L60.9,12.5L62.4,12.5L63.8,12.4ZM287.0,13.0L287.2,13.5L288.2,13.3L291.1,13.3L293.3,13.8L294.1,14.2L293.9,14.7L292.8,15.0L290.2,15.5L289.4,15.8L290.6,16.0L292.1,16.2L293.0,16.0L293.5,16.7L294.0,16.4L295.6,16.2L298.8,16.4L299.0,16.9L303.2,17.0L303.3,16.3L305.4,16.4L307.0,16.4L308.6,17.0L309.1,17.6L308.5,18.0L309.7,18.8L311.3,19.2L312.3,18.2L313.9,18.6L315.6,18.3L317.5,18.7L318.2,18.4L319.9,18.5L319.1,17.6L320.5,17.2L329.5,17.8L330.4,18.4L333.0,19.2L337.0,19.0L339.0,19.1L339.8,19.5L339.7,20.3L340.9,20.6L342.3,20.4L344.1,20.3L345.9,20.5L347.8,20.4L349.6,21.3L350.8,21.0L350.0,20.3L350.5,19.9L353.6,20.2L355.7,20.1L358.6,20.6L360.0,21.0L360.0,25.0L360.0,25.0L358.7,25.5L357.4,25.4L358.3,25.9L358.9,26.7L359.4,27.0L359.5,27.4L359.2,27.7L357.4,27.5L354.6,28.2L353.7,28.3L352.2,29.0L350.7,29.7L350.3,30.1L348.9,29.4L346.3,30.2L345.8,29.8L344.9,30.3L343.5,30.1L343.2,30.8L342.0,31.8L342.1,32.2L343.2,32.4L343.1,33.8L342.1,33.9L341.7,34.7L342.1,35.1L340.4,35.7L340.0,36.8L338.5,37.0L338.2,38.1L336.8,39.0L336.4,38.3L336.0,36.8L335.4,34.6L335.9,33.2L336.8,32.6L336.8,32.2L338.4,31.9L340.2,30.7L341.9,29.7L343.7,28.9L344.5,27.4L343.3,27.5L342.7,28.4L340.1,29.5L339.3,28.2L336.7,28.6L334.2,30.2L335.0,30.9L332.8,31.1L331.3,31.2L331.3,30.5L329.8,30.3L328.5,30.8L325.5,30.7L322.2,31.0L319.0,32.9L315.1,35.3L316.7,35.4L317.2,36.0L318.2,36.2L318.8,35.7L319.9,35.8L321.3,36.9L321.4,37.8L320.6,38.8L320.5,40.0L320.1,41.6L318.6,43.0L318.2,43.7L316.9,44.9L315.5,46.0L314.9,46.6L313.5,47.2L312.9,47.2L312.3,46.7L310.9,47.4L310.8,47.8L310.4,47.7L310.0,48.1L309.7,48.4L309.7,49.1L309.2,49.3L309.0,49.5L308.6,49.8L308.0,50.0L307.5,50.2L307.5,50.7L307.4,50.8L307.8,50.9L308.3,51.4L309.2,52.6L309.5,53.2L309.5,54.4L309.1,54.9L308.2,55.1L307.4,55.5L306.5,55.6L306.4,55.1L306.6,54.3L306.1,53.3L306.9,53.1L306.2,52.3L305.7,52.1L305.6,52.2L305.3,52.3L305.2,52.1L305.0,52.1L304.7,51.9L305.0,51.5L305.2,51.3L305.1,51.2L305.4,50.6L305.3,50.4L304.7,50.3L304.3,50.1L302.9,50.4L302.1,50.8L301.1,51.1L301.6,50.6L301.4,50.2L302.2,49.6L301.6,49.1L300.8,49.4L299.6,50.1L299.0,50.7L298.0,50.8L297.5,51.3L298.1,51.9L298.9,52.1L298.9,52.6L299.7,52.8L300.8,52.1L301.7,52.5L302.4,52.5L302.5,53.1L301.1,53.3L300.6,53.9L299.7,54.4L299.2,55.1L300.2,55.6L300.6,56.6L301.2,57.5L301.9,58.3L301.9,59.1L301.3,59.3L301.5,59.9L302.1,60.2L301.9,61.0L301.7,61.8L301.1,61.9L300.4,62.9L299.6,64.3L298.7,65.5L297.3,66.4L295.9,67.2L294.8,67.3L294.2,67.8L293.8,67.5L293.2,67.9L291.8,68.4L290.8,68.6L290.4,69.7L289.9,69.7L289.6,69.0L289.9,68.6L288.5,68.3L288.1,68.4L286.7,69.3L285.9,70.2L285.7,70.9L286.4,72.0L287.4,73.3L288.3,73.9L288.9,74.7L289.3,76.6L289.2,78.3L288.4,79.0L287.2,79.6L286.4,80.5L285.2,81.4L284.8,80.8L285.1,80.1L284.3,79.5L283.5,79.4L283.1,78.8L282.6,77.8L281.7,77.4L280.8,77.4L281.0,76.6L280.1,76.6L280.0,77.7L279.5,79.2L279.2,80.0L279.2,80.8L279.9,80.8L280.3,81.7L280.5,82.6L281.0,83.1L281.6,83.3L282.1,83.8L282.4,83.9L283.0,84.5L283.4,85.1L283.4,85.8L283.3,86.3L283.4,86.6L283.5,87.2L283.9,87.5L284.2,88.4L284.2,88.7L283.5,88.8L282.6,88.0L281.4,87.2L281.3,86.7L280.7,86.1L280.6,85.2L280.2,84.7L280.3,84.0L280.1,83.5L279.7,83.2L279.5,82.7L279.0,82.1L278.5,81.6L278.3,82.2L278.2,81.6L278.3,81.0L278.6,80.1L278.5,79.3L278.8,78.6L278.4,78.0L278.5,76.9L278.1,76.4L277.8,75.2L277.6,73.9L277.2,73.1L276.5,73.6L275.4,74.3L274.8,74.2L274.2,74.0L274.5,72.7L274.3,71.8L273.5,70.6L273.7,70.3L273.1,70.1L272.4,69.3L272.1,68.8L272.0,68.3L271.8,67.8L271.4,67.2L270.5,67.2L270.6,67.6L270.3,68.2L269.8,68.0L269.7,68.1L269.4,68.0L269.0,67.9L268.9,68.3L268.2,68.3L267.0,68.5L267.0,69.3L266.5,69.8L265.1,70.5L263.9,71.7L263.2,72.3L262.2,73.0L262.2,73.4L261.7,73.7L260.8,74.0L260.3,74.1L260.0,74.9L260.2,76.2L260.3,77.0L259.9,77.9L259.9,79.6L259.3,79.7L258.9,80.5L259.2,80.8L258.3,81.1L257.9,81.7L257.5,82.0L256.6,81.1L256.1,79.7L255.7,78.7L255.4,78.2L254.9,77.3L254.6,76.0L254.4,75.4L253.5,74.0L253.1,72.1L252.8,70.8L252.8,69.6L252.6,68.6L251.2,69.2L250.5,69.1L249.2,67.9L249.6,67.5L249.3,67.2L248.2,66.3L247.4,66.1L247.1,65.3L246.4,64.6L244.5,64.8L242.9,64.8L241.5,64.9L239.6,64.6L238.5,64.4L237.4,64.3L237.0,63.0L236.5,62.9L235.7,63.0L234.7,63.5L233.5,63.2L232.5,62.4L231.5,62.1L230.9,61.2L230.1,59.9L229.6,60.0L228.9,59.7L228.6,60.1L228.0,60.0L228.2,60.5L228.1,60.7L228.4,61.4L228.8,62.3L229.3,62.5L229.5,62.9L230.2,63.3L230.2,63.7L230.1,64.1L230.2,64.4L230.5,64.7L230.7,65.0L230.8,65.2L230.7,64.5L231.0,64.0L231.3,63.9L231.6,64.2L231.6,64.8L231.4,65.4L231.6,65.8L231.8,65.7L231.8,66.0L232.6,65.8L233.4,65.8L234.0,65.9L234.7,65.2L235.4,64.6L236.1,63.9L236.4,63.6L236.5,63.7L236.4,64.1L236.3,64.3L236.4,65.1L236.8,65.8L237.4,66.1L238.1,66.3L238.7,66.4L239.2,67.0L239.5,67.3L239.8,67.5L239.8,67.7L239.4,68.3L239.3,68.6L238.9,68.9L238.5,69.6L238.0,69.5L237.8,69.8L237.7,70.3L237.8,70.9L237.7,71.1L237.2,71.1L236.6,71.4L236.5,71.9L236.3,72.1L235.7,72.1L235.3,72.4L235.3,72.8L234.8,73.0L234.2,73.0L233.6,73.3L233.1,73.3L232.4,73.6L232.2,74.1L232.2,74.4L231.2,74.8L229.6,75.3L228.7,76.0L228.2,76.1L227.9,76.0L227.4,76.4L226.7,76.6L225.9,76.7L225.6,76.7L225.4,77.0L225.1,77.0L225.0,77.3L224.5,77.3L224.2,77.4L223.5,77.4L223.2,76.8L223.3,76.2L223.1,75.9L222.9,75.2L222.6,74.8L222.8,74.7L222.7,74.3L222.8,74.1L222.8,73.7L222.6,73.2L222.3,72.9L222.3,72.5L221.8,72.2L221.2,71.3L220.9,70.5L220.2,69.8L219.8,69.7L219.1,68.7L219.0,68.0L219.1,67.4L218.5,66.3L218.0,65.9L217.5,65.7L217.2,65.1L217.2,64.9L216.9,64.4L216.6,64.2L216.2,63.4L215.6,62.6L215.1,61.9L214.6,61.9L214.8,61.4L214.8,61.0L215.0,60.6L214.9,60.5L214.6,60.9L214.4,61.7L214.2,62.2L213.9,62.4L213.6,62.0L213.1,61.6L212.4,60.1L212.3,60.2L212.7,61.3L213.3,62.3L214.1,63.9L214.5,64.4L214.8,65.0L215.7,66.1L215.5,66.2L215.5,66.9L216.7,67.8L216.9,68.0L217.2,69.0L217.0,69.2L217.1,70.2L217.5,71.4L217.9,71.6L218.4,72.0L219.0,73.2L219.3,74.1L219.8,74.6L221.2,75.5L221.7,76.1L222.3,76.7L222.6,77.0L223.1,77.3L223.3,77.6L223.3,78.0L222.7,78.3L223.1,78.5L223.5,78.7L223.7,79.1L224.1,79.6L224.6,79.6L225.6,79.3L226.6,79.2L227.5,78.9L228.0,78.8L228.4,78.6L228.9,78.6L229.3,78.6L229.7,78.4L230.3,78.3L230.7,78.0L231.1,78.0L231.1,78.3L231.0,78.8L231.0,79.4L230.8,79.7L230.6,80.8L230.1,81.9L229.5,83.2L228.6,84.7L227.7,85.8L226.6,87.1L225.6,88.0L224.1,88.9L223.1,89.7L222.0,90.9L221.8,91.4L221.6,91.7L220.9,92.1L220.6,92.5L220.3,92.6L220.1,93.3L219.8,93.7L219.6,94.3L219.2,94.7L218.7,95.9L218.8,96.5L219.4,96.8L219.5,97.1L219.2,97.7L219.3,98.0L219.2,98.5L219.5,99.1L219.9,100.1L220.3,100.3L220.5,100.8L220.4,101.8L220.6,102.6L220.6,104.2L220.8,104.7L220.5,105.4L220.1,106.1L219.5,106.7L218.5,107.1L217.4,107.6L216.3,108.7L215.9,108.8L215.2,109.6L214.8,109.8L214.7,110.5L215.2,111.3L215.4,111.8L215.4,112.1L215.6,112.1L215.5,113.1L215.4,113.5L215.6,113.7L215.5,114.1L215.0,114.5L214.2,114.8L213.0,115.4L212.6,115.7L212.7,116.1L212.9,116.2L212.8,116.7L212.6,117.5L212.5,118.3L212.2,118.8L211.5,119.3L211.3,119.4L210.9,119.9L210.6,120.4L210.1,121.1L208.9,122.2L208.2,122.8L207.5,123.2L206.4,123.6L205.9,123.7L205.8,123.9L205.2,123.8L204.7,124.0L203.6,123.8L203.0,123.9L202.6,123.9L201.5,124.3L200.7,124.4L200.1,124.8L199.6,124.8L199.2,124.5L198.9,124.4L198.4,124.0L198.4,124.1L198.2,123.9L198.3,123.3L197.9,122.6L198.2,122.4L198.2,121.7L197.6,120.7L197.1,119.9L197.1,119.9L196.3,118.6L195.6,117.8L195.2,117.1L195.0,116.1L194.7,115.4L194.4,113.9L194.4,112.7L194.3,112.1L193.9,111.7L193.4,110.9L192.8,109.7L192.6,109.0L191.8,108.1L191.7,107.3L191.6,106.7L191.8,105.8L192.1,104.9L192.2,104.4L192.5,103.5L192.7,103.1L193.3,102.5L193.6,102.0L193.7,101.3L193.7,100.7L193.4,100.4L193.1,99.8L192.9,99.2L192.9,99.0L193.2,98.6L192.9,97.6L192.7,96.9L192.2,96.3L192.3,96.1L192.2,95.8L191.9,95.0L191.1,94.0L190.1,93.0L189.4,92.1L188.8,91.1L188.8,90.8L189.0,90.5L189.3,89.7L189.5,89.0L189.3,88.8L189.6,87.7L189.8,86.9L189.4,86.3L188.9,86.1L188.7,85.6L188.5,85.5L188.5,85.2L187.5,85.6L187.1,85.5L186.7,85.8L185.9,85.7L185.4,85.1L185.0,84.4L184.3,83.7L183.6,83.7L182.7,83.7L181.9,83.9L181.1,84.1L179.5,84.7L178.9,85.0L178.0,85.3L177.1,85.0L176.7,85.0L176.0,84.8L175.4,84.8L174.2,85.0L173.5,85.3L172.5,85.7L172.3,85.6L172.0,85.6L171.0,85.2L170.1,84.4L169.2,83.9L168.6,83.2L168.3,83.1L167.6,82.7L167.1,82.2L166.9,81.8L166.8,81.1L166.3,80.5L165.9,80.1L165.7,80.0L165.4,79.8L165.3,79.3L165.2,79.1L164.9,79.0L164.3,78.5L163.9,78.5L163.7,78.2L163.7,78.0L163.4,77.8L163.3,77.6L163.2,76.8L163.3,76.4L162.9,75.6L162.4,75.3L162.8,75.1L163.3,74.4L163.5,73.9L163.5,73.3L163.7,72.8L163.9,71.9L163.7,70.9L163.6,70.4L163.7,69.9L163.5,69.4L162.9,69.0L163.0,68.6L163.0,68.1L163.4,67.8L163.7,67.3L163.7,67.0L164.0,66.3L164.6,65.6L164.9,65.5L165.2,64.9L165.2,64.4L165.6,63.7L166.2,63.4L166.9,62.4L167.4,62.0L168.3,61.9L169.1,61.2L169.6,60.9L170.4,60.1L170.2,58.8L170.6,58.0L170.7,57.4L171.3,56.8L172.3,56.3L173.1,55.9L173.8,54.9L174.1,54.2L174.8,54.2L175.4,54.7L176.4,54.6L177.4,54.8L177.8,54.8L178.8,54.3L179.9,54.1L180.5,53.7L181.5,53.4L183.2,53.2L184.8,53.1L185.3,53.3L186.3,52.9L187.3,52.9L187.7,53.1L188.4,53.1L189.5,52.6L190.2,52.8L190.2,53.3L191.0,52.9L191.1,53.1L190.6,53.6L190.6,54.1L190.9,54.3L190.8,55.2L190.1,55.7L190.3,56.2L190.9,56.2L191.1,56.7L191.5,56.9L192.7,57.2L193.1,57.1L193.9,57.3L195.2,57.7L195.7,58.6L196.6,58.8L198.0,59.2L199.1,59.7L199.6,59.5L200.1,59.0L199.8,58.2L200.1,57.8L200.9,57.3L201.5,57.2L202.9,57.4L203.2,57.8L203.6,57.8L203.9,58.0L204.9,58.1L205.2,58.4L206.5,58.4L207.5,58.7L208.5,59.0L208.9,59.1L209.7,58.8L210.1,58.5L211.0,58.4L211.7,58.6L212.0,59.1L212.2,58.7L213.0,59.0L213.8,59.0L214.3,58.8L214.6,58.5L214.5,58.4L214.8,57.9L215.0,57.2L215.1,56.9L215.1,56.9L215.5,56.1L216.0,55.4L216.0,55.4L215.9,54.6L216.1,54.2L215.8,53.7L216.2,53.3L215.6,53.4L214.7,53.2L214.0,53.8L212.5,53.9L211.7,53.4L210.6,53.3L210.4,53.7L209.7,53.9L208.7,53.3L207.6,53.3L207.0,52.3L206.3,51.8L206.8,51.0L206.2,50.5L207.3,49.6L208.8,49.5L209.2,48.8L211.1,48.9L212.3,48.3L213.5,48.0L215.2,48.0L216.9,48.7L218.3,49.1L219.5,48.9L220.4,49.0L221.6,48.5L221.7,48.0L221.5,47.4L220.9,47.0L220.3,46.9L220.0,46.6L218.7,45.7L217.5,45.3L216.7,44.8L217.4,44.6L218.2,43.8L217.7,43.4L219.1,43.0L219.1,42.7L218.2,42.9L217.4,43.0L216.8,43.3L215.8,43.4L215.0,43.7L215.0,44.3L215.5,44.6L216.5,44.5L216.3,44.9L215.2,45.1L213.9,45.6L213.3,45.4L213.5,45.0L212.5,44.7L212.6,44.5L213.6,44.1L213.3,43.9L211.7,43.7L211.7,43.3L210.7,43.4L210.4,44.0L209.6,44.7L209.6,45.0L209.1,45.2L208.8,45.1L208.6,46.3L208.0,46.7L207.7,47.4L208.0,48.0L208.1,48.4L209.0,48.7L208.8,48.9L207.6,49.0L207.2,49.3L206.4,49.8L206.0,49.4L206.1,49.2L205.4,49.1L204.9,49.1L203.7,49.3L204.4,49.9L203.9,50.0L203.3,50.0L202.8,49.5L202.6,49.7L202.8,50.3L203.4,50.8L203.0,51.0L203.5,51.5L204.0,51.8L204.0,52.3L203.1,52.1L203.4,52.6L202.8,52.7L203.2,53.6L202.5,53.6L201.7,53.2L201.3,52.4L201.1,51.7L200.7,51.2L200.2,50.7L200.2,50.4L200.0,50.3L200.0,50.1L199.4,49.7L199.3,49.3L199.4,48.6L199.5,48.3L199.4,48.1L199.2,48.0L198.9,47.7L198.5,47.5L197.5,47.1L196.9,46.8L196.0,46.5L195.2,45.8L195.4,45.7L194.9,45.3L194.9,44.9L194.3,44.8L194.0,45.2L193.7,44.9L193.7,44.5L193.7,44.5L193.9,44.4L193.1,44.3L192.3,44.6L192.4,45.1L192.3,45.4L192.6,45.9L193.5,46.4L194.0,47.2L195.1,48.0L195.9,48.0L196.2,48.3L195.9,48.5L196.8,48.8L197.5,49.1L198.4,49.6L198.5,49.8L198.3,50.2L197.7,49.7L196.9,49.6L196.4,50.2L197.2,50.6L197.1,51.1L196.6,51.2L196.1,52.0L195.7,52.1L195.7,51.8L195.9,51.2L196.1,51.0L195.7,50.5L195.4,50.0L195.0,49.8L194.7,49.4L194.1,49.2L193.6,48.8L192.9,48.7L192.1,48.3L191.2,47.6L190.5,47.1L190.2,46.1L189.7,46.0L188.9,45.6L188.4,45.8L187.9,46.2L187.4,46.3L186.5,46.9L184.6,46.6L183.1,46.9L183.0,47.5L183.0,48.1L182.1,48.8L180.8,49.0L180.7,49.3L180.1,49.9L179.7,50.7L180.1,51.3L179.5,51.7L179.3,52.4L178.6,52.6L177.9,53.3L176.6,53.3L175.6,53.3L175.0,53.7L174.6,54.1L174.1,54.0L173.8,53.6L173.5,53.1L172.5,52.9L172.1,53.2L171.6,53.0L171.1,53.1L171.3,52.3L171.2,51.7L170.7,51.6L170.5,51.3L170.6,50.6L171.0,50.2L171.0,49.8L171.2,49.2L171.2,48.8L171.0,48.5L171.0,48.1L171.0,47.4L170.6,47.0L172.0,46.3L173.2,46.4L174.6,46.4L175.7,46.6L176.5,46.5L178.1,46.6L178.6,46.0L178.8,44.0L177.8,42.9L177.0,42.4L175.5,42.0L175.4,41.3L176.7,41.1L178.4,41.4L178.1,40.2L179.0,40.7L181.3,39.9L181.6,39.1L182.5,38.9L183.3,38.7L183.8,38.4L184.7,36.9L186.1,36.5L186.9,36.5L187.1,36.3L187.9,36.3L188.1,36.5L188.8,36.0L188.6,35.6L188.5,35.0L188.1,34.5L188.1,33.5L188.3,33.2L188.5,32.9L189.4,32.8L189.8,32.6L190.6,32.3L190.5,32.8L190.3,33.1L190.4,33.4L190.9,33.5L190.7,33.9L190.4,33.8L189.7,34.5L189.9,35.0L189.9,35.4L191.0,35.6L190.9,36.0L192.0,35.8L192.5,35.5L193.6,35.9L194.1,36.2L194.8,35.9L196.4,35.5L197.6,35.1L198.6,35.3L198.7,35.6L199.7,35.6L199.9,35.1L201.3,34.8L201.1,34.0L201.1,33.2L201.6,32.6L202.5,32.2L203.3,33.0L204.1,33.0L204.3,32.2L204.4,31.6L204.1,31.7L203.4,31.4L203.3,30.8L204.6,30.5L205.9,30.4L206.9,30.6L208.0,30.5L209.1,30.0L208.1,29.5L206.3,29.6L204.5,29.9L202.9,30.2L202.3,29.6L201.3,29.3L201.5,28.3L201.1,27.4L201.5,26.8L202.4,26.2L204.7,25.1L205.4,24.9L205.3,24.5L203.9,24.0L202.2,24.3L201.2,25.0L201.4,25.6L199.8,26.4L197.8,27.3L197.1,28.7L197.8,29.4L198.8,29.9L197.9,31.0L196.8,31.3L196.4,33.0L195.9,33.9L194.7,33.8L194.1,34.6L192.9,34.6L192.6,33.7L191.8,32.6L191.0,31.1L190.4,30.5L188.4,31.7L187.0,31.9L185.7,31.4L185.3,30.3L185.0,28.0L185.9,27.4L188.6,26.5L190.5,25.5L192.4,24.1L194.8,22.2L196.4,21.4L199.2,20.2L201.4,19.7L203.0,19.8L204.5,19.0L206.4,19.0L208.2,18.8L211.3,19.5L210.0,19.8L211.1,20.4L212.1,20.1L213.8,20.7L216.5,20.9L220.3,22.1L221.1,22.5L221.1,23.2L220.0,23.7L218.4,24.0L213.9,23.2L213.2,23.4L214.8,24.1L214.9,25.6L216.2,25.9L217.0,26.2L217.1,25.7L216.5,25.2L217.2,24.9L219.6,25.5L220.4,25.2L219.8,24.5L222.1,23.5L223.0,23.6L223.9,23.9L224.5,23.2L223.7,22.6L224.2,22.0L223.5,21.4L226.3,21.7L226.8,22.3L225.6,22.4L225.6,23.0L226.3,23.3L227.9,23.1L228.1,22.5L230.2,22.0L233.7,21.1L234.5,21.2L233.5,21.8L234.7,21.9L235.4,21.6L237.3,21.5L238.8,21.1L239.9,21.7L241.1,21.1L240.0,20.5L240.6,20.1L243.5,20.5L244.9,20.8L248.5,21.9L249.2,21.4L248.2,20.9L248.1,20.6L246.9,20.5L247.3,20.1L246.7,19.3L246.7,19.0L248.5,18.1L249.2,17.2L249.9,17.0L252.6,17.2L252.8,17.8L251.8,18.6L252.5,18.9L252.8,19.6L252.6,21.0L253.7,21.6L253.2,22.3L251.3,23.7L252.4,23.8L252.8,23.5L253.9,23.2L254.2,22.7L255.1,22.2L254.5,21.7L254.9,21.0L253.8,20.9L253.6,20.4L254.4,19.4L253.1,18.6L254.9,17.9L254.7,17.2L255.2,17.1L255.7,17.7L255.3,18.7L256.4,18.8L255.9,18.1L257.6,17.7L259.7,17.7L261.5,18.2L260.6,17.4L260.5,16.4L262.3,16.1L264.7,16.2L266.8,16.1L266.0,15.5L267.2,14.9L268.3,14.9L270.3,14.4L272.9,14.2L273.2,14.0L275.9,13.9L276.7,14.1L278.9,13.6L280.8,13.6L281.0,13.1L282.0,12.7L284.4,12.3L286.1,12.6L284.7,12.9L287.0,13.0ZM229.1,48.7L229.6,49.4L230.1,49.5L230.4,49.7L229.6,49.8L229.4,50.6L229.2,51.0L228.9,51.2L228.9,51.7L229.2,52.4L230.1,52.6L230.8,53.1L232.3,53.3L233.8,53.0L233.9,52.8L233.7,52.1L233.9,51.0L233.1,50.7L233.4,50.0L232.7,50.0L232.9,49.1L233.9,49.4L234.7,49.0L234.0,48.4L233.7,47.9L232.9,48.1L232.8,48.9L232.5,48.2L232.4,48.0L232.7,47.6L232.5,47.2L231.3,46.9L230.9,46.0L230.3,45.7L230.3,45.4L231.3,45.5L231.3,44.8L232.2,44.6L233.0,44.7L233.2,43.8L233.0,43.1L232.0,43.2L231.2,43.0L230.0,43.4L229.1,43.6L228.6,44.2L227.7,44.4L226.7,45.4L227.6,46.3L227.5,47.0L228.6,48.2L229.1,48.7ZM86.2,12.5L85.7,12.5L83.8,12.4L83.6,12.2L85.6,12.2L86.3,12.4L86.2,12.5ZM69.8,12.3L67.9,12.6L66.5,12.3L67.3,11.9L68.7,11.8L70.1,12.0L69.8,12.3ZM204.7,12.1L202.5,12.6L200.7,12.3L201.4,12.1L200.8,11.7L202.9,11.5L203.3,11.9L204.7,12.1ZM70.3,11.4L69.1,11.6L67.5,11.6L67.5,11.4L68.5,11.2L69.0,11.2L70.3,11.4ZM84.2,11.9L82.7,12.1L81.9,11.9L81.4,11.5L81.4,11.1L82.7,11.2L83.2,11.2L84.4,11.6L84.2,11.9ZM79.9,11.7L80.3,12.1L78.7,12.0L77.1,11.7L74.8,11.6L75.8,11.3L74.6,11.1L74.5,10.7L76.5,10.8L79.2,11.2L79.9,11.7ZM285.1,11.7L279.4,12.1L281.3,10.8L282.1,10.7L282.8,10.7L285.4,11.3L285.1,11.7ZM198.3,10.3L201.5,11.0L199.0,11.4L198.5,12.2L197.6,12.4L197.1,13.2L195.9,13.2L193.8,12.6L194.7,12.3L193.2,12.0L191.2,11.1L190.4,10.3L193.2,10.0L193.7,10.3L195.1,10.3L195.5,10.0L197.0,9.9L198.3,10.3ZM205.4,9.6L207.4,9.9L205.9,10.5L203.0,10.6L200.1,10.4L199.9,10.2L198.5,10.1L197.4,9.7L200.5,9.4L201.9,9.6L202.9,9.3L205.4,9.6ZM231.1,9.5L229.8,9.6L228.9,9.7L228.8,9.8L227.6,10.0L226.5,9.8L227.1,9.4L224.8,9.4L226.8,9.2L228.3,9.2L228.5,9.5L229.1,9.2L230.0,9.1L231.5,9.3L231.1,9.5ZM279.9,11.1L277.8,11.2L275.0,11.0L273.3,10.6L272.5,9.9L271.2,9.7L273.8,9.0L275.9,8.7L277.9,9.3L280.2,10.2L279.9,11.1ZM93.0,10.3L94.2,10.7L92.8,11.0L91.0,11.7L89.2,11.8L87.1,11.7L86.0,11.2L86.1,10.9L86.9,10.6L85.0,10.6L83.9,10.3L83.3,9.8L84.0,9.4L84.7,9.1L85.7,9.0L85.3,8.8L87.6,8.7L88.9,9.3L90.5,9.5L92.2,9.7L93.0,10.3ZM111.5,6.9L114.2,7.0L116.3,7.1L118.2,7.4L118.1,7.6L115.7,8.1L113.2,8.3L112.3,8.5L114.5,8.5L112.2,9.1L110.5,9.4L108.8,10.2L106.8,10.4L106.1,10.6L103.1,10.7L104.5,10.8L103.8,11.0L104.6,11.5L103.7,11.8L102.1,12.1L101.6,12.5L100.2,12.8L100.4,13.0L102.1,13.0L102.1,13.2L99.4,13.8L96.8,13.5L93.9,13.7L92.4,13.6L90.5,13.5L90.4,13.0L92.2,12.8L91.7,12.1L92.3,12.0L95.0,12.5L93.7,11.8L92.0,11.6L92.8,11.2L94.6,11.0L94.9,10.7L93.5,10.3L93.1,9.7L95.8,9.8L96.6,9.9L98.2,9.5L95.9,9.4L92.4,9.5L90.6,9.1L89.8,8.7L88.6,8.4L88.4,8.1L89.9,7.9L91.1,7.9L93.0,7.7L94.5,7.3L95.7,7.4L96.8,7.7L97.6,7.1L98.9,7.0L100.7,6.9L103.8,6.8L104.3,6.9L107.2,6.8L109.3,6.8L111.5,6.9ZM152.9,6.5L159.2,7.3L157.3,7.7L153.5,7.7L148.1,7.8L148.6,8.0L152.1,7.9L155.2,8.2L157.1,7.9L157.9,8.3L156.8,8.8L159.4,8.5L164.2,8.1L167.2,8.3L167.8,8.7L163.7,9.4L163.2,9.7L160.0,9.8L162.3,9.9L161.1,10.6L160.3,11.2L160.3,12.4L161.5,13.0L160.0,13.1L158.3,13.4L160.2,13.9L160.4,14.8L159.3,14.8L160.6,15.7L158.4,15.8L159.6,16.2L159.2,16.5L157.8,16.7L156.4,16.7L157.7,17.4L157.7,17.8L155.7,17.4L155.2,17.7L156.6,17.9L157.9,18.5L158.2,19.3L156.5,19.5L155.7,19.1L154.5,18.6L154.8,19.2L153.6,19.8L156.3,19.8L157.7,19.9L155.0,20.7L152.3,21.5L149.3,21.9L148.2,21.9L147.2,22.3L145.8,23.3L143.6,24.0L143.0,24.1L141.6,24.3L140.2,24.5L139.3,25.2L139.3,25.9L138.8,26.5L137.2,27.3L137.6,28.1L137.1,28.9L136.6,29.9L135.2,30.0L133.7,29.1L131.7,29.1L130.8,28.6L130.1,27.6L128.4,26.4L127.9,25.7L127.7,24.8L126.3,23.9L126.7,23.2L126.0,22.8L127.0,21.6L128.5,21.3L128.9,20.9L129.1,20.1L128.0,20.4L127.4,20.6L126.5,20.7L125.3,20.4L125.2,19.7L125.6,19.2L126.6,19.2L128.6,19.4L126.9,18.8L126.0,18.5L125.0,18.6L124.2,18.3L125.3,17.4L124.7,17.0L123.9,16.4L122.7,15.3L121.4,14.9L121.4,14.5L118.7,13.9L116.6,13.8L113.9,13.9L111.5,13.9L110.3,13.6L108.6,13.0L111.2,12.7L113.2,12.6L109.0,12.4L106.7,12.0L106.8,11.6L110.6,11.1L114.3,10.6L114.7,10.2L112.0,9.9L112.8,9.5L116.3,8.8L117.8,8.7L117.3,8.2L119.7,8.0L122.8,7.8L125.9,7.8L127.0,8.1L129.6,7.6L132.0,7.9L133.4,8.0L135.5,8.3L133.1,7.8L133.2,7.4L136.6,6.8L140.1,6.8L141.4,6.5L144.9,6.4L152.9,6.5Z"/>
<text class="map-label" x="38" y="55">N. America</text><text class="map-label" x="104" y="120">S. America</text><text class="map-label" x="183" y="46">Europe</text><text class="map-label" x="191" y="93">Africa</text><text class="map-label" x="266" y="56">Asia</text><text class="map-label" x="303" y="120">Australia</text><circle id="pin" cx="99.1569" cy="54.7729" r="2.3"/></svg>
<p id="map-help" class="hint">Click the overview map to look up a point. With the map focused, arrows move 1° (Shift: 5°); Enter checks it.</p>
<p id="status" role="status" aria-live="polite" aria-atomic="true"></p>
<section id="result" class="result" role="status" aria-live="polite" aria-atomic="true" hidden aria-label="Place at the selected point"><p id="answer" class="answer"></p><p id="summary" class="detail"></p><dl id="facts"></dl></section><p class="note">Overview map. Results describe the selected point, not a street address.</p></main><script>
const API_KEY = 'YOUR_PUBLIC_API_KEY';
const $ = selector => document.querySelector(selector);
const map = $('#map'), status = $('#status'), result = $('#result');
let selectedPoint = { lat: 35.2271, lon: -80.8431 };
let revision = 0, controller;
function setStatus(message, error = false) { status.textContent = message; status.dataset.error = String(error); }
function cancel() {
revision++; controller?.abort(); controller = undefined; result.hidden = true;
map.setAttribute('aria-busy', 'false');
}
async function getJson(path, params, signal) {
if (!API_KEY.startsWith('parse_public_')) throw new Error('Add your public API key and allow this hostname.');
const url = new URL(path, 'https://api.parseapi.com');
url.search = new URLSearchParams({ ...params, key: API_KEY });
const response = await fetch(url, { signal });
if (!response.ok) {
const message = response.status === 401 || response.status === 403 ? 'Check your public key and allowed hostnames.'
: response.status === 429 ? 'The request limit was reached. Try again later.'
: response.status === 404 ? 'This lookup is unavailable for the selected place or date.'
: 'The lookup failed. Try again later.';
throw new Error(message);
}
return response.json();
}
async function run(task) {
cancel();
const current = revision, request = new AbortController(); controller = request;
let timedOut = false;
const timeout = setTimeout(() => { timedOut = true; request.abort(); }, 12000);
map.setAttribute('aria-busy', 'true'); setStatus('Checking...');
try {
const answer = await task(request.signal);
if (current !== revision) return;
if (request.signal.aborted) throw new Error('The request was cancelled.');
showResult(answer); result.hidden = false;
} catch (error) {
if (current !== revision) return;
request.abort();
setStatus(timedOut ? 'The request timed out. Try again.'
: error instanceof TypeError ? 'Could not reach ParseAPI. Check your connection.'
: error instanceof SyntaxError ? 'The response could not be read. Try again.'
: error instanceof Error ? error.message : 'Could not complete the lookup. Try again.', true);
} finally {
clearTimeout(timeout);
if (current === revision) { map.setAttribute('aria-busy', 'false'); controller = undefined; }
}
}
// example:map
function mapCoordinates(x, y, width, height) {
if (![x, y, width, height].every(Number.isFinite) || width <= 0 || height <= 0) throw new Error('The map size could not be read.');
return { lat: Number((90 - Math.max(0, Math.min(1, y / height)) * 180).toFixed(4)),
lon: Number((Math.max(0, Math.min(1, x / width)) * 360 - 180).toFixed(4)) };
}
// /example:map
function pinPoint(point) {
$('#pin').setAttribute('cx', String(point.lon + 180));
$('#pin').setAttribute('cy', String(90 - point.lat));
$('#pin').removeAttribute('hidden');
map.setAttribute('aria-label', `World map: ${point.lat} latitude, ${point.lon} longitude. Arrows move; Enter looks up.`);
}
function selectPoint(point) {
cancel(); selectedPoint = point; pinPoint(point);
setStatus(`Selected ${point.lat}, ${point.lon}. Press Enter to look up this point.`);
}
map.addEventListener('click', event => {
const rect = map.getBoundingClientRect();
selectPoint(mapCoordinates(event.clientX - rect.left, event.clientY - rect.top, rect.width, rect.height));
return checkSelected();
});
map.addEventListener('keydown', event => {
if (event.key === 'Enter' || event.key === ' ') { event.preventDefault(); return checkSelected(); }
if (!['ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight'].includes(event.key)) return;
event.preventDefault();
const point = { ...selectedPoint };
const step = event.shiftKey ? 5 : 1;
if (event.key === 'ArrowUp') point.lat += step;
if (event.key === 'ArrowDown') point.lat -= step;
if (event.key === 'ArrowRight') point.lon += step;
if (event.key === 'ArrowLeft') point.lon -= step;
point.lat = Math.max(-90, Math.min(90, point.lat)); point.lon = Math.max(-180, Math.min(180, point.lon));
selectPoint(point);
});
function readPoint(data, point) {
const fail = () => new Error('The place response could not be verified. Try again.');
if (!data || !Number.isFinite(data.latitude) || !Number.isFinite(data.longitude)
|| Math.abs(data.latitude - point.lat) > 0.000001 || Math.abs(data.longitude - point.lon) > 0.000001) throw fail();
for (const key of ['country', 'country_name', 'state', 'state_name', 'district', 'district_name']) {
if (!(data[key] === null || typeof data[key] === 'string' && data[key].trim())) throw fail();
}
if (!(data.elevation === null || typeof data.elevation === 'number' && Number.isFinite(data.elevation))) throw fail();
if (!data.deep || typeof data.deep !== 'object' || Array.isArray(data.deep)) throw fail();
const zone = data.deep.timezone;
if (!(zone === null || zone === undefined || typeof zone.timezone === 'string' && zone.timezone.trim())) throw fail();
return data;
}
// example:request
async function lookUpPoint(point, signal) {
return readPoint(await getJson('/point', { lat: String(point.lat), lon: String(point.lon), deep: 'true' }, signal), point);
}
// /example:request
// example:result
function showResult(data) {
const timezone = data.deep.timezone;
$('#answer').textContent = data.country_name || 'Place details unavailable';
$('#summary').textContent = `${data.latitude}, ${data.longitude}`;
const rows = [
['State or region', data.state_name || data.state || 'Unknown'],
['District', data.district_name || data.district || 'Unknown'],
['Elevation', data.elevation === null ? 'Unknown' : `${data.elevation.toLocaleString('en')} m`],
['Time zone at point', timezone?.timezone || 'Unavailable']
];
$('#facts').replaceChildren(...rows.map(([label, value]) => {
const row = document.createElement('div'), term = document.createElement('dt'), detail = document.createElement('dd');
term.textContent = label; detail.textContent = value; row.append(term, detail); return row;
}));
setStatus('');
}
// /example:result
function checkSelected() {
const point = { ...selectedPoint };
return run(signal => lookUpPoint(point, signal));
}
</script></body></html>
Need a key? Create a public API key. For every field and parameter, see Point API reference.