diff --git a/README.md b/README.md index 22a8c89..bd99634 100644 --- a/README.md +++ b/README.md @@ -1 +1,77 @@ -INNOVATION AND COMPLEXITY PROJECT +## HEALTH SIGNALS +## Team Members + +| Name | Role | +|-----------------------|-----------------------------------| +| **George Mutale** | Data Analysis, Database, AI | +| **Rhyan Lubega** | Backend | +| **Oscar Kyamuwendo** | Data Collection and Hardware | +| **Ebenezer Amakye** | Frontend Development | +| **Emmanuel Boaz** | Security and Backend Development | + +--- + +## Our project usecase + +Our project, called **"PulseFlowBridge"**, is a web-based application designed to help monitor the heart rates of elderly people in real-time without requiring a nurse to constantly watch them. This system is aimed at making healthcare for the elderly more efficient and safer. The hospital doctors can create accounts on the platform and add patients as needed. + +We use a **Bitalino sensor**, which can be placed either on a shirt near the chest or in a wristwatch, to measure heartbeats in real life. The sensor collects ECG signal data, and after cleaning and processing it, the system checks whether the heart rate is within the normal range. If the heart rate falls below **60 BPM** or exceeds **100 BPM**, the system automatically sends an alert to the hospital’s email. This alert includes the patient’s ID so that doctors can respond immediately and know who needs help. + +This system reduces the need for constant manual monitoring by nurses, making it a **smart and efficient way to ensure the safety of elderly patients**. + +--- + +## Evolution of our graph using images +![Image1](https://github.com/Health-signals/Sensor/blob/main/photo_2025-01-17_14-46-44.jpg) + +*Figure 1: Graph with noise or unfiltered signal* + +![Image1](https://github.com/Health-signals/Sensor/blob/main/photo_2025-01-17_14-48-08.jpg) + +*Figure 2: Before defining the perfect peak detect* + +![Image1](https://github.com/Health-signals/Sensor/blob/main/photo_2025-01-20_08-47-32.jpg) + +*Figure 3: After getting the perfect threshold for peak detection.* +## Challenges Faced + +1. **Sensor Selection:** + Initially, we planned to use the **Bitalino sensor** as the professors had planned, but due to Bluetooth connectivity failures of the sensor, we switched to an **AN ECG Arduino sensor**. However, this sensor came with limitations: + - The electrode pads were one-time use, which reduced sensitivity over time. + - Manual wire connections were prone to disconnection, leading to inaccurate results. + +2. **Switching Back to Bitalino:** + - The professor gave us a new the Bitalino sensor and downgraded Python to ensure compatibility. + - We successfully connected the sensor directly to the frontend, enabling real-time visualization. However, this method produced inconsistent BPM values and incomplete peaks despite hardware buffering. + +3. **Improving Data Accuracy:** + - To address these issues, we collected data from the sensor and stored it in a **CSV file**. This file was then saved in a database. + - By processing the stored data, we achieved accurate BPM readings and visualized graphs with well-defined peaks. + +4. **Use of websocket:** + - We are still debating whether the websocket is the perfect method to send real time data because we could get lags as we are visualising the graph + +5. **Making our project work on codespace:** + - Since our project was fully developed locally from the start, we had to change many things to see that it works well on codespaces and we just had a few hours to do this .We managed to do a docker yml file that can setup a demo for the doctor sign in but since we are out of time we did not manage to get over the issue of serving data to an online websocket so that the graph can be visualise as real time but we have provide images of a well working graph on from our local machine. +--- + +## Future Goals + +- Acquire better sensors to improve real-time data acquisition and display. +- Enhance buffering and filtering techniques for more reliable data processing. +- Further refine our system for seamless real-time visualization. +- Making more research about how to send real time data without lags +- Creating an AI that defines scales for more visualisation and having a peak detection for different ecg signals +- Adding functionalities that can support to view live data of morethan 3 patients + +--- +## Conclusion + +**PulseFlowBridge** offers a smart and efficient way to monitor the heart health of elderly patients. By leveraging advanced sensors and real-time data processing, this system ensures timely interventions during emergencies while reducing the workload for healthcare providers. As we continue to refine and improve our solution, we aim to make healthcare more accessible and reliable for elderly populations. + +## Development environment setup +Codespaces setup +Open codespaces and use docker-compose up + +When register you can use an email and password of your own and any fake data for input. You can just imagine of any data for you the doctor and the one of the patient + diff --git a/bita.py b/bita.py new file mode 100644 index 0000000..08e68b0 --- /dev/null +++ b/bita.py @@ -0,0 +1,78 @@ +import os +import csv +import time + +from bitalino import BITalino + +# Configuration +MAC_ADDRESS = "98:D3:C1:FE:03:7F" # Replace with your BITalino's MAC address +SAVE_FOLDER = "ecg_data" +FILENAME = "ecg_log.csv" +SAMPLING_RATE = 1000 # Changed to 1000 Hz to match sample data +CHANNELS = [1] # Changed to channel 0 (A1 on BITalino) +DURATION = 10 # Duration to record in seconds + +# Ensure the save folder exists +if not os.path.exists(SAVE_FOLDER): + os.makedirs(SAVE_FOLDER) + +# Full path for the output file +file_path = os.path.join(SAVE_FOLDER, FILENAME) + +def save_data_to_csv(data): + """Save the data to a CSV file.""" + mode = "w" if not os.path.exists(file_path) else "a" # Append if file existsa + with open(file_path, mode=mode, newline="") as file: + writer = csv.writer(file) + if mode == "w": # Write header only when creating a new file + writer.writerow(["timestamp", "ecg_value"]) + writer.writerows(data) + +try: + # Connect to BITalino + print(f"Connecting to BITalino at {MAC_ADDRESS}...") + device = BITalino(MAC_ADDRESS) + + # Start acquisition + print("Starting data acquisition...") + device.start(SAMPLING_RATE, CHANNELS) + + start_time = time.time() # Capture the start time + #start_time = int(time.time() * 1000) + + ecg_data = [] + + while time.time() - start_time < DURATION: + try: + # Read samples (block size of 10) + samples = device.read(10) + + for i, sample in enumerate(samples): + timestamp = round((time.time() - start_time) + (i / SAMPLING_RATE), 3) + ecg_value = sample[-1] # ECG value is the last in the sample + + # Scale ECG value to match sample data range (approximately 470-540) + scaled_ecg = int(ecg_value * (540 - 470) / 1023 + 470) + + ecg_data.append([timestamp, scaled_ecg]) + + except Exception as read_error: + print(f"Error reading data: {read_error}") + break + + # Stop acquisition + print("Stopping data acquisition...") + device.stop() + + # Save data to CSV + save_data_to_csv(ecg_data) + print(f"Data saved to {file_path}") + +except Exception as e: + print(f"An error occurred: {e}") + +finally: + # Ensure the device is released + if 'device' in locals(): + device.close() + print("Device disconnected.") diff --git a/bitabuffered.py b/bitabuffered.py new file mode 100644 index 0000000..ea5d70c --- /dev/null +++ b/bitabuffered.py @@ -0,0 +1,122 @@ +import os +import asyncio +import websockets +import csv +import json +import numpy as np +from bitalino import BITalino +import scipy.signal as signal +import time + +# Configuration +MAC_ADDRESS = "98:D3:C1:FE:03:7F" # Replace with your BITalino's MAC address +WEBSOCKET_URI = "ws://localhost:8000/ws/3" # Replace with your WebSocket server URI +SAMPLING_RATE = 1000 # Adjust sampling rate +CHANNELS = [1] # ECG channel on BITalino +DURATION = 1000 # Duration to record in seconds + +# Low-pass filter function to remove high-frequency noise +def low_pass_filter(ecg_signal, fs=100, cutoff=1.0): + nyquist = 0.5 * fs + normal_cutoff = cutoff / nyquist + b, a = signal.butter(1, normal_cutoff, btype='low', analog=False) + filtered_ecg = signal.filtfilt(b, a, ecg_signal) + return filtered_ecg + +# Bandpass filter and peak detection +def detect_r_peaks(ecg_signal, fs=100): + lowcut = 0.5 # Lower bound of heart rate (0.5 Hz = 30 BPM) + highcut = 5.0 # Upper bound of heart rate (5 Hz = 300 BPM) + + nyquist = 0.5 * fs + low = lowcut / nyquist + high = highcut / nyquist + b, a = signal.butter(1, [low, high], btype='band') + filtered_ecg = signal.filtfilt(b, a, ecg_signal) + + # Find R-peaks (local maxima) in the filtered ECG signal + peaks, _ = signal.find_peaks(filtered_ecg, distance=fs / 2) # Adjust distance for heart rate + return peaks + +# Function to calculate BPM +def calculate_bpm(peaks, sample_rate=100): + rr_intervals = np.diff(peaks) / sample_rate # RR intervals in seconds + bpm = 60 / np.mean(rr_intervals) if len(rr_intervals) > 0 else 0 + return bpm + +# Convert raw ADC values to voltage +def convert_to_voltage(ecg_signal, adc_resolution=1024, reference_voltage=3.3): + return (ecg_signal / adc_resolution) * reference_voltage + +# Process and send data over WebSocket +async def acquire_and_send_data(): + try: + print(f"Connecting to BITalino at {MAC_ADDRESS}...") + device = BITalino(MAC_ADDRESS) + + # Start acquisition + print("Starting data acquisition...") + device.start(SAMPLING_RATE, CHANNELS) + + ecg_data = [] + #start_time = int(time.time() * 1000) + + start_time = time.time() # Capture the start time + + async with websockets.connect(WEBSOCKET_URI, ping_interval=20, ping_timeout=10) as websocket: + print("Connected to WebSocket server.") + while time.time() - start_time < DURATION: + try: + # Read samples (block size of 10) + samples = device.read(10) + + for i, sample in enumerate(samples): + timestamp = round((time.time() - start_time) + (i / SAMPLING_RATE), 3) + ecg_value = sample[-1] # ECG value is the last in the sample + + # Scale ECG value + scaled_ecg = int(ecg_value * (540 - 470) / 1023 + 470) + ecg_data.append(scaled_ecg) + + # Filter and process ECG data in real-time + if len(ecg_data) > SAMPLING_RATE: # Only process if we have 1 second of data + windowed_data = ecg_data[-SAMPLING_RATE:] # Last second of data + filtered_ecg = low_pass_filter(windowed_data, SAMPLING_RATE) + peaks = detect_r_peaks(filtered_ecg, SAMPLING_RATE) + bpm = calculate_bpm(peaks, SAMPLING_RATE) + + # Convert to voltage + voltage = convert_to_voltage(scaled_ecg) + + # Prepare and send the message + message = json.dumps({ + "timestamp": timestamp, + "ecg": [voltage], + "bpm": bpm + }) + await websocket.send(message) + print(f"Sent: {message}") + + await asyncio.sleep(0.01) # Control data rate + + except Exception as read_error: + print(f"Error reading data: {read_error}") + break + + print("Stopping data acquisition...") + device.stop() + + except Exception as e: + print(f"An error occurred: {e}") + + finally: + # Ensure the device is released + if 'device' in locals(): + device.close() + print("Device disconnected.") + +if __name__ == "__main__": + try: + asyncio.run(acquire_and_send_data()) + except KeyboardInterrupt: + print("Shutting down gracefully...") diff --git a/data.py b/data.py index 8e9ec0a..925ed73 100644 --- a/data.py +++ b/data.py @@ -108,9 +108,9 @@ async def process_and_send_data_one_by_one(csv_file_path, uri): await asyncio.sleep(5) if __name__ == "__main__": - csv_file_path = r"C:\Users\Neu\Desktop\vs\bita\ecg_data\ecg_log.csv" - #csv_file_path = r"C:\Users\Neu\Downloads\SampleECG.csv" # Path to the uploaded CSV file - websocket_uri = "ws://localhost:8000/ws/3" # Replace with your WebSocket server URI + csv_file_path = r"https://raw.githubusercontent.com/Health-signals/Sensor/refs/heads/main/ecg_log5.csv" + websocket_uri = "ws://special-potato-jjj59q6466v535wv-8000.app.github.dev/" # Replace with your WebSocket server URI + try: asyncio.run(process_and_send_data_one_by_one(csv_file_path, websocket_uri)) @@ -118,286 +118,3 @@ async def process_and_send_data_one_by_one(csv_file_path, uri): print("Shutting down gracefully...") - - -# import asyncio -# import websockets -# import pandas as pd -# import json -# import numpy as np -# import scipy.signal as signal -# import time - -# # Low-pass filter function to remove high-frequency noise -# def low_pass_filter(ecg_signal, fs=100, cutoff=1.0): -# nyquist = 0.5 * fs -# normal_cutoff = cutoff / nyquist -# b, a = signal.butter(1, normal_cutoff, btype='low', analog=False) -# filtered_ecg = signal.filtfilt(b, a, ecg_signal) -# return filtered_ecg - -# # Bandpass filter and peak detection -# def detect_r_peaks(ecg_signal, fs=100): -# lowcut = 0.5 # Lower bound of heart rate (0.5 Hz = 30 BPM) -# highcut = 5.0 # Upper bound of heart rate (5 Hz = 300 BPM) - -# nyquist = 0.5 * fs -# low = lowcut / nyquist -# high = highcut / nyquist -# b, a = signal.butter(1, [low, high], btype='band') -# filtered_ecg = signal.filtfilt(b, a, ecg_signal) - -# # Find R-peaks (local maxima) in the filtered ECG signal -# peaks, _ = signal.find_peaks(filtered_ecg, distance=fs / 2) # Adjust distance for heart rate -# return peaks - -# # Function to calculate BPM -# def calculate_bpm(peaks, sample_rate=100): -# rr_intervals = np.diff(peaks) / sample_rate # RR intervals in seconds -# bpm = 60 / np.mean(rr_intervals) if len(rr_intervals) > 0 else 0 -# return bpm - -# # Convert raw ADC values to voltage -# def convert_to_voltage(ecg_signal, adc_resolution=1024, reference_voltage=3.3): -# return (ecg_signal / (adc_resolution )) * reference_voltage - -# # Process and send data over WebSocket -# async def process_and_send_data_one_by_one(csv_file_path, uri): -# # Load ECG data from CSV -# ecg_data = pd.read_csv(csv_file_path) - -# # Extract ECG values and timestamps -# timestamps = ecg_data['timestamp'].values -# ecg_values = ecg_data['ecg_value'].values - -# # Convert ECG values to voltage -# voltages = convert_to_voltage(np.array(ecg_values)) - -# # Sampling frequency estimation -# fs = int(1 / (timestamps[1] - timestamps[0])) # Assumes uniform sampling -# print(f"Sampling frequency (fs): {fs} Hz") - -# # Filter and process ECG data -# filtered_ecg = low_pass_filter(ecg_values, fs) -# peaks = detect_r_peaks(filtered_ecg, fs) -# bpm = calculate_bpm(peaks, fs) - -# print(f"Calculated BPM: {bpm}") - -# # Use a fixed delay for testing (2 messages per second) -# fixed_delay = 0.01# Adjust this value to control data rate (in seconds) - -# # Loop to handle WebSocket reconnections -# while True: -# try: -# async with websockets.connect(uri, ping_interval=20, ping_timeout=10) as websocket: -# print("Connected to WebSocket server.") -# last_sent_time = time.time() - -# for timestamp, voltage in zip(timestamps, voltages): -# current_time = time.time() -# print(f"Time since last message: {current_time - last_sent_time:.3f} seconds") -# last_sent_time = current_time - -# # Prepare single data unit, ensure ecg is sent as a list -# message = json.dumps({ -# "timestamp": timestamp, -# "ecg": [voltage], # Send as a list -# "bpm": bpm -# }) - -# # Send the data -# await websocket.send(message) -# print(f"Sent: {message}") - -# # Apply fixed delay -# await asyncio.sleep(fixed_delay) # Use fixed delay to control sending rate - -# # Exit loop after successfully sending all data -# break - -# except websockets.exceptions.ConnectionClosedOK: -# print("Connection closed by the server. Reconnecting...") -# await asyncio.sleep(2) # Wait before reconnecting -# except websockets.exceptions.ConnectionClosedError as e: -# print(f"Unexpected connection closure: {e}. Retrying...") -# await asyncio.sleep(2) -# except Exception as e: -# print(f"Unexpected error: {e}. Retrying...") -# await asyncio.sleep(5) - -# if __name__ == "__main__": -# csv_file_path = r"C:\Users\Neu\Desktop\vs\bita\ecg_data\ecg_log 1.csv" -# #csv_file_path = r"C:\Users\Neu\Desktop\vs\bita\ecg_data\ecg_log sorted.csv" -# #csv_file_path = r"C:\Users\Neu\Downloads\SampleECG.csv" # Path to the uploaded CSV file -# websocket_uri = "ws://localhost:8000/ws/3" # Replace with your WebSocket server URI - -# try: -# asyncio.run(process_and_send_data_one_by_one(csv_file_path, websocket_uri)) -# except KeyboardInterrupt: -# print("Shutting down gracefully...") - - - - - - - - - - - - -# import asyncio -# import websockets -# import serial -# import json -# import numpy as np -# import scipy.signal as signal - -# # Low-pass filter function to remove high-frequency noise -# def low_pass_filter(ecg_signal, fs=100, cutoff=1.0): -# nyquist = 0.5 * fs -# normal_cutoff = cutoff / nyquist -# b, a = signal.butter(1, normal_cutoff, btype='low', analog=False) -# filtered_ecg = signal.filtfilt(b, a, ecg_signal) -# return filtered_ecg - -# # Bandpass filter and peak detection -# def detect_r_peaks(ecg_signal): -# lowcut = 0.5 # Lower bound of heart rate (0.5 Hz = 30 BPM) -# highcut = 5.0 # Upper bound of heart rate (5 Hz = 300 BPM) -# fs = 100 # Sample rate (100 Hz) - -# nyquist = 0.5 * fs -# low = lowcut / nyquist -# high = highcut / nyquist -# b, a = signal.butter(1, [low, high], btype='band') -# filtered_ecg = signal.filtfilt(b, a, ecg_signal) - -# # Find R-peaks (local maxima) in the filtered ECG signal -# peaks, _ = signal.find_peaks(filtered_ecg, distance=fs / 2) # Adjust distance for heart rate -# return peaks - -# # Function to calculate BPM -# def calculate_bpm(peaks, sample_rate=100): -# rr_intervals = np.diff(peaks) / sample_rate # RR intervals in seconds -# bpm = 60 / np.mean(rr_intervals) if len(rr_intervals) > 0 else 0 -# return bpm - -# async def send_data_from_arduino(): -# # Connect to Arduino over serial -# ser = serial.Serial('COM7', 9600) # Adjust port to your system -# uri = "ws://localhost:8000/ws/3" - -# ecg_signal = [] # Buffer for ECG data -# noise_threshold = 100 # Initial noise threshold - -# while True: -# try: -# async with websockets.connect(uri, ping_interval=20, ping_timeout=10) as websocket: -# print("Connected to WebSocket server.") -# while True: -# if ser.in_waiting > 0: -# arduino_data = ser.readline().decode('utf-8').strip() -# try: -# data = json.loads(arduino_data) -# ecg_value = data['ecg'] -# timestamp = data['timestamp'] - -# # Validate and filter ECG data -# if isinstance(ecg_value, (int, float)) and ecg_value > 0: -# rolling_std = np.std(ecg_signal[-100:]) if len(ecg_signal) >= 100 else 0 -# if ecg_value > noise_threshold + rolling_std: -# ecg_signal.append(ecg_value) - -# # Limit buffer size -# if len(ecg_signal) > 1000: -# ecg_signal = ecg_signal[-1000:] - -# if len(ecg_signal) > 100: # Ensure enough data for processing -# peaks = detect_r_peaks(np.array(ecg_signal)) -# bpm = calculate_bpm(peaks) -# print(f"BPM: {bpm}") - -# message = json.dumps({ -# "ecg": ecg_signal[-50:], # Send last 50 data points -# "bpm": bpm, -# "timestamp": timestamp -# }) -# await websocket.send(message) -# print(f"Sent: {message}") -# else: -# print("Filtered noise.") -# else: -# print("Invalid data received.") -# except json.JSONDecodeError: -# print("JSON Decode Error") - -# await asyncio.sleep(0.1) -# except websockets.exceptions.ConnectionClosed as e: -# print(f"Connection closed: {e}. Reconnecting...") -# await asyncio.sleep(2) -# except asyncio.TimeoutError: -# print("Connection timed out. Reconnecting...") -# await asyncio.sleep(2) -# except Exception as e: -# print(f"Unexpected error: {e}. Retrying in 5 seconds...") -# await asyncio.sleep(5) - -# # Graceful shutdown handler -# if __name__ == "__main__": -# try: -# asyncio.run(send_data_from_arduino()) -# except KeyboardInterrupt: -# print("Shutting down gracefully...") - - - -# import asyncio -# import websockets -# #import bitalino -# import json -# import random -# import time -# import numpy as np -# from biosppy.signals import ecg -# import datetime - - - -# async def send_random_data(): -# uri = "ws://localhost:8000/ws/3" -# while True: -# try: -# async with websockets.connect(uri, ping_interval=20, ping_timeout=10) as websocket: -# print("Connected to the WebSocket server.") -# while True: -# ecg_value = random.uniform(-1, 1) -# bpm = random.uniform(60, 100) -# timestamp = datetime.datetime.now().isoformat() -# message = json.dumps({ - -# "ecg": [ecg_value], -# "timestamp": timestamp, -# "bpm": bpm -# }) -# await websocket.send(message) -# print(f"Sent: {message}") -# await asyncio.sleep(1.5) -# except websockets.exceptions.ConnectionClosed as e: -# print(f"Connection closed: {e}. Reconnecting...") -# await asyncio.sleep(2) -# except asyncio.TimeoutError: -# print("Connection timed out. Reconnecting...") -# await asyncio.sleep(2) -# except asyncio.CancelledError: -# print("Task was cancelled. Exiting...") -# break - -# except Exception as e: -# print(f"Unexpected error: {e}. Retrying in 5 seconds...") -# await asyncio.sleep(5) - -# if __name__ == "__main__": -# asyncio.run(send_random_data()) diff --git a/docker-compose.yml b/docker-compose.yml index 21f3446..1878b46 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,7 +7,6 @@ services: - "8000:8000" environment: - SQLALCHEMY_DATABASE_URL=mysql+pymysql://user:12yt343u@db:3306/Pulseflowbridge - # put your batabase url here depends_on: db: condition: service_healthy @@ -18,7 +17,6 @@ services: image: mysql:8.0 environment: MYSQL_ROOT_PASSWORD: rootpassword - # set your database password and name MYSQL_DATABASE: Pulseflowbridge MYSQL_USER: user MYSQL_PASSWORD: 12yt343u @@ -37,3 +35,4 @@ volumes: networks: pulse-network: driver: bridge + diff --git a/ecg_log5.csv b/ecg_log5.csv new file mode 100644 index 0000000..d3e6197 --- /dev/null +++ b/ecg_log5.csv @@ -0,0 +1,9981 @@ +timestamp,ecg_value +0.029,502 +0.03,502 +0.031,502 +0.032,502 +0.033,503 +0.034,503 +0.035,503 +0.036,503 +0.037,503 +0.038,503 +0.037,503 +0.038,503 +0.039,503 +0.04,503 +0.041,503 +0.042,503 +0.043,503 +0.044,503 +0.045,503 +0.046,503 +0.048,504 +0.049,503 +0.05,503 +0.051,503 +0.052,503 +0.053,503 +0.054,503 +0.055,503 +0.056,504 +0.057,504 +0.061,504 +0.062,504 +0.063,504 +0.064,504 +0.065,504 +0.066,504 +0.067,504 +0.068,504 +0.069,504 +0.07,504 +0.07,504 +0.071,504 +0.072,504 +0.073,504 +0.074,503 +0.075,503 +0.076,503 +0.077,503 +0.078,503 +0.079,504 +0.084,504 +0.085,504 +0.086,504 +0.087,504 +0.088,504 +0.089,504 +0.09,504 +0.091,504 +0.092,504 +0.093,504 +0.09,504 +0.091,504 +0.092,505 +0.093,504 +0.094,504 +0.095,504 +0.096,504 +0.097,504 +0.098,504 +0.099,504 +0.108,504 +0.109,504 +0.11,504 +0.111,504 +0.112,504 +0.113,504 +0.114,504 +0.115,504 +0.116,505 +0.117,505 +0.11,505 +0.111,505 +0.112,504 +0.113,504 +0.114,505 +0.115,505 +0.116,504 +0.117,504 +0.118,504 +0.119,504 +0.123,504 +0.124,505 +0.125,505 +0.126,505 +0.127,505 +0.128,505 +0.129,505 +0.13,505 +0.131,505 +0.132,505 +0.133,505 +0.134,505 +0.135,505 +0.136,505 +0.137,505 +0.138,505 +0.139,505 +0.14,505 +0.141,505 +0.142,505 +0.15,505 +0.151,505 +0.152,505 +0.153,505 +0.154,505 +0.155,505 +0.156,505 +0.157,505 +0.158,505 +0.159,505 +0.154,505 +0.155,504 +0.156,504 +0.157,504 +0.158,505 +0.159,504 +0.16,504 +0.161,505 +0.162,505 +0.163,505 +0.154,505 +0.155,505 +0.156,505 +0.157,505 +0.158,505 +0.159,505 +0.16,505 +0.161,505 +0.162,505 +0.163,505 +0.169,505 +0.17,505 +0.171,505 +0.172,505 +0.173,505 +0.174,505 +0.175,505 +0.176,505 +0.177,505 +0.178,505 +0.173,505 +0.174,505 +0.175,505 +0.176,505 +0.177,505 +0.178,505 +0.179,505 +0.18,505 +0.181,505 +0.182,505 +0.194,505 +0.195,505 +0.196,505 +0.197,505 +0.198,505 +0.199,505 +0.2,505 +0.201,505 +0.202,505 +0.203,505 +0.197,505 +0.198,505 +0.199,505 +0.2,505 +0.201,505 +0.202,505 +0.203,505 +0.204,505 +0.205,505 +0.206,505 +0.212,505 +0.213,505 +0.214,505 +0.215,505 +0.216,505 +0.217,505 +0.218,504 +0.219,505 +0.22,505 +0.221,505 +0.215,505 +0.216,505 +0.217,505 +0.218,505 +0.219,505 +0.22,505 +0.221,505 +0.222,505 +0.223,505 +0.224,505 +0.23,505 +0.231,505 +0.232,505 +0.233,505 +0.234,505 +0.235,505 +0.236,505 +0.237,505 +0.238,505 +0.239,505 +0.241,505 +0.242,505 +0.243,505 +0.244,505 +0.245,505 +0.246,505 +0.247,505 +0.248,505 +0.249,505 +0.25,505 +0.25,504 +0.251,504 +0.252,505 +0.253,505 +0.254,505 +0.255,505 +0.256,505 +0.257,505 +0.258,505 +0.259,505 +0.263,505 +0.264,505 +0.265,505 +0.266,505 +0.267,505 +0.268,505 +0.269,505 +0.27,505 +0.271,505 +0.272,505 +0.288,505 +0.289,504 +0.29,504 +0.291,504 +0.292,504 +0.293,505 +0.294,505 +0.295,505 +0.296,505 +0.297,505 +0.301,505 +0.302,505 +0.303,505 +0.304,505 +0.305,505 +0.306,505 +0.307,505 +0.308,505 +0.309,505 +0.31,505 +0.304,505 +0.305,505 +0.306,505 +0.307,505 +0.308,505 +0.309,505 +0.31,505 +0.311,505 +0.312,505 +0.313,505 +0.306,505 +0.307,505 +0.308,505 +0.309,505 +0.31,505 +0.311,505 +0.312,505 +0.313,505 +0.314,505 +0.315,505 +0.316,505 +0.317,505 +0.318,505 +0.319,505 +0.32,505 +0.321,505 +0.322,505 +0.323,505 +0.324,505 +0.325,505 +0.324,505 +0.325,505 +0.326,505 +0.327,505 +0.328,505 +0.329,505 +0.33,505 +0.331,505 +0.332,505 +0.333,505 +0.341,505 +0.342,505 +0.343,505 +0.344,505 +0.345,505 +0.346,505 +0.347,505 +0.348,505 +0.349,505 +0.35,504 +0.344,505 +0.345,505 +0.346,505 +0.347,505 +0.348,505 +0.349,505 +0.35,505 +0.351,505 +0.352,505 +0.353,505 +0.345,505 +0.346,505 +0.347,505 +0.348,505 +0.349,505 +0.35,505 +0.351,505 +0.352,505 +0.353,505 +0.354,505 +0.36,505 +0.361,505 +0.362,505 +0.363,505 +0.364,505 +0.365,505 +0.366,505 +0.367,505 +0.368,505 +0.369,505 +0.366,505 +0.367,505 +0.368,505 +0.369,505 +0.37,505 +0.371,505 +0.372,505 +0.373,505 +0.374,505 +0.375,505 +0.381,505 +0.382,505 +0.383,505 +0.384,505 +0.385,505 +0.386,505 +0.387,505 +0.388,505 +0.389,505 +0.39,505 +0.388,505 +0.389,505 +0.39,505 +0.391,505 +0.392,505 +0.393,505 +0.394,505 +0.395,505 +0.396,505 +0.397,505 +0.4,505 +0.401,505 +0.402,505 +0.403,505 +0.404,505 +0.405,505 +0.406,505 +0.407,505 +0.408,505 +0.409,505 +0.418,505 +0.419,506 +0.42,506 +0.421,506 +0.422,506 +0.423,506 +0.424,506 +0.425,506 +0.426,506 +0.427,506 +0.42,506 +0.421,506 +0.422,506 +0.423,506 +0.424,506 +0.425,506 +0.426,506 +0.427,506 +0.428,506 +0.429,506 +0.433,506 +0.434,506 +0.435,506 +0.436,506 +0.437,506 +0.438,506 +0.439,506 +0.44,506 +0.441,506 +0.442,506 +0.443,506 +0.444,506 +0.445,506 +0.446,506 +0.447,506 +0.448,506 +0.449,506 +0.45,506 +0.451,506 +0.452,506 +0.453,506 +0.454,506 +0.455,506 +0.456,506 +0.457,506 +0.458,506 +0.459,506 +0.46,505 +0.461,505 +0.462,505 +0.468,505 +0.469,505 +0.47,505 +0.471,505 +0.472,505 +0.473,505 +0.474,505 +0.475,504 +0.476,504 +0.477,504 +0.472,504 +0.473,504 +0.474,504 +0.475,504 +0.476,504 +0.477,504 +0.478,504 +0.479,504 +0.48,504 +0.481,504 +0.487,504 +0.488,504 +0.489,504 +0.49,504 +0.491,504 +0.492,504 +0.493,504 +0.494,504 +0.495,504 +0.496,504 +0.487,504 +0.488,504 +0.489,504 +0.49,504 +0.491,504 +0.492,504 +0.493,504 +0.494,504 +0.495,504 +0.496,504 +0.497,504 +0.498,504 +0.499,504 +0.5,504 +0.501,504 +0.502,504 +0.503,505 +0.504,505 +0.505,505 +0.506,505 +0.512,504 +0.513,504 +0.514,504 +0.515,504 +0.516,504 +0.517,504 +0.518,504 +0.519,504 +0.52,504 +0.521,504 +0.516,504 +0.517,504 +0.518,504 +0.519,504 +0.52,504 +0.521,504 +0.522,504 +0.523,504 +0.524,505 +0.525,505 +0.531,505 +0.532,505 +0.533,505 +0.534,505 +0.535,505 +0.536,505 +0.537,505 +0.538,505 +0.539,505 +0.54,504 +0.538,504 +0.539,504 +0.54,504 +0.541,504 +0.542,504 +0.543,504 +0.544,504 +0.545,504 +0.546,504 +0.547,504 +0.554,505 +0.555,505 +0.556,505 +0.557,505 +0.558,505 +0.559,505 +0.56,506 +0.561,506 +0.562,506 +0.563,506 +0.56,507 +0.561,507 +0.562,508 +0.563,508 +0.564,508 +0.565,509 +0.566,510 +0.567,510 +0.568,511 +0.569,511 +0.575,512 +0.576,512 +0.577,513 +0.578,513 +0.579,513 +0.58,513 +0.581,513 +0.582,513 +0.583,513 +0.584,513 +0.578,512 +0.579,511 +0.58,510 +0.581,509 +0.582,508 +0.583,507 +0.584,505 +0.585,505 +0.586,504 +0.587,503 +0.593,502 +0.594,502 +0.595,501 +0.596,500 +0.597,499 +0.598,498 +0.599,497 +0.6,497 +0.601,497 +0.602,497 +0.606,497 +0.607,498 +0.608,498 +0.609,499 +0.61,499 +0.611,500 +0.612,501 +0.613,501 +0.614,502 +0.615,502 +0.613,503 +0.614,503 +0.615,503 +0.616,504 +0.617,504 +0.618,504 +0.619,504 +0.62,504 +0.621,504 +0.622,505 +0.623,505 +0.624,505 +0.625,505 +0.626,505 +0.627,505 +0.628,505 +0.629,505 +0.63,505 +0.631,505 +0.632,505 +0.641,505 +0.642,505 +0.643,505 +0.644,505 +0.645,505 +0.646,505 +0.647,505 +0.648,505 +0.649,505 +0.65,505 +0.644,505 +0.645,505 +0.646,505 +0.648,505 +0.649,505 +0.65,505 +0.651,505 +0.652,505 +0.653,505 +0.654,505 +0.645,505 +0.646,505 +0.647,505 +0.648,505 +0.649,505 +0.65,505 +0.651,505 +0.652,505 +0.653,505 +0.654,505 +0.66,505 +0.661,505 +0.662,505 +0.663,505 +0.664,505 +0.665,505 +0.666,505 +0.667,505 +0.668,505 +0.669,505 +0.667,505 +0.668,505 +0.669,505 +0.67,505 +0.671,505 +0.672,505 +0.673,505 +0.674,505 +0.675,505 +0.676,505 +0.684,505 +0.685,505 +0.686,505 +0.687,505 +0.688,505 +0.689,505 +0.69,505 +0.691,505 +0.692,505 +0.693,505 +0.687,505 +0.688,505 +0.689,505 +0.69,505 +0.691,505 +0.692,505 +0.693,505 +0.694,505 +0.695,505 +0.696,505 +0.701,505 +0.703,505 +0.704,505 +0.705,505 +0.706,505 +0.707,505 +0.708,505 +0.709,505 +0.71,505 +0.711,505 +0.708,505 +0.709,505 +0.71,505 +0.711,505 +0.712,505 +0.713,505 +0.714,505 +0.715,505 +0.716,505 +0.717,505 +0.726,505 +0.727,505 +0.728,505 +0.729,505 +0.73,505 +0.731,505 +0.732,505 +0.733,506 +0.734,506 +0.735,506 +0.729,506 +0.73,506 +0.731,506 +0.732,506 +0.733,506 +0.734,506 +0.735,505 +0.736,505 +0.737,506 +0.738,506 +0.744,506 +0.745,506 +0.746,506 +0.747,506 +0.748,506 +0.749,506 +0.75,506 +0.751,506 +0.752,506 +0.753,506 +0.752,506 +0.753,506 +0.754,506 +0.755,506 +0.756,506 +0.757,506 +0.758,506 +0.759,506 +0.76,506 +0.761,506 +0.769,506 +0.77,506 +0.771,506 +0.772,506 +0.773,506 +0.774,507 +0.775,507 +0.776,507 +0.777,507 +0.778,507 +0.772,507 +0.773,507 +0.774,507 +0.775,507 +0.776,507 +0.777,507 +0.778,507 +0.779,507 +0.78,507 +0.781,507 +0.787,507 +0.788,507 +0.789,507 +0.79,507 +0.791,507 +0.792,507 +0.793,507 +0.794,507 +0.795,507 +0.796,507 +0.794,507 +0.795,507 +0.796,507 +0.797,507 +0.798,507 +0.799,507 +0.8,507 +0.801,507 +0.802,507 +0.803,507 +0.812,507 +0.813,507 +0.814,507 +0.815,507 +0.816,507 +0.817,507 +0.818,507 +0.819,507 +0.82,507 +0.821,507 +0.816,507 +0.817,507 +0.818,507 +0.819,506 +0.82,506 +0.821,506 +0.822,506 +0.823,506 +0.824,506 +0.825,505 +0.816,505 +0.817,505 +0.818,505 +0.819,505 +0.82,505 +0.821,505 +0.822,504 +0.823,504 +0.824,504 +0.825,504 +0.831,503 +0.832,503 +0.833,503 +0.834,503 +0.835,503 +0.836,502 +0.837,502 +0.838,502 +0.839,502 +0.84,502 +0.834,502 +0.835,501 +0.836,501 +0.837,501 +0.838,501 +0.839,501 +0.84,501 +0.841,501 +0.842,501 +0.843,501 +0.85,501 +0.851,500 +0.852,500 +0.853,500 +0.854,500 +0.855,500 +0.856,500 +0.857,500 +0.858,500 +0.859,500 +0.859,500 +0.86,500 +0.861,500 +0.862,500 +0.863,500 +0.864,500 +0.865,500 +0.866,500 +0.867,500 +0.868,500 +0.874,500 +0.875,500 +0.876,500 +0.877,500 +0.878,500 +0.879,500 +0.88,500 +0.881,500 +0.882,500 +0.883,500 +0.878,500 +0.879,500 +0.88,500 +0.881,500 +0.882,500 +0.883,500 +0.884,500 +0.885,500 +0.886,500 +0.887,500 +0.893,500 +0.894,500 +0.895,500 +0.896,501 +0.897,501 +0.898,501 +0.899,501 +0.9,501 +0.901,501 +0.902,501 +0.9,501 +0.901,501 +0.902,501 +0.903,501 +0.904,501 +0.905,501 +0.906,501 +0.907,501 +0.908,501 +0.909,501 +0.934,501 +0.935,501 +0.936,501 +0.937,501 +0.938,501 +0.939,501 +0.94,501 +0.941,502 +0.942,502 +0.943,501 +0.938,502 +0.939,502 +0.94,502 +0.941,502 +0.942,502 +0.943,502 +0.944,502 +0.945,502 +0.946,502 +0.947,502 +0.94,502 +0.941,502 +0.942,502 +0.943,502 +0.944,502 +0.945,502 +0.946,502 +0.947,502 +0.948,502 +0.949,502 +0.944,502 +0.945,502 +0.946,502 +0.947,502 +0.948,502 +0.949,503 +0.95,503 +0.951,503 +0.952,503 +0.953,503 +0.957,503 +0.958,503 +0.959,503 +0.96,503 +0.961,503 +0.962,503 +0.963,503 +0.964,503 +0.965,503 +0.966,503 +0.964,503 +0.965,503 +0.966,503 +0.967,503 +0.968,503 +0.969,503 +0.97,503 +0.971,503 +0.972,503 +0.973,503 +0.979,503 +0.98,503 +0.981,503 +0.982,503 +0.983,503 +0.984,504 +0.985,504 +0.986,504 +0.987,504 +0.988,504 +0.981,504 +0.982,504 +0.983,504 +0.984,504 +0.985,504 +0.986,504 +0.987,504 +0.988,504 +0.989,504 +0.99,504 +0.987,504 +0.988,504 +0.989,504 +0.99,504 +0.991,504 +0.992,504 +0.993,504 +0.994,504 +0.995,504 +0.996,504 +1.002,504 +1.003,504 +1.004,504 +1.005,504 +1.006,504 +1.007,504 +1.008,505 +1.009,505 +1.01,504 +1.011,504 +1.005,504 +1.007,504 +1.008,504 +1.009,504 +1.01,504 +1.011,504 +1.012,504 +1.013,504 +1.014,504 +1.015,504 +1.022,504 +1.023,504 +1.024,504 +1.025,504 +1.026,504 +1.027,505 +1.028,505 +1.029,505 +1.03,505 +1.031,505 +1.028,505 +1.029,504 +1.03,504 +1.031,504 +1.032,504 +1.033,504 +1.034,504 +1.035,504 +1.036,504 +1.037,504 +1.047,504 +1.048,504 +1.049,504 +1.05,504 +1.051,504 +1.052,504 +1.053,504 +1.054,504 +1.055,504 +1.056,504 +1.05,504 +1.051,504 +1.052,504 +1.053,504 +1.054,504 +1.055,504 +1.056,504 +1.057,504 +1.058,504 +1.059,504 +1.068,504 +1.069,504 +1.07,504 +1.071,504 +1.072,504 +1.073,504 +1.074,504 +1.075,504 +1.076,504 +1.077,504 +1.071,504 +1.072,504 +1.073,504 +1.074,504 +1.075,504 +1.076,504 +1.077,504 +1.078,504 +1.079,504 +1.08,504 +1.085,504 +1.086,504 +1.087,504 +1.088,504 +1.089,504 +1.09,504 +1.091,504 +1.092,504 +1.093,504 +1.094,504 +1.093,504 +1.094,504 +1.095,504 +1.096,504 +1.097,504 +1.098,504 +1.099,504 +1.1,504 +1.101,504 +1.102,504 +1.11,504 +1.111,504 +1.112,504 +1.113,504 +1.114,504 +1.115,504 +1.116,504 +1.117,504 +1.118,504 +1.119,504 +1.114,504 +1.115,504 +1.116,504 +1.117,504 +1.118,504 +1.119,504 +1.12,504 +1.121,504 +1.122,504 +1.123,504 +1.114,504 +1.115,504 +1.116,504 +1.117,504 +1.118,504 +1.119,505 +1.12,505 +1.121,505 +1.122,505 +1.123,505 +1.127,505 +1.128,505 +1.129,505 +1.13,505 +1.131,505 +1.132,505 +1.133,504 +1.134,504 +1.135,504 +1.136,504 +1.139,504 +1.14,504 +1.141,504 +1.142,504 +1.143,504 +1.144,504 +1.145,504 +1.146,504 +1.147,504 +1.148,504 +1.145,504 +1.146,505 +1.147,505 +1.148,505 +1.149,505 +1.15,505 +1.151,505 +1.152,505 +1.153,505 +1.154,505 +1.16,505 +1.161,505 +1.162,505 +1.163,505 +1.164,505 +1.165,505 +1.166,505 +1.167,505 +1.168,505 +1.169,505 +1.168,505 +1.169,505 +1.17,505 +1.171,505 +1.172,505 +1.173,505 +1.174,504 +1.175,504 +1.176,504 +1.177,504 +1.18,504 +1.181,504 +1.182,504 +1.183,505 +1.184,505 +1.185,505 +1.186,505 +1.187,505 +1.188,505 +1.189,505 +1.19,505 +1.191,505 +1.192,505 +1.193,505 +1.194,505 +1.195,505 +1.196,505 +1.197,505 +1.198,504 +1.199,505 +1.199,505 +1.2,505 +1.201,505 +1.202,505 +1.203,505 +1.204,505 +1.205,505 +1.206,505 +1.207,505 +1.208,505 +1.214,505 +1.215,505 +1.216,505 +1.217,505 +1.218,505 +1.219,505 +1.22,505 +1.221,505 +1.222,505 +1.223,505 +1.218,505 +1.219,505 +1.22,505 +1.221,505 +1.222,505 +1.223,505 +1.224,505 +1.225,505 +1.226,505 +1.227,505 +1.235,505 +1.236,505 +1.237,505 +1.238,505 +1.239,505 +1.24,505 +1.241,505 +1.242,505 +1.243,505 +1.244,505 +1.239,505 +1.24,505 +1.241,506 +1.242,505 +1.243,506 +1.244,506 +1.245,506 +1.246,506 +1.247,506 +1.248,506 +1.254,506 +1.255,505 +1.256,506 +1.257,505 +1.258,505 +1.259,505 +1.26,505 +1.261,505 +1.262,505 +1.263,505 +1.264,505 +1.265,505 +1.266,505 +1.267,505 +1.268,505 +1.269,505 +1.27,505 +1.271,505 +1.272,505 +1.273,505 +1.277,505 +1.278,505 +1.279,505 +1.28,505 +1.281,505 +1.282,505 +1.283,505 +1.284,505 +1.285,505 +1.286,505 +1.285,505 +1.286,505 +1.287,505 +1.288,505 +1.289,505 +1.29,506 +1.291,506 +1.292,505 +1.293,506 +1.294,505 +1.3,505 +1.301,505 +1.302,505 +1.303,505 +1.304,505 +1.305,505 +1.306,505 +1.307,505 +1.308,505 +1.309,505 +1.302,505 +1.303,505 +1.304,505 +1.305,505 +1.306,505 +1.307,506 +1.308,506 +1.309,506 +1.31,505 +1.311,505 +1.307,506 +1.308,506 +1.309,506 +1.31,506 +1.311,506 +1.312,506 +1.313,506 +1.314,506 +1.315,506 +1.316,506 +1.322,506 +1.323,506 +1.324,506 +1.325,506 +1.326,506 +1.327,506 +1.328,506 +1.329,506 +1.33,506 +1.331,506 +1.329,506 +1.33,506 +1.331,506 +1.332,506 +1.333,506 +1.334,506 +1.335,506 +1.336,506 +1.337,506 +1.338,506 +1.344,506 +1.345,506 +1.346,506 +1.347,506 +1.348,506 +1.349,506 +1.35,506 +1.351,506 +1.352,506 +1.353,506 +1.347,506 +1.348,506 +1.349,506 +1.35,506 +1.351,506 +1.352,506 +1.353,506 +1.354,506 +1.355,506 +1.356,506 +1.362,506 +1.363,506 +1.364,506 +1.365,506 +1.366,506 +1.367,506 +1.368,506 +1.369,506 +1.37,506 +1.371,506 +1.373,506 +1.374,506 +1.375,506 +1.376,506 +1.377,505 +1.378,505 +1.379,505 +1.381,505 +1.382,505 +1.383,505 +1.382,505 +1.383,505 +1.384,504 +1.385,504 +1.386,504 +1.387,504 +1.388,504 +1.389,504 +1.39,504 +1.391,504 +1.392,504 +1.393,504 +1.394,504 +1.395,504 +1.396,504 +1.397,504 +1.398,504 +1.399,504 +1.4,504 +1.401,504 +1.407,504 +1.408,504 +1.409,504 +1.41,504 +1.411,504 +1.412,504 +1.413,504 +1.414,504 +1.415,504 +1.416,504 +1.411,504 +1.412,504 +1.413,504 +1.414,504 +1.415,504 +1.416,504 +1.417,504 +1.418,504 +1.419,504 +1.42,504 +1.431,505 +1.432,505 +1.433,505 +1.434,505 +1.435,505 +1.436,505 +1.437,504 +1.438,504 +1.439,504 +1.44,504 +1.433,504 +1.434,504 +1.435,504 +1.436,504 +1.437,504 +1.438,504 +1.439,504 +1.44,504 +1.441,504 +1.442,504 +1.448,504 +1.449,504 +1.45,504 +1.451,504 +1.453,504 +1.454,504 +1.455,505 +1.456,505 +1.457,505 +1.458,505 +1.449,505 +1.45,505 +1.451,505 +1.452,505 +1.453,505 +1.454,505 +1.455,505 +1.456,505 +1.457,505 +1.458,505 +1.456,505 +1.457,505 +1.458,505 +1.459,505 +1.46,505 +1.461,505 +1.462,505 +1.463,505 +1.464,505 +1.465,505 +1.473,506 +1.474,506 +1.476,506 +1.477,506 +1.478,506 +1.479,507 +1.48,507 +1.481,507 +1.482,508 +1.483,508 +1.477,509 +1.478,509 +1.479,509 +1.48,510 +1.481,511 +1.482,511 +1.483,512 +1.484,512 +1.485,513 +1.486,513 +1.492,514 +1.493,514 +1.494,514 +1.495,514 +1.496,513 +1.497,513 +1.498,512 +1.499,512 +1.5,511 +1.501,509 +1.496,508 +1.497,507 +1.498,507 +1.499,506 +1.5,505 +1.501,504 +1.502,504 +1.503,503 +1.504,502 +1.505,501 +1.511,500 +1.512,499 +1.513,498 +1.514,497 +1.515,497 +1.516,497 +1.517,497 +1.518,497 +1.519,497 +1.52,498 +1.521,498 +1.522,499 +1.523,500 +1.524,500 +1.525,501 +1.526,502 +1.527,502 +1.528,503 +1.529,503 +1.53,503 +1.531,504 +1.532,504 +1.533,504 +1.534,505 +1.535,505 +1.536,505 +1.537,505 +1.538,505 +1.539,505 +1.54,505 +1.539,505 +1.54,505 +1.542,505 +1.543,505 +1.544,505 +1.545,506 +1.546,506 +1.547,506 +1.548,506 +1.549,506 +1.571,506 +1.572,506 +1.573,506 +1.574,506 +1.575,506 +1.576,506 +1.577,506 +1.578,506 +1.579,506 +1.58,506 +1.575,506 +1.576,506 +1.577,506 +1.578,506 +1.579,506 +1.58,506 +1.581,506 +1.582,506 +1.583,506 +1.584,506 +1.577,506 +1.578,506 +1.579,506 +1.58,506 +1.581,506 +1.582,506 +1.583,506 +1.584,506 +1.585,506 +1.586,506 +1.584,506 +1.585,506 +1.586,506 +1.587,506 +1.588,506 +1.589,506 +1.59,506 +1.591,506 +1.592,506 +1.593,506 +1.594,506 +1.595,506 +1.596,506 +1.597,506 +1.598,506 +1.599,506 +1.6,506 +1.601,506 +1.602,506 +1.603,506 +1.604,506 +1.605,506 +1.606,506 +1.607,506 +1.608,506 +1.609,506 +1.61,506 +1.611,506 +1.612,506 +1.613,506 +1.622,506 +1.623,506 +1.624,506 +1.625,506 +1.626,506 +1.627,506 +1.628,506 +1.629,506 +1.63,506 +1.631,506 +1.624,506 +1.625,506 +1.626,506 +1.627,506 +1.628,506 +1.629,506 +1.63,506 +1.631,506 +1.632,506 +1.633,506 +1.626,506 +1.627,506 +1.628,506 +1.629,506 +1.63,506 +1.631,506 +1.632,506 +1.633,506 +1.634,506 +1.635,506 +1.641,506 +1.642,506 +1.643,506 +1.644,507 +1.645,507 +1.646,507 +1.647,507 +1.648,507 +1.649,506 +1.65,506 +1.647,506 +1.648,506 +1.649,507 +1.65,507 +1.651,507 +1.652,507 +1.653,507 +1.654,507 +1.655,507 +1.656,507 +1.662,507 +1.663,507 +1.664,507 +1.665,507 +1.666,507 +1.667,507 +1.668,507 +1.669,507 +1.67,507 +1.671,507 +1.668,507 +1.669,507 +1.67,507 +1.671,507 +1.672,507 +1.673,507 +1.674,507 +1.675,507 +1.676,507 +1.677,507 +1.684,507 +1.685,508 +1.686,508 +1.687,508 +1.688,508 +1.689,508 +1.69,508 +1.691,508 +1.692,508 +1.693,508 +1.688,508 +1.689,508 +1.69,508 +1.691,508 +1.692,508 +1.693,508 +1.694,508 +1.695,508 +1.696,508 +1.698,508 +1.703,508 +1.704,508 +1.705,508 +1.706,508 +1.707,508 +1.708,508 +1.709,509 +1.71,509 +1.711,508 +1.712,508 +1.713,508 +1.714,508 +1.715,508 +1.716,508 +1.717,508 +1.718,508 +1.719,508 +1.72,508 +1.721,508 +1.722,508 +1.73,508 +1.731,508 +1.732,508 +1.733,508 +1.734,508 +1.735,508 +1.736,507 +1.737,507 +1.738,507 +1.739,507 +1.733,507 +1.734,507 +1.735,507 +1.736,507 +1.737,507 +1.738,506 +1.739,506 +1.74,506 +1.741,506 +1.742,506 +1.75,505 +1.751,505 +1.752,505 +1.753,505 +1.754,505 +1.755,505 +1.756,505 +1.757,504 +1.758,504 +1.759,504 +1.753,504 +1.754,504 +1.755,504 +1.756,503 +1.757,503 +1.758,503 +1.759,503 +1.76,503 +1.761,502 +1.762,502 +1.77,502 +1.771,502 +1.772,502 +1.773,502 +1.774,502 +1.775,502 +1.776,502 +1.777,502 +1.778,501 +1.779,501 +1.771,501 +1.772,501 +1.773,501 +1.774,501 +1.775,501 +1.776,501 +1.777,501 +1.778,501 +1.779,501 +1.78,501 +1.774,501 +1.775,501 +1.776,501 +1.777,501 +1.778,501 +1.779,501 +1.78,501 +1.781,501 +1.782,501 +1.783,501 +1.789,501 +1.79,501 +1.791,501 +1.792,501 +1.793,501 +1.794,501 +1.795,501 +1.796,501 +1.797,501 +1.798,501 +1.797,501 +1.798,501 +1.799,501 +1.8,501 +1.801,501 +1.802,501 +1.803,501 +1.804,501 +1.805,501 +1.806,501 +1.814,501 +1.815,501 +1.816,501 +1.817,501 +1.818,501 +1.819,501 +1.82,501 +1.821,501 +1.822,501 +1.823,501 +1.818,501 +1.819,501 +1.82,502 +1.821,502 +1.822,502 +1.823,502 +1.824,502 +1.825,502 +1.826,502 +1.827,502 +1.833,502 +1.834,502 +1.835,502 +1.836,502 +1.837,502 +1.838,502 +1.839,502 +1.84,502 +1.841,503 +1.842,503 +1.836,503 +1.838,502 +1.839,502 +1.84,502 +1.841,502 +1.842,502 +1.843,502 +1.844,503 +1.845,502 +1.846,503 +1.853,503 +1.854,503 +1.855,503 +1.856,503 +1.857,503 +1.858,503 +1.859,503 +1.86,503 +1.861,503 +1.862,503 +1.86,503 +1.861,503 +1.862,503 +1.863,503 +1.864,503 +1.865,503 +1.866,503 +1.867,503 +1.868,503 +1.869,503 +1.875,503 +1.876,503 +1.877,503 +1.878,503 +1.879,503 +1.88,503 +1.881,503 +1.882,503 +1.883,503 +1.884,503 +1.879,503 +1.88,503 +1.881,503 +1.882,504 +1.883,504 +1.884,504 +1.885,504 +1.886,504 +1.887,504 +1.888,504 +1.894,504 +1.895,504 +1.896,504 +1.897,504 +1.898,504 +1.899,504 +1.9,504 +1.901,504 +1.902,504 +1.903,504 +1.905,504 +1.906,504 +1.907,504 +1.908,504 +1.909,504 +1.91,504 +1.911,504 +1.912,504 +1.913,504 +1.914,504 +1.917,504 +1.918,504 +1.919,504 +1.92,504 +1.921,504 +1.922,504 +1.923,504 +1.924,504 +1.925,504 +1.926,504 +1.925,504 +1.926,504 +1.927,504 +1.928,504 +1.929,504 +1.93,504 +1.931,504 +1.932,505 +1.933,505 +1.934,505 +1.94,505 +1.941,505 +1.942,505 +1.943,505 +1.944,504 +1.945,504 +1.946,504 +1.947,504 +1.948,504 +1.949,504 +1.942,504 +1.943,504 +1.944,504 +1.945,504 +1.946,505 +1.947,505 +1.948,505 +1.949,505 +1.95,505 +1.951,505 +1.947,505 +1.948,505 +1.949,505 +1.95,505 +1.951,505 +1.952,504 +1.953,504 +1.954,504 +1.955,504 +1.956,505 +1.96,505 +1.961,505 +1.962,505 +1.963,505 +1.964,505 +1.965,505 +1.966,505 +1.967,505 +1.968,505 +1.969,505 +1.97,505 +1.971,505 +1.972,505 +1.973,505 +1.974,505 +1.975,505 +1.976,505 +1.977,505 +1.978,505 +1.979,505 +1.98,505 +1.981,505 +1.982,505 +1.983,505 +1.984,505 +1.985,505 +1.986,505 +1.987,505 +1.988,505 +1.989,505 +1.992,505 +1.993,505 +1.994,505 +1.995,505 +1.996,505 +1.997,505 +1.998,505 +1.999,505 +2.0,505 +2.001,505 +2.003,505 +2.004,505 +2.005,505 +2.006,505 +2.007,505 +2.008,505 +2.009,505 +2.01,505 +2.011,505 +2.012,505 +2.013,505 +2.015,505 +2.016,505 +2.017,505 +2.018,505 +2.019,505 +2.02,504 +2.021,504 +2.022,504 +2.023,504 +2.022,504 +2.023,504 +2.024,504 +2.025,505 +2.026,505 +2.027,505 +2.028,505 +2.029,505 +2.03,505 +2.031,504 +2.032,504 +2.033,504 +2.034,504 +2.035,504 +2.036,504 +2.037,504 +2.038,504 +2.039,504 +2.04,504 +2.041,504 +2.047,504 +2.048,504 +2.049,504 +2.05,504 +2.051,505 +2.052,505 +2.053,505 +2.054,505 +2.055,505 +2.056,505 +2.051,505 +2.052,505 +2.053,505 +2.054,505 +2.055,505 +2.056,505 +2.057,505 +2.058,505 +2.059,504 +2.06,504 +2.066,504 +2.067,504 +2.068,505 +2.069,505 +2.07,505 +2.071,505 +2.072,505 +2.073,505 +2.074,505 +2.075,505 +2.076,505 +2.077,505 +2.078,505 +2.079,505 +2.08,505 +2.081,504 +2.082,504 +2.083,504 +2.084,504 +2.085,504 +2.086,505 +2.087,505 +2.088,505 +2.089,505 +2.09,505 +2.091,505 +2.092,505 +2.093,505 +2.094,505 +2.095,505 +2.086,505 +2.087,505 +2.088,505 +2.089,505 +2.09,505 +2.091,505 +2.092,504 +2.093,504 +2.094,504 +2.095,504 +2.096,504 +2.097,504 +2.098,505 +2.099,505 +2.1,505 +2.101,505 +2.102,505 +2.103,505 +2.104,504 +2.105,504 +2.113,505 +2.114,505 +2.115,505 +2.116,505 +2.117,505 +2.118,504 +2.119,504 +2.12,504 +2.121,504 +2.122,504 +2.116,504 +2.117,504 +2.118,504 +2.119,504 +2.12,505 +2.121,505 +2.122,505 +2.123,505 +2.124,505 +2.125,505 +2.131,505 +2.133,505 +2.134,505 +2.135,505 +2.136,505 +2.137,505 +2.138,505 +2.139,505 +2.14,505 +2.141,505 +2.135,505 +2.136,505 +2.137,505 +2.138,505 +2.139,505 +2.14,505 +2.141,505 +2.142,505 +2.143,505 +2.144,505 +2.15,505 +2.151,505 +2.152,505 +2.153,505 +2.154,505 +2.155,505 +2.156,505 +2.157,505 +2.158,505 +2.159,505 +2.161,505 +2.162,505 +2.163,505 +2.164,505 +2.165,504 +2.166,505 +2.167,505 +2.168,505 +2.169,505 +2.17,505 +2.17,505 +2.171,505 +2.172,505 +2.173,505 +2.174,505 +2.175,505 +2.176,505 +2.177,505 +2.178,505 +2.179,505 +2.198,505 +2.199,505 +2.2,505 +2.201,505 +2.202,505 +2.203,505 +2.204,505 +2.205,505 +2.206,505 +2.207,505 +2.218,505 +2.219,505 +2.22,505 +2.221,505 +2.222,505 +2.223,505 +2.224,505 +2.225,505 +2.226,505 +2.227,505 +2.221,505 +2.222,505 +2.223,505 +2.224,505 +2.225,505 +2.226,505 +2.227,505 +2.228,505 +2.229,505 +2.23,505 +2.223,505 +2.224,505 +2.225,505 +2.226,505 +2.227,506 +2.228,506 +2.229,506 +2.23,506 +2.231,506 +2.232,506 +2.225,506 +2.226,506 +2.227,506 +2.228,506 +2.229,506 +2.23,506 +2.231,506 +2.232,506 +2.233,506 +2.234,506 +2.242,506 +2.243,506 +2.244,506 +2.245,506 +2.246,506 +2.247,506 +2.248,505 +2.249,505 +2.25,505 +2.251,505 +2.245,505 +2.246,505 +2.247,505 +2.248,505 +2.249,505 +2.25,505 +2.251,505 +2.252,505 +2.253,505 +2.254,505 +2.263,505 +2.264,505 +2.265,505 +2.266,505 +2.267,505 +2.268,505 +2.269,505 +2.27,505 +2.271,505 +2.272,505 +2.268,505 +2.269,505 +2.27,505 +2.271,505 +2.272,505 +2.273,505 +2.274,505 +2.275,504 +2.276,504 +2.277,504 +2.27,504 +2.271,504 +2.272,504 +2.273,504 +2.274,504 +2.275,504 +2.276,504 +2.277,504 +2.278,504 +2.279,504 +2.277,504 +2.278,504 +2.279,504 +2.28,504 +2.281,504 +2.282,504 +2.283,504 +2.284,504 +2.285,504 +2.286,504 +2.294,504 +2.295,504 +2.296,504 +2.297,504 +2.298,504 +2.299,504 +2.3,504 +2.301,504 +2.302,504 +2.303,504 +2.297,504 +2.298,504 +2.299,504 +2.3,504 +2.301,504 +2.302,504 +2.303,504 +2.304,504 +2.305,504 +2.306,504 +2.312,504 +2.313,504 +2.314,504 +2.315,504 +2.316,504 +2.317,504 +2.318,504 +2.319,504 +2.32,504 +2.321,504 +2.322,504 +2.323,504 +2.324,504 +2.325,504 +2.326,504 +2.327,505 +2.328,505 +2.329,505 +2.33,505 +2.331,505 +2.335,505 +2.336,505 +2.337,504 +2.338,504 +2.339,504 +2.34,504 +2.341,504 +2.342,504 +2.343,504 +2.344,504 +2.341,504 +2.342,504 +2.343,504 +2.344,505 +2.345,504 +2.346,505 +2.347,505 +2.348,505 +2.349,504 +2.35,505 +2.356,505 +2.357,505 +2.358,505 +2.359,505 +2.36,505 +2.361,505 +2.362,506 +2.363,506 +2.364,506 +2.365,507 +2.362,507 +2.363,507 +2.364,508 +2.365,508 +2.366,508 +2.367,509 +2.368,509 +2.369,510 +2.37,511 +2.371,511 +2.374,512 +2.375,512 +2.376,513 +2.377,513 +2.378,513 +2.379,514 +2.38,514 +2.381,514 +2.382,514 +2.383,513 +2.384,513 +2.385,512 +2.386,511 +2.387,510 +2.388,509 +2.389,508 +2.39,506 +2.391,506 +2.392,505 +2.393,504 +2.395,503 +2.396,502 +2.397,502 +2.398,501 +2.399,500 +2.4,499 +2.401,498 +2.402,497 +2.403,496 +2.404,496 +2.412,497 +2.413,497 +2.414,497 +2.415,498 +2.416,499 +2.417,499 +2.418,500 +2.419,501 +2.42,501 +2.421,502 +2.415,502 +2.416,503 +2.417,503 +2.418,503 +2.419,504 +2.42,504 +2.422,504 +2.423,504 +2.424,504 +2.425,505 +2.416,505 +2.417,505 +2.418,505 +2.419,505 +2.42,505 +2.421,505 +2.422,505 +2.423,505 +2.424,505 +2.425,505 +2.431,505 +2.432,505 +2.433,505 +2.434,505 +2.435,505 +2.436,505 +2.437,505 +2.438,505 +2.439,505 +2.44,505 +2.435,505 +2.436,505 +2.437,505 +2.438,505 +2.439,505 +2.44,505 +2.441,505 +2.442,505 +2.443,505 +2.444,505 +2.45,505 +2.451,505 +2.452,505 +2.453,505 +2.454,505 +2.455,505 +2.456,505 +2.457,505 +2.458,505 +2.459,505 +2.46,505 +2.461,505 +2.462,505 +2.463,505 +2.464,505 +2.465,506 +2.466,506 +2.467,506 +2.468,505 +2.469,505 +2.474,505 +2.475,505 +2.476,505 +2.477,505 +2.478,505 +2.479,505 +2.48,505 +2.481,505 +2.482,505 +2.483,505 +2.478,505 +2.479,505 +2.48,505 +2.481,506 +2.482,506 +2.483,506 +2.484,506 +2.485,506 +2.486,506 +2.487,506 +2.493,506 +2.494,506 +2.495,505 +2.496,505 +2.497,505 +2.498,505 +2.499,505 +2.5,505 +2.501,505 +2.502,505 +2.501,506 +2.502,506 +2.503,506 +2.504,505 +2.505,505 +2.506,505 +2.507,506 +2.508,506 +2.509,506 +2.51,506 +2.516,506 +2.517,506 +2.518,506 +2.519,506 +2.52,506 +2.521,506 +2.522,506 +2.523,506 +2.524,506 +2.525,506 +2.52,506 +2.521,506 +2.522,506 +2.523,506 +2.524,506 +2.525,506 +2.526,506 +2.527,506 +2.528,506 +2.529,506 +2.534,506 +2.535,506 +2.536,506 +2.537,506 +2.538,506 +2.539,506 +2.54,506 +2.541,506 +2.542,506 +2.543,506 +2.545,506 +2.546,506 +2.547,506 +2.548,506 +2.549,506 +2.55,506 +2.551,506 +2.552,506 +2.553,506 +2.554,506 +2.557,506 +2.558,506 +2.559,507 +2.56,507 +2.561,507 +2.562,507 +2.563,507 +2.564,507 +2.565,507 +2.566,507 +2.564,507 +2.565,507 +2.566,507 +2.567,507 +2.568,507 +2.569,507 +2.57,507 +2.571,507 +2.572,507 +2.573,507 +2.577,507 +2.578,507 +2.579,507 +2.58,507 +2.581,507 +2.582,507 +2.583,507 +2.584,507 +2.585,508 +2.586,507 +2.579,508 +2.58,508 +2.581,508 +2.582,508 +2.583,508 +2.584,508 +2.585,508 +2.586,508 +2.587,508 +2.588,508 +2.589,508 +2.591,508 +2.592,508 +2.593,508 +2.594,508 +2.595,508 +2.596,508 +2.597,508 +2.598,508 +2.599,508 +2.6,508 +2.601,508 +2.602,508 +2.603,508 +2.604,508 +2.605,508 +2.606,508 +2.607,508 +2.608,507 +2.609,507 +2.61,507 +2.611,507 +2.612,507 +2.613,507 +2.614,507 +2.615,507 +2.616,507 +2.617,507 +2.618,506 +2.619,506 +2.62,506 +2.621,506 +2.622,506 +2.623,505 +2.624,505 +2.625,505 +2.626,505 +2.627,505 +2.628,505 +2.629,505 +2.632,504 +2.633,504 +2.634,504 +2.635,504 +2.636,504 +2.637,503 +2.638,503 +2.639,503 +2.64,503 +2.641,503 +2.642,502 +2.643,502 +2.644,502 +2.645,502 +2.646,502 +2.647,502 +2.648,502 +2.649,501 +2.65,501 +2.651,501 +2.653,501 +2.654,501 +2.655,501 +2.656,501 +2.657,501 +2.658,501 +2.659,501 +2.66,501 +2.661,501 +2.662,501 +2.662,500 +2.663,500 +2.664,500 +2.665,500 +2.666,500 +2.667,500 +2.668,500 +2.669,500 +2.67,501 +2.671,501 +2.672,501 +2.673,501 +2.674,501 +2.675,500 +2.676,500 +2.677,500 +2.678,500 +2.679,500 +2.68,500 +2.681,500 +2.686,500 +2.687,500 +2.688,500 +2.689,500 +2.69,500 +2.691,500 +2.692,501 +2.693,501 +2.694,501 +2.695,501 +2.694,501 +2.695,501 +2.696,501 +2.697,501 +2.698,501 +2.699,501 +2.7,501 +2.701,501 +2.702,501 +2.703,501 +2.712,501 +2.713,501 +2.714,501 +2.715,501 +2.716,501 +2.717,501 +2.718,502 +2.719,502 +2.72,502 +2.721,502 +2.714,502 +2.715,502 +2.716,502 +2.717,502 +2.718,502 +2.719,502 +2.72,502 +2.721,502 +2.722,502 +2.723,502 +2.73,502 +2.731,502 +2.732,502 +2.733,502 +2.734,502 +2.735,502 +2.736,502 +2.737,502 +2.738,502 +2.739,502 +2.73,502 +2.731,502 +2.732,502 +2.733,503 +2.734,503 +2.735,503 +2.736,503 +2.737,503 +2.738,503 +2.739,503 +2.734,503 +2.735,503 +2.736,503 +2.737,503 +2.738,503 +2.739,503 +2.74,503 +2.741,503 +2.742,503 +2.743,503 +2.751,503 +2.752,503 +2.753,503 +2.754,503 +2.755,503 +2.756,503 +2.757,503 +2.758,503 +2.759,503 +2.76,503 +2.755,503 +2.756,503 +2.757,503 +2.758,503 +2.759,503 +2.76,503 +2.761,503 +2.762,503 +2.763,504 +2.764,504 +2.77,504 +2.771,504 +2.772,504 +2.773,504 +2.774,504 +2.775,504 +2.776,504 +2.777,504 +2.778,504 +2.779,504 +2.78,504 +2.781,504 +2.782,504 +2.783,504 +2.784,504 +2.785,504 +2.786,504 +2.787,504 +2.788,504 +2.789,504 +2.791,504 +2.792,504 +2.793,504 +2.794,504 +2.795,504 +2.796,504 +2.797,504 +2.798,504 +2.799,504 +2.8,504 +2.801,504 +2.802,504 +2.803,504 +2.804,504 +2.805,504 +2.806,504 +2.807,504 +2.808,504 +2.809,504 +2.81,504 +2.811,504 +2.812,504 +2.813,504 +2.814,504 +2.815,504 +2.816,504 +2.817,504 +2.818,504 +2.819,504 +2.82,504 +2.821,504 +2.822,504 +2.823,504 +2.824,504 +2.825,504 +2.826,504 +2.827,504 +2.828,504 +2.829,504 +2.83,504 +2.85,504 +2.851,504 +2.852,504 +2.853,504 +2.854,504 +2.855,504 +2.856,504 +2.857,504 +2.858,504 +2.859,504 +2.866,504 +2.867,504 +2.868,504 +2.869,504 +2.87,504 +2.871,504 +2.872,504 +2.873,505 +2.874,505 +2.875,505 +2.869,505 +2.87,505 +2.871,505 +2.872,505 +2.873,504 +2.874,504 +2.875,504 +2.876,504 +2.877,504 +2.878,504 +2.871,504 +2.872,504 +2.873,504 +2.874,505 +2.875,505 +2.876,505 +2.877,504 +2.878,504 +2.879,504 +2.88,505 +2.875,505 +2.876,505 +2.877,505 +2.878,505 +2.879,505 +2.88,504 +2.881,504 +2.882,504 +2.883,504 +2.884,504 +2.887,504 +2.888,504 +2.889,504 +2.89,504 +2.891,505 +2.892,505 +2.893,505 +2.894,505 +2.895,505 +2.896,505 +2.896,504 +2.897,504 +2.898,504 +2.899,505 +2.9,505 +2.901,505 +2.902,505 +2.903,504 +2.904,504 +2.905,504 +2.899,504 +2.9,504 +2.901,504 +2.902,505 +2.903,505 +2.904,505 +2.905,505 +2.906,505 +2.907,505 +2.908,505 +2.913,505 +2.914,505 +2.915,505 +2.916,505 +2.917,505 +2.918,505 +2.919,505 +2.92,505 +2.921,505 +2.922,505 +2.915,505 +2.916,505 +2.917,505 +2.918,505 +2.919,505 +2.92,505 +2.921,505 +2.922,505 +2.923,505 +2.924,505 +2.933,505 +2.934,505 +2.935,505 +2.936,505 +2.937,505 +2.938,505 +2.939,505 +2.94,505 +2.941,505 +2.942,505 +2.937,505 +2.938,505 +2.939,505 +2.94,505 +2.941,505 +2.942,505 +2.943,505 +2.944,505 +2.945,505 +2.946,505 +2.952,505 +2.953,505 +2.954,505 +2.955,505 +2.956,505 +2.957,505 +2.958,505 +2.959,505 +2.96,505 +2.961,505 +2.962,505 +2.963,505 +2.964,505 +2.965,505 +2.966,505 +2.967,505 +2.968,505 +2.969,505 +2.97,505 +2.971,505 +2.975,505 +2.976,505 +2.977,505 +2.978,505 +2.979,505 +2.98,505 +2.981,505 +2.982,505 +2.983,505 +2.984,505 +2.981,505 +2.982,505 +2.983,505 +2.984,505 +2.985,505 +2.986,505 +2.987,505 +2.988,505 +2.989,505 +2.99,505 +2.993,505 +2.994,505 +2.995,505 +2.996,505 +2.997,505 +2.998,505 +2.999,505 +3.0,505 +3.001,505 +3.002,505 +3.011,505 +3.012,505 +3.013,505 +3.014,505 +3.015,505 +3.016,505 +3.017,505 +3.018,505 +3.019,505 +3.02,505 +3.013,505 +3.014,505 +3.015,505 +3.016,505 +3.017,505 +3.018,505 +3.019,505 +3.02,505 +3.021,505 +3.022,505 +3.028,505 +3.029,505 +3.03,505 +3.031,505 +3.032,505 +3.033,505 +3.034,505 +3.035,505 +3.036,505 +3.037,505 +3.031,505 +3.032,505 +3.033,505 +3.034,505 +3.035,505 +3.036,505 +3.037,505 +3.038,505 +3.039,505 +3.04,505 +3.049,505 +3.05,505 +3.051,505 +3.052,505 +3.053,505 +3.054,505 +3.055,505 +3.056,505 +3.057,505 +3.058,505 +3.049,505 +3.05,505 +3.051,505 +3.052,505 +3.053,505 +3.054,505 +3.055,505 +3.056,505 +3.057,505 +3.058,505 +3.053,505 +3.054,505 +3.055,505 +3.056,505 +3.057,505 +3.058,505 +3.059,505 +3.06,505 +3.061,505 +3.062,505 +3.071,505 +3.072,505 +3.073,505 +3.075,505 +3.076,505 +3.077,505 +3.078,505 +3.079,505 +3.08,505 +3.081,505 +3.08,505 +3.081,505 +3.082,505 +3.083,505 +3.084,505 +3.085,505 +3.086,505 +3.087,505 +3.088,505 +3.089,505 +3.087,505 +3.088,505 +3.089,505 +3.09,505 +3.091,505 +3.092,505 +3.093,505 +3.094,505 +3.095,505 +3.096,505 +3.098,505 +3.099,505 +3.1,505 +3.101,505 +3.102,505 +3.103,505 +3.104,505 +3.105,505 +3.106,505 +3.107,505 +3.113,505 +3.114,505 +3.115,505 +3.116,505 +3.117,505 +3.118,505 +3.119,505 +3.12,505 +3.121,505 +3.122,505 +3.117,505 +3.118,505 +3.119,505 +3.12,505 +3.121,505 +3.122,505 +3.123,505 +3.124,505 +3.125,505 +3.126,505 +3.134,505 +3.135,505 +3.136,505 +3.138,505 +3.139,505 +3.14,505 +3.141,505 +3.142,505 +3.143,505 +3.144,505 +3.138,505 +3.139,505 +3.14,505 +3.141,505 +3.142,505 +3.143,505 +3.144,505 +3.145,505 +3.146,505 +3.147,505 +3.153,505 +3.154,505 +3.155,505 +3.156,505 +3.157,505 +3.158,505 +3.159,505 +3.16,505 +3.161,505 +3.162,505 +3.164,505 +3.165,505 +3.166,505 +3.167,505 +3.168,505 +3.169,505 +3.17,505 +3.171,505 +3.172,505 +3.173,505 +3.174,505 +3.175,505 +3.176,505 +3.177,505 +3.178,505 +3.179,505 +3.18,505 +3.181,505 +3.182,505 +3.183,505 +3.184,505 +3.185,505 +3.186,505 +3.187,505 +3.188,505 +3.189,505 +3.19,505 +3.191,505 +3.192,505 +3.193,505 +3.194,505 +3.195,505 +3.196,506 +3.197,505 +3.198,505 +3.199,506 +3.2,506 +3.201,506 +3.202,506 +3.203,506 +3.205,506 +3.206,506 +3.207,506 +3.208,506 +3.209,506 +3.21,506 +3.211,506 +3.212,506 +3.213,506 +3.214,506 +3.22,506 +3.221,506 +3.222,506 +3.223,506 +3.224,506 +3.225,505 +3.226,505 +3.227,505 +3.228,505 +3.229,505 +3.222,505 +3.223,505 +3.224,505 +3.225,505 +3.226,505 +3.228,505 +3.229,505 +3.23,505 +3.231,505 +3.232,505 +3.224,505 +3.225,505 +3.226,505 +3.227,505 +3.228,505 +3.229,505 +3.23,505 +3.231,505 +3.232,505 +3.233,505 +3.242,505 +3.243,505 +3.244,505 +3.245,504 +3.246,504 +3.247,504 +3.248,504 +3.249,504 +3.25,504 +3.251,504 +3.245,504 +3.246,504 +3.247,504 +3.248,504 +3.249,504 +3.25,504 +3.251,504 +3.252,504 +3.253,504 +3.254,503 +3.26,504 +3.261,504 +3.262,504 +3.263,504 +3.264,504 +3.265,504 +3.266,504 +3.267,504 +3.268,504 +3.269,504 +3.268,504 +3.269,504 +3.27,504 +3.271,504 +3.272,504 +3.273,504 +3.274,504 +3.275,504 +3.276,504 +3.277,504 +3.286,504 +3.287,504 +3.288,504 +3.289,504 +3.29,504 +3.291,504 +3.292,504 +3.293,504 +3.294,504 +3.295,504 +3.289,504 +3.29,504 +3.291,504 +3.292,504 +3.293,504 +3.294,504 +3.295,504 +3.296,504 +3.297,504 +3.298,504 +3.307,504 +3.308,504 +3.309,504 +3.31,504 +3.311,504 +3.312,504 +3.313,504 +3.314,504 +3.315,504 +3.316,504 +3.31,504 +3.311,504 +3.312,504 +3.313,504 +3.314,504 +3.315,505 +3.316,504 +3.317,504 +3.318,504 +3.319,504 +3.328,504 +3.329,504 +3.33,504 +3.331,504 +3.332,504 +3.333,504 +3.334,505 +3.335,505 +3.336,505 +3.337,505 +3.332,505 +3.333,505 +3.334,506 +3.335,506 +3.336,507 +3.337,507 +3.338,507 +3.339,507 +3.34,508 +3.341,508 +3.347,508 +3.348,509 +3.349,509 +3.35,510 +3.351,511 +3.352,511 +3.353,512 +3.354,512 +3.355,513 +3.356,513 +3.354,513 +3.355,514 +3.356,514 +3.357,514 +3.358,514 +3.359,513 +3.36,512 +3.361,512 +3.362,510 +3.363,509 +3.371,508 +3.372,507 +3.373,506 +3.374,505 +3.375,504 +3.376,503 +3.377,502 +3.378,501 +3.379,500 +3.38,500 +3.375,499 +3.376,498 +3.377,497 +3.378,497 +3.379,496 +3.38,496 +3.381,497 +3.382,497 +3.383,497 +3.384,498 +3.375,499 +3.376,499 +3.377,500 +3.378,501 +3.379,501 +3.38,502 +3.381,502 +3.382,502 +3.383,503 +3.384,503 +3.39,504 +3.391,504 +3.392,504 +3.393,504 +3.394,505 +3.395,505 +3.396,505 +3.397,505 +3.398,505 +3.399,505 +3.394,505 +3.395,505 +3.396,505 +3.397,505 +3.398,505 +3.399,505 +3.4,505 +3.401,505 +3.402,505 +3.403,505 +3.412,505 +3.413,505 +3.414,505 +3.415,505 +3.416,505 +3.417,505 +3.418,505 +3.419,505 +3.42,505 +3.421,505 +3.415,505 +3.416,505 +3.417,505 +3.418,505 +3.419,505 +3.42,505 +3.421,505 +3.422,505 +3.423,505 +3.424,505 +3.43,505 +3.431,505 +3.432,505 +3.433,505 +3.434,505 +3.435,505 +3.436,505 +3.437,505 +3.438,505 +3.439,505 +3.443,505 +3.444,505 +3.445,505 +3.446,505 +3.447,505 +3.448,506 +3.449,506 +3.45,506 +3.451,506 +3.452,506 +3.449,506 +3.45,505 +3.451,506 +3.452,505 +3.453,505 +3.454,505 +3.455,505 +3.456,505 +3.457,505 +3.458,505 +3.464,505 +3.465,506 +3.466,506 +3.467,506 +3.468,506 +3.469,506 +3.47,506 +3.471,506 +3.472,506 +3.473,506 +3.492,506 +3.493,506 +3.494,506 +3.495,506 +3.496,506 +3.497,506 +3.498,506 +3.499,506 +3.5,506 +3.501,506 +3.495,506 +3.496,506 +3.497,506 +3.498,506 +3.499,506 +3.5,506 +3.501,506 +3.502,506 +3.503,506 +3.504,506 +3.498,506 +3.499,506 +3.5,506 +3.501,506 +3.502,506 +3.503,506 +3.504,506 +3.505,506 +3.506,506 +3.507,506 +3.505,506 +3.506,506 +3.507,506 +3.508,506 +3.509,506 +3.51,506 +3.511,506 +3.512,506 +3.513,506 +3.514,506 +3.516,506 +3.517,506 +3.518,506 +3.519,506 +3.52,506 +3.522,506 +3.523,506 +3.524,506 +3.525,506 +3.526,506 +3.528,506 +3.529,506 +3.53,507 +3.531,507 +3.532,507 +3.533,507 +3.534,507 +3.535,507 +3.536,507 +3.537,507 +3.535,507 +3.536,507 +3.537,507 +3.538,507 +3.539,507 +3.54,507 +3.542,507 +3.543,507 +3.544,507 +3.545,507 +3.538,507 +3.539,507 +3.54,507 +3.541,508 +3.542,508 +3.543,508 +3.544,508 +3.545,508 +3.546,508 +3.547,508 +3.553,508 +3.554,508 +3.555,508 +3.556,508 +3.557,508 +3.558,508 +3.559,508 +3.56,508 +3.561,508 +3.562,508 +3.556,508 +3.557,508 +3.558,508 +3.559,508 +3.56,508 +3.561,508 +3.562,508 +3.563,508 +3.564,508 +3.565,508 +3.57,508 +3.571,508 +3.572,508 +3.573,508 +3.574,508 +3.576,508 +3.577,508 +3.578,508 +3.579,508 +3.58,508 +3.579,508 +3.58,508 +3.581,508 +3.582,507 +3.583,507 +3.584,507 +3.585,507 +3.586,507 +3.587,507 +3.588,507 +3.589,507 +3.59,507 +3.591,506 +3.592,506 +3.593,506 +3.594,506 +3.595,506 +3.596,506 +3.597,506 +3.598,506 +3.614,505 +3.615,505 +3.616,505 +3.617,505 +3.618,505 +3.619,504 +3.62,504 +3.621,504 +3.622,504 +3.623,504 +3.62,504 +3.621,503 +3.622,503 +3.623,503 +3.624,503 +3.625,502 +3.626,502 +3.627,502 +3.628,502 +3.629,502 +3.623,502 +3.624,502 +3.625,502 +3.626,501 +3.627,501 +3.628,501 +3.629,501 +3.63,501 +3.631,501 +3.632,501 +3.638,501 +3.639,501 +3.64,500 +3.641,500 +3.642,500 +3.643,500 +3.644,500 +3.645,500 +3.646,500 +3.647,500 +3.64,500 +3.641,500 +3.642,500 +3.643,500 +3.644,500 +3.645,500 +3.646,500 +3.647,500 +3.648,500 +3.649,500 +3.658,500 +3.659,500 +3.66,501 +3.661,501 +3.662,501 +3.663,501 +3.664,501 +3.665,500 +3.666,500 +3.667,500 +3.662,500 +3.663,500 +3.664,500 +3.665,500 +3.666,500 +3.667,501 +3.668,501 +3.669,501 +3.67,501 +3.671,501 +3.677,501 +3.678,501 +3.679,501 +3.68,501 +3.681,501 +3.682,501 +3.683,501 +3.684,501 +3.685,501 +3.686,501 +3.684,501 +3.685,501 +3.686,501 +3.687,501 +3.688,501 +3.689,501 +3.69,501 +3.691,501 +3.692,501 +3.693,501 +3.701,501 +3.702,502 +3.703,502 +3.704,502 +3.705,502 +3.706,502 +3.707,502 +3.708,502 +3.709,502 +3.711,502 +3.702,502 +3.703,502 +3.704,502 +3.705,502 +3.706,502 +3.707,502 +3.708,502 +3.709,502 +3.71,502 +3.711,502 +3.704,502 +3.705,502 +3.706,502 +3.707,502 +3.708,502 +3.709,502 +3.71,502 +3.711,503 +3.712,503 +3.713,503 +3.719,503 +3.72,503 +3.721,503 +3.722,503 +3.723,503 +3.724,503 +3.725,503 +3.726,503 +3.727,503 +3.728,503 +3.729,503 +3.73,503 +3.731,503 +3.732,503 +3.733,503 +3.734,503 +3.735,503 +3.736,503 +3.737,503 +3.738,503 +3.742,503 +3.743,503 +3.744,503 +3.745,503 +3.746,503 +3.747,503 +3.748,503 +3.749,503 +3.75,503 +3.751,503 +3.748,503 +3.749,503 +3.75,503 +3.751,503 +3.752,503 +3.753,503 +3.754,503 +3.755,503 +3.756,503 +3.757,503 +3.763,503 +3.764,503 +3.765,503 +3.766,504 +3.767,504 +3.768,504 +3.769,504 +3.77,504 +3.771,504 +3.772,504 +3.769,504 +3.77,504 +3.771,504 +3.772,504 +3.773,504 +3.774,504 +3.775,504 +3.776,504 +3.777,504 +3.778,504 +3.784,504 +3.785,504 +3.786,504 +3.787,504 +3.788,504 +3.789,504 +3.79,504 +3.791,504 +3.792,504 +3.793,504 +3.792,504 +3.793,504 +3.794,504 +3.795,504 +3.796,504 +3.797,504 +3.798,504 +3.799,504 +3.8,504 +3.801,504 +3.804,504 +3.805,504 +3.806,504 +3.807,504 +3.808,504 +3.809,504 +3.81,504 +3.811,504 +3.812,504 +3.813,504 +3.814,504 +3.815,504 +3.816,504 +3.817,504 +3.818,504 +3.819,504 +3.82,504 +3.821,504 +3.822,504 +3.823,504 +3.825,504 +3.826,504 +3.827,504 +3.828,504 +3.829,505 +3.83,505 +3.831,505 +3.832,505 +3.833,505 +3.834,505 +3.835,505 +3.836,505 +3.837,505 +3.838,505 +3.839,505 +3.84,505 +3.841,505 +3.842,505 +3.843,504 +3.844,504 +3.848,505 +3.849,505 +3.85,505 +3.851,505 +3.852,505 +3.853,505 +3.854,505 +3.855,505 +3.856,505 +3.857,505 +3.855,505 +3.856,505 +3.857,505 +3.858,505 +3.859,504 +3.86,504 +3.861,505 +3.862,505 +3.863,505 +3.864,505 +3.857,505 +3.858,505 +3.859,505 +3.86,505 +3.861,505 +3.862,505 +3.863,505 +3.864,505 +3.865,505 +3.866,505 +3.867,505 +3.868,505 +3.869,505 +3.87,505 +3.871,505 +3.872,505 +3.873,505 +3.874,505 +3.875,505 +3.876,504 +3.884,505 +3.885,505 +3.886,505 +3.887,505 +3.888,505 +3.889,505 +3.89,505 +3.891,505 +3.892,505 +3.893,505 +3.886,505 +3.887,505 +3.888,505 +3.889,505 +3.89,505 +3.891,505 +3.892,504 +3.893,504 +3.894,504 +3.895,504 +3.901,504 +3.902,504 +3.903,504 +3.904,504 +3.905,505 +3.906,505 +3.907,505 +3.908,505 +3.909,505 +3.91,505 +3.908,505 +3.909,505 +3.91,505 +3.911,505 +3.912,505 +3.913,505 +3.914,505 +3.915,504 +3.916,504 +3.917,504 +3.928,504 +3.929,504 +3.93,505 +3.931,505 +3.932,505 +3.933,505 +3.934,505 +3.935,505 +3.936,504 +3.937,504 +3.93,504 +3.931,504 +3.932,505 +3.933,505 +3.934,505 +3.935,505 +3.936,505 +3.937,505 +3.938,505 +3.939,505 +3.946,505 +3.947,505 +3.948,505 +3.949,505 +3.95,505 +3.951,505 +3.952,505 +3.953,505 +3.954,505 +3.955,505 +3.949,505 +3.95,505 +3.951,505 +3.952,505 +3.953,505 +3.954,505 +3.955,505 +3.956,505 +3.957,505 +3.958,505 +3.967,505 +3.968,505 +3.969,505 +3.97,505 +3.971,505 +3.972,505 +3.973,505 +3.974,505 +3.975,505 +3.976,505 +3.97,505 +3.971,505 +3.972,505 +3.973,505 +3.974,505 +3.975,505 +3.976,505 +3.977,505 +3.978,505 +3.979,505 +3.986,505 +3.987,505 +3.988,505 +3.989,505 +3.99,505 +3.991,505 +3.992,505 +3.993,505 +3.994,505 +3.995,505 +3.995,505 +3.996,505 +3.997,505 +3.998,505 +3.999,505 +4.0,505 +4.001,505 +4.002,505 +4.003,505 +4.004,505 +4.013,505 +4.014,505 +4.015,505 +4.016,505 +4.017,505 +4.018,505 +4.019,505 +4.02,505 +4.021,505 +4.022,505 +4.013,505 +4.014,505 +4.015,505 +4.016,505 +4.017,505 +4.018,505 +4.019,505 +4.02,505 +4.021,505 +4.022,505 +4.016,505 +4.017,505 +4.018,505 +4.019,505 +4.02,505 +4.021,505 +4.022,505 +4.023,505 +4.024,505 +4.025,505 +4.033,505 +4.034,505 +4.035,505 +4.036,505 +4.037,505 +4.038,505 +4.039,505 +4.04,505 +4.041,505 +4.042,505 +4.036,505 +4.037,505 +4.038,505 +4.039,505 +4.04,505 +4.041,505 +4.042,505 +4.043,505 +4.044,505 +4.045,505 +4.053,505 +4.054,505 +4.055,505 +4.056,505 +4.057,505 +4.058,505 +4.059,505 +4.06,505 +4.061,505 +4.062,505 +4.057,505 +4.058,505 +4.059,505 +4.06,505 +4.061,505 +4.062,505 +4.063,505 +4.064,505 +4.065,505 +4.066,505 +4.072,505 +4.073,505 +4.074,505 +4.075,505 +4.076,505 +4.077,505 +4.078,505 +4.079,505 +4.08,505 +4.081,505 +4.08,505 +4.081,505 +4.082,505 +4.083,505 +4.084,505 +4.085,505 +4.086,505 +4.087,505 +4.088,505 +4.089,505 +4.097,505 +4.098,505 +4.099,505 +4.1,505 +4.101,505 +4.102,505 +4.103,505 +4.104,505 +4.105,505 +4.106,505 +4.1,505 +4.101,505 +4.103,505 +4.104,505 +4.105,505 +4.106,505 +4.107,505 +4.108,505 +4.109,505 +4.11,505 +4.13,505 +4.131,505 +4.132,505 +4.133,505 +4.134,505 +4.135,505 +4.136,505 +4.137,505 +4.138,505 +4.14,505 +4.137,505 +4.138,505 +4.139,505 +4.14,505 +4.141,505 +4.142,505 +4.143,505 +4.144,505 +4.145,505 +4.146,505 +4.139,505 +4.14,505 +4.141,505 +4.142,505 +4.143,505 +4.144,505 +4.145,505 +4.146,505 +4.147,505 +4.148,505 +4.145,505 +4.146,505 +4.147,505 +4.148,505 +4.149,505 +4.15,505 +4.151,505 +4.152,505 +4.153,505 +4.155,505 +4.155,505 +4.156,505 +4.157,505 +4.158,505 +4.159,505 +4.16,505 +4.161,505 +4.162,505 +4.163,505 +4.164,505 +4.165,505 +4.166,505 +4.167,505 +4.168,505 +4.169,505 +4.17,505 +4.171,505 +4.172,505 +4.173,505 +4.174,505 +4.18,505 +4.181,505 +4.182,505 +4.183,505 +4.184,505 +4.185,505 +4.186,505 +4.187,505 +4.188,505 +4.189,505 +4.183,505 +4.184,505 +4.185,505 +4.186,505 +4.187,506 +4.188,506 +4.189,506 +4.19,506 +4.191,506 +4.192,506 +4.184,506 +4.186,506 +4.187,506 +4.188,506 +4.189,506 +4.19,506 +4.191,506 +4.192,506 +4.193,506 +4.194,506 +4.201,506 +4.202,506 +4.203,506 +4.204,506 +4.205,506 +4.206,506 +4.207,506 +4.208,506 +4.209,506 +4.21,506 +4.207,506 +4.208,506 +4.209,506 +4.21,506 +4.211,506 +4.212,506 +4.213,506 +4.214,506 +4.215,506 +4.216,506 +4.222,506 +4.223,506 +4.224,506 +4.225,505 +4.226,506 +4.227,506 +4.228,506 +4.229,506 +4.23,506 +4.231,506 +4.228,505 +4.229,506 +4.23,506 +4.231,506 +4.232,506 +4.233,506 +4.234,505 +4.235,505 +4.236,505 +4.237,505 +4.241,505 +4.242,505 +4.243,505 +4.244,505 +4.245,505 +4.246,504 +4.247,504 +4.248,504 +4.249,504 +4.25,504 +4.252,504 +4.253,504 +4.254,504 +4.255,504 +4.256,504 +4.257,504 +4.258,504 +4.259,504 +4.26,504 +4.261,504 +4.264,504 +4.265,504 +4.266,504 +4.267,504 +4.268,504 +4.269,504 +4.27,504 +4.271,504 +4.272,504 +4.273,504 +4.272,504 +4.273,504 +4.274,504 +4.275,504 +4.276,504 +4.277,504 +4.278,504 +4.279,504 +4.28,504 +4.281,504 +4.287,504 +4.288,504 +4.289,504 +4.29,504 +4.291,504 +4.292,504 +4.293,504 +4.294,504 +4.295,504 +4.296,505 +4.29,504 +4.291,504 +4.292,504 +4.294,504 +4.295,504 +4.296,504 +4.297,504 +4.298,504 +4.299,504 +4.3,504 +4.308,504 +4.309,504 +4.31,504 +4.311,504 +4.312,504 +4.313,504 +4.314,504 +4.315,504 +4.316,504 +4.317,504 +4.312,504 +4.313,504 +4.314,504 +4.315,504 +4.316,504 +4.317,504 +4.318,504 +4.319,504 +4.32,504 +4.321,504 +4.327,504 +4.328,504 +4.329,505 +4.33,505 +4.331,505 +4.332,505 +4.333,505 +4.334,505 +4.335,505 +4.336,505 +4.327,505 +4.328,506 +4.329,506 +4.33,506 +4.331,507 +4.332,507 +4.333,507 +4.334,508 +4.335,508 +4.336,509 +4.337,509 +4.338,509 +4.339,510 +4.34,510 +4.341,511 +4.342,511 +4.343,512 +4.344,512 +4.345,513 +4.346,513 +4.347,513 +4.348,513 +4.349,513 +4.35,512 +4.351,512 +4.352,511 +4.353,510 +4.354,509 +4.355,508 +4.356,507 +4.357,506 +4.358,505 +4.359,504 +4.36,504 +4.361,503 +4.362,502 +4.363,502 +4.364,501 +4.365,500 +4.366,499 +4.372,498 +4.373,497 +4.374,497 +4.375,496 +4.376,496 +4.377,497 +4.378,497 +4.379,497 +4.38,498 +4.381,499 +4.376,499 +4.377,500 +4.378,500 +4.379,501 +4.38,502 +4.381,502 +4.382,503 +4.383,503 +4.384,503 +4.385,504 +4.393,504 +4.394,504 +4.395,504 +4.396,504 +4.397,504 +4.398,505 +4.399,505 +4.4,505 +4.401,505 +4.402,505 +4.396,505 +4.397,505 +4.398,505 +4.399,505 +4.4,505 +4.401,505 +4.402,505 +4.403,505 +4.404,505 +4.405,505 +4.411,505 +4.412,505 +4.413,505 +4.414,505 +4.415,505 +4.416,505 +4.417,505 +4.418,505 +4.419,505 +4.42,505 +4.421,505 +4.422,505 +4.423,505 +4.424,505 +4.425,506 +4.426,506 +4.427,505 +4.428,505 +4.429,505 +4.43,505 +4.439,505 +4.44,505 +4.441,505 +4.442,505 +4.443,505 +4.444,505 +4.445,505 +4.446,505 +4.447,505 +4.448,505 +4.445,505 +4.446,505 +4.447,505 +4.448,505 +4.449,505 +4.45,505 +4.451,505 +4.452,505 +4.453,505 +4.454,505 +4.453,506 +4.454,506 +4.455,506 +4.456,506 +4.457,506 +4.458,506 +4.459,506 +4.46,506 +4.461,506 +4.462,505 +4.465,505 +4.466,506 +4.467,506 +4.468,506 +4.469,506 +4.47,506 +4.471,506 +4.472,506 +4.473,506 +4.474,506 +4.475,506 +4.476,506 +4.477,506 +4.478,506 +4.479,506 +4.48,506 +4.481,506 +4.482,506 +4.483,506 +4.484,506 +4.486,506 +4.487,506 +4.488,506 +4.489,506 +4.49,506 +4.491,506 +4.492,506 +4.493,506 +4.494,506 +4.495,506 +4.495,506 +4.496,506 +4.497,506 +4.498,506 +4.499,506 +4.5,506 +4.501,506 +4.502,506 +4.503,506 +4.504,506 +4.498,506 +4.499,506 +4.5,506 +4.501,506 +4.502,506 +4.503,506 +4.504,506 +4.506,506 +4.507,506 +4.508,506 +4.513,506 +4.514,506 +4.515,506 +4.516,506 +4.517,506 +4.518,506 +4.519,506 +4.52,506 +4.521,506 +4.522,506 +4.515,506 +4.516,506 +4.517,506 +4.518,506 +4.519,506 +4.52,506 +4.521,506 +4.522,506 +4.523,507 +4.524,507 +4.533,507 +4.534,507 +4.535,507 +4.536,507 +4.537,507 +4.538,507 +4.539,507 +4.54,507 +4.541,507 +4.542,507 +4.536,507 +4.537,507 +4.538,507 +4.539,507 +4.54,507 +4.541,507 +4.542,507 +4.543,507 +4.544,507 +4.545,507 +4.552,507 +4.553,507 +4.554,508 +4.555,508 +4.556,508 +4.557,508 +4.558,508 +4.559,508 +4.56,508 +4.561,508 +4.562,508 +4.563,508 +4.564,508 +4.565,508 +4.566,508 +4.567,508 +4.568,508 +4.569,508 +4.57,508 +4.571,508 +4.575,508 +4.576,508 +4.577,508 +4.578,508 +4.579,508 +4.58,508 +4.581,508 +4.582,508 +4.583,507 +4.584,507 +4.581,507 +4.582,507 +4.583,507 +4.584,507 +4.585,507 +4.586,507 +4.587,507 +4.588,507 +4.589,507 +4.59,507 +4.596,507 +4.597,507 +4.598,507 +4.599,506 +4.6,506 +4.601,506 +4.602,506 +4.603,506 +4.604,506 +4.605,505 +4.602,505 +4.603,505 +4.604,505 +4.605,505 +4.606,505 +4.607,505 +4.608,504 +4.609,504 +4.61,504 +4.611,504 +4.617,503 +4.618,503 +4.619,503 +4.62,503 +4.621,503 +4.622,503 +4.623,503 +4.624,502 +4.625,502 +4.626,502 +4.623,502 +4.624,502 +4.625,502 +4.626,502 +4.627,502 +4.628,502 +4.629,502 +4.63,501 +4.631,501 +4.632,501 +4.638,501 +4.639,501 +4.64,501 +4.641,501 +4.642,501 +4.643,501 +4.644,501 +4.645,501 +4.646,501 +4.647,500 +4.644,500 +4.645,500 +4.646,500 +4.647,500 +4.648,500 +4.649,501 +4.65,501 +4.651,501 +4.652,501 +4.653,501 +4.645,501 +4.646,501 +4.647,500 +4.648,501 +4.649,501 +4.65,501 +4.651,501 +4.652,501 +4.653,501 +4.654,501 +4.657,501 +4.658,501 +4.659,501 +4.66,501 +4.661,501 +4.662,501 +4.663,501 +4.664,501 +4.665,501 +4.666,501 +4.667,501 +4.668,501 +4.669,501 +4.67,501 +4.671,501 +4.672,501 +4.673,501 +4.674,501 +4.675,501 +4.676,501 +4.677,501 +4.678,501 +4.679,501 +4.68,501 +4.681,501 +4.682,502 +4.683,502 +4.684,502 +4.685,502 +4.686,502 +4.695,502 +4.696,502 +4.697,502 +4.698,502 +4.699,502 +4.7,502 +4.701,502 +4.702,502 +4.703,502 +4.704,502 +4.698,502 +4.699,502 +4.7,502 +4.701,502 +4.702,502 +4.703,502 +4.704,502 +4.705,502 +4.706,502 +4.707,503 +4.713,503 +4.714,503 +4.715,503 +4.716,503 +4.717,503 +4.718,503 +4.719,503 +4.72,503 +4.721,503 +4.722,503 +4.717,503 +4.718,503 +4.719,503 +4.72,503 +4.721,503 +4.722,503 +4.723,503 +4.724,503 +4.725,503 +4.726,503 +4.732,503 +4.733,503 +4.734,503 +4.735,503 +4.736,503 +4.737,503 +4.738,503 +4.739,503 +4.74,504 +4.741,504 +4.742,504 +4.743,503 +4.744,503 +4.745,503 +4.746,504 +4.747,504 +4.748,504 +4.749,504 +4.75,504 +4.751,504 +4.776,504 +4.777,504 +4.778,504 +4.779,504 +4.78,504 +4.781,504 +4.782,504 +4.783,504 +4.784,504 +4.785,504 +4.778,504 +4.779,504 +4.78,504 +4.781,504 +4.782,504 +4.783,504 +4.784,504 +4.785,504 +4.786,504 +4.787,504 +4.781,504 +4.782,504 +4.783,504 +4.784,504 +4.785,504 +4.786,504 +4.787,504 +4.788,504 +4.789,504 +4.79,504 +4.784,504 +4.785,504 +4.786,504 +4.787,504 +4.788,504 +4.789,504 +4.79,504 +4.791,504 +4.792,505 +4.793,505 +4.795,504 +4.796,504 +4.797,504 +4.798,504 +4.799,504 +4.8,504 +4.801,504 +4.802,504 +4.803,504 +4.804,504 +4.805,504 +4.806,504 +4.807,504 +4.808,504 +4.809,504 +4.81,504 +4.811,504 +4.812,504 +4.813,504 +4.814,504 +4.82,505 +4.821,505 +4.822,505 +4.823,504 +4.824,505 +4.825,505 +4.826,505 +4.827,505 +4.828,505 +4.829,505 +4.823,504 +4.824,504 +4.825,504 +4.826,504 +4.827,504 +4.828,504 +4.829,504 +4.83,504 +4.831,504 +4.832,504 +4.825,505 +4.826,505 +4.827,505 +4.828,505 +4.829,505 +4.83,505 +4.831,505 +4.832,505 +4.833,505 +4.834,504 +4.841,505 +4.842,505 +4.843,504 +4.844,504 +4.845,505 +4.846,505 +4.847,505 +4.848,505 +4.849,505 +4.85,505 +4.848,505 +4.849,505 +4.85,505 +4.851,505 +4.852,505 +4.853,505 +4.854,505 +4.855,505 +4.856,505 +4.857,505 +4.864,505 +4.865,505 +4.866,505 +4.867,505 +4.868,504 +4.869,504 +4.87,504 +4.871,505 +4.872,505 +4.873,505 +4.867,505 +4.868,505 +4.869,505 +4.87,505 +4.871,505 +4.872,505 +4.873,505 +4.874,505 +4.875,505 +4.876,505 +4.884,505 +4.885,505 +4.886,505 +4.887,505 +4.888,505 +4.889,505 +4.89,505 +4.891,505 +4.892,505 +4.893,505 +4.891,505 +4.892,505 +4.893,505 +4.894,505 +4.895,505 +4.896,505 +4.897,505 +4.898,505 +4.899,505 +4.9,505 +4.906,505 +4.907,504 +4.908,505 +4.909,505 +4.91,505 +4.911,505 +4.912,505 +4.913,505 +4.914,505 +4.915,505 +4.91,505 +4.911,505 +4.912,505 +4.913,505 +4.914,505 +4.915,505 +4.916,505 +4.917,505 +4.918,505 +4.919,505 +4.925,505 +4.926,505 +4.927,505 +4.928,505 +4.929,505 +4.93,505 +4.931,505 +4.932,505 +4.933,505 +4.934,505 +4.935,505 +4.936,505 +4.937,505 +4.938,505 +4.939,505 +4.94,505 +4.941,505 +4.942,505 +4.943,505 +4.944,505 +4.945,505 +4.946,505 +4.947,505 +4.948,505 +4.949,505 +4.95,505 +4.951,505 +4.952,505 +4.953,505 +4.954,505 +4.956,505 +4.957,505 +4.958,505 +4.959,505 +4.96,505 +4.961,505 +4.962,505 +4.963,505 +4.964,505 +4.965,505 +4.967,505 +4.968,505 +4.969,505 +4.97,505 +4.971,505 +4.972,505 +4.973,505 +4.974,505 +4.975,505 +4.976,505 +4.976,505 +4.977,505 +4.978,505 +4.979,505 +4.98,505 +4.981,505 +4.982,505 +4.983,505 +4.984,505 +4.985,505 +4.977,505 +4.978,505 +4.979,505 +4.98,505 +4.981,505 +4.982,505 +4.983,505 +4.984,505 +4.985,505 +4.986,505 +4.992,505 +4.993,505 +4.994,505 +4.995,505 +4.996,505 +4.997,505 +4.998,505 +4.999,505 +5.0,505 +5.001,505 +4.996,505 +4.997,505 +4.998,505 +4.999,505 +5.0,505 +5.001,505 +5.002,505 +5.003,505 +5.004,505 +5.005,505 +5.011,505 +5.012,505 +5.013,505 +5.014,505 +5.015,505 +5.016,505 +5.017,505 +5.018,505 +5.019,505 +5.02,505 +5.018,505 +5.019,505 +5.02,505 +5.021,505 +5.022,505 +5.023,505 +5.024,505 +5.025,505 +5.026,505 +5.027,505 +5.034,505 +5.035,505 +5.036,505 +5.037,505 +5.038,505 +5.039,505 +5.04,505 +5.041,505 +5.042,505 +5.043,505 +5.039,505 +5.04,505 +5.041,505 +5.042,505 +5.043,505 +5.044,505 +5.045,505 +5.046,505 +5.047,505 +5.048,505 +5.054,505 +5.055,505 +5.056,505 +5.057,505 +5.058,505 +5.059,505 +5.06,505 +5.061,505 +5.062,505 +5.063,505 +5.059,505 +5.06,505 +5.061,505 +5.062,505 +5.063,505 +5.064,505 +5.065,505 +5.066,505 +5.067,505 +5.068,505 +5.075,505 +5.076,505 +5.077,505 +5.078,505 +5.079,505 +5.08,505 +5.081,505 +5.082,505 +5.083,505 +5.084,505 +5.082,505 +5.083,505 +5.084,505 +5.085,505 +5.086,505 +5.087,506 +5.088,506 +5.089,506 +5.09,506 +5.091,506 +5.097,506 +5.098,506 +5.099,506 +5.1,506 +5.101,506 +5.102,506 +5.103,506 +5.104,506 +5.105,506 +5.106,506 +5.101,506 +5.102,506 +5.103,506 +5.104,506 +5.105,506 +5.106,506 +5.107,506 +5.108,506 +5.109,506 +5.11,506 +5.116,506 +5.117,506 +5.118,506 +5.119,506 +5.12,506 +5.121,506 +5.122,506 +5.123,506 +5.124,505 +5.125,505 +5.128,505 +5.129,505 +5.13,505 +5.131,505 +5.132,505 +5.133,505 +5.134,505 +5.135,505 +5.136,505 +5.137,506 +5.136,506 +5.137,506 +5.138,505 +5.139,505 +5.14,505 +5.141,505 +5.142,505 +5.143,504 +5.144,504 +5.145,504 +5.139,504 +5.14,504 +5.141,504 +5.142,504 +5.143,504 +5.144,504 +5.145,504 +5.146,504 +5.147,504 +5.148,504 +5.148,504 +5.149,504 +5.15,504 +5.151,504 +5.152,504 +5.153,504 +5.154,504 +5.155,504 +5.156,504 +5.157,504 +5.165,504 +5.166,504 +5.167,504 +5.168,504 +5.169,504 +5.17,504 +5.171,504 +5.172,504 +5.173,504 +5.176,504 +5.168,504 +5.169,504 +5.17,504 +5.171,504 +5.172,504 +5.173,504 +5.174,504 +5.175,504 +5.176,504 +5.177,504 +5.178,504 +5.179,504 +5.18,504 +5.181,504 +5.182,504 +5.183,504 +5.184,504 +5.185,504 +5.186,504 +5.187,504 +5.188,504 +5.189,504 +5.19,504 +5.191,504 +5.192,504 +5.193,504 +5.194,504 +5.195,504 +5.196,504 +5.197,504 +5.206,504 +5.207,504 +5.208,504 +5.209,504 +5.21,504 +5.211,504 +5.212,504 +5.213,504 +5.214,504 +5.215,504 +5.21,504 +5.211,504 +5.212,504 +5.213,504 +5.214,504 +5.215,504 +5.216,504 +5.217,504 +5.218,504 +5.219,505 +5.224,505 +5.225,505 +5.226,505 +5.227,505 +5.228,506 +5.229,506 +5.23,506 +5.231,507 +5.232,507 +5.233,507 +5.231,508 +5.232,508 +5.233,508 +5.234,508 +5.235,509 +5.236,509 +5.237,510 +5.238,510 +5.24,511 +5.241,511 +5.249,512 +5.251,512 +5.252,513 +5.253,513 +5.254,513 +5.255,513 +5.256,513 +5.257,512 +5.258,512 +5.259,511 +5.252,510 +5.253,509 +5.254,508 +5.255,507 +5.256,506 +5.257,505 +5.258,504 +5.259,503 +5.26,503 +5.261,502 +5.267,501 +5.268,501 +5.269,500 +5.27,499 +5.271,498 +5.272,497 +5.273,497 +5.274,497 +5.275,497 +5.276,498 +5.274,498 +5.275,499 +5.276,500 +5.277,500 +5.278,501 +5.279,501 +5.28,502 +5.281,502 +5.282,503 +5.283,503 +5.289,503 +5.291,504 +5.292,504 +5.293,504 +5.294,504 +5.295,505 +5.296,505 +5.297,505 +5.298,505 +5.299,505 +5.293,505 +5.294,505 +5.295,505 +5.296,505 +5.297,505 +5.298,505 +5.299,505 +5.3,505 +5.301,505 +5.302,505 +5.295,505 +5.296,505 +5.297,506 +5.298,506 +5.299,506 +5.3,506 +5.301,506 +5.302,506 +5.303,506 +5.304,505 +5.31,505 +5.311,506 +5.312,506 +5.313,505 +5.314,506 +5.315,506 +5.316,506 +5.317,506 +5.318,506 +5.319,506 +5.316,506 +5.317,505 +5.318,505 +5.319,505 +5.32,505 +5.321,505 +5.322,505 +5.323,505 +5.324,506 +5.325,506 +5.33,506 +5.331,505 +5.332,505 +5.333,505 +5.334,505 +5.335,505 +5.336,505 +5.337,505 +5.338,505 +5.339,506 +5.34,506 +5.341,505 +5.342,505 +5.343,505 +5.344,505 +5.345,506 +5.346,506 +5.347,506 +5.348,506 +5.349,506 +5.355,506 +5.356,506 +5.357,506 +5.358,506 +5.359,506 +5.36,506 +5.361,505 +5.362,506 +5.363,506 +5.364,505 +5.359,505 +5.36,506 +5.361,506 +5.362,506 +5.363,506 +5.364,506 +5.365,506 +5.366,506 +5.367,506 +5.368,506 +5.374,506 +5.375,506 +5.376,506 +5.377,506 +5.378,506 +5.379,506 +5.38,506 +5.381,506 +5.382,506 +5.383,506 +5.38,506 +5.382,506 +5.383,506 +5.384,506 +5.385,506 +5.386,506 +5.387,506 +5.388,506 +5.389,506 +5.39,506 +5.406,506 +5.407,506 +5.408,506 +5.409,506 +5.41,506 +5.411,506 +5.412,506 +5.413,506 +5.414,506 +5.415,506 +5.423,506 +5.424,506 +5.425,506 +5.426,506 +5.427,507 +5.428,507 +5.429,506 +5.43,506 +5.431,506 +5.432,507 +5.426,506 +5.427,507 +5.428,507 +5.429,507 +5.43,507 +5.431,507 +5.432,507 +5.433,507 +5.434,506 +5.435,506 +5.428,507 +5.429,507 +5.43,507 +5.431,507 +5.432,507 +5.433,507 +5.434,507 +5.435,507 +5.436,507 +5.437,507 +5.432,507 +5.433,507 +5.434,507 +5.435,507 +5.436,507 +5.437,507 +5.438,507 +5.439,507 +5.44,507 +5.441,507 +5.448,507 +5.449,507 +5.45,508 +5.451,508 +5.452,508 +5.453,508 +5.454,508 +5.455,508 +5.456,508 +5.457,508 +5.457,508 +5.458,508 +5.459,508 +5.46,508 +5.461,508 +5.462,508 +5.463,508 +5.464,508 +5.465,508 +5.466,508 +5.461,508 +5.462,508 +5.463,508 +5.464,508 +5.465,508 +5.466,508 +5.467,508 +5.468,508 +5.469,508 +5.47,508 +5.47,508 +5.471,508 +5.472,508 +5.473,508 +5.474,508 +5.475,508 +5.476,507 +5.477,507 +5.478,507 +5.479,507 +5.477,507 +5.478,507 +5.479,507 +5.48,507 +5.481,507 +5.482,506 +5.483,506 +5.484,506 +5.485,506 +5.486,506 +5.495,506 +5.496,505 +5.497,505 +5.498,505 +5.499,505 +5.5,505 +5.501,505 +5.502,504 +5.503,504 +5.504,504 +5.5,504 +5.501,504 +5.502,504 +5.503,504 +5.504,503 +5.505,503 +5.506,503 +5.507,503 +5.508,503 +5.509,503 +5.51,503 +5.511,503 +5.512,502 +5.513,502 +5.514,502 +5.515,502 +5.516,502 +5.517,502 +5.518,502 +5.519,502 +5.525,501 +5.526,501 +5.527,501 +5.528,501 +5.529,501 +5.53,501 +5.531,501 +5.532,501 +5.533,501 +5.534,501 +5.529,501 +5.53,501 +5.531,501 +5.532,501 +5.533,501 +5.534,501 +5.535,501 +5.536,501 +5.537,501 +5.538,501 +5.543,501 +5.544,501 +5.545,501 +5.546,501 +5.547,501 +5.548,501 +5.549,501 +5.55,501 +5.551,501 +5.552,501 +5.553,501 +5.554,501 +5.555,502 +5.556,502 +5.557,502 +5.558,502 +5.559,502 +5.56,502 +5.561,502 +5.562,502 +5.564,502 +5.565,502 +5.566,502 +5.567,502 +5.568,502 +5.569,502 +5.57,502 +5.571,502 +5.572,502 +5.573,502 +5.575,502 +5.576,502 +5.577,502 +5.578,502 +5.579,502 +5.58,502 +5.581,502 +5.582,502 +5.583,502 +5.584,502 +5.585,502 +5.586,502 +5.587,502 +5.588,502 +5.589,502 +5.59,502 +5.591,502 +5.592,502 +5.593,503 +5.594,503 +5.595,503 +5.596,503 +5.597,503 +5.598,503 +5.599,503 +5.6,503 +5.601,503 +5.602,503 +5.603,503 +5.604,503 +5.607,503 +5.608,503 +5.609,503 +5.61,503 +5.611,503 +5.612,503 +5.613,503 +5.614,503 +5.615,503 +5.616,503 +5.607,503 +5.608,503 +5.609,503 +5.61,503 +5.611,503 +5.612,503 +5.613,503 +5.614,503 +5.615,503 +5.616,503 +5.618,503 +5.619,503 +5.62,503 +5.621,503 +5.622,503 +5.623,503 +5.624,503 +5.625,504 +5.626,504 +5.627,504 +5.627,504 +5.628,504 +5.629,504 +5.63,504 +5.631,504 +5.632,504 +5.633,504 +5.634,504 +5.635,504 +5.636,504 +5.638,504 +5.639,504 +5.64,504 +5.641,504 +5.642,504 +5.643,504 +5.644,504 +5.645,504 +5.646,504 +5.647,504 +5.652,504 +5.653,504 +5.654,504 +5.655,504 +5.656,504 +5.657,504 +5.658,504 +5.659,504 +5.66,504 +5.661,504 +5.656,504 +5.657,504 +5.658,504 +5.659,504 +5.66,504 +5.661,505 +5.662,505 +5.663,505 +5.664,505 +5.665,505 +5.671,505 +5.672,505 +5.673,505 +5.674,505 +5.675,505 +5.676,505 +5.677,505 +5.678,505 +5.679,505 +5.68,505 +5.681,505 +5.682,505 +5.683,505 +5.684,505 +5.685,505 +5.686,505 +5.687,505 +5.688,505 +5.689,505 +5.69,505 +5.696,505 +5.697,505 +5.698,505 +5.699,505 +5.7,505 +5.701,505 +5.702,505 +5.703,505 +5.704,505 +5.705,505 +5.699,505 +5.7,505 +5.701,505 +5.702,505 +5.703,505 +5.704,505 +5.705,505 +5.706,505 +5.707,505 +5.708,505 +5.717,505 +5.718,505 +5.719,505 +5.72,505 +5.721,505 +5.722,505 +5.723,505 +5.724,505 +5.725,505 +5.726,505 +5.72,505 +5.721,505 +5.722,505 +5.723,505 +5.724,505 +5.725,505 +5.726,505 +5.727,505 +5.728,505 +5.729,505 +5.739,505 +5.74,505 +5.741,505 +5.742,505 +5.743,505 +5.744,505 +5.745,505 +5.746,505 +5.747,505 +5.748,505 +5.742,505 +5.743,505 +5.744,505 +5.745,505 +5.746,505 +5.747,505 +5.748,505 +5.749,505 +5.75,505 +5.751,504 +5.757,504 +5.758,504 +5.759,505 +5.76,505 +5.761,505 +5.762,505 +5.763,505 +5.764,505 +5.765,505 +5.766,505 +5.764,505 +5.765,505 +5.766,505 +5.767,505 +5.768,505 +5.769,505 +5.77,505 +5.771,505 +5.772,505 +5.773,505 +5.782,505 +5.783,505 +5.784,505 +5.785,505 +5.786,505 +5.787,505 +5.788,505 +5.789,505 +5.79,505 +5.791,505 +5.784,505 +5.785,505 +5.786,505 +5.787,505 +5.788,505 +5.789,505 +5.79,505 +5.791,505 +5.792,504 +5.793,504 +5.786,504 +5.787,504 +5.788,504 +5.789,505 +5.79,505 +5.791,505 +5.792,505 +5.793,505 +5.794,505 +5.795,505 +5.801,504 +5.802,505 +5.803,505 +5.804,505 +5.805,505 +5.806,504 +5.807,504 +5.808,504 +5.809,504 +5.81,504 +5.807,504 +5.808,504 +5.809,505 +5.81,505 +5.811,505 +5.812,505 +5.813,505 +5.814,505 +5.815,504 +5.816,504 +5.819,504 +5.82,504 +5.821,504 +5.822,504 +5.823,505 +5.824,505 +5.825,505 +5.826,505 +5.827,505 +5.828,505 +5.829,505 +5.83,505 +5.831,505 +5.832,505 +5.833,505 +5.834,505 +5.835,505 +5.836,505 +5.837,505 +5.838,505 +5.845,505 +5.846,505 +5.847,505 +5.848,505 +5.849,505 +5.85,505 +5.851,505 +5.852,505 +5.853,505 +5.854,505 +5.848,505 +5.849,505 +5.85,505 +5.851,505 +5.852,505 +5.853,505 +5.854,505 +5.855,505 +5.856,505 +5.857,505 +5.863,505 +5.864,504 +5.865,505 +5.866,505 +5.867,505 +5.868,505 +5.869,505 +5.87,505 +5.871,505 +5.872,505 +5.872,505 +5.874,505 +5.875,505 +5.876,505 +5.877,505 +5.878,505 +5.879,505 +5.88,505 +5.881,505 +5.882,505 +5.883,505 +5.884,505 +5.885,505 +5.886,505 +5.887,505 +5.888,505 +5.889,505 +5.89,505 +5.891,505 +5.892,505 +5.895,505 +5.896,505 +5.897,505 +5.898,505 +5.899,505 +5.9,505 +5.901,505 +5.902,505 +5.903,505 +5.904,505 +5.906,505 +5.907,505 +5.908,505 +5.909,505 +5.91,505 +5.911,505 +5.912,505 +5.913,505 +5.914,505 +5.915,505 +5.917,505 +5.918,505 +5.919,505 +5.92,505 +5.921,505 +5.922,505 +5.923,505 +5.924,505 +5.925,505 +5.926,505 +5.924,505 +5.925,505 +5.926,505 +5.927,505 +5.928,505 +5.929,505 +5.93,505 +5.931,505 +5.932,505 +5.933,505 +5.942,505 +5.943,505 +5.944,505 +5.945,505 +5.946,505 +5.947,505 +5.948,505 +5.949,505 +5.95,505 +5.951,505 +5.942,505 +5.943,505 +5.944,505 +5.945,505 +5.946,505 +5.947,505 +5.948,505 +5.949,505 +5.95,505 +5.951,505 +5.944,505 +5.945,505 +5.946,505 +5.947,505 +5.948,505 +5.949,505 +5.95,505 +5.951,505 +5.952,505 +5.953,505 +5.959,505 +5.96,505 +5.961,505 +5.962,505 +5.963,505 +5.964,505 +5.965,505 +5.966,505 +5.967,505 +5.968,505 +5.969,505 +5.971,505 +5.972,505 +5.973,505 +5.974,505 +5.975,505 +5.976,505 +5.977,505 +5.978,505 +5.979,505 +5.982,505 +5.983,505 +5.984,505 +5.985,505 +5.986,505 +5.987,505 +5.988,505 +5.989,505 +5.99,505 +5.991,505 +5.988,505 +5.989,505 +5.99,505 +5.991,505 +5.992,505 +5.993,505 +5.994,505 +5.995,505 +5.996,505 +5.997,505 +6.003,505 +6.004,505 +6.005,505 +6.006,505 +6.007,505 +6.008,505 +6.009,505 +6.01,505 +6.011,505 +6.012,505 +6.009,506 +6.01,506 +6.011,506 +6.012,506 +6.013,506 +6.014,506 +6.015,506 +6.016,506 +6.017,506 +6.018,506 +6.02,506 +6.021,505 +6.022,505 +6.023,505 +6.024,505 +6.025,505 +6.026,505 +6.027,505 +6.028,505 +6.029,505 +6.045,505 +6.046,505 +6.047,505 +6.048,505 +6.049,505 +6.05,505 +6.051,505 +6.052,505 +6.053,505 +6.054,505 +6.059,505 +6.06,505 +6.061,505 +6.062,505 +6.063,505 +6.064,505 +6.065,505 +6.066,505 +6.067,505 +6.068,505 +6.062,505 +6.063,505 +6.064,505 +6.065,505 +6.066,504 +6.067,504 +6.068,504 +6.069,504 +6.07,504 +6.071,504 +6.068,504 +6.069,504 +6.07,504 +6.071,504 +6.072,503 +6.073,504 +6.074,504 +6.075,504 +6.076,504 +6.077,504 +6.074,504 +6.075,504 +6.076,504 +6.077,504 +6.078,504 +6.079,504 +6.08,504 +6.081,504 +6.082,504 +6.083,504 +6.092,504 +6.093,504 +6.094,504 +6.095,504 +6.096,504 +6.097,504 +6.098,504 +6.099,504 +6.1,504 +6.101,504 +6.092,504 +6.093,504 +6.094,504 +6.095,504 +6.096,504 +6.097,504 +6.098,504 +6.099,504 +6.1,504 +6.101,504 +6.095,504 +6.096,504 +6.097,504 +6.098,504 +6.099,504 +6.1,504 +6.101,504 +6.102,504 +6.103,504 +6.104,504 +6.11,504 +6.111,504 +6.112,504 +6.113,504 +6.114,504 +6.115,504 +6.116,504 +6.117,504 +6.118,504 +6.119,504 +6.119,504 +6.12,504 +6.121,504 +6.122,504 +6.123,504 +6.124,504 +6.125,504 +6.126,504 +6.127,504 +6.128,504 +6.129,504 +6.13,504 +6.131,504 +6.132,504 +6.133,504 +6.134,504 +6.135,504 +6.136,504 +6.137,504 +6.138,504 +6.139,505 +6.14,505 +6.141,505 +6.142,505 +6.143,506 +6.144,506 +6.145,506 +6.146,507 +6.147,507 +6.148,507 +6.149,508 +6.15,508 +6.151,509 +6.152,509 +6.153,510 +6.154,510 +6.155,511 +6.156,511 +6.157,512 +6.158,512 +6.166,512 +6.167,513 +6.168,513 +6.169,513 +6.17,512 +6.171,512 +6.172,511 +6.173,510 +6.174,509 +6.175,508 +6.17,507 +6.171,506 +6.172,505 +6.173,504 +6.174,503 +6.175,502 +6.176,502 +6.177,501 +6.178,500 +6.179,499 +6.185,498 +6.186,497 +6.187,497 +6.188,496 +6.189,496 +6.19,496 +6.191,497 +6.192,497 +6.193,498 +6.194,498 +6.192,499 +6.193,499 +6.194,500 +6.195,500 +6.196,501 +6.197,501 +6.198,502 +6.199,502 +6.2,502 +6.201,503 +6.21,503 +6.211,503 +6.212,503 +6.213,503 +6.214,504 +6.215,504 +6.216,504 +6.217,504 +6.218,504 +6.219,504 +6.212,504 +6.213,504 +6.214,504 +6.215,504 +6.216,504 +6.217,504 +6.218,504 +6.219,504 +6.22,504 +6.221,504 +6.23,504 +6.231,504 +6.232,504 +6.233,504 +6.234,504 +6.235,504 +6.236,504 +6.237,504 +6.238,504 +6.239,504 +6.233,504 +6.234,504 +6.235,505 +6.236,505 +6.237,504 +6.238,504 +6.239,504 +6.24,504 +6.241,504 +6.242,504 +6.25,505 +6.251,505 +6.252,505 +6.253,505 +6.254,505 +6.255,505 +6.256,505 +6.257,505 +6.258,505 +6.259,505 +6.251,505 +6.252,505 +6.253,505 +6.254,505 +6.255,505 +6.256,505 +6.257,505 +6.258,505 +6.259,505 +6.26,505 +6.254,505 +6.255,505 +6.256,505 +6.257,505 +6.258,505 +6.259,505 +6.26,505 +6.261,505 +6.262,505 +6.263,505 +6.269,505 +6.27,505 +6.271,505 +6.272,505 +6.273,505 +6.274,505 +6.275,505 +6.276,505 +6.277,505 +6.278,505 +6.276,505 +6.277,505 +6.278,505 +6.279,505 +6.28,505 +6.281,505 +6.282,505 +6.283,505 +6.284,505 +6.285,505 +6.294,505 +6.295,505 +6.296,505 +6.297,505 +6.298,505 +6.299,505 +6.3,505 +6.301,505 +6.302,505 +6.303,505 +6.298,505 +6.299,505 +6.3,505 +6.301,505 +6.302,505 +6.303,505 +6.304,505 +6.305,505 +6.306,505 +6.307,505 +6.313,505 +6.314,505 +6.315,505 +6.316,505 +6.317,505 +6.318,505 +6.319,505 +6.32,505 +6.321,505 +6.322,505 +6.316,505 +6.317,506 +6.318,506 +6.319,506 +6.32,506 +6.321,506 +6.322,506 +6.323,506 +6.324,506 +6.325,506 +6.334,506 +6.335,506 +6.336,506 +6.337,506 +6.338,506 +6.339,506 +6.34,506 +6.341,506 +6.342,506 +6.343,506 +6.338,506 +6.339,506 +6.34,506 +6.341,506 +6.342,506 +6.343,507 +6.344,507 +6.345,507 +6.346,507 +6.347,507 +6.353,507 +6.354,507 +6.355,507 +6.356,507 +6.357,507 +6.358,507 +6.359,507 +6.36,507 +6.361,507 +6.362,507 +6.365,507 +6.366,507 +6.367,507 +6.368,507 +6.369,507 +6.37,507 +6.371,507 +6.372,507 +6.373,507 +6.374,507 +6.371,507 +6.372,507 +6.373,508 +6.374,508 +6.375,508 +6.376,508 +6.377,508 +6.378,507 +6.379,507 +6.38,507 +6.387,507 +6.388,507 +6.389,507 +6.39,507 +6.391,507 +6.392,507 +6.393,507 +6.394,507 +6.395,507 +6.396,507 +6.393,507 +6.394,507 +6.395,507 +6.396,507 +6.397,507 +6.398,507 +6.399,507 +6.4,506 +6.401,506 +6.402,506 +6.408,506 +6.409,506 +6.41,506 +6.411,506 +6.412,506 +6.413,506 +6.414,505 +6.415,505 +6.416,505 +6.417,505 +6.416,505 +6.417,505 +6.418,504 +6.419,504 +6.42,504 +6.421,504 +6.422,504 +6.423,503 +6.424,503 +6.425,503 +6.419,503 +6.42,503 +6.421,503 +6.422,502 +6.423,502 +6.424,502 +6.425,502 +6.426,502 +6.427,502 +6.428,501 +6.428,501 +6.429,501 +6.43,501 +6.431,501 +6.432,501 +6.433,501 +6.434,501 +6.435,500 +6.436,500 +6.437,500 +6.438,500 +6.439,500 +6.44,500 +6.441,500 +6.442,500 +6.443,500 +6.444,500 +6.445,500 +6.446,500 +6.447,500 +6.448,500 +6.449,500 +6.45,500 +6.451,500 +6.452,500 +6.453,500 +6.454,500 +6.455,500 +6.456,500 +6.457,500 +6.458,500 +6.459,500 +6.46,500 +6.461,500 +6.462,500 +6.463,500 +6.464,500 +6.465,500 +6.466,500 +6.467,500 +6.471,500 +6.472,500 +6.473,500 +6.474,500 +6.475,500 +6.476,500 +6.477,500 +6.478,500 +6.479,500 +6.48,500 +6.48,500 +6.481,500 +6.482,500 +6.483,500 +6.484,500 +6.485,500 +6.486,500 +6.487,500 +6.488,500 +6.489,500 +6.49,500 +6.491,501 +6.492,500 +6.493,500 +6.494,500 +6.495,500 +6.496,500 +6.497,500 +6.498,500 +6.499,500 +6.505,500 +6.506,501 +6.507,501 +6.508,501 +6.509,501 +6.51,501 +6.511,501 +6.512,501 +6.513,501 +6.514,501 +6.509,501 +6.51,501 +6.511,501 +6.512,501 +6.513,501 +6.514,501 +6.515,501 +6.516,501 +6.517,501 +6.518,501 +6.525,501 +6.526,501 +6.527,502 +6.528,502 +6.529,501 +6.53,501 +6.531,502 +6.532,502 +6.533,502 +6.534,502 +6.535,502 +6.536,502 +6.537,502 +6.538,502 +6.539,502 +6.54,502 +6.541,502 +6.542,502 +6.543,502 +6.544,502 +6.546,502 +6.547,502 +6.548,502 +6.549,502 +6.55,502 +6.551,503 +6.552,503 +6.553,503 +6.554,503 +6.555,503 +6.558,503 +6.559,503 +6.56,503 +6.561,503 +6.562,503 +6.563,503 +6.564,503 +6.565,503 +6.566,503 +6.567,503 +6.565,503 +6.566,503 +6.567,503 +6.568,503 +6.569,503 +6.57,503 +6.571,503 +6.572,503 +6.573,503 +6.574,503 +6.565,503 +6.566,503 +6.567,503 +6.568,503 +6.569,503 +6.57,503 +6.571,503 +6.572,503 +6.573,503 +6.574,503 +6.579,503 +6.58,503 +6.581,503 +6.582,503 +6.583,504 +6.584,504 +6.585,504 +6.586,504 +6.587,504 +6.588,504 +6.585,504 +6.586,504 +6.587,504 +6.588,504 +6.589,503 +6.59,503 +6.591,503 +6.592,504 +6.593,504 +6.594,504 +6.603,504 +6.604,504 +6.605,504 +6.606,504 +6.607,504 +6.608,504 +6.609,504 +6.61,504 +6.611,504 +6.612,504 +6.605,504 +6.606,504 +6.607,504 +6.608,504 +6.609,504 +6.61,504 +6.611,504 +6.612,504 +6.613,504 +6.614,504 +6.621,504 +6.622,504 +6.623,504 +6.624,504 +6.625,504 +6.626,504 +6.627,504 +6.628,504 +6.629,504 +6.63,504 +6.63,504 +6.631,504 +6.632,504 +6.633,504 +6.634,504 +6.635,504 +6.636,504 +6.637,504 +6.638,504 +6.639,504 +6.643,504 +6.644,504 +6.645,504 +6.646,504 +6.647,504 +6.648,504 +6.649,504 +6.65,504 +6.651,504 +6.652,504 +6.649,504 +6.65,504 +6.651,504 +6.652,504 +6.653,504 +6.654,504 +6.655,504 +6.656,504 +6.657,504 +6.658,504 +6.661,504 +6.662,504 +6.663,504 +6.664,504 +6.665,504 +6.666,504 +6.667,504 +6.668,504 +6.669,505 +6.67,504 +6.698,505 +6.699,505 +6.7,505 +6.701,505 +6.702,505 +6.703,505 +6.704,505 +6.705,505 +6.706,505 +6.707,505 +6.7,505 +6.701,504 +6.702,504 +6.703,505 +6.704,505 +6.705,505 +6.706,505 +6.707,504 +6.708,504 +6.709,504 +6.703,504 +6.704,504 +6.705,504 +6.706,504 +6.707,504 +6.708,504 +6.709,504 +6.71,504 +6.711,504 +6.712,504 +6.705,504 +6.706,504 +6.707,504 +6.708,504 +6.709,504 +6.71,504 +6.711,504 +6.712,504 +6.713,504 +6.714,504 +6.715,504 +6.716,504 +6.717,504 +6.718,504 +6.719,504 +6.72,504 +6.721,504 +6.722,504 +6.723,504 +6.724,504 +6.727,504 +6.728,504 +6.729,504 +6.73,504 +6.731,504 +6.732,504 +6.733,504 +6.734,504 +6.735,504 +6.736,504 +6.736,504 +6.737,504 +6.738,504 +6.739,504 +6.74,504 +6.741,504 +6.742,504 +6.743,504 +6.744,504 +6.745,504 +6.738,504 +6.739,504 +6.74,504 +6.741,504 +6.742,504 +6.743,504 +6.744,504 +6.745,504 +6.746,504 +6.747,504 +6.752,504 +6.753,504 +6.754,505 +6.755,505 +6.756,505 +6.757,505 +6.758,505 +6.759,505 +6.76,505 +6.761,505 +6.758,505 +6.759,505 +6.76,505 +6.761,505 +6.762,505 +6.763,505 +6.764,505 +6.765,505 +6.766,505 +6.767,505 +6.768,505 +6.769,505 +6.77,505 +6.771,505 +6.772,505 +6.773,505 +6.774,505 +6.775,505 +6.776,505 +6.777,505 +6.778,505 +6.779,505 +6.78,505 +6.781,505 +6.782,505 +6.783,505 +6.784,505 +6.785,505 +6.786,505 +6.787,505 +6.788,505 +6.789,505 +6.79,505 +6.791,505 +6.792,505 +6.793,505 +6.794,505 +6.795,505 +6.796,505 +6.797,505 +6.806,505 +6.807,505 +6.808,505 +6.809,505 +6.81,505 +6.811,505 +6.812,505 +6.813,505 +6.814,505 +6.815,505 +6.809,505 +6.81,505 +6.811,505 +6.812,505 +6.813,505 +6.814,505 +6.815,505 +6.816,505 +6.817,505 +6.818,505 +6.831,505 +6.832,505 +6.833,505 +6.834,505 +6.835,505 +6.836,505 +6.837,505 +6.838,505 +6.839,505 +6.84,505 +6.833,505 +6.834,505 +6.835,505 +6.836,506 +6.837,505 +6.838,506 +6.839,506 +6.84,506 +6.841,505 +6.842,505 +6.851,505 +6.852,505 +6.853,505 +6.854,505 +6.855,506 +6.856,505 +6.857,505 +6.858,505 +6.859,505 +6.86,505 +6.853,506 +6.854,505 +6.855,505 +6.856,505 +6.857,505 +6.858,505 +6.859,505 +6.86,505 +6.861,505 +6.862,505 +6.863,505 +6.864,505 +6.865,505 +6.866,505 +6.867,505 +6.868,505 +6.869,505 +6.87,505 +6.871,505 +6.872,505 +6.888,505 +6.889,505 +6.89,505 +6.891,505 +6.892,505 +6.893,505 +6.894,505 +6.895,505 +6.896,505 +6.897,505 +6.89,505 +6.891,505 +6.892,505 +6.893,505 +6.894,505 +6.895,505 +6.896,506 +6.897,506 +6.898,506 +6.899,506 +6.89,506 +6.891,506 +6.892,506 +6.893,506 +6.894,505 +6.895,505 +6.896,505 +6.897,506 +6.898,506 +6.899,506 +6.893,506 +6.894,506 +6.895,506 +6.896,506 +6.897,506 +6.898,506 +6.899,506 +6.9,506 +6.901,506 +6.902,506 +6.908,506 +6.909,506 +6.91,506 +6.911,506 +6.912,506 +6.913,506 +6.914,506 +6.915,506 +6.916,506 +6.917,506 +6.918,506 +6.919,506 +6.92,506 +6.921,506 +6.922,506 +6.923,506 +6.924,506 +6.925,506 +6.926,506 +6.927,506 +6.935,506 +6.936,506 +6.937,506 +6.938,506 +6.939,506 +6.94,506 +6.941,506 +6.942,506 +6.943,506 +6.944,506 +6.938,506 +6.939,506 +6.94,506 +6.941,506 +6.942,506 +6.943,506 +6.944,506 +6.945,506 +6.946,506 +6.947,506 +6.953,506 +6.954,506 +6.955,506 +6.956,506 +6.957,506 +6.958,506 +6.959,505 +6.96,505 +6.961,505 +6.962,505 +6.956,505 +6.957,504 +6.958,504 +6.959,504 +6.96,504 +6.961,504 +6.962,504 +6.963,504 +6.964,504 +6.965,504 +6.975,504 +6.976,504 +6.977,504 +6.978,504 +6.979,504 +6.98,504 +6.981,504 +6.982,504 +6.983,504 +6.984,504 +6.979,504 +6.98,504 +6.981,504 +6.982,504 +6.983,504 +6.984,504 +6.985,504 +6.986,504 +6.987,504 +6.988,504 +6.994,504 +6.995,504 +6.996,504 +6.997,504 +6.998,505 +6.999,505 +7.0,505 +7.001,504 +7.002,504 +7.003,504 +7.003,504 +7.004,504 +7.005,504 +7.006,504 +7.007,504 +7.008,504 +7.009,504 +7.01,504 +7.011,504 +7.012,505 +7.013,505 +7.014,505 +7.015,505 +7.016,505 +7.017,505 +7.018,505 +7.019,505 +7.02,505 +7.021,505 +7.022,504 +7.023,504 +7.024,505 +7.025,505 +7.026,504 +7.027,505 +7.028,505 +7.029,505 +7.03,505 +7.031,505 +7.032,505 +7.038,505 +7.039,505 +7.04,505 +7.041,505 +7.042,505 +7.043,505 +7.044,504 +7.045,504 +7.046,504 +7.047,504 +7.041,505 +7.042,505 +7.043,505 +7.044,505 +7.045,505 +7.046,505 +7.047,506 +7.048,506 +7.049,506 +7.05,507 +7.056,507 +7.057,507 +7.058,507 +7.059,508 +7.06,508 +7.061,508 +7.062,509 +7.063,509 +7.064,510 +7.065,510 +7.058,510 +7.059,511 +7.06,511 +7.061,512 +7.062,512 +7.063,512 +7.064,512 +7.065,512 +7.066,512 +7.067,512 +7.074,511 +7.075,510 +7.076,509 +7.077,508 +7.078,507 +7.079,507 +7.08,506 +7.081,506 +7.082,505 +7.083,504 +7.08,504 +7.081,503 +7.082,503 +7.083,502 +7.084,501 +7.085,500 +7.086,499 +7.087,499 +7.088,498 +7.089,498 +7.091,498 +7.092,499 +7.093,499 +7.094,499 +7.095,500 +7.096,500 +7.097,501 +7.098,501 +7.099,502 +7.1,502 +7.098,503 +7.099,503 +7.1,503 +7.101,504 +7.102,504 +7.103,504 +7.104,504 +7.105,505 +7.106,505 +7.107,505 +7.108,505 +7.109,505 +7.11,505 +7.111,505 +7.112,505 +7.113,505 +7.114,505 +7.115,505 +7.116,505 +7.117,505 +7.126,505 +7.127,505 +7.128,505 +7.129,505 +7.13,505 +7.131,505 +7.132,505 +7.133,505 +7.134,505 +7.135,505 +7.129,505 +7.13,505 +7.131,505 +7.132,505 +7.133,506 +7.134,505 +7.135,505 +7.136,505 +7.137,505 +7.138,505 +7.144,505 +7.145,505 +7.146,505 +7.147,505 +7.148,505 +7.149,505 +7.15,505 +7.151,505 +7.152,506 +7.153,505 +7.152,506 +7.153,506 +7.154,506 +7.155,506 +7.156,506 +7.157,505 +7.158,505 +7.159,505 +7.16,505 +7.161,506 +7.17,506 +7.171,505 +7.172,505 +7.173,506 +7.174,506 +7.175,506 +7.176,506 +7.177,506 +7.178,506 +7.179,506 +7.172,505 +7.173,505 +7.174,505 +7.175,505 +7.176,505 +7.177,505 +7.178,505 +7.179,505 +7.18,505 +7.181,505 +7.185,505 +7.186,505 +7.187,506 +7.188,506 +7.189,506 +7.19,506 +7.191,506 +7.192,506 +7.193,506 +7.194,506 +7.195,506 +7.196,506 +7.197,506 +7.198,506 +7.199,506 +7.2,506 +7.201,506 +7.202,506 +7.203,506 +7.204,506 +7.212,506 +7.213,506 +7.214,506 +7.215,506 +7.216,506 +7.217,506 +7.218,506 +7.219,506 +7.22,506 +7.221,506 +7.214,506 +7.215,506 +7.216,506 +7.217,506 +7.218,506 +7.219,506 +7.22,506 +7.221,506 +7.222,506 +7.223,506 +7.216,506 +7.217,506 +7.218,506 +7.219,506 +7.22,506 +7.221,506 +7.222,506 +7.223,506 +7.224,506 +7.225,506 +7.231,506 +7.232,506 +7.233,506 +7.234,506 +7.235,506 +7.236,506 +7.237,506 +7.238,506 +7.239,507 +7.24,507 +7.235,507 +7.236,507 +7.237,507 +7.238,507 +7.239,507 +7.24,507 +7.241,507 +7.242,507 +7.243,507 +7.244,507 +7.25,507 +7.251,507 +7.252,507 +7.253,507 +7.254,507 +7.255,507 +7.256,507 +7.257,507 +7.258,507 +7.259,507 +7.26,507 +7.261,507 +7.262,508 +7.263,508 +7.264,508 +7.265,508 +7.266,508 +7.267,508 +7.268,508 +7.269,508 +7.27,508 +7.271,508 +7.272,508 +7.273,508 +7.274,508 +7.275,508 +7.276,508 +7.277,508 +7.278,508 +7.279,508 +7.281,508 +7.282,508 +7.283,508 +7.284,508 +7.285,508 +7.286,508 +7.287,508 +7.288,508 +7.289,508 +7.29,508 +7.29,508 +7.291,507 +7.292,507 +7.293,507 +7.294,507 +7.295,507 +7.296,507 +7.297,507 +7.298,507 +7.299,507 +7.3,507 +7.301,507 +7.302,507 +7.303,507 +7.304,507 +7.305,507 +7.306,507 +7.307,507 +7.308,507 +7.309,507 +7.33,506 +7.331,506 +7.332,506 +7.333,506 +7.334,506 +7.335,506 +7.336,505 +7.337,505 +7.338,505 +7.339,505 +7.334,505 +7.335,504 +7.336,504 +7.337,504 +7.338,504 +7.339,504 +7.34,504 +7.341,504 +7.342,503 +7.343,503 +7.337,503 +7.338,503 +7.339,503 +7.34,503 +7.341,503 +7.342,502 +7.343,502 +7.344,502 +7.345,502 +7.346,502 +7.344,502 +7.345,502 +7.346,502 +7.347,502 +7.348,502 +7.349,502 +7.35,501 +7.351,501 +7.352,501 +7.353,501 +7.357,501 +7.358,501 +7.359,501 +7.36,501 +7.361,501 +7.362,501 +7.363,501 +7.364,501 +7.365,501 +7.366,501 +7.364,501 +7.365,501 +7.366,501 +7.367,501 +7.368,501 +7.369,501 +7.37,501 +7.371,501 +7.372,501 +7.373,501 +7.382,501 +7.383,501 +7.384,501 +7.385,501 +7.386,501 +7.387,501 +7.388,501 +7.389,501 +7.39,501 +7.391,501 +7.384,501 +7.385,501 +7.386,501 +7.387,501 +7.388,501 +7.389,501 +7.39,501 +7.391,501 +7.392,501 +7.393,502 +7.386,502 +7.387,502 +7.388,502 +7.389,502 +7.39,502 +7.391,502 +7.392,502 +7.393,502 +7.394,502 +7.395,502 +7.402,502 +7.403,502 +7.404,502 +7.405,502 +7.406,502 +7.407,502 +7.408,502 +7.409,502 +7.41,502 +7.411,502 +7.405,502 +7.406,502 +7.407,502 +7.408,502 +7.409,502 +7.41,502 +7.411,502 +7.412,502 +7.414,502 +7.415,502 +7.42,502 +7.421,502 +7.422,502 +7.423,502 +7.424,502 +7.425,503 +7.426,503 +7.427,503 +7.428,503 +7.429,503 +7.428,503 +7.429,503 +7.43,503 +7.431,503 +7.432,503 +7.433,503 +7.434,503 +7.435,503 +7.436,503 +7.437,503 +7.443,503 +7.444,503 +7.445,503 +7.446,503 +7.447,503 +7.448,503 +7.449,503 +7.45,503 +7.451,503 +7.452,503 +7.45,503 +7.451,503 +7.452,503 +7.453,503 +7.454,503 +7.455,503 +7.456,503 +7.457,503 +7.458,503 +7.459,503 +7.468,503 +7.469,503 +7.47,503 +7.471,503 +7.472,503 +7.473,504 +7.474,504 +7.475,503 +7.476,504 +7.477,504 +7.471,504 +7.472,504 +7.473,504 +7.474,504 +7.475,504 +7.476,504 +7.477,504 +7.478,504 +7.479,504 +7.48,504 +7.487,504 +7.488,504 +7.489,504 +7.49,504 +7.491,504 +7.492,504 +7.493,504 +7.494,504 +7.495,504 +7.496,504 +7.492,504 +7.493,504 +7.494,504 +7.495,504 +7.496,504 +7.497,504 +7.498,504 +7.499,504 +7.5,504 +7.501,504 +7.507,504 +7.508,504 +7.509,504 +7.51,504 +7.511,504 +7.512,504 +7.513,504 +7.514,504 +7.515,504 +7.516,504 +7.514,504 +7.515,504 +7.516,504 +7.517,504 +7.518,504 +7.519,504 +7.52,504 +7.521,504 +7.522,504 +7.523,504 +7.529,504 +7.531,504 +7.532,504 +7.533,504 +7.534,504 +7.535,504 +7.536,504 +7.537,504 +7.538,504 +7.539,504 +7.53,504 +7.531,504 +7.532,504 +7.533,504 +7.534,504 +7.535,504 +7.536,504 +7.537,504 +7.538,504 +7.539,504 +7.533,504 +7.534,504 +7.535,504 +7.536,504 +7.537,504 +7.538,504 +7.539,504 +7.54,504 +7.541,504 +7.542,504 +7.548,504 +7.549,504 +7.55,504 +7.551,504 +7.552,504 +7.553,504 +7.554,504 +7.555,504 +7.556,504 +7.557,503 +7.558,503 +7.559,503 +7.56,504 +7.561,503 +7.562,503 +7.563,504 +7.564,504 +7.565,503 +7.566,503 +7.567,504 +7.568,504 +7.569,504 +7.57,504 +7.571,504 +7.572,504 +7.573,504 +7.574,504 +7.575,504 +7.576,504 +7.577,504 +7.581,504 +7.582,504 +7.583,503 +7.584,503 +7.585,503 +7.586,503 +7.587,503 +7.588,503 +7.589,503 +7.59,503 +7.591,503 +7.592,503 +7.593,503 +7.594,503 +7.595,503 +7.596,503 +7.597,503 +7.598,503 +7.599,503 +7.6,503 +7.601,503 +7.602,503 +7.603,503 +7.604,503 +7.605,503 +7.606,503 +7.607,503 +7.608,503 +7.609,503 +7.61,503 +7.618,503 +7.619,503 +7.62,503 +7.621,503 +7.622,503 +7.623,503 +7.624,503 +7.625,503 +7.626,503 +7.627,503 +7.621,503 +7.622,503 +7.623,503 +7.624,503 +7.625,503 +7.626,503 +7.627,503 +7.628,503 +7.629,503 +7.63,503 +7.636,503 +7.637,503 +7.638,503 +7.639,503 +7.64,503 +7.641,503 +7.642,503 +7.643,503 +7.644,503 +7.645,503 +7.639,503 +7.64,503 +7.641,503 +7.642,503 +7.643,503 +7.644,503 +7.645,503 +7.646,503 +7.647,503 +7.648,503 +7.656,504 +7.657,504 +7.658,504 +7.659,504 +7.66,504 +7.661,504 +7.662,504 +7.663,503 +7.664,503 +7.665,503 +7.663,503 +7.664,503 +7.665,503 +7.666,503 +7.667,503 +7.668,503 +7.669,503 +7.67,503 +7.671,503 +7.672,503 +7.678,503 +7.679,503 +7.68,503 +7.681,503 +7.682,503 +7.683,503 +7.684,503 +7.685,503 +7.686,503 +7.687,503 +7.682,503 +7.683,503 +7.684,503 +7.685,503 +7.686,503 +7.687,503 +7.688,504 +7.689,504 +7.69,504 +7.691,504 +7.696,504 +7.697,504 +7.698,504 +7.699,504 +7.7,504 +7.701,504 +7.702,504 +7.703,504 +7.704,503 +7.705,504 +7.698,504 +7.699,504 +7.7,504 +7.701,504 +7.702,504 +7.703,503 +7.704,503 +7.705,503 +7.706,503 +7.707,503 +7.708,503 +7.709,503 +7.71,503 +7.711,503 +7.712,503 +7.713,503 +7.714,503 +7.715,503 +7.716,503 +7.717,503 +7.72,503 +7.721,503 +7.722,503 +7.723,503 +7.724,504 +7.725,504 +7.726,504 +7.727,504 +7.728,503 +7.729,504 +7.726,503 +7.727,503 +7.728,503 +7.729,503 +7.73,503 +7.731,503 +7.732,503 +7.733,503 +7.734,503 +7.735,503 +7.742,503 +7.743,503 +7.744,503 +7.745,503 +7.746,503 +7.747,503 +7.748,503 +7.749,503 +7.75,503 +7.751,503 +7.746,503 +7.747,503 +7.748,503 +7.749,503 +7.75,503 +7.751,503 +7.752,503 +7.753,503 +7.754,503 +7.755,503 +7.763,503 +7.764,503 +7.765,503 +7.766,503 +7.767,503 +7.768,503 +7.769,503 +7.77,503 +7.771,503 +7.772,503 +7.77,504 +7.771,504 +7.773,503 +7.774,503 +7.775,503 +7.776,503 +7.777,503 +7.778,503 +7.779,503 +7.78,503 +7.786,503 +7.787,503 +7.788,503 +7.789,503 +7.79,504 +7.791,504 +7.792,504 +7.793,504 +7.794,504 +7.795,504 +7.789,504 +7.79,504 +7.791,504 +7.792,504 +7.793,504 +7.794,504 +7.795,504 +7.796,504 +7.797,504 +7.798,504 +7.807,504 +7.808,504 +7.809,504 +7.81,503 +7.811,504 +7.812,504 +7.813,504 +7.814,504 +7.815,504 +7.816,504 +7.813,504 +7.814,504 +7.815,504 +7.816,504 +7.817,504 +7.818,504 +7.819,504 +7.82,504 +7.821,504 +7.822,504 +7.828,504 +7.829,504 +7.83,504 +7.831,504 +7.832,504 +7.833,504 +7.834,504 +7.835,504 +7.836,504 +7.837,504 +7.832,504 +7.833,504 +7.834,504 +7.835,503 +7.836,503 +7.837,503 +7.838,503 +7.839,503 +7.84,503 +7.841,503 +7.849,503 +7.85,502 +7.851,502 +7.852,502 +7.853,502 +7.854,502 +7.855,502 +7.856,502 +7.857,502 +7.858,502 +7.85,502 +7.851,502 +7.852,502 +7.853,502 +7.854,502 +7.855,502 +7.856,502 +7.857,502 +7.858,502 +7.859,502 +7.853,502 +7.854,502 +7.855,502 +7.856,502 +7.857,502 +7.858,502 +7.859,502 +7.86,502 +7.861,502 +7.862,502 +7.868,502 +7.869,502 +7.87,502 +7.871,502 +7.872,502 +7.873,502 +7.874,502 +7.875,502 +7.876,502 +7.877,502 +7.878,502 +7.879,502 +7.88,502 +7.881,502 +7.882,502 +7.883,502 +7.884,502 +7.885,502 +7.886,502 +7.887,502 +7.896,502 +7.897,502 +7.898,502 +7.899,502 +7.9,502 +7.901,502 +7.902,502 +7.903,502 +7.904,502 +7.905,502 +7.898,502 +7.899,502 +7.9,502 +7.901,502 +7.902,502 +7.903,502 +7.904,502 +7.905,502 +7.906,502 +7.907,502 +7.916,502 +7.917,502 +7.918,502 +7.919,502 +7.92,502 +7.921,503 +7.922,502 +7.923,502 +7.924,502 +7.925,502 +7.918,502 +7.919,502 +7.92,502 +7.921,502 +7.922,503 +7.923,503 +7.924,503 +7.925,503 +7.926,503 +7.927,504 +7.936,504 +7.937,504 +7.938,504 +7.939,504 +7.94,505 +7.941,505 +7.942,505 +7.943,506 +7.944,506 +7.945,507 +7.939,507 +7.94,508 +7.941,508 +7.942,508 +7.943,509 +7.944,509 +7.945,510 +7.946,510 +7.947,510 +7.948,510 +7.971,510 +7.972,509 +7.973,509 +7.974,508 +7.975,507 +7.976,507 +7.977,506 +7.978,505 +7.979,504 +7.98,503 +7.974,503 +7.975,502 +7.976,501 +7.977,501 +7.978,500 +7.979,500 +7.98,499 +7.981,498 +7.982,497 +7.983,497 +7.977,496 +7.978,497 +7.979,497 +7.98,497 +7.981,498 +7.982,498 +7.983,498 +7.984,499 +7.985,499 +7.986,500 +7.984,500 +7.985,501 +7.986,501 +7.987,501 +7.988,502 +7.989,502 +7.99,502 +7.991,502 +7.992,503 +7.993,503 +7.995,503 +7.996,503 +7.997,503 +7.998,503 +7.999,503 +8.0,503 +8.001,503 +8.002,503 +8.003,503 +8.004,503 +8.007,503 +8.008,503 +8.009,503 +8.01,503 +8.011,503 +8.012,503 +8.013,503 +8.014,503 +8.015,503 +8.016,503 +8.018,503 +8.019,503 +8.02,503 +8.021,503 +8.022,503 +8.023,503 +8.024,503 +8.025,503 +8.026,503 +8.027,503 +8.02,503 +8.021,503 +8.022,503 +8.024,503 +8.025,503 +8.026,503 +8.027,503 +8.028,503 +8.029,503 +8.03,503 +8.03,503 +8.031,503 +8.032,503 +8.033,503 +8.034,503 +8.035,503 +8.036,503 +8.037,503 +8.038,503 +8.039,503 +8.038,503 +8.039,503 +8.04,503 +8.041,503 +8.042,503 +8.043,503 +8.044,503 +8.045,503 +8.046,503 +8.047,503 +8.048,503 +8.049,503 +8.05,503 +8.051,503 +8.052,503 +8.053,504 +8.054,503 +8.055,503 +8.056,503 +8.057,503 +8.058,503 +8.059,503 +8.06,503 +8.061,503 +8.062,503 +8.063,503 +8.064,503 +8.065,503 +8.066,503 +8.067,503 +8.068,503 +8.069,503 +8.07,503 +8.071,503 +8.072,503 +8.073,503 +8.074,504 +8.075,504 +8.076,504 +8.077,503 +8.086,503 +8.087,504 +8.088,504 +8.089,504 +8.09,504 +8.091,504 +8.092,504 +8.093,504 +8.094,504 +8.095,504 +8.089,504 +8.09,504 +8.091,504 +8.092,504 +8.093,504 +8.094,504 +8.095,504 +8.096,504 +8.097,504 +8.098,504 +8.105,504 +8.106,504 +8.107,504 +8.108,504 +8.109,504 +8.11,504 +8.111,504 +8.112,504 +8.113,504 +8.114,504 +8.112,504 +8.113,504 +8.114,504 +8.115,505 +8.116,505 +8.117,505 +8.118,504 +8.119,504 +8.12,504 +8.121,504 +8.141,504 +8.142,505 +8.143,505 +8.144,505 +8.145,505 +8.146,505 +8.147,505 +8.148,505 +8.149,505 +8.15,505 +8.143,505 +8.144,505 +8.145,505 +8.146,505 +8.147,505 +8.148,505 +8.149,505 +8.15,505 +8.151,505 +8.152,505 +8.146,505 +8.147,505 +8.148,505 +8.149,505 +8.15,505 +8.151,505 +8.152,506 +8.153,506 +8.154,506 +8.155,506 +8.156,506 +8.157,506 +8.158,506 +8.159,506 +8.16,506 +8.161,506 +8.162,506 +8.163,506 +8.164,506 +8.165,506 +8.173,506 +8.174,506 +8.175,506 +8.176,506 +8.177,506 +8.178,506 +8.179,506 +8.18,506 +8.181,506 +8.182,506 +8.173,506 +8.174,506 +8.175,506 +8.176,506 +8.177,506 +8.178,506 +8.179,506 +8.18,506 +8.181,506 +8.182,506 +8.176,505 +8.177,505 +8.178,505 +8.179,505 +8.18,505 +8.181,505 +8.182,505 +8.183,505 +8.184,505 +8.185,505 +8.191,505 +8.192,505 +8.193,505 +8.194,505 +8.195,504 +8.196,504 +8.197,504 +8.198,504 +8.199,504 +8.2,503 +8.195,503 +8.196,503 +8.197,503 +8.198,503 +8.199,503 +8.2,503 +8.201,503 +8.202,502 +8.203,502 +8.204,502 +8.212,502 +8.213,502 +8.214,502 +8.215,502 +8.216,501 +8.217,501 +8.218,501 +8.219,501 +8.22,501 +8.221,501 +8.216,500 +8.217,500 +8.218,500 +8.219,500 +8.22,500 +8.221,500 +8.222,500 +8.223,500 +8.224,500 +8.225,500 +8.229,500 +8.23,500 +8.231,500 +8.232,500 +8.233,500 +8.234,500 +8.235,500 +8.236,500 +8.237,500 +8.238,500 +8.244,500 +8.245,500 +8.246,500 +8.247,500 +8.248,500 +8.249,500 +8.25,500 +8.251,500 +8.252,500 +8.253,500 +8.25,500 +8.251,500 +8.252,500 +8.253,500 +8.254,500 +8.255,500 +8.256,500 +8.257,500 +8.258,500 +8.259,500 +8.265,500 +8.266,500 +8.267,500 +8.268,500 +8.269,500 +8.27,500 +8.271,500 +8.272,501 +8.273,501 +8.274,501 +8.272,501 +8.273,501 +8.274,501 +8.275,501 +8.276,501 +8.277,501 +8.278,501 +8.279,501 +8.28,501 +8.281,501 +8.282,501 +8.283,501 +8.284,501 +8.285,501 +8.286,501 +8.287,501 +8.288,501 +8.289,502 +8.29,502 +8.291,502 +8.297,502 +8.298,502 +8.299,502 +8.3,502 +8.301,502 +8.302,502 +8.303,502 +8.304,502 +8.305,502 +8.306,502 +8.303,502 +8.304,502 +8.305,502 +8.306,502 +8.307,502 +8.308,502 +8.309,502 +8.31,502 +8.311,502 +8.312,502 +8.318,502 +8.319,502 +8.32,502 +8.321,502 +8.322,502 +8.323,502 +8.324,502 +8.325,502 +8.326,503 +8.327,503 +8.324,503 +8.325,502 +8.326,502 +8.327,502 +8.328,502 +8.329,502 +8.33,503 +8.331,503 +8.332,503 +8.333,503 +8.339,503 +8.34,503 +8.341,503 +8.342,503 +8.343,503 +8.344,503 +8.345,503 +8.346,503 +8.347,503 +8.348,503 +8.341,503 +8.342,503 +8.343,503 +8.344,503 +8.345,503 +8.346,503 +8.347,503 +8.348,503 +8.349,503 +8.35,503 +8.347,503 +8.348,503 +8.349,503 +8.35,504 +8.351,504 +8.352,504 +8.353,504 +8.354,504 +8.355,503 +8.356,503 +8.359,504 +8.36,503 +8.361,503 +8.362,503 +8.363,503 +8.364,503 +8.365,503 +8.366,503 +8.367,504 +8.368,504 +8.369,504 +8.37,504 +8.371,504 +8.372,504 +8.373,504 +8.374,504 +8.375,504 +8.376,504 +8.377,504 +8.378,504 +8.379,504 +8.38,504 +8.381,504 +8.382,504 +8.383,504 +8.384,504 +8.385,504 +8.386,504 +8.387,504 +8.388,504 +8.389,504 +8.39,504 +8.391,504 +8.392,504 +8.393,504 +8.394,504 +8.395,504 +8.396,504 +8.397,504 +8.398,504 +8.407,504 +8.408,504 +8.409,504 +8.41,504 +8.411,504 +8.412,504 +8.413,504 +8.414,504 +8.415,504 +8.416,504 +8.41,504 +8.411,504 +8.412,504 +8.413,504 +8.414,504 +8.415,504 +8.416,504 +8.417,504 +8.418,504 +8.419,504 +8.425,504 +8.426,504 +8.427,504 +8.428,504 +8.429,504 +8.43,504 +8.431,504 +8.432,504 +8.433,504 +8.434,504 +8.429,504 +8.43,504 +8.431,504 +8.432,504 +8.433,504 +8.434,504 +8.435,504 +8.436,504 +8.437,504 +8.438,504 +8.447,504 +8.448,504 +8.449,504 +8.45,504 +8.451,504 +8.452,504 +8.453,504 +8.454,504 +8.455,504 +8.456,504 +8.453,504 +8.454,504 +8.455,504 +8.456,504 +8.457,504 +8.458,504 +8.459,504 +8.46,504 +8.461,504 +8.462,504 +8.468,504 +8.469,504 +8.47,504 +8.471,504 +8.472,504 +8.473,504 +8.474,504 +8.475,504 +8.476,504 +8.477,504 +8.472,504 +8.473,504 +8.474,504 +8.475,504 +8.476,504 +8.477,504 +8.478,504 +8.479,504 +8.48,504 +8.481,504 +8.487,504 +8.488,504 +8.489,504 +8.49,504 +8.491,504 +8.492,504 +8.493,504 +8.494,504 +8.495,504 +8.496,504 +8.487,504 +8.488,504 +8.489,504 +8.49,504 +8.491,504 +8.492,504 +8.493,504 +8.494,504 +8.495,504 +8.496,504 +8.497,504 +8.498,504 +8.499,504 +8.5,504 +8.501,504 +8.502,504 +8.503,504 +8.504,505 +8.505,505 +8.506,504 +8.507,504 +8.508,504 +8.509,504 +8.51,505 +8.511,505 +8.512,505 +8.513,504 +8.514,504 +8.515,504 +8.516,504 +8.52,504 +8.521,504 +8.522,504 +8.523,504 +8.524,504 +8.525,504 +8.526,504 +8.527,504 +8.528,505 +8.529,505 +8.53,505 +8.531,505 +8.532,505 +8.533,505 +8.534,505 +8.535,505 +8.536,504 +8.537,504 +8.538,504 +8.539,504 +8.542,504 +8.543,504 +8.544,504 +8.545,504 +8.546,504 +8.547,504 +8.548,504 +8.549,504 +8.55,504 +8.551,504 +8.548,504 +8.549,504 +8.55,504 +8.551,504 +8.552,504 +8.553,505 +8.554,505 +8.555,505 +8.556,504 +8.557,504 +8.563,504 +8.564,504 +8.565,504 +8.566,504 +8.567,504 +8.568,504 +8.569,504 +8.57,505 +8.571,505 +8.572,505 +8.57,505 +8.571,505 +8.572,505 +8.573,505 +8.574,505 +8.575,505 +8.576,505 +8.577,505 +8.578,505 +8.579,505 +8.585,505 +8.586,505 +8.587,505 +8.588,505 +8.589,505 +8.59,505 +8.591,505 +8.592,505 +8.593,505 +8.594,505 +8.612,505 +8.613,505 +8.614,505 +8.615,505 +8.616,505 +8.617,505 +8.618,505 +8.619,505 +8.62,505 +8.621,505 +8.616,504 +8.617,504 +8.618,504 +8.619,505 +8.62,505 +8.621,504 +8.622,504 +8.623,504 +8.624,504 +8.625,504 +8.618,504 +8.619,504 +8.62,504 +8.621,504 +8.622,504 +8.623,504 +8.624,504 +8.625,504 +8.626,504 +8.627,504 +8.622,504 +8.623,504 +8.624,504 +8.625,504 +8.626,504 +8.627,504 +8.628,504 +8.629,504 +8.63,504 +8.631,504 +8.637,504 +8.638,504 +8.639,504 +8.64,504 +8.641,504 +8.642,504 +8.643,504 +8.644,504 +8.645,504 +8.646,504 +8.644,504 +8.645,504 +8.646,504 +8.647,504 +8.648,504 +8.649,505 +8.65,505 +8.651,505 +8.652,505 +8.653,505 +8.657,505 +8.658,505 +8.659,504 +8.66,504 +8.661,504 +8.662,504 +8.663,504 +8.664,504 +8.665,504 +8.666,504 +8.659,504 +8.66,504 +8.661,504 +8.662,504 +8.663,504 +8.664,505 +8.665,505 +8.666,504 +8.667,504 +8.668,504 +8.675,504 +8.676,504 +8.677,504 +8.678,504 +8.679,504 +8.68,504 +8.681,504 +8.682,504 +8.683,504 +8.684,504 +8.677,504 +8.678,504 +8.679,504 +8.68,504 +8.681,504 +8.682,504 +8.683,504 +8.684,504 +8.685,504 +8.686,504 +8.692,504 +8.693,504 +8.694,504 +8.695,504 +8.696,504 +8.697,504 +8.698,504 +8.699,504 +8.7,504 +8.701,504 +8.696,504 +8.697,504 +8.698,504 +8.699,504 +8.7,504 +8.701,504 +8.702,504 +8.703,504 +8.704,504 +8.705,504 +8.711,504 +8.712,504 +8.713,504 +8.714,504 +8.715,504 +8.716,504 +8.717,504 +8.718,504 +8.719,504 +8.72,504 +8.721,504 +8.722,504 +8.723,504 +8.724,504 +8.725,504 +8.726,504 +8.727,504 +8.728,504 +8.729,504 +8.73,504 +8.733,504 +8.734,504 +8.735,504 +8.736,504 +8.737,504 +8.738,504 +8.739,504 +8.74,504 +8.741,504 +8.742,504 +8.741,504 +8.742,504 +8.743,504 +8.744,505 +8.745,505 +8.746,505 +8.747,505 +8.748,505 +8.749,505 +8.75,505 +8.757,505 +8.758,505 +8.759,505 +8.76,505 +8.761,505 +8.762,505 +8.763,505 +8.764,505 +8.765,505 +8.766,505 +8.761,505 +8.762,505 +8.763,505 +8.764,505 +8.765,505 +8.766,505 +8.767,505 +8.768,505 +8.769,505 +8.77,505 +8.778,505 +8.779,505 +8.78,505 +8.781,505 +8.782,505 +8.783,505 +8.784,505 +8.785,505 +8.786,505 +8.787,505 +8.782,505 +8.783,505 +8.784,505 +8.785,505 +8.786,505 +8.787,505 +8.788,505 +8.789,505 +8.79,505 +8.791,505 +8.797,505 +8.798,505 +8.799,505 +8.8,505 +8.801,505 +8.802,505 +8.803,505 +8.804,505 +8.805,505 +8.806,505 +8.804,505 +8.805,505 +8.806,505 +8.807,505 +8.808,505 +8.809,505 +8.81,504 +8.811,504 +8.812,504 +8.813,504 +8.805,504 +8.806,504 +8.807,504 +8.808,504 +8.809,504 +8.81,504 +8.811,504 +8.812,504 +8.813,504 +8.814,504 +8.822,504 +8.823,504 +8.824,504 +8.825,504 +8.826,504 +8.827,504 +8.828,504 +8.829,504 +8.83,504 +8.831,504 +8.824,504 +8.825,504 +8.826,504 +8.827,504 +8.828,504 +8.829,504 +8.83,504 +8.831,504 +8.832,504 +8.833,504 +8.84,504 +8.841,504 +8.842,504 +8.843,504 +8.844,504 +8.845,504 +8.846,504 +8.847,504 +8.848,504 +8.849,504 +8.849,505 +8.85,504 +8.851,505 +8.852,505 +8.853,504 +8.854,504 +8.855,504 +8.856,504 +8.857,505 +8.858,505 +8.861,505 +8.862,505 +8.863,505 +8.864,505 +8.865,505 +8.866,505 +8.867,505 +8.868,505 +8.869,505 +8.87,505 +8.871,505 +8.872,505 +8.873,505 +8.874,505 +8.875,505 +8.876,505 +8.877,505 +8.878,505 +8.879,505 +8.88,505 +8.879,505 +8.88,505 +8.881,505 +8.882,505 +8.883,505 +8.884,505 +8.885,505 +8.886,505 +8.887,506 +8.888,506 +8.894,506 +8.895,506 +8.896,506 +8.897,507 +8.898,507 +8.899,507 +8.9,507 +8.901,508 +8.902,508 +8.903,508 +8.898,509 +8.899,509 +8.9,510 +8.901,510 +8.902,511 +8.903,511 +8.904,512 +8.905,512 +8.906,513 +8.907,513 +8.913,514 +8.914,514 +8.915,514 +8.916,514 +8.917,514 +8.918,513 +8.919,513 +8.92,512 +8.921,511 +8.922,510 +8.926,509 +8.927,508 +8.928,507 +8.929,506 +8.93,505 +8.931,505 +8.932,504 +8.933,503 +8.934,502 +8.935,502 +8.933,501 +8.934,500 +8.935,499 +8.936,498 +8.937,498 +8.938,498 +8.939,498 +8.94,498 +8.941,498 +8.942,499 +8.943,500 +8.944,500 +8.945,501 +8.946,501 +8.947,502 +8.948,502 +8.949,503 +8.95,503 +8.951,504 +8.952,504 +8.961,504 +8.962,505 +8.963,505 +8.964,505 +8.965,505 +8.966,505 +8.967,505 +8.968,505 +8.969,505 +8.97,505 +8.963,505 +8.964,505 +8.965,506 +8.966,506 +8.967,506 +8.968,506 +8.969,506 +8.97,506 +8.971,506 +8.972,506 +8.965,506 +8.966,506 +8.967,506 +8.968,506 +8.969,506 +8.97,506 +8.971,506 +8.972,506 +8.973,506 +8.974,506 +8.977,506 +8.978,506 +8.979,506 +8.98,506 +8.981,506 +8.982,506 +8.983,506 +8.984,506 +8.985,506 +8.986,506 +8.99,506 +8.991,506 +8.992,506 +8.993,506 +8.994,506 +8.995,506 +8.996,506 +8.997,506 +8.998,506 +8.999,506 +8.997,506 +8.998,506 +8.999,506 +9.0,506 +9.001,506 +9.002,506 +9.003,506 +9.004,506 +9.005,506 +9.006,506 +9.012,506 +9.013,506 +9.014,506 +9.015,506 +9.016,506 +9.017,506 +9.018,506 +9.019,506 +9.02,506 +9.021,506 +9.016,506 +9.017,506 +9.018,506 +9.019,506 +9.02,506 +9.021,506 +9.022,506 +9.023,507 +9.024,507 +9.025,507 +9.033,507 +9.034,506 +9.035,507 +9.036,507 +9.037,507 +9.038,507 +9.039,507 +9.04,507 +9.041,506 +9.042,506 +9.04,506 +9.041,507 +9.042,507 +9.043,507 +9.044,507 +9.045,507 +9.046,507 +9.047,507 +9.048,507 +9.049,507 +9.051,507 +9.052,507 +9.053,507 +9.054,507 +9.055,507 +9.056,507 +9.057,507 +9.058,507 +9.059,507 +9.06,507 +9.068,507 +9.069,507 +9.07,507 +9.071,507 +9.072,507 +9.073,507 +9.074,507 +9.075,507 +9.076,507 +9.077,507 +9.078,507 +9.079,507 +9.08,507 +9.081,507 +9.082,507 +9.083,507 +9.084,507 +9.085,507 +9.086,507 +9.087,507 +9.083,507 +9.084,507 +9.085,507 +9.086,507 +9.087,507 +9.088,507 +9.089,507 +9.09,507 +9.091,507 +9.092,507 +9.096,507 +9.097,507 +9.098,508 +9.099,508 +9.1,508 +9.101,508 +9.102,508 +9.103,507 +9.104,508 +9.105,508 +9.106,508 +9.107,508 +9.108,508 +9.109,508 +9.11,508 +9.111,508 +9.112,508 +9.113,508 +9.114,508 +9.115,508 +9.116,508 +9.117,508 +9.118,508 +9.119,508 +9.12,508 +9.121,508 +9.122,508 +9.123,508 +9.124,508 +9.125,508 +9.126,508 +9.127,508 +9.128,508 +9.129,508 +9.13,509 +9.131,509 +9.132,509 +9.133,509 +9.134,509 +9.135,509 +9.126,509 +9.127,509 +9.128,508 +9.129,508 +9.13,508 +9.131,508 +9.132,508 +9.133,508 +9.134,508 +9.135,508 +9.138,508 +9.139,508 +9.14,508 +9.141,508 +9.142,508 +9.143,508 +9.144,508 +9.145,508 +9.146,508 +9.147,508 +9.145,508 +9.146,508 +9.147,508 +9.148,507 +9.149,507 +9.15,507 +9.151,507 +9.152,507 +9.153,507 +9.154,506 +9.16,506 +9.161,506 +9.162,506 +9.163,506 +9.164,506 +9.165,506 +9.166,505 +9.167,505 +9.168,505 +9.169,505 +9.168,504 +9.169,504 +9.17,504 +9.171,504 +9.172,504 +9.173,504 +9.174,503 +9.175,503 +9.176,503 +9.177,503 +9.18,503 +9.181,502 +9.182,502 +9.183,502 +9.184,502 +9.185,502 +9.186,502 +9.187,502 +9.188,502 +9.189,501 +9.189,501 +9.19,501 +9.191,501 +9.192,501 +9.193,501 +9.194,501 +9.195,501 +9.196,501 +9.197,501 +9.198,501 +9.202,501 +9.203,501 +9.204,501 +9.205,501 +9.206,501 +9.207,501 +9.208,501 +9.209,501 +9.21,501 +9.211,501 +9.212,501 +9.213,501 +9.214,501 +9.215,501 +9.216,501 +9.217,501 +9.218,501 +9.219,501 +9.22,501 +9.221,501 +9.222,501 +9.223,501 +9.224,501 +9.225,501 +9.226,501 +9.227,501 +9.228,501 +9.229,501 +9.23,501 +9.231,501 +9.25,502 +9.251,502 +9.252,502 +9.253,502 +9.254,502 +9.255,502 +9.256,502 +9.257,502 +9.258,502 +9.259,502 +9.253,502 +9.254,502 +9.255,502 +9.256,502 +9.257,502 +9.258,502 +9.259,502 +9.26,502 +9.261,502 +9.262,502 +9.255,502 +9.256,502 +9.257,502 +9.258,502 +9.259,502 +9.26,502 +9.261,502 +9.262,502 +9.263,502 +9.264,502 +9.265,503 +9.266,503 +9.267,503 +9.268,503 +9.269,503 +9.27,503 +9.271,503 +9.272,503 +9.273,503 +9.274,503 +9.275,503 +9.276,503 +9.277,503 +9.278,503 +9.279,503 +9.28,503 +9.281,503 +9.282,503 +9.283,503 +9.284,503 +9.288,503 +9.289,503 +9.29,503 +9.291,503 +9.292,503 +9.293,503 +9.294,503 +9.295,503 +9.296,503 +9.297,503 +9.295,503 +9.296,503 +9.297,503 +9.298,503 +9.299,503 +9.3,503 +9.301,504 +9.302,503 +9.303,503 +9.304,503 +9.297,503 +9.298,503 +9.299,503 +9.3,503 +9.301,504 +9.302,504 +9.303,504 +9.304,504 +9.305,504 +9.306,504 +9.31,504 +9.311,504 +9.312,504 +9.313,504 +9.314,504 +9.315,504 +9.316,504 +9.317,504 +9.318,504 +9.319,504 +9.317,504 +9.318,504 +9.319,504 +9.32,504 +9.321,504 +9.322,504 +9.323,504 +9.324,504 +9.325,504 +9.326,504 +9.332,504 +9.333,504 +9.334,504 +9.335,504 +9.336,504 +9.337,504 +9.338,504 +9.339,504 +9.34,504 +9.341,504 +9.335,504 +9.336,504 +9.337,504 +9.338,504 +9.339,504 +9.34,504 +9.341,504 +9.342,504 +9.343,505 +9.344,505 +9.353,505 +9.354,505 +9.355,505 +9.356,505 +9.357,505 +9.358,505 +9.359,505 +9.36,505 +9.361,505 +9.362,505 +9.359,505 +9.36,505 +9.361,505 +9.362,505 +9.363,505 +9.364,505 +9.365,505 +9.366,505 +9.367,505 +9.368,505 +9.372,505 +9.373,505 +9.374,505 +9.375,505 +9.376,505 +9.377,505 +9.378,505 +9.379,505 +9.38,505 +9.381,505 +9.384,505 +9.385,505 +9.386,505 +9.387,505 +9.388,505 +9.389,505 +9.39,505 +9.391,505 +9.392,505 +9.393,505 +9.392,505 +9.393,505 +9.394,504 +9.395,505 +9.396,505 +9.397,505 +9.398,505 +9.399,505 +9.4,505 +9.401,505 +9.404,505 +9.405,505 +9.406,505 +9.407,505 +9.408,505 +9.409,505 +9.41,505 +9.411,505 +9.412,505 +9.413,505 +9.414,505 +9.415,505 +9.416,505 +9.417,505 +9.418,504 +9.419,504 +9.42,504 +9.421,504 +9.422,504 +9.423,504 +9.432,504 +9.433,504 +9.434,504 +9.435,504 +9.436,504 +9.437,504 +9.438,504 +9.439,504 +9.44,504 +9.441,504 +9.434,504 +9.435,504 +9.436,504 +9.437,504 +9.438,504 +9.439,504 +9.44,504 +9.441,504 +9.442,504 +9.443,504 +9.449,504 +9.45,504 +9.451,504 +9.452,504 +9.453,504 +9.454,504 +9.455,504 +9.456,504 +9.457,504 +9.458,504 +9.449,504 +9.451,504 +9.452,504 +9.453,504 +9.454,504 +9.455,504 +9.456,504 +9.457,504 +9.458,504 +9.459,504 +9.453,504 +9.454,504 +9.455,504 +9.456,504 +9.457,504 +9.458,504 +9.459,504 +9.46,504 +9.461,504 +9.462,504 +9.471,504 +9.472,504 +9.473,504 +9.474,504 +9.475,504 +9.476,504 +9.477,504 +9.478,504 +9.479,504 +9.48,504 +9.474,504 +9.475,504 +9.476,504 +9.477,504 +9.478,504 +9.479,504 +9.48,504 +9.481,504 +9.482,504 +9.483,504 +9.49,504 +9.491,504 +9.492,504 +9.493,504 +9.494,504 +9.495,504 +9.496,504 +9.497,504 +9.498,504 +9.499,504 +9.502,504 +9.503,504 +9.504,504 +9.505,504 +9.506,504 +9.507,504 +9.508,504 +9.509,504 +9.51,504 +9.511,504 +9.508,504 +9.509,504 +9.51,505 +9.511,504 +9.512,504 +9.513,504 +9.514,504 +9.515,504 +9.516,504 +9.517,504 +9.523,504 +9.524,504 +9.525,504 +9.526,504 +9.527,504 +9.528,504 +9.529,504 +9.53,504 +9.531,504 +9.532,504 +9.53,504 +9.531,504 +9.532,504 +9.533,504 +9.534,504 +9.535,504 +9.536,504 +9.537,504 +9.538,504 +9.539,504 +9.545,504 +9.546,504 +9.547,504 +9.548,504 +9.549,504 +9.55,504 +9.551,504 +9.552,504 +9.553,504 +9.554,504 +9.553,504 +9.554,504 +9.555,505 +9.556,504 +9.557,504 +9.558,504 +9.559,504 +9.56,504 +9.561,504 +9.562,504 +9.565,504 +9.566,504 +9.567,504 +9.568,504 +9.569,504 +9.57,504 +9.571,504 +9.572,504 +9.573,504 +9.574,504 +9.572,504 +9.573,504 +9.574,504 +9.575,504 +9.576,504 +9.577,504 +9.578,504 +9.579,504 +9.58,504 +9.581,504 +9.589,504 +9.59,504 +9.591,504 +9.592,504 +9.593,504 +9.594,504 +9.595,504 +9.596,504 +9.597,504 +9.598,504 +9.591,504 +9.592,504 +9.593,504 +9.594,504 +9.595,504 +9.596,504 +9.597,504 +9.598,504 +9.6,504 +9.601,504 +9.608,504 +9.609,504 +9.61,504 +9.611,504 +9.612,504 +9.613,504 +9.614,504 +9.615,504 +9.616,504 +9.617,504 +9.615,504 +9.616,504 +9.617,504 +9.618,504 +9.619,504 +9.62,504 +9.621,504 +9.622,504 +9.623,504 +9.624,504 +9.617,504 +9.618,504 +9.619,504 +9.62,504 +9.621,504 +9.622,504 +9.623,504 +9.624,504 +9.625,504 +9.626,504 +9.633,504 +9.634,504 +9.635,504 +9.636,504 +9.637,504 +9.638,504 +9.639,504 +9.64,504 +9.641,504 +9.642,504 +9.635,504 +9.636,504 +9.637,504 +9.638,504 +9.639,504 +9.64,504 +9.641,504 +9.642,504 +9.643,504 +9.644,504 +9.65,504 +9.651,504 +9.652,504 +9.653,504 +9.654,504 +9.655,504 +9.656,504 +9.657,504 +9.658,504 +9.659,504 +9.657,504 +9.658,504 +9.659,504 +9.66,504 +9.661,504 +9.662,504 +9.663,504 +9.664,504 +9.665,504 +9.666,504 +9.672,504 +9.673,504 +9.674,504 +9.675,504 +9.676,504 +9.677,504 +9.678,504 +9.679,504 +9.68,504 +9.681,504 +9.682,504 +9.683,504 +9.684,504 +9.685,504 +9.686,504 +9.687,504 +9.688,504 +9.689,504 +9.69,504 +9.691,504 +9.69,504 +9.691,504 +9.692,504 +9.693,504 +9.694,504 +9.695,504 +9.696,504 +9.697,504 +9.698,504 +9.699,504 +9.705,504 +9.706,504 +9.707,504 +9.708,504 +9.709,504 +9.71,504 +9.711,504 +9.712,504 +9.713,505 +9.714,505 +9.71,505 +9.711,505 +9.712,505 +9.713,505 +9.714,505 +9.715,505 +9.716,505 +9.717,505 +9.718,505 +9.719,505 +9.725,505 +9.726,505 +9.727,505 +9.728,505 +9.729,505 +9.73,505 +9.731,505 +9.732,505 +9.733,505 +9.734,505 +9.731,505 +9.732,505 +9.733,505 +9.734,505 +9.735,505 +9.736,505 +9.737,505 +9.738,505 +9.739,505 +9.74,505 +9.747,505 +9.748,505 +9.749,505 +9.75,505 +9.751,505 +9.752,505 +9.753,505 +9.754,505 +9.755,505 +9.756,505 +9.754,505 +9.755,505 +9.756,505 +9.757,504 +9.758,504 +9.759,504 +9.76,504 +9.761,504 +9.762,504 +9.763,504 +9.769,504 +9.77,504 +9.771,504 +9.772,504 +9.773,504 +9.774,504 +9.775,503 +9.776,503 +9.777,503 +9.778,503 +9.77,503 +9.771,503 +9.772,503 +9.773,503 +9.774,503 +9.775,503 +9.776,503 +9.777,503 +9.778,502 +9.779,502 +9.773,502 +9.774,503 +9.775,502 +9.776,503 +9.777,503 +9.778,503 +9.779,503 +9.78,503 +9.781,503 +9.782,503 +9.788,503 +9.789,503 +9.79,503 +9.791,503 +9.792,503 +9.793,503 +9.794,502 +9.795,502 +9.796,502 +9.797,502 +9.798,502 +9.799,502 +9.8,502 +9.801,502 +9.802,502 +9.803,502 +9.804,503 +9.805,503 +9.806,502 +9.807,502 +9.813,502 +9.814,502 +9.815,502 +9.816,502 +9.817,502 +9.818,502 +9.819,502 +9.82,502 +9.821,502 +9.822,502 +9.817,502 +9.818,502 +9.819,502 +9.82,502 +9.821,502 +9.822,502 +9.823,502 +9.824,502 +9.825,502 +9.826,502 +9.832,502 +9.833,502 +9.834,502 +9.835,502 +9.836,502 +9.837,502 +9.838,502 +9.839,502 +9.84,502 +9.841,502 +9.839,502 +9.84,502 +9.841,502 +9.842,502 +9.843,502 +9.844,502 +9.845,502 +9.846,502 +9.847,503 +9.848,503 +9.855,503 +9.856,503 +9.857,503 +9.858,504 +9.859,504 +9.86,504 +9.861,504 +9.862,505 +9.863,505 +9.864,505 +9.858,506 +9.859,506 +9.86,507 +9.861,507 +9.862,508 +9.863,509 +9.864,509 +9.865,510 +9.866,510 +9.867,511 +9.891,511 +9.892,511 +9.893,511 +9.894,511 +9.895,511 +9.896,510 +9.897,510 +9.898,509 +9.899,508 +9.9,507 +9.894,505 +9.895,504 +9.896,503 +9.897,503 +9.898,502 +9.899,501 +9.9,500 +9.901,500 +9.902,499 +9.903,498 +9.897,497 +9.898,496 +9.899,495 +9.9,495 +9.901,494 +9.902,494 +9.903,494 +9.904,495 +9.905,495 +9.906,496 +9.901,496 +9.902,497 +9.903,497 +9.904,498 +9.905,498 +9.906,499 +9.907,499 +9.908,500 +9.909,500 +9.91,501 +9.917,501 +9.918,501 +9.919,502 +9.92,502 +9.921,502 +9.922,502 +9.923,502 +9.924,502 +9.925,502 +9.926,502 +9.924,502 +9.925,502 +9.926,502 +9.927,502 +9.928,502 +9.929,502 +9.93,502 +9.931,502 +9.932,502 +9.933,502 +9.942,502 +9.943,502 +9.944,502 +9.945,502 +9.946,502 +9.947,502 +9.948,502 +9.949,502 +9.95,502 +9.951,502 +9.944,502 +9.945,502 +9.946,502 +9.947,502 +9.948,502 +9.949,502 +9.95,502 +9.951,502 +9.952,502 +9.953,502 +9.946,502 +9.947,502 +9.948,502 +9.949,502 +9.95,502 +9.951,502 +9.952,502 +9.953,502 +9.954,502 +9.955,502 +9.961,502 +9.962,502 +9.963,503 +9.964,502 +9.965,502 +9.966,502 +9.967,502 +9.968,502 +9.969,502 +9.97,502 +9.967,502 +9.968,502 +9.969,502 +9.97,502 +9.971,502 +9.972,502 +9.973,502 +9.974,502 +9.975,502 +9.976,502 +9.982,502 +9.983,502 +9.984,502 +9.985,502 +9.986,502 +9.987,502 +9.988,502 +9.989,502 +9.99,502 +9.991,502 +9.988,502 +9.99,502 +9.991,502 +9.992,502 +9.993,502 +9.994,502 +9.995,502 +9.996,502 +9.997,502 +9.998,502 +10.004,502 +10.005,502 +10.006,502 +10.007,502 +10.008,502 +10.009,502 +10.01,502 +10.011,502 +10.012,502 +10.013,502 diff --git a/photo_2025-01-17_14-46-44.jpg b/photo_2025-01-17_14-46-44.jpg new file mode 100644 index 0000000..d7d7be9 Binary files /dev/null and b/photo_2025-01-17_14-46-44.jpg differ diff --git a/photo_2025-01-17_14-48-08.jpg b/photo_2025-01-17_14-48-08.jpg new file mode 100644 index 0000000..4d29b1c Binary files /dev/null and b/photo_2025-01-17_14-48-08.jpg differ diff --git a/photo_2025-01-20_08-47-32.jpg b/photo_2025-01-20_08-47-32.jpg new file mode 100644 index 0000000..fcc6dbc Binary files /dev/null and b/photo_2025-01-20_08-47-32.jpg differ diff --git a/routes.py b/routes.py index 3ac6aae..8513383 100644 --- a/routes.py +++ b/routes.py @@ -40,7 +40,7 @@ async def home(request: Request): @router.get("/signup", response_class=HTMLResponse) @limiter.limit("10/minute") async def signup_form(request: Request): - return templates.TemplateResponse("signup.html", {"request": request}) + return templates.TemplateResponse("/signup.html", {"request": request}) @router.post("/signup", response_class=HTMLResponse) @limiter.limit("5/minute") @@ -494,4 +494,4 @@ async def submit_contact( ) @router.get("/about", response_class=HTMLResponse) async def about_page(request: Request): - return templates.TemplateResponse("about.html", {"request": request}) \ No newline at end of file + return templates.TemplateResponse("about.html", {"request": request}) diff --git a/templates/about.html b/templates/about.html index 10c4b53..a6cfc89 100644 --- a/templates/about.html +++ b/templates/about.html @@ -31,10 +31,10 @@

Pulseflowbridge

diff --git a/templates/contact.html b/templates/contact.html index cd03500..f5d9cf7 100644 --- a/templates/contact.html +++ b/templates/contact.html @@ -39,10 +39,10 @@

Pulseflowbridge

@@ -131,4 +131,4 @@

Get in Touch

- \ No newline at end of file + diff --git a/templates/signup.html b/templates/signup.html index bcd5d12..3f3a89a 100644 --- a/templates/signup.html +++ b/templates/signup.html @@ -20,7 +20,7 @@

Pulseflowbridge

Signup

-
+